diff --git a/.gitignore b/.gitignore index 3c3629e..358ef85 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,12 @@ +.idea/* +.nyc_output +build node_modules +test +source/**.js +coverage +*.log +yarn.lock +e-care-common-data-services-1.0.0.tgz + +source/.DS_Store diff --git a/README.md b/README.md index a31e057..8a64086 100644 --- a/README.md +++ b/README.md @@ -2,16 +2,10 @@ Common data service for mcc-provider and mcc-care-planner -## Npm installation - -```sh -npm i e-care-common-data-services -``` - ## How to work with this locally Install dependencies ```sh -npm ci +npm i ``` Build typescript @@ -28,3 +22,66 @@ Run this on mcc-provider or mcc-care-planner app directory ```sh npm link e-care-common-data-services ``` + +## How to work with this in the future +- Remove `build` from .gitignore file +- Host this repository in a git provider e.g github +- Release a tag, e.g `v1.0.0` +- in mcc-provider or mcc-care-planner app, run +``` +npm i git@github.com:chronic-care/e-care-common-data-services.git#v1.0.0 +``` + +## Code structure explanation + +### Root + +#### tsconfig.json +This is the typescript rules and compile options -> required to run the app + +#### .prettierrc +This is used to do auto code fix on save during deployment, lets say you forget semicolon, or you forget indentation, prettier will help you add those when you save the file it will run automatically + +#### .eslintrc +This is used to enforce strict js/ts convention when writing code to avoid any unforeseen bugs -> required to run the app + +#### .editorconfig +This is used to standardised IDE (VSCode/IntelliJ) theme and configuration when we load this project to any IDE + +### source + +#### constants +This is where we put our global constant variables that is reused in modules + +#### lib +This is where we store our modules, inside will be having each module, e.g `observation` and it will have +- observation.ts + This is where we put our logic +- observation.util.ts + This is where we put helper function specific to observation +- observation.spec.ts + This is where we put testing specific to observation + +#### mapping +This is where we put resource mapping from fhir localised to our module, e.g on `vital-mapping` when we get `ckd`, we will try to query data for +- Cognitive Status (MoCA) +- Fatigue (PROMIS T-score) +- Functional Status (PROMIS raw score) +- Pain Interference (PROMIS T-score) +- Pain Severity (Wong-Baker FACES) +- PHQ9 + +#### query +This is where we handle logic on how we query from local json files from /resources folder + +### resources +This is where we store all of the manual resource data intended for mapping + +#### types +This is where we store typing for common interface + +#### utils +This is where we create a global method that is reused in all modules + +#### index.ts +This is the central entrypoint when building the app diff --git a/build/main/constants/mode.d.ts b/build/main/constants/mode.d.ts deleted file mode 100644 index ba75d93..0000000 --- a/build/main/constants/mode.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -export declare const EccMode: { - panel: string; - code: string; - combo: string; - component: string; -}; diff --git a/build/main/constants/mode.js b/build/main/constants/mode.js deleted file mode 100644 index db02188..0000000 --- a/build/main/constants/mode.js +++ /dev/null @@ -1,10 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.EccMode = void 0; -exports.EccMode = { - panel: 'code', - code: 'code', - combo: 'combo-code', - component: 'component-code', -}; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NvdXJjZS9jb25zdGFudHMvbW9kZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBYSxRQUFBLE9BQU8sR0FBRztJQUNyQixLQUFLLEVBQUUsTUFBTTtJQUNiLElBQUksRUFBRSxNQUFNO0lBQ1osS0FBSyxFQUFFLFlBQVk7SUFDbkIsU0FBUyxFQUFFLGdCQUFnQjtDQUM1QixDQUFDIn0= \ No newline at end of file diff --git a/build/main/index.d.ts b/build/main/index.d.ts deleted file mode 100644 index c461522..0000000 --- a/build/main/index.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from './lib/observation/observation'; -export * from './lib/authorize/authorize'; -export * from './lib/questionnaire/questionnaire'; diff --git a/build/main/index.js b/build/main/index.js deleted file mode 100644 index f7e4223..0000000 --- a/build/main/index.js +++ /dev/null @@ -1,20 +0,0 @@ -"use strict"; -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - var desc = Object.getOwnPropertyDescriptor(m, k); - if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { - desc = { enumerable: true, get: function() { return m[k]; } }; - } - Object.defineProperty(o, k2, desc); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -__exportStar(require("./lib/observation/observation"), exports); -__exportStar(require("./lib/authorize/authorize"), exports); -__exportStar(require("./lib/questionnaire/questionnaire"), exports); -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zb3VyY2UvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLGdFQUE4QztBQUM5Qyw0REFBMEM7QUFDMUMsb0VBQWtEIn0= \ No newline at end of file diff --git a/build/main/lib/authorize.d.ts b/build/main/lib/authorize.d.ts deleted file mode 100644 index b6b2afe..0000000 --- a/build/main/lib/authorize.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -export declare const authorize: () => Promise; -export declare const checkAuthorize: () => Promise; diff --git a/build/main/lib/authorize.js b/build/main/lib/authorize.js deleted file mode 100644 index 12e6785..0000000 --- a/build/main/lib/authorize.js +++ /dev/null @@ -1,140 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.checkAuthorize = exports.authorize = void 0; -const fhirclient_1 = __importDefault(require("fhirclient")); -const authorize = async () => { - await fhirclient_1.default.oauth2.authorize({ - // Meld Synthea test data sandbox - redirectUri: '', - clientId: '9ff4f5c4-f07c-464f-8d4b-90b90a76bebf', - scope: 'patient/*.read openid launch', - }); -}; -exports.authorize = authorize; -const checkAuthorize = async () => { - const client = await fhirclient_1.default.oauth2.ready(); - return client; -}; -exports.checkAuthorize = checkAuthorize; -// const mccObj: MccObservation = { -// code: { -// coding: [ -// { -// system: 'http://loinc.org', -// code: '17856-6', -// display: 'Hemoglobin A1c/Hemoglobin.total in Blood by HPLC', -// }, -// ], -// text: 'Hemoglobin A1c/Hemoglobin.total in Blood by HPLC', -// }, -// status: 'final', -// effective: { -// type: 'dateTime', -// dateTime: { -// rawDate: '1646841600000', -// date: '03/10/2022 12:00', -// }, -// }, -// value: { -// valueType: 'Quantity', -// quantityValue: { -// unit: '%', -// value: 9.2, -// system: 'http://unitsofmeasure.org/', -// code: '%', -// }, -// }, -// referenceRanges: [ -// { -// low: { -// unit: '%', -// value: 5.6, -// system: 'http://unitsofmeasure.org', -// code: 'mg/dL', -// }, -// text: '4 to 5.6 %', -// }, -// ], -// category: [ -// { -// coding: [ -// { -// system: 'http://terminology.hl7.org/CodeSystem/observation-category', -// code: 'laboratory', -// }, -// ], -// text: 'Laboratory', -// }, -// ], -// fhirid: 'mcc-obs-pnoelle-lab-hgbA1c', -// }; -// const Obj: Observation = { -// resourceType: 'Observation', -// id: 'mcc-obs-pnoelle-lab-hgbA1c', -// meta: { -// versionId: '1', -// lastUpdated: '2022-05-02T11:40:59.000+00:00', -// source: '#eb35f0f8c939c1e2', -// profile: [ -// 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults', -// ], -// }, -// status: 'final', -// category: [ -// { -// coding: [ -// { -// system: 'http://terminology.hl7.org/CodeSystem/observation-category', -// code: 'laboratory', -// }, -// ], -// text: 'Laboratory', -// }, -// ], -// code: { -// coding: [ -// { -// system: 'http://loinc.org', -// code: '17856-6', -// display: 'Hemoglobin A1c/Hemoglobin.total in Blood by HPLC', -// }, -// ], -// }, -// subject: { -// reference: 'Patient/mcc-pat-pnoelle', -// }, -// effectiveDateTime: '2022-03-10', -// performer: [ -// { -// reference: 'Practitioner/mcc-prac-carlson-john', -// display: 'Dr. John Carlson, MD', -// }, -// ], -// valueQuantity: { -// value: 9.2, -// unit: '%', -// system: 'http://unitsofmeasure.org/', -// code: '%', -// }, -// referenceRange: [ -// { -// low: { -// value: 4, -// unit: '%', -// system: 'http://unitsofmeasure.org', -// code: '%', -// }, -// high: { -// value: 5.6, -// unit: '%', -// system: 'http://unitsofmeasure.org', -// code: 'mg/dL', -// }, -// text: '4 to 5.6 %', -// }, -// ], -// }; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aG9yaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc291cmNlL2xpYi9hdXRob3JpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7O0FBQUEsNERBQThCO0FBRXZCLE1BQU0sU0FBUyxHQUFHLEtBQUssSUFBSSxFQUFFO0lBQ2xDLE1BQU0sb0JBQUksQ0FBQyxNQUFNLENBQUMsU0FBUyxDQUFDO1FBQzFCLGlDQUFpQztRQUNqQyxXQUFXLEVBQUUsRUFBRTtRQUNmLFFBQVEsRUFBRSxzQ0FBc0M7UUFDaEQsS0FBSyxFQUFFLDhCQUE4QjtLQUN0QyxDQUFDLENBQUM7QUFDTCxDQUFDLENBQUM7QUFQVyxRQUFBLFNBQVMsYUFPcEI7QUFFSyxNQUFNLGNBQWMsR0FBRyxLQUFLLElBQUksRUFBRTtJQUN2QyxNQUFNLE1BQU0sR0FBRyxNQUFNLG9CQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDO0lBRXpDLE9BQU8sTUFBTSxDQUFDO0FBQ2hCLENBQUMsQ0FBQztBQUpXLFFBQUEsY0FBYyxrQkFJekI7QUFFRixtQ0FBbUM7QUFDbkMsWUFBWTtBQUNaLGdCQUFnQjtBQUNoQixVQUFVO0FBQ1Ysc0NBQXNDO0FBQ3RDLDJCQUEyQjtBQUMzQix1RUFBdUU7QUFDdkUsV0FBVztBQUNYLFNBQVM7QUFDVCxnRUFBZ0U7QUFDaEUsT0FBTztBQUNQLHFCQUFxQjtBQUNyQixpQkFBaUI7QUFDakIsd0JBQXdCO0FBQ3hCLGtCQUFrQjtBQUNsQixrQ0FBa0M7QUFDbEMsa0NBQWtDO0FBQ2xDLFNBQVM7QUFDVCxPQUFPO0FBQ1AsYUFBYTtBQUNiLDZCQUE2QjtBQUM3Qix1QkFBdUI7QUFDdkIsbUJBQW1CO0FBQ25CLG9CQUFvQjtBQUNwQiw4Q0FBOEM7QUFDOUMsbUJBQW1CO0FBQ25CLFNBQVM7QUFDVCxPQUFPO0FBQ1AsdUJBQXVCO0FBQ3ZCLFFBQVE7QUFDUixlQUFlO0FBQ2YscUJBQXFCO0FBQ3JCLHNCQUFzQjtBQUN0QiwrQ0FBK0M7QUFDL0MseUJBQXlCO0FBQ3pCLFdBQVc7QUFDWCw0QkFBNEI7QUFDNUIsU0FBUztBQUNULE9BQU87QUFDUCxnQkFBZ0I7QUFDaEIsUUFBUTtBQUNSLGtCQUFrQjtBQUNsQixZQUFZO0FBQ1osa0ZBQWtGO0FBQ2xGLGdDQUFnQztBQUNoQyxhQUFhO0FBQ2IsV0FBVztBQUNYLDRCQUE0QjtBQUM1QixTQUFTO0FBQ1QsT0FBTztBQUNQLDBDQUEwQztBQUMxQyxLQUFLO0FBRUwsNkJBQTZCO0FBQzdCLGlDQUFpQztBQUNqQyxzQ0FBc0M7QUFDdEMsWUFBWTtBQUNaLHNCQUFzQjtBQUN0QixvREFBb0Q7QUFDcEQsbUNBQW1DO0FBQ25DLGlCQUFpQjtBQUNqQixzRkFBc0Y7QUFDdEYsU0FBUztBQUNULE9BQU87QUFDUCxxQkFBcUI7QUFDckIsZ0JBQWdCO0FBQ2hCLFFBQVE7QUFDUixrQkFBa0I7QUFDbEIsWUFBWTtBQUNaLGtGQUFrRjtBQUNsRixnQ0FBZ0M7QUFDaEMsYUFBYTtBQUNiLFdBQVc7QUFDWCw0QkFBNEI7QUFDNUIsU0FBUztBQUNULE9BQU87QUFDUCxZQUFZO0FBQ1osZ0JBQWdCO0FBQ2hCLFVBQVU7QUFDVixzQ0FBc0M7QUFDdEMsMkJBQTJCO0FBQzNCLHVFQUF1RTtBQUN2RSxXQUFXO0FBQ1gsU0FBUztBQUNULE9BQU87QUFDUCxlQUFlO0FBQ2YsNENBQTRDO0FBQzVDLE9BQU87QUFDUCxxQ0FBcUM7QUFDckMsaUJBQWlCO0FBQ2pCLFFBQVE7QUFDUix5REFBeUQ7QUFDekQseUNBQXlDO0FBQ3pDLFNBQVM7QUFDVCxPQUFPO0FBQ1AscUJBQXFCO0FBQ3JCLGtCQUFrQjtBQUNsQixpQkFBaUI7QUFDakIsNENBQTRDO0FBQzVDLGlCQUFpQjtBQUNqQixPQUFPO0FBQ1Asc0JBQXNCO0FBQ3RCLFFBQVE7QUFDUixlQUFlO0FBQ2Ysb0JBQW9CO0FBQ3BCLHFCQUFxQjtBQUNyQiwrQ0FBK0M7QUFDL0MscUJBQXFCO0FBQ3JCLFdBQVc7QUFDWCxnQkFBZ0I7QUFDaEIsc0JBQXNCO0FBQ3RCLHFCQUFxQjtBQUNyQiwrQ0FBK0M7QUFDL0MseUJBQXlCO0FBQ3pCLFdBQVc7QUFDWCw0QkFBNEI7QUFDNUIsU0FBUztBQUNULE9BQU87QUFDUCxLQUFLIn0= \ No newline at end of file diff --git a/build/main/lib/authorize.spec.js b/build/main/lib/authorize.spec.js deleted file mode 100644 index cdff4d6..0000000 --- a/build/main/lib/authorize.spec.js +++ /dev/null @@ -1 +0,0 @@ -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aG9yaXplLnNwZWMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zb3VyY2UvbGliL2F1dGhvcml6ZS5zcGVjLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ== \ No newline at end of file diff --git a/build/main/lib/authorize/authorize.d.ts b/build/main/lib/authorize/authorize.d.ts deleted file mode 100644 index b134c99..0000000 --- a/build/main/lib/authorize/authorize.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -export declare const authorize: (redirectUri?: string, clientId?: string, scope?: string) => Promise; -export declare const checkAuthorize: () => Promise; diff --git a/build/main/lib/authorize/authorize.js b/build/main/lib/authorize/authorize.js deleted file mode 100644 index 75e8eaf..0000000 --- a/build/main/lib/authorize/authorize.js +++ /dev/null @@ -1,25 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.checkAuthorize = exports.authorize = void 0; -const fhirclient_1 = __importDefault(require("fhirclient")); -const loglevel_1 = __importDefault(require("../../utils/loglevel")); -const authorize = async (redirectUri, clientId, scope) => { - loglevel_1.default.info('Authenticating client'); - await fhirclient_1.default.oauth2.authorize({ - // Meld Synthea test data sandbox - redirectUri: redirectUri !== null && redirectUri !== void 0 ? redirectUri : '', - clientId: clientId !== null && clientId !== void 0 ? clientId : '9ff4f5c4-f07c-464f-8d4b-90b90a76bebf', - scope: scope !== null && scope !== void 0 ? scope : 'patient/*.read openid launch', - }); -}; -exports.authorize = authorize; -const checkAuthorize = async () => { - const client = await fhirclient_1.default.oauth2.ready(); - loglevel_1.default.info('Client authorized'); - return client; -}; -exports.checkAuthorize = checkAuthorize; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aG9yaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc291cmNlL2xpYi9hdXRob3JpemUvYXV0aG9yaXplLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7OztBQUFBLDREQUE4QjtBQUU5QixvRUFBdUM7QUFFaEMsTUFBTSxTQUFTLEdBQUcsS0FBSyxFQUM1QixXQUFvQixFQUNwQixRQUFpQixFQUNqQixLQUFjLEVBQ2QsRUFBRTtJQUNGLGtCQUFHLENBQUMsSUFBSSxDQUFDLHVCQUF1QixDQUFDLENBQUM7SUFFbEMsTUFBTSxvQkFBSSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUM7UUFDMUIsaUNBQWlDO1FBQ2pDLFdBQVcsRUFBRSxXQUFXLGFBQVgsV0FBVyxjQUFYLFdBQVcsR0FBSSxFQUFFO1FBQzlCLFFBQVEsRUFBRSxRQUFRLGFBQVIsUUFBUSxjQUFSLFFBQVEsR0FBSSxzQ0FBc0M7UUFDNUQsS0FBSyxFQUFFLEtBQUssYUFBTCxLQUFLLGNBQUwsS0FBSyxHQUFJLDhCQUE4QjtLQUMvQyxDQUFDLENBQUM7QUFDTCxDQUFDLENBQUM7QUFiVyxRQUFBLFNBQVMsYUFhcEI7QUFFSyxNQUFNLGNBQWMsR0FBRyxLQUFLLElBQUksRUFBRTtJQUN2QyxNQUFNLE1BQU0sR0FBRyxNQUFNLG9CQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDO0lBRXpDLGtCQUFHLENBQUMsSUFBSSxDQUFDLG1CQUFtQixDQUFDLENBQUM7SUFFOUIsT0FBTyxNQUFNLENBQUM7QUFDaEIsQ0FBQyxDQUFDO0FBTlcsUUFBQSxjQUFjLGtCQU16QiJ9 \ No newline at end of file diff --git a/build/main/lib/authorize/authorize.spec.d.ts b/build/main/lib/authorize/authorize.spec.d.ts deleted file mode 100644 index e69de29..0000000 diff --git a/build/main/lib/authorize/authorize.spec.js b/build/main/lib/authorize/authorize.spec.js deleted file mode 100644 index 4f22f17..0000000 --- a/build/main/lib/authorize/authorize.spec.js +++ /dev/null @@ -1,2 +0,0 @@ -// noop -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aG9yaXplLnNwZWMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zb3VyY2UvbGliL2F1dGhvcml6ZS9hdXRob3JpemUuc3BlYy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPIn0= \ No newline at end of file diff --git a/build/main/lib/authorize/authorize.util.d.ts b/build/main/lib/authorize/authorize.util.d.ts deleted file mode 100644 index e69de29..0000000 diff --git a/build/main/lib/authorize/authorize.util.js b/build/main/lib/authorize/authorize.util.js deleted file mode 100644 index 25127b4..0000000 --- a/build/main/lib/authorize/authorize.util.js +++ /dev/null @@ -1,2 +0,0 @@ -// noop -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aG9yaXplLnV0aWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zb3VyY2UvbGliL2F1dGhvcml6ZS9hdXRob3JpemUudXRpbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPIn0= \ No newline at end of file diff --git a/build/main/lib/authorize/index.d.ts b/build/main/lib/authorize/index.d.ts deleted file mode 100644 index 7f57cb0..0000000 --- a/build/main/lib/authorize/index.d.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './authorize'; diff --git a/build/main/lib/authorize/index.js b/build/main/lib/authorize/index.js deleted file mode 100644 index 8720db7..0000000 --- a/build/main/lib/authorize/index.js +++ /dev/null @@ -1,18 +0,0 @@ -"use strict"; -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - var desc = Object.getOwnPropertyDescriptor(m, k); - if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { - desc = { enumerable: true, get: function() { return m[k]; } }; - } - Object.defineProperty(o, k2, desc); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -__exportStar(require("./authorize"), exports); -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zb3VyY2UvbGliL2F1dGhvcml6ZS9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsOENBQTRCIn0= \ No newline at end of file diff --git a/build/main/lib/observation.d.ts b/build/main/lib/observation.d.ts deleted file mode 100644 index df87f11..0000000 --- a/build/main/lib/observation.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Observation } from 'fhir/r4'; -import type { ObservationMode } from '../types'; -export declare const getObservation: (code: string) => Promise; -export declare const getValue: (obs: Observation) => any; -export declare const getObservations: (code: string, mode: ObservationMode, sort?: string, max?: string) => Promise; -export declare const getObservationsByValueSet: (valueSet: string, sort?: string, max?: string) => Promise; -export declare const getObservationsByCategory: (category: string, sort?: string, max?: string) => Promise; diff --git a/build/main/lib/observation.js b/build/main/lib/observation.js deleted file mode 100644 index abec845..0000000 --- a/build/main/lib/observation.js +++ /dev/null @@ -1,130 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.getObservationsByCategory = exports.getObservationsByValueSet = exports.getObservations = exports.getValue = exports.getObservation = void 0; -const fhirclient_1 = __importDefault(require("fhirclient")); -const mode_1 = require("../constants/mode"); -const json_1 = require("../query/json"); -const fhirOptions = { - pageLimit: 0, -}; -const notFoundResponse = (code) => ({ - code, - status: 'notfound', - value: { - stringValue: 'No Data Available', - valueType: 'string', - }, -}); -const resourcesFrom = (response) => { - const firstEntries = response[0]; - const entries = (firstEntries === null || firstEntries === void 0 ? void 0 : firstEntries.entry) - ? firstEntries.entry - : []; - return entries - .map((entry) => entry === null || entry === void 0 ? void 0 : entry.resource) - .filter((resource) => resource.resourceType !== 'OperationOutcome'); -}; -const getObservation = async (code) => { - const client = await fhirclient_1.default.oauth2.ready(); - const queryPath = `Observation?${mode_1.EccMode.code}=http://loinc.org|${code}&_sort=-date&_count=1`; - const observationRequest = await client.patient.request(queryPath, fhirOptions); - const observationResource = resourcesFrom(observationRequest); - const filteredObservations = observationResource.filter((v) => v !== undefined && v.resourceType === 'Observation'); - if (filteredObservations.length) { - return filteredObservations[0]; - } - else { - return notFoundResponse(code); - } -}; -exports.getObservation = getObservation; -const getValue = (obs) => { - if (obs.valueQuantity) { - return { - valueQuantity: obs.valueQuantity, - }; - } - else if (obs.valueBoolean) { - return { - valueBoolean: obs.valueBoolean, - }; - } - else if (obs.valueInteger) { - return { - valueInteger: obs.valueInteger, - }; - } - else if (obs.valueString) { - return { - valueString: obs.valueString, - }; - } - else if (obs.valueRange) { - return { - valueRange: obs.valueRange, - }; - } - else if (obs.valueCodeableConcept) { - return { - valueCodeableConcept: obs.valueCodeableConcept, - }; - } - else { - return { - value: 'Unknown type', - }; - } -}; -exports.getValue = getValue; -const getObservations = async (code, mode, sort, max) => { - var _a; - const client = await fhirclient_1.default.oauth2.ready(); - const sortType = sort === 'descending' ? '-date' : 'date'; - const queryPath = `Observation?${(_a = mode_1.EccMode[mode]) !== null && _a !== void 0 ? _a : mode_1.EccMode.code}=http://loinc.org|${code}&_sort=${sortType}&_count=${max !== null && max !== void 0 ? max : 100}`; - const observationRequest = await client.patient.request(queryPath, fhirOptions); - const observationResource = resourcesFrom(observationRequest); - const filteredObservations = observationResource.filter((v) => v !== undefined && v.resourceType === 'Observation'); - if (filteredObservations.length) { - return filteredObservations; - } - else { - return []; - } -}; -exports.getObservations = getObservations; -const getObservationsByValueSet = async (valueSet, sort, max) => { - const client = await fhirclient_1.default.oauth2.ready(); - const codes = await (0, json_1.getAllCodes)(valueSet); - const combinedCodes = codes.join(','); - const sortType = sort === 'descending' ? '-date' : 'date'; - const queryPath = `Observation?${mode_1.EccMode.code}=${combinedCodes}&_sort=${sortType}&_count=${max}`; - const observationRequest = await client.patient.request(queryPath, fhirOptions); - const observationResource = resourcesFrom(observationRequest); - const filteredObservations = observationResource.filter((v) => v !== undefined && v.resourceType === 'Observation'); - if (filteredObservations.length) { - return filteredObservations; - } - else { - return []; - } -}; -exports.getObservationsByValueSet = getObservationsByValueSet; -const getObservationsByCategory = async (category, sort, max) => { - const client = await fhirclient_1.default.oauth2.ready(); - const sortType = sort === 'descending' ? '-date' : 'date'; - const queryPath = `Observation?category=${category}&_sort=${sortType}&_count=${max !== null && max !== void 0 ? max : 100}`; - const observationRequest = await client.patient.request(queryPath, fhirOptions); - const observationResource = resourcesFrom(observationRequest); - const filteredObservations = observationResource.filter((v) => v !== undefined && v.resourceType === 'Observation'); - if (filteredObservations.length) { - return filteredObservations; - } - else { - return []; - } -}; -exports.getObservationsByCategory = getObservationsByCategory; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2JzZXJ2YXRpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zb3VyY2UvbGliL29ic2VydmF0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7OztBQUNBLDREQUE4QjtBQUc5Qiw0Q0FBNEM7QUFDNUMsd0NBQTRDO0FBRzVDLE1BQU0sV0FBVyxHQUEyQjtJQUMxQyxTQUFTLEVBQUUsQ0FBQztDQUNiLENBQUM7QUFFRixNQUFNLGdCQUFnQixHQUFHLENBQUMsSUFBSSxFQUFFLEVBQUUsQ0FBQyxDQUFDO0lBQ2xDLElBQUk7SUFDSixNQUFNLEVBQUUsVUFBVTtJQUNsQixLQUFLLEVBQUU7UUFDTCxXQUFXLEVBQUUsbUJBQW1CO1FBQ2hDLFNBQVMsRUFBRSxRQUFRO0tBQ3BCO0NBQ0YsQ0FBQyxDQUFDO0FBRUgsTUFBTSxhQUFhLEdBQUcsQ0FBQyxRQUE4QixFQUFjLEVBQUU7SUFDbkUsTUFBTSxZQUFZLEdBQUcsUUFBUSxDQUFDLENBQUMsQ0FBMEIsQ0FBQztJQUMxRCxNQUFNLE9BQU8sR0FBNEIsQ0FBQSxZQUFZLGFBQVosWUFBWSx1QkFBWixZQUFZLENBQUUsS0FBSztRQUMxRCxDQUFDLENBQUUsWUFBWSxDQUFDLEtBQWlDO1FBQ2pELENBQUMsQ0FBQyxFQUFFLENBQUM7SUFDUCxPQUFPLE9BQU87U0FDWCxHQUFHLENBQUMsQ0FBQyxLQUE0QixFQUFFLEVBQUUsQ0FBQyxLQUFLLGFBQUwsS0FBSyx1QkFBTCxLQUFLLENBQUUsUUFBZSxDQUFDO1NBQzdELE1BQU0sQ0FDTCxDQUFDLFFBQWtCLEVBQUUsRUFBRSxDQUFDLFFBQVEsQ0FBQyxZQUFZLEtBQUssa0JBQWtCLENBQ3JFLENBQUM7QUFDTixDQUFDLENBQUM7QUFFSyxNQUFNLGNBQWMsR0FBRyxLQUFLLEVBQUUsSUFBWSxFQUF3QixFQUFFO0lBQ3pFLE1BQU0sTUFBTSxHQUFHLE1BQU0sb0JBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxFQUFFLENBQUM7SUFDekMsTUFBTSxTQUFTLEdBQUcsZUFBZSxjQUFPLENBQUMsSUFBSSxxQkFBcUIsSUFBSSx1QkFBdUIsQ0FBQztJQUM5RixNQUFNLGtCQUFrQixHQUF5QixNQUFNLE1BQU0sQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUMzRSxTQUFTLEVBQ1QsV0FBVyxDQUNaLENBQUM7SUFFRixNQUFNLG1CQUFtQixHQUFrQixhQUFhLENBQ3RELGtCQUFrQixDQUNGLENBQUM7SUFFbkIsTUFBTSxvQkFBb0IsR0FBa0IsbUJBQW1CLENBQUMsTUFBTSxDQUNwRSxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxLQUFLLFNBQVMsSUFBSSxDQUFDLENBQUMsWUFBWSxLQUFLLGFBQWEsQ0FDM0QsQ0FBQztJQUVGLElBQUksb0JBQW9CLENBQUMsTUFBTSxFQUFFO1FBQy9CLE9BQU8sb0JBQW9CLENBQUMsQ0FBQyxDQUFDLENBQUM7S0FDaEM7U0FBTTtRQUNMLE9BQU8sZ0JBQWdCLENBQUMsSUFBSSxDQUEyQixDQUFDO0tBQ3pEO0FBQ0gsQ0FBQyxDQUFDO0FBckJXLFFBQUEsY0FBYyxrQkFxQnpCO0FBRUssTUFBTSxRQUFRLEdBQUcsQ0FBQyxHQUFnQixFQUFPLEVBQUU7SUFDaEQsSUFBSSxHQUFHLENBQUMsYUFBYSxFQUFFO1FBQ3JCLE9BQU87WUFDTCxhQUFhLEVBQUUsR0FBRyxDQUFDLGFBQWE7U0FDakMsQ0FBQztLQUNIO1NBQU0sSUFBSSxHQUFHLENBQUMsWUFBWSxFQUFFO1FBQzNCLE9BQU87WUFDTCxZQUFZLEVBQUUsR0FBRyxDQUFDLFlBQVk7U0FDL0IsQ0FBQztLQUNIO1NBQU0sSUFBSSxHQUFHLENBQUMsWUFBWSxFQUFFO1FBQzNCLE9BQU87WUFDTCxZQUFZLEVBQUUsR0FBRyxDQUFDLFlBQVk7U0FDL0IsQ0FBQztLQUNIO1NBQU0sSUFBSSxHQUFHLENBQUMsV0FBVyxFQUFFO1FBQzFCLE9BQU87WUFDTCxXQUFXLEVBQUUsR0FBRyxDQUFDLFdBQVc7U0FDN0IsQ0FBQztLQUNIO1NBQU0sSUFBSSxHQUFHLENBQUMsVUFBVSxFQUFFO1FBQ3pCLE9BQU87WUFDTCxVQUFVLEVBQUUsR0FBRyxDQUFDLFVBQVU7U0FDM0IsQ0FBQztLQUNIO1NBQU0sSUFBSSxHQUFHLENBQUMsb0JBQW9CLEVBQUU7UUFDbkMsT0FBTztZQUNMLG9CQUFvQixFQUFFLEdBQUcsQ0FBQyxvQkFBb0I7U0FDL0MsQ0FBQztLQUNIO1NBQU07UUFDTCxPQUFPO1lBQ0wsS0FBSyxFQUFFLGNBQWM7U0FDdEIsQ0FBQztLQUNIO0FBQ0gsQ0FBQyxDQUFDO0FBOUJXLFFBQUEsUUFBUSxZQThCbkI7QUFFSyxNQUFNLGVBQWUsR0FBRyxLQUFLLEVBQ2xDLElBQVksRUFDWixJQUFxQixFQUNyQixJQUFhLEVBQ2IsR0FBWSxFQUNZLEVBQUU7O0lBQzFCLE1BQU0sTUFBTSxHQUFHLE1BQU0sb0JBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxFQUFFLENBQUM7SUFFekMsTUFBTSxRQUFRLEdBQUcsSUFBSSxLQUFLLFlBQVksQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUM7SUFFMUQsTUFBTSxTQUFTLEdBQUcsZUFDaEIsTUFBQSxjQUFPLENBQUMsSUFBSSxDQUFDLG1DQUFJLGNBQU8sQ0FBQyxJQUMzQixxQkFBcUIsSUFBSSxVQUFVLFFBQVEsV0FBVyxHQUFHLGFBQUgsR0FBRyxjQUFILEdBQUcsR0FBSSxHQUFHLEVBQUUsQ0FBQztJQUNuRSxNQUFNLGtCQUFrQixHQUF5QixNQUFNLE1BQU0sQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUMzRSxTQUFTLEVBQ1QsV0FBVyxDQUNaLENBQUM7SUFFRixNQUFNLG1CQUFtQixHQUFrQixhQUFhLENBQ3RELGtCQUFrQixDQUNGLENBQUM7SUFFbkIsTUFBTSxvQkFBb0IsR0FBa0IsbUJBQW1CLENBQUMsTUFBTSxDQUNwRSxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxLQUFLLFNBQVMsSUFBSSxDQUFDLENBQUMsWUFBWSxLQUFLLGFBQWEsQ0FDM0QsQ0FBQztJQUVGLElBQUksb0JBQW9CLENBQUMsTUFBTSxFQUFFO1FBQy9CLE9BQU8sb0JBQW9CLENBQUM7S0FDN0I7U0FBTTtRQUNMLE9BQU8sRUFBRSxDQUFDO0tBQ1g7QUFDSCxDQUFDLENBQUM7QUEvQlcsUUFBQSxlQUFlLG1CQStCMUI7QUFFSyxNQUFNLHlCQUF5QixHQUFHLEtBQUssRUFDNUMsUUFBZ0IsRUFDaEIsSUFBYSxFQUNiLEdBQVksRUFDWSxFQUFFO0lBQzFCLE1BQU0sTUFBTSxHQUFHLE1BQU0sb0JBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxFQUFFLENBQUM7SUFFekMsTUFBTSxLQUFLLEdBQUcsTUFBTSxJQUFBLGtCQUFXLEVBQUMsUUFBUSxDQUFDLENBQUM7SUFDMUMsTUFBTSxhQUFhLEdBQUcsS0FBSyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQztJQUV0QyxNQUFNLFFBQVEsR0FBRyxJQUFJLEtBQUssWUFBWSxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQztJQUUxRCxNQUFNLFNBQVMsR0FBRyxlQUFlLGNBQU8sQ0FBQyxJQUFJLElBQUksYUFBYSxVQUFVLFFBQVEsV0FBVyxHQUFHLEVBQUUsQ0FBQztJQUNqRyxNQUFNLGtCQUFrQixHQUF5QixNQUFNLE1BQU0sQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUMzRSxTQUFTLEVBQ1QsV0FBVyxDQUNaLENBQUM7SUFFRixNQUFNLG1CQUFtQixHQUFrQixhQUFhLENBQ3RELGtCQUFrQixDQUNGLENBQUM7SUFFbkIsTUFBTSxvQkFBb0IsR0FBa0IsbUJBQW1CLENBQUMsTUFBTSxDQUNwRSxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxLQUFLLFNBQVMsSUFBSSxDQUFDLENBQUMsWUFBWSxLQUFLLGFBQWEsQ0FDM0QsQ0FBQztJQUVGLElBQUksb0JBQW9CLENBQUMsTUFBTSxFQUFFO1FBQy9CLE9BQU8sb0JBQW9CLENBQUM7S0FDN0I7U0FBTTtRQUNMLE9BQU8sRUFBRSxDQUFDO0tBQ1g7QUFDSCxDQUFDLENBQUM7QUEvQlcsUUFBQSx5QkFBeUIsNkJBK0JwQztBQUVLLE1BQU0seUJBQXlCLEdBQUcsS0FBSyxFQUM1QyxRQUFnQixFQUNoQixJQUFhLEVBQ2IsR0FBWSxFQUNZLEVBQUU7SUFDMUIsTUFBTSxNQUFNLEdBQUcsTUFBTSxvQkFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUV6QyxNQUFNLFFBQVEsR0FBRyxJQUFJLEtBQUssWUFBWSxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQztJQUUxRCxNQUFNLFNBQVMsR0FBRyx3QkFBd0IsUUFBUSxVQUFVLFFBQVEsV0FDbEUsR0FBRyxhQUFILEdBQUcsY0FBSCxHQUFHLEdBQUksR0FDVCxFQUFFLENBQUM7SUFDSCxNQUFNLGtCQUFrQixHQUF5QixNQUFNLE1BQU0sQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUMzRSxTQUFTLEVBQ1QsV0FBVyxDQUNaLENBQUM7SUFFRixNQUFNLG1CQUFtQixHQUFrQixhQUFhLENBQ3RELGtCQUFrQixDQUNGLENBQUM7SUFFbkIsTUFBTSxvQkFBb0IsR0FBa0IsbUJBQW1CLENBQUMsTUFBTSxDQUNwRSxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxLQUFLLFNBQVMsSUFBSSxDQUFDLENBQUMsWUFBWSxLQUFLLGFBQWEsQ0FDM0QsQ0FBQztJQUVGLElBQUksb0JBQW9CLENBQUMsTUFBTSxFQUFFO1FBQy9CLE9BQU8sb0JBQW9CLENBQUM7S0FDN0I7U0FBTTtRQUNMLE9BQU8sRUFBRSxDQUFDO0tBQ1g7QUFDSCxDQUFDLENBQUM7QUE5QlcsUUFBQSx5QkFBeUIsNkJBOEJwQyJ9 \ No newline at end of file diff --git a/build/main/lib/observation.spec.d.ts b/build/main/lib/observation.spec.d.ts deleted file mode 100644 index e69de29..0000000 diff --git a/build/main/lib/observation.spec.js b/build/main/lib/observation.spec.js deleted file mode 100644 index e18d2bf..0000000 --- a/build/main/lib/observation.spec.js +++ /dev/null @@ -1 +0,0 @@ -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2JzZXJ2YXRpb24uc3BlYy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NvdXJjZS9saWIvb2JzZXJ2YXRpb24uc3BlYy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0= \ No newline at end of file diff --git a/build/main/lib/observation/index.d.ts b/build/main/lib/observation/index.d.ts deleted file mode 100644 index e4db0b8..0000000 --- a/build/main/lib/observation/index.d.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './observation'; diff --git a/build/main/lib/observation/index.js b/build/main/lib/observation/index.js deleted file mode 100644 index 6d3df05..0000000 --- a/build/main/lib/observation/index.js +++ /dev/null @@ -1,18 +0,0 @@ -"use strict"; -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - var desc = Object.getOwnPropertyDescriptor(m, k); - if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { - desc = { enumerable: true, get: function() { return m[k]; } }; - } - Object.defineProperty(o, k2, desc); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -__exportStar(require("./observation"), exports); -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zb3VyY2UvbGliL29ic2VydmF0aW9uL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSxnREFBOEIifQ== \ No newline at end of file diff --git a/build/main/lib/observation/observation.d.ts b/build/main/lib/observation/observation.d.ts deleted file mode 100644 index 970aa7f..0000000 --- a/build/main/lib/observation/observation.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { Observation } from 'fhir/r4'; -import type { ObservationMode } from '../../types'; -export declare const getObservation: (code: string) => Promise; -export declare const getObservations: (code: string, mode?: ObservationMode, sort?: string, max?: string) => Promise; -export declare const getObservationsByValueSet: (valueSet: string, sort?: string, max?: string) => Promise; -export declare const getObservationsByCategory: (category: string, sort?: string, max?: string) => Promise; diff --git a/build/main/lib/observation/observation.js b/build/main/lib/observation/observation.js deleted file mode 100644 index 04f8599..0000000 --- a/build/main/lib/observation/observation.js +++ /dev/null @@ -1,109 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.getObservationsByCategory = exports.getObservationsByValueSet = exports.getObservations = exports.getObservation = void 0; -const fhirclient_1 = __importDefault(require("fhirclient")); -const mode_1 = require("../../constants/mode"); -const json_1 = require("../../query/json"); -const loglevel_1 = __importDefault(require("../../utils/loglevel")); -const observation_util_1 = require("./observation.util"); -const getObservation = async (code) => { - if (!code) { - loglevel_1.default.error('getObservation - code not found'); - return (0, observation_util_1.notFoundResponse)(); - } - const client = await fhirclient_1.default.oauth2.ready(); - loglevel_1.default.info(`getObservation - start with code - ${code}`); - const queryPath = `Observation?${mode_1.EccMode.code}=http://loinc.org|${code}&_sort=-date&_count=1`; - const observationRequest = await client.patient.request(queryPath, observation_util_1.fhirOptions); - const observationResource = (0, observation_util_1.resourcesFrom)(observationRequest); - const filteredObservations = observationResource.filter((v) => v !== undefined && v.resourceType === 'Observation'); - if (!filteredObservations.length) { - loglevel_1.default.error('getObservation - empty observation'); - return (0, observation_util_1.notFoundResponse)(code); - } - loglevel_1.default.info(`getObservation - successful with code ${code} - with status ${filteredObservations[0].status}`); - loglevel_1.default.debug({ serviceName: 'getObservation', result: filteredObservations[0] }); - return filteredObservations[0]; -}; -exports.getObservation = getObservation; -const getObservations = async (code, mode, sort, max) => { - var _a; - if (!code || !mode) { - loglevel_1.default.error('getObservations - required parameters not found - (code, mode)'); - return []; - } - const client = await fhirclient_1.default.oauth2.ready(); - const sortType = sort === 'descending' ? '-date' : 'date'; - loglevel_1.default.info(`getObservations - start with code - ${code} - ${mode} ${sort} ${max}`); - const queryPath = `Observation?${(_a = mode_1.EccMode[mode]) !== null && _a !== void 0 ? _a : mode_1.EccMode.code}=http://loinc.org|${code}&_sort=${sortType}&_count=${max !== null && max !== void 0 ? max : 100}`; - const observationRequest = await client.patient.request(queryPath, observation_util_1.fhirOptions); - const observationResource = (0, observation_util_1.resourcesFrom)(observationRequest); - const filteredObservations = observationResource.filter((v) => v !== undefined && v.resourceType === 'Observation'); - if (!filteredObservations.length) { - loglevel_1.default.error('getObservations - empty observations'); - return []; - } - loglevel_1.default.info(`getObservations - successful with code ${code} - with length ${filteredObservations.length}`); - loglevel_1.default.debug({ serviceName: 'getObservations', result: filteredObservations }); - return filteredObservations; -}; -exports.getObservations = getObservations; -const getObservationsByValueSet = async (valueSet, sort, max) => { - if (!valueSet) { - loglevel_1.default.error('getObservationsByValueSet - valueSet not found'); - return []; - } - const client = await fhirclient_1.default.oauth2.ready(); - loglevel_1.default.info('getObservationsByValueSet - getAllCodes'); - const codes = await (0, json_1.getAllCodes)(valueSet); - const combinedCodes = codes.join(','); - if (!combinedCodes) { - loglevel_1.default.error('getObservationsByValueSet - getAllCodes empty'); - return []; - } - const sortType = sort === 'descending' ? '-date' : 'date'; - loglevel_1.default.info(`getObservationsByValueSet - start with valueSet - ${valueSet} - ${sort} ${max}`); - const queryPath = `Observation?${mode_1.EccMode.code}=${combinedCodes}&_sort=${sortType}&_count=${max}`; - const observationRequest = await client.patient.request(queryPath, observation_util_1.fhirOptions); - const observationResource = (0, observation_util_1.resourcesFrom)(observationRequest); - const filteredObservations = observationResource.filter((v) => v !== undefined && v.resourceType === 'Observation'); - if (!filteredObservations.length) { - loglevel_1.default.error('getObservationsByValueSet - valueSet not found'); - return []; - } - loglevel_1.default.info(`getObservationsByValueSet - successful with valueSet ${valueSet} - with length ${filteredObservations.length}`); - loglevel_1.default.debug({ - serviceName: 'getObservationsByValueSet', - result: filteredObservations, - }); - return filteredObservations; -}; -exports.getObservationsByValueSet = getObservationsByValueSet; -const getObservationsByCategory = async (category, sort, max) => { - if (!category) { - loglevel_1.default.error('getObservationsByCategory - category not found'); - return []; - } - const client = await fhirclient_1.default.oauth2.ready(); - const sortType = sort === 'descending' ? '-date' : 'date'; - loglevel_1.default.info(`getObservationsByCategory - start with category - ${category} - ${sort} ${max}`); - const queryPath = `Observation?category=${category}&_sort=${sortType}&_count=${max !== null && max !== void 0 ? max : 100}`; - const observationRequest = await client.patient.request(queryPath, observation_util_1.fhirOptions); - const observationResource = (0, observation_util_1.resourcesFrom)(observationRequest); - const filteredObservations = observationResource.filter((v) => v !== undefined && v.resourceType === 'Observation'); - if (!filteredObservations.length) { - loglevel_1.default.error('getObservationsByCategory - empty observations'); - return []; - } - loglevel_1.default.info(`getObservationsByCategory - successful with category ${category} - with length ${filteredObservations.length}`); - loglevel_1.default.debug({ - serviceName: 'getObservationsByCategory', - result: filteredObservations, - }); - return filteredObservations; -}; -exports.getObservationsByCategory = getObservationsByCategory; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2JzZXJ2YXRpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zb3VyY2UvbGliL29ic2VydmF0aW9uL29ic2VydmF0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7OztBQUNBLDREQUE4QjtBQUc5QiwrQ0FBK0M7QUFDL0MsMkNBQStDO0FBRS9DLG9FQUF1QztBQUV2Qyx5REFJNEI7QUFFckIsTUFBTSxjQUFjLEdBQUcsS0FBSyxFQUFFLElBQVksRUFBd0IsRUFBRTtJQUN6RSxJQUFJLENBQUMsSUFBSSxFQUFFO1FBQ1Qsa0JBQUcsQ0FBQyxLQUFLLENBQUMsaUNBQWlDLENBQUMsQ0FBQztRQUM3QyxPQUFPLElBQUEsbUNBQWdCLEdBQTRCLENBQUM7S0FDckQ7SUFFRCxNQUFNLE1BQU0sR0FBRyxNQUFNLG9CQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDO0lBRXpDLGtCQUFHLENBQUMsSUFBSSxDQUFDLHNDQUFzQyxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQ3ZELE1BQU0sU0FBUyxHQUFHLGVBQWUsY0FBTyxDQUFDLElBQUkscUJBQXFCLElBQUksdUJBQXVCLENBQUM7SUFDOUYsTUFBTSxrQkFBa0IsR0FBeUIsTUFBTSxNQUFNLENBQUMsT0FBTyxDQUFDLE9BQU8sQ0FDM0UsU0FBUyxFQUNULDhCQUFXLENBQ1osQ0FBQztJQUVGLE1BQU0sbUJBQW1CLEdBQWtCLElBQUEsZ0NBQWEsRUFDdEQsa0JBQWtCLENBQ0YsQ0FBQztJQUVuQixNQUFNLG9CQUFvQixHQUFrQixtQkFBbUIsQ0FBQyxNQUFNLENBQ3BFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEtBQUssU0FBUyxJQUFJLENBQUMsQ0FBQyxZQUFZLEtBQUssYUFBYSxDQUMzRCxDQUFDO0lBRUYsSUFBSSxDQUFDLG9CQUFvQixDQUFDLE1BQU0sRUFBRTtRQUNoQyxrQkFBRyxDQUFDLEtBQUssQ0FBQyxvQ0FBb0MsQ0FBQyxDQUFDO1FBQ2hELE9BQU8sSUFBQSxtQ0FBZ0IsRUFBQyxJQUFJLENBQTJCLENBQUM7S0FDekQ7SUFFRCxrQkFBRyxDQUFDLElBQUksQ0FDTix5Q0FBeUMsSUFBSSxrQkFBa0Isb0JBQW9CLENBQUMsQ0FBQyxDQUFDLENBQUMsTUFBTSxFQUFFLENBQ2hHLENBQUM7SUFDRixrQkFBRyxDQUFDLEtBQUssQ0FBQyxFQUFFLFdBQVcsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLEVBQUUsb0JBQW9CLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDO0lBQzlFLE9BQU8sb0JBQW9CLENBQUMsQ0FBQyxDQUFDLENBQUM7QUFDakMsQ0FBQyxDQUFDO0FBakNXLFFBQUEsY0FBYyxrQkFpQ3pCO0FBRUssTUFBTSxlQUFlLEdBQUcsS0FBSyxFQUNsQyxJQUFZLEVBQ1osSUFBc0IsRUFDdEIsSUFBYSxFQUNiLEdBQVksRUFDWSxFQUFFOztJQUMxQixJQUFJLENBQUMsSUFBSSxJQUFJLENBQUMsSUFBSSxFQUFFO1FBQ2xCLGtCQUFHLENBQUMsS0FBSyxDQUFDLGdFQUFnRSxDQUFDLENBQUM7UUFDNUUsT0FBTyxFQUFFLENBQUM7S0FDWDtJQUNELE1BQU0sTUFBTSxHQUFHLE1BQU0sb0JBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxFQUFFLENBQUM7SUFFekMsTUFBTSxRQUFRLEdBQUcsSUFBSSxLQUFLLFlBQVksQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUM7SUFFMUQsa0JBQUcsQ0FBQyxJQUFJLENBQ04sdUNBQXVDLElBQUksTUFBTSxJQUFJLElBQUksSUFBSSxJQUFJLEdBQUcsRUFBRSxDQUN2RSxDQUFDO0lBQ0YsTUFBTSxTQUFTLEdBQUcsZUFDaEIsTUFBQSxjQUFPLENBQUMsSUFBSSxDQUFDLG1DQUFJLGNBQU8sQ0FBQyxJQUMzQixxQkFBcUIsSUFBSSxVQUFVLFFBQVEsV0FBVyxHQUFHLGFBQUgsR0FBRyxjQUFILEdBQUcsR0FBSSxHQUFHLEVBQUUsQ0FBQztJQUNuRSxNQUFNLGtCQUFrQixHQUF5QixNQUFNLE1BQU0sQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUMzRSxTQUFTLEVBQ1QsOEJBQVcsQ0FDWixDQUFDO0lBRUYsTUFBTSxtQkFBbUIsR0FBa0IsSUFBQSxnQ0FBYSxFQUN0RCxrQkFBa0IsQ0FDRixDQUFDO0lBRW5CLE1BQU0sb0JBQW9CLEdBQWtCLG1CQUFtQixDQUFDLE1BQU0sQ0FDcEUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsS0FBSyxTQUFTLElBQUksQ0FBQyxDQUFDLFlBQVksS0FBSyxhQUFhLENBQzNELENBQUM7SUFFRixJQUFJLENBQUMsb0JBQW9CLENBQUMsTUFBTSxFQUFFO1FBQ2hDLGtCQUFHLENBQUMsS0FBSyxDQUFDLHNDQUFzQyxDQUFDLENBQUM7UUFDbEQsT0FBTyxFQUFFLENBQUM7S0FDWDtJQUVELGtCQUFHLENBQUMsSUFBSSxDQUNOLDBDQUEwQyxJQUFJLGtCQUFrQixvQkFBb0IsQ0FBQyxNQUFNLEVBQUUsQ0FDOUYsQ0FBQztJQUNGLGtCQUFHLENBQUMsS0FBSyxDQUFDLEVBQUUsV0FBVyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sRUFBRSxvQkFBb0IsRUFBRSxDQUFDLENBQUM7SUFDNUUsT0FBTyxvQkFBb0IsQ0FBQztBQUM5QixDQUFDLENBQUM7QUEzQ1csUUFBQSxlQUFlLG1CQTJDMUI7QUFFSyxNQUFNLHlCQUF5QixHQUFHLEtBQUssRUFDNUMsUUFBZ0IsRUFDaEIsSUFBYSxFQUNiLEdBQVksRUFDWSxFQUFFO0lBQzFCLElBQUksQ0FBQyxRQUFRLEVBQUU7UUFDYixrQkFBRyxDQUFDLEtBQUssQ0FBQyxnREFBZ0QsQ0FBQyxDQUFDO1FBQzVELE9BQU8sRUFBRSxDQUFDO0tBQ1g7SUFFRCxNQUFNLE1BQU0sR0FBRyxNQUFNLG9CQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDO0lBRXpDLGtCQUFHLENBQUMsSUFBSSxDQUFDLHlDQUF5QyxDQUFDLENBQUM7SUFDcEQsTUFBTSxLQUFLLEdBQUcsTUFBTSxJQUFBLGtCQUFXLEVBQUMsUUFBUSxDQUFDLENBQUM7SUFDMUMsTUFBTSxhQUFhLEdBQUcsS0FBSyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQztJQUV0QyxJQUFJLENBQUMsYUFBYSxFQUFFO1FBQ2xCLGtCQUFHLENBQUMsS0FBSyxDQUFDLCtDQUErQyxDQUFDLENBQUM7UUFDM0QsT0FBTyxFQUFFLENBQUM7S0FDWDtJQUVELE1BQU0sUUFBUSxHQUFHLElBQUksS0FBSyxZQUFZLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDO0lBRTFELGtCQUFHLENBQUMsSUFBSSxDQUNOLHFEQUFxRCxRQUFRLE1BQU0sSUFBSSxJQUFJLEdBQUcsRUFBRSxDQUNqRixDQUFDO0lBRUYsTUFBTSxTQUFTLEdBQUcsZUFBZSxjQUFPLENBQUMsSUFBSSxJQUFJLGFBQWEsVUFBVSxRQUFRLFdBQVcsR0FBRyxFQUFFLENBQUM7SUFDakcsTUFBTSxrQkFBa0IsR0FBeUIsTUFBTSxNQUFNLENBQUMsT0FBTyxDQUFDLE9BQU8sQ0FDM0UsU0FBUyxFQUNULDhCQUFXLENBQ1osQ0FBQztJQUVGLE1BQU0sbUJBQW1CLEdBQWtCLElBQUEsZ0NBQWEsRUFDdEQsa0JBQWtCLENBQ0YsQ0FBQztJQUVuQixNQUFNLG9CQUFvQixHQUFrQixtQkFBbUIsQ0FBQyxNQUFNLENBQ3BFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEtBQUssU0FBUyxJQUFJLENBQUMsQ0FBQyxZQUFZLEtBQUssYUFBYSxDQUMzRCxDQUFDO0lBRUYsSUFBSSxDQUFDLG9CQUFvQixDQUFDLE1BQU0sRUFBRTtRQUNoQyxrQkFBRyxDQUFDLEtBQUssQ0FBQyxnREFBZ0QsQ0FBQyxDQUFDO1FBQzVELE9BQU8sRUFBRSxDQUFDO0tBQ1g7SUFFRCxrQkFBRyxDQUFDLElBQUksQ0FDTix3REFBd0QsUUFBUSxrQkFBa0Isb0JBQW9CLENBQUMsTUFBTSxFQUFFLENBQ2hILENBQUM7SUFDRixrQkFBRyxDQUFDLEtBQUssQ0FBQztRQUNSLFdBQVcsRUFBRSwyQkFBMkI7UUFDeEMsTUFBTSxFQUFFLG9CQUFvQjtLQUM3QixDQUFDLENBQUM7SUFDSCxPQUFPLG9CQUFvQixDQUFDO0FBQzlCLENBQUMsQ0FBQztBQXREVyxRQUFBLHlCQUF5Qiw2QkFzRHBDO0FBRUssTUFBTSx5QkFBeUIsR0FBRyxLQUFLLEVBQzVDLFFBQWdCLEVBQ2hCLElBQWEsRUFDYixHQUFZLEVBQ1ksRUFBRTtJQUMxQixJQUFJLENBQUMsUUFBUSxFQUFFO1FBQ2Isa0JBQUcsQ0FBQyxLQUFLLENBQUMsZ0RBQWdELENBQUMsQ0FBQztRQUM1RCxPQUFPLEVBQUUsQ0FBQztLQUNYO0lBQ0QsTUFBTSxNQUFNLEdBQUcsTUFBTSxvQkFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUV6QyxNQUFNLFFBQVEsR0FBRyxJQUFJLEtBQUssWUFBWSxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQztJQUUxRCxrQkFBRyxDQUFDLElBQUksQ0FDTixxREFBcUQsUUFBUSxNQUFNLElBQUksSUFBSSxHQUFHLEVBQUUsQ0FDakYsQ0FBQztJQUVGLE1BQU0sU0FBUyxHQUFHLHdCQUF3QixRQUFRLFVBQVUsUUFBUSxXQUNsRSxHQUFHLGFBQUgsR0FBRyxjQUFILEdBQUcsR0FBSSxHQUNULEVBQUUsQ0FBQztJQUNILE1BQU0sa0JBQWtCLEdBQXlCLE1BQU0sTUFBTSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQzNFLFNBQVMsRUFDVCw4QkFBVyxDQUNaLENBQUM7SUFFRixNQUFNLG1CQUFtQixHQUFrQixJQUFBLGdDQUFhLEVBQ3RELGtCQUFrQixDQUNGLENBQUM7SUFFbkIsTUFBTSxvQkFBb0IsR0FBa0IsbUJBQW1CLENBQUMsTUFBTSxDQUNwRSxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxLQUFLLFNBQVMsSUFBSSxDQUFDLENBQUMsWUFBWSxLQUFLLGFBQWEsQ0FDM0QsQ0FBQztJQUVGLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxNQUFNLEVBQUU7UUFDaEMsa0JBQUcsQ0FBQyxLQUFLLENBQUMsZ0RBQWdELENBQUMsQ0FBQztRQUM1RCxPQUFPLEVBQUUsQ0FBQztLQUNYO0lBRUQsa0JBQUcsQ0FBQyxJQUFJLENBQ04sd0RBQXdELFFBQVEsa0JBQWtCLG9CQUFvQixDQUFDLE1BQU0sRUFBRSxDQUNoSCxDQUFDO0lBQ0Ysa0JBQUcsQ0FBQyxLQUFLLENBQUM7UUFDUixXQUFXLEVBQUUsMkJBQTJCO1FBQ3hDLE1BQU0sRUFBRSxvQkFBb0I7S0FDN0IsQ0FBQyxDQUFDO0lBQ0gsT0FBTyxvQkFBb0IsQ0FBQztBQUM5QixDQUFDLENBQUM7QUE5Q1csUUFBQSx5QkFBeUIsNkJBOENwQyJ9 \ No newline at end of file diff --git a/build/main/lib/observation/observation.spec.d.ts b/build/main/lib/observation/observation.spec.d.ts deleted file mode 100644 index e69de29..0000000 diff --git a/build/main/lib/observation/observation.spec.js b/build/main/lib/observation/observation.spec.js deleted file mode 100644 index 62bf6d4..0000000 --- a/build/main/lib/observation/observation.spec.js +++ /dev/null @@ -1,2 +0,0 @@ -// noop -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2JzZXJ2YXRpb24uc3BlYy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NvdXJjZS9saWIvb2JzZXJ2YXRpb24vb2JzZXJ2YXRpb24uc3BlYy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPIn0= \ No newline at end of file diff --git a/build/main/lib/observation/observation.util.d.ts b/build/main/lib/observation/observation.util.d.ts deleted file mode 100644 index c85ce64..0000000 --- a/build/main/lib/observation/observation.util.d.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { Observation, Resource } from 'fhir/r4'; -import { fhirclient } from 'fhirclient/lib/types'; -export declare const fhirOptions: fhirclient.FhirOptions; -export declare const notFoundResponse: (code?: string) => { - code: string; - status: string; - value: { - stringValue: string; - valueType: string; - }; -}; -export declare const resourcesFrom: (response: fhirclient.JsonArray) => Resource[]; -export declare const getValue: (obs: Observation) => any; diff --git a/build/main/lib/observation/observation.util.js b/build/main/lib/observation/observation.util.js deleted file mode 100644 index 0088456..0000000 --- a/build/main/lib/observation/observation.util.js +++ /dev/null @@ -1,64 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.getValue = exports.resourcesFrom = exports.notFoundResponse = exports.fhirOptions = void 0; -exports.fhirOptions = { - pageLimit: 0, -}; -const notFoundResponse = (code) => ({ - code, - status: 'notfound', - value: { - stringValue: 'No Data Available', - valueType: 'string', - }, -}); -exports.notFoundResponse = notFoundResponse; -const resourcesFrom = (response) => { - const firstEntries = response[0]; - const entries = (firstEntries === null || firstEntries === void 0 ? void 0 : firstEntries.entry) - ? firstEntries.entry - : []; - return entries - .map((entry) => entry === null || entry === void 0 ? void 0 : entry.resource) - .filter((resource) => resource.resourceType !== 'OperationOutcome'); -}; -exports.resourcesFrom = resourcesFrom; -const getValue = (obs) => { - if (obs.valueQuantity) { - return { - valueQuantity: obs.valueQuantity, - }; - } - else if (obs.valueBoolean) { - return { - valueBoolean: obs.valueBoolean, - }; - } - else if (obs.valueInteger) { - return { - valueInteger: obs.valueInteger, - }; - } - else if (obs.valueString) { - return { - valueString: obs.valueString, - }; - } - else if (obs.valueRange) { - return { - valueRange: obs.valueRange, - }; - } - else if (obs.valueCodeableConcept) { - return { - valueCodeableConcept: obs.valueCodeableConcept, - }; - } - else { - return { - value: 'Unknown type', - }; - } -}; -exports.getValue = getValue; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2JzZXJ2YXRpb24udXRpbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NvdXJjZS9saWIvb2JzZXJ2YXRpb24vb2JzZXJ2YXRpb24udXRpbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFHYSxRQUFBLFdBQVcsR0FBMkI7SUFDakQsU0FBUyxFQUFFLENBQUM7Q0FDYixDQUFDO0FBRUssTUFBTSxnQkFBZ0IsR0FBRyxDQUFDLElBQWEsRUFBRSxFQUFFLENBQUMsQ0FBQztJQUNsRCxJQUFJO0lBQ0osTUFBTSxFQUFFLFVBQVU7SUFDbEIsS0FBSyxFQUFFO1FBQ0wsV0FBVyxFQUFFLG1CQUFtQjtRQUNoQyxTQUFTLEVBQUUsUUFBUTtLQUNwQjtDQUNGLENBQUMsQ0FBQztBQVBVLFFBQUEsZ0JBQWdCLG9CQU8xQjtBQUVJLE1BQU0sYUFBYSxHQUFHLENBQUMsUUFBOEIsRUFBYyxFQUFFO0lBQzFFLE1BQU0sWUFBWSxHQUFHLFFBQVEsQ0FBQyxDQUFDLENBQTBCLENBQUM7SUFDMUQsTUFBTSxPQUFPLEdBQTRCLENBQUEsWUFBWSxhQUFaLFlBQVksdUJBQVosWUFBWSxDQUFFLEtBQUs7UUFDMUQsQ0FBQyxDQUFFLFlBQVksQ0FBQyxLQUFpQztRQUNqRCxDQUFDLENBQUMsRUFBRSxDQUFDO0lBQ1AsT0FBTyxPQUFPO1NBQ1gsR0FBRyxDQUFDLENBQUMsS0FBNEIsRUFBRSxFQUFFLENBQUMsS0FBSyxhQUFMLEtBQUssdUJBQUwsS0FBSyxDQUFFLFFBQWUsQ0FBQztTQUM3RCxNQUFNLENBQ0wsQ0FBQyxRQUFrQixFQUFFLEVBQUUsQ0FBQyxRQUFRLENBQUMsWUFBWSxLQUFLLGtCQUFrQixDQUNyRSxDQUFDO0FBQ04sQ0FBQyxDQUFDO0FBVlcsUUFBQSxhQUFhLGlCQVV4QjtBQUVLLE1BQU0sUUFBUSxHQUFHLENBQUMsR0FBZ0IsRUFBTyxFQUFFO0lBQ2hELElBQUksR0FBRyxDQUFDLGFBQWEsRUFBRTtRQUNyQixPQUFPO1lBQ0wsYUFBYSxFQUFFLEdBQUcsQ0FBQyxhQUFhO1NBQ2pDLENBQUM7S0FDSDtTQUFNLElBQUksR0FBRyxDQUFDLFlBQVksRUFBRTtRQUMzQixPQUFPO1lBQ0wsWUFBWSxFQUFFLEdBQUcsQ0FBQyxZQUFZO1NBQy9CLENBQUM7S0FDSDtTQUFNLElBQUksR0FBRyxDQUFDLFlBQVksRUFBRTtRQUMzQixPQUFPO1lBQ0wsWUFBWSxFQUFFLEdBQUcsQ0FBQyxZQUFZO1NBQy9CLENBQUM7S0FDSDtTQUFNLElBQUksR0FBRyxDQUFDLFdBQVcsRUFBRTtRQUMxQixPQUFPO1lBQ0wsV0FBVyxFQUFFLEdBQUcsQ0FBQyxXQUFXO1NBQzdCLENBQUM7S0FDSDtTQUFNLElBQUksR0FBRyxDQUFDLFVBQVUsRUFBRTtRQUN6QixPQUFPO1lBQ0wsVUFBVSxFQUFFLEdBQUcsQ0FBQyxVQUFVO1NBQzNCLENBQUM7S0FDSDtTQUFNLElBQUksR0FBRyxDQUFDLG9CQUFvQixFQUFFO1FBQ25DLE9BQU87WUFDTCxvQkFBb0IsRUFBRSxHQUFHLENBQUMsb0JBQW9CO1NBQy9DLENBQUM7S0FDSDtTQUFNO1FBQ0wsT0FBTztZQUNMLEtBQUssRUFBRSxjQUFjO1NBQ3RCLENBQUM7S0FDSDtBQUNILENBQUMsQ0FBQztBQTlCVyxRQUFBLFFBQVEsWUE4Qm5CIn0= \ No newline at end of file diff --git a/build/main/lib/questionnaire.d.ts b/build/main/lib/questionnaire.d.ts deleted file mode 100644 index ce98b93..0000000 --- a/build/main/lib/questionnaire.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { QuestionnaireResponse } from 'fhir/r4'; -export declare const getQuestionnaireItem: (code: string) => Promise; -export declare const getQuestionnaireItems: (code: string, count?: string, sort?: string) => Promise; diff --git a/build/main/lib/questionnaire.js b/build/main/lib/questionnaire.js deleted file mode 100644 index c3f83cd..0000000 --- a/build/main/lib/questionnaire.js +++ /dev/null @@ -1,90 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.getQuestionnaireItems = exports.getQuestionnaireItem = void 0; -const fhirclient_1 = __importDefault(require("fhirclient")); -const observation_1 = require("./observation"); -const activeQuestionnaireStatus = ['active', 'draft', 'retired']; -const fhirOptions = { - pageLimit: 0, -}; -const notFoundResponse = (code) => ({ - code, - status: 'notfound', - type: 'QuestionnaireResponse', -}); -const resourcesFrom = (response) => { - const firstEntries = response[0]; - const entries = (firstEntries === null || firstEntries === void 0 ? void 0 : firstEntries.entry) - ? firstEntries.entry - : []; - return entries - .map((entry) => entry === null || entry === void 0 ? void 0 : entry.resource) - .filter((resource) => resource.resourceType !== 'OperationOutcome'); -}; -const getQuestionnaireCodes = async (code) => { - const client = await fhirclient_1.default.oauth2.ready(); - const queryPath = `Questionnaire?code=${code}&_summary=true`; - const questionnaireRequest = await client.request(queryPath, fhirOptions); - const questionnaireResource = resourcesFrom(questionnaireRequest); - const filteredQuestionnaire = questionnaireResource.filter((v) => v !== undefined && - v.resourceType === 'Questionnaire' && - activeQuestionnaireStatus.includes(v.status)); - const questionnaireCodes = filteredQuestionnaire.map((val) => val.id); - return questionnaireCodes.join(','); -}; -const getQuestionnaireItem = async (code) => { - const client = await fhirclient_1.default.oauth2.ready(); - const questionnaireCodes = await getQuestionnaireCodes(code); - if (questionnaireCodes) { - const queryPath = `QuestionnaireResponse?questionnaire=${questionnaireCodes}&status=completed,amended,in-progress&_sort=-authored&_count=1`; - const questionnaireRequest = await client.patient.request(queryPath, fhirOptions); - const questionnaireResource = resourcesFrom(questionnaireRequest); - const filteredQuestionnaire = questionnaireResource.filter((v) => v !== undefined && v.resourceType === 'QuestionnaireResponse'); - if (filteredQuestionnaire.length) { - return filteredQuestionnaire[0]; - } - else { - return notFoundResponse(code); - } - } - else { - const observation = await (0, observation_1.getObservation)(code); - const mappedObservation = { - item: [ - { - answer: [(0, observation_1.getValue)(observation)], - linkId: observation.code.coding[0].code, - }, - ], - resourceType: observation.resourceType, - authored: observation.issued, - }; - return mappedObservation; - } -}; -exports.getQuestionnaireItem = getQuestionnaireItem; -const getQuestionnaireItems = async (code, count, sort) => { - const client = await fhirclient_1.default.oauth2.ready(); - const questionnaireCodes = await getQuestionnaireCodes(code); - if (questionnaireCodes) { - const sortType = sort === 'ascending' ? 'date' : '-date'; - const queryPath = `QuestionnaireResponse?questionnaire=${questionnaireCodes}&_sort=${sortType}&_count=${count !== null && count !== void 0 ? count : '100'}`; - const questionnaireRequest = await client.patient.request(queryPath, fhirOptions); - const questionnaireResource = resourcesFrom(questionnaireRequest); - const filteredQuestionnaire = questionnaireResource.filter((v) => v !== undefined && v.resourceType === 'QuestionnaireResponse'); - if (filteredQuestionnaire.length) { - return filteredQuestionnaire; - } - else { - return []; - } - } - else { - return []; - } -}; -exports.getQuestionnaireItems = getQuestionnaireItems; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXVlc3Rpb25uYWlyZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NvdXJjZS9saWIvcXVlc3Rpb25uYWlyZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7QUFDQSw0REFBOEI7QUFHOUIsK0NBQXlEO0FBRXpELE1BQU0seUJBQXlCLEdBQUcsQ0FBQyxRQUFRLEVBQUUsT0FBTyxFQUFFLFNBQVMsQ0FBQyxDQUFDO0FBRWpFLE1BQU0sV0FBVyxHQUEyQjtJQUMxQyxTQUFTLEVBQUUsQ0FBQztDQUNiLENBQUM7QUFFRixNQUFNLGdCQUFnQixHQUFHLENBQUMsSUFBSSxFQUFFLEVBQUUsQ0FBQyxDQUFDO0lBQ2xDLElBQUk7SUFDSixNQUFNLEVBQUUsVUFBVTtJQUNsQixJQUFJLEVBQUUsdUJBQXVCO0NBQzlCLENBQUMsQ0FBQztBQUVILE1BQU0sYUFBYSxHQUFHLENBQUMsUUFBOEIsRUFBYyxFQUFFO0lBQ25FLE1BQU0sWUFBWSxHQUFHLFFBQVEsQ0FBQyxDQUFDLENBQTBCLENBQUM7SUFDMUQsTUFBTSxPQUFPLEdBQTRCLENBQUEsWUFBWSxhQUFaLFlBQVksdUJBQVosWUFBWSxDQUFFLEtBQUs7UUFDMUQsQ0FBQyxDQUFFLFlBQVksQ0FBQyxLQUFpQztRQUNqRCxDQUFDLENBQUMsRUFBRSxDQUFDO0lBQ1AsT0FBTyxPQUFPO1NBQ1gsR0FBRyxDQUFDLENBQUMsS0FBNEIsRUFBRSxFQUFFLENBQUMsS0FBSyxhQUFMLEtBQUssdUJBQUwsS0FBSyxDQUFFLFFBQWUsQ0FBQztTQUM3RCxNQUFNLENBQ0wsQ0FBQyxRQUFrQixFQUFFLEVBQUUsQ0FBQyxRQUFRLENBQUMsWUFBWSxLQUFLLGtCQUFrQixDQUNyRSxDQUFDO0FBQ04sQ0FBQyxDQUFDO0FBRUYsTUFBTSxxQkFBcUIsR0FBRyxLQUFLLEVBQUUsSUFBWSxFQUFtQixFQUFFO0lBQ3BFLE1BQU0sTUFBTSxHQUFHLE1BQU0sb0JBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxFQUFFLENBQUM7SUFDekMsTUFBTSxTQUFTLEdBQUcsc0JBQXNCLElBQUksZ0JBQWdCLENBQUM7SUFDN0QsTUFBTSxvQkFBb0IsR0FBeUIsTUFBTSxNQUFNLENBQUMsT0FBTyxDQUNyRSxTQUFTLEVBQ1QsV0FBVyxDQUNaLENBQUM7SUFFRixNQUFNLHFCQUFxQixHQUFvQixhQUFhLENBQzFELG9CQUFvQixDQUNGLENBQUM7SUFFckIsTUFBTSxxQkFBcUIsR0FBb0IscUJBQXFCLENBQUMsTUFBTSxDQUN6RSxDQUFDLENBQUMsRUFBRSxFQUFFLENBQ0osQ0FBQyxLQUFLLFNBQVM7UUFDZixDQUFDLENBQUMsWUFBWSxLQUFLLGVBQWU7UUFDbEMseUJBQXlCLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FDL0MsQ0FBQztJQUVGLE1BQU0sa0JBQWtCLEdBQUcscUJBQXFCLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxFQUFFLEVBQUUsQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLENBQUM7SUFFdEUsT0FBTyxrQkFBa0IsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7QUFDdEMsQ0FBQyxDQUFDO0FBRUssTUFBTSxvQkFBb0IsR0FBRyxLQUFLLEVBQ3ZDLElBQVksRUFDb0IsRUFBRTtJQUNsQyxNQUFNLE1BQU0sR0FBRyxNQUFNLG9CQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDO0lBQ3pDLE1BQU0sa0JBQWtCLEdBQUcsTUFBTSxxQkFBcUIsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUM3RCxJQUFJLGtCQUFrQixFQUFFO1FBQ3RCLE1BQU0sU0FBUyxHQUFHLHVDQUF1QyxrQkFBa0IsZ0VBQWdFLENBQUM7UUFDNUksTUFBTSxvQkFBb0IsR0FDeEIsTUFBTSxNQUFNLENBQUMsT0FBTyxDQUFDLE9BQU8sQ0FBQyxTQUFTLEVBQUUsV0FBVyxDQUFDLENBQUM7UUFFdkQsTUFBTSxxQkFBcUIsR0FBNEIsYUFBYSxDQUNsRSxvQkFBb0IsQ0FDTSxDQUFDO1FBRTdCLE1BQU0scUJBQXFCLEdBQ3pCLHFCQUFxQixDQUFDLE1BQU0sQ0FDMUIsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsS0FBSyxTQUFTLElBQUksQ0FBQyxDQUFDLFlBQVksS0FBSyx1QkFBdUIsQ0FDckUsQ0FBQztRQUVKLElBQUkscUJBQXFCLENBQUMsTUFBTSxFQUFFO1lBQ2hDLE9BQU8scUJBQXFCLENBQUMsQ0FBQyxDQUFDLENBQUM7U0FDakM7YUFBTTtZQUNMLE9BQU8sZ0JBQWdCLENBQUMsSUFBSSxDQUFxQyxDQUFDO1NBQ25FO0tBQ0Y7U0FBTTtRQUNMLE1BQU0sV0FBVyxHQUFHLE1BQU0sSUFBQSw0QkFBYyxFQUFDLElBQUksQ0FBQyxDQUFDO1FBRS9DLE1BQU0saUJBQWlCLEdBQUc7WUFDeEIsSUFBSSxFQUFFO2dCQUNKO29CQUNFLE1BQU0sRUFBRSxDQUFDLElBQUEsc0JBQVEsRUFBQyxXQUFXLENBQUMsQ0FBQztvQkFDL0IsTUFBTSxFQUFFLFdBQVcsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUk7aUJBQ3hDO2FBQ0Y7WUFDRCxZQUFZLEVBQUUsV0FBVyxDQUFDLFlBQVk7WUFDdEMsUUFBUSxFQUFFLFdBQVcsQ0FBQyxNQUFNO1NBQzdCLENBQUM7UUFFRixPQUFPLGlCQUFxRCxDQUFDO0tBQzlEO0FBQ0gsQ0FBQyxDQUFDO0FBeENXLFFBQUEsb0JBQW9CLHdCQXdDL0I7QUFFSyxNQUFNLHFCQUFxQixHQUFHLEtBQUssRUFDeEMsSUFBWSxFQUNaLEtBQWMsRUFDZCxJQUFhLEVBQ3FCLEVBQUU7SUFDcEMsTUFBTSxNQUFNLEdBQUcsTUFBTSxvQkFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUN6QyxNQUFNLGtCQUFrQixHQUFHLE1BQU0scUJBQXFCLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDN0QsSUFBSSxrQkFBa0IsRUFBRTtRQUN0QixNQUFNLFFBQVEsR0FBRyxJQUFJLEtBQUssV0FBVyxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQztRQUV6RCxNQUFNLFNBQVMsR0FBRyx1Q0FBdUMsa0JBQWtCLFVBQVUsUUFBUSxXQUMzRixLQUFLLGFBQUwsS0FBSyxjQUFMLEtBQUssR0FBSSxLQUNYLEVBQUUsQ0FBQztRQUNILE1BQU0sb0JBQW9CLEdBQ3hCLE1BQU0sTUFBTSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQUMsU0FBUyxFQUFFLFdBQVcsQ0FBQyxDQUFDO1FBRXZELE1BQU0scUJBQXFCLEdBQTRCLGFBQWEsQ0FDbEUsb0JBQW9CLENBQ00sQ0FBQztRQUU3QixNQUFNLHFCQUFxQixHQUN6QixxQkFBcUIsQ0FBQyxNQUFNLENBQzFCLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEtBQUssU0FBUyxJQUFJLENBQUMsQ0FBQyxZQUFZLEtBQUssdUJBQXVCLENBQ3JFLENBQUM7UUFFSixJQUFJLHFCQUFxQixDQUFDLE1BQU0sRUFBRTtZQUNoQyxPQUFPLHFCQUFxQixDQUFDO1NBQzlCO2FBQU07WUFDTCxPQUFPLEVBQUUsQ0FBQztTQUNYO0tBQ0Y7U0FBTTtRQUNMLE9BQU8sRUFBRSxDQUFDO0tBQ1g7QUFDSCxDQUFDLENBQUM7QUFqQ1csUUFBQSxxQkFBcUIseUJBaUNoQyJ9 \ No newline at end of file diff --git a/build/main/lib/questionnaire.spec.d.ts b/build/main/lib/questionnaire.spec.d.ts deleted file mode 100644 index e69de29..0000000 diff --git a/build/main/lib/questionnaire.spec.js b/build/main/lib/questionnaire.spec.js deleted file mode 100644 index 4411c4a..0000000 --- a/build/main/lib/questionnaire.spec.js +++ /dev/null @@ -1 +0,0 @@ -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXVlc3Rpb25uYWlyZS5zcGVjLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc291cmNlL2xpYi9xdWVzdGlvbm5haXJlLnNwZWMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9 \ No newline at end of file diff --git a/build/main/lib/questionnaire/index.d.ts b/build/main/lib/questionnaire/index.d.ts deleted file mode 100644 index 20db07b..0000000 --- a/build/main/lib/questionnaire/index.d.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './questionnaire'; diff --git a/build/main/lib/questionnaire/index.js b/build/main/lib/questionnaire/index.js deleted file mode 100644 index c314fad..0000000 --- a/build/main/lib/questionnaire/index.js +++ /dev/null @@ -1,18 +0,0 @@ -"use strict"; -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - var desc = Object.getOwnPropertyDescriptor(m, k); - if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { - desc = { enumerable: true, get: function() { return m[k]; } }; - } - Object.defineProperty(o, k2, desc); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -__exportStar(require("./questionnaire"), exports); -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zb3VyY2UvbGliL3F1ZXN0aW9ubmFpcmUvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLGtEQUFnQyJ9 \ No newline at end of file diff --git a/build/main/lib/questionnaire/questionnaire.d.ts b/build/main/lib/questionnaire/questionnaire.d.ts deleted file mode 100644 index ce98b93..0000000 --- a/build/main/lib/questionnaire/questionnaire.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { QuestionnaireResponse } from 'fhir/r4'; -export declare const getQuestionnaireItem: (code: string) => Promise; -export declare const getQuestionnaireItems: (code: string, count?: string, sort?: string) => Promise; diff --git a/build/main/lib/questionnaire/questionnaire.js b/build/main/lib/questionnaire/questionnaire.js deleted file mode 100644 index 7f23901..0000000 --- a/build/main/lib/questionnaire/questionnaire.js +++ /dev/null @@ -1,113 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.getQuestionnaireItems = exports.getQuestionnaireItem = void 0; -const fhirclient_1 = __importDefault(require("fhirclient")); -const loglevel_1 = __importDefault(require("../../utils/loglevel")); -const observation_1 = require("../observation"); -const observation_util_1 = require("../observation/observation.util"); -const questionnaire_util_1 = require("./questionnaire.util"); -const getQuestionnaireCodes = async (code) => { - if (!code) { - loglevel_1.default.error('getQuestionnaireCodes - code not found'); - return ''; - } - const client = await fhirclient_1.default.oauth2.ready(); - loglevel_1.default.info(`getQuestionnaireCodes - start with code - ${code}`); - const queryPath = `Questionnaire?code=${code}&_summary=true`; - const questionnaireRequest = await client.request(queryPath, questionnaire_util_1.fhirOptions); - const questionnaireResource = (0, questionnaire_util_1.resourcesFrom)(questionnaireRequest); - const filteredQuestionnaire = questionnaireResource.filter((v) => v !== undefined && - v.resourceType === 'Questionnaire' && - questionnaire_util_1.activeQuestionnaireStatus.includes(v.status)); - const questionnaireCodes = filteredQuestionnaire.map((val) => val.id); - const combinedQuestionnaireCodes = questionnaireCodes.join(','); - loglevel_1.default.info(`getQuestionnaireCodes - complete with codes - ${combinedQuestionnaireCodes}`); - return combinedQuestionnaireCodes; -}; -const getQuestionnaireItem = async (code) => { - if (!code) { - loglevel_1.default.error('getQuestionnaireItem - code not found'); - return (0, questionnaire_util_1.notFoundResponse)(); - } - const client = await fhirclient_1.default.oauth2.ready(); - loglevel_1.default.info(`getQuestionnaireItem - start with code - ${code}`); - const questionnaireCodes = await getQuestionnaireCodes(code); - if (questionnaireCodes) { - loglevel_1.default.info(`getQuestionnaireItem - start after get codes - ${questionnaireCodes}`); - const queryPath = `QuestionnaireResponse?questionnaire=${questionnaireCodes}&status=completed,amended,in-progress&_sort=-authored&_count=1`; - const questionnaireRequest = await client.patient.request(queryPath, questionnaire_util_1.fhirOptions); - const questionnaireResource = (0, questionnaire_util_1.resourcesFrom)(questionnaireRequest); - const filteredQuestionnaire = questionnaireResource.filter((v) => v !== undefined && v.resourceType === 'QuestionnaireResponse'); - if (!filteredQuestionnaire.length) { - loglevel_1.default.error('getQuestionnaireItem - empty questionnaire'); - return (0, questionnaire_util_1.notFoundResponse)(code); - } - loglevel_1.default.info(`getQuestionnaireItem - successful with code ${code} - with length ${filteredQuestionnaire.length}`); - loglevel_1.default.debug({ - serviceName: 'getQuestionnaireItem', - result: filteredQuestionnaire[0], - }); - return filteredQuestionnaire[0]; - } - else { - loglevel_1.default.info(`getQuestionnaireItem - start with observation code - ${code}`); - const observation = await (0, observation_1.getObservation)(code); - if (observation.status === 'notfound') { - loglevel_1.default.error('getQuestionnaireItem - empty observations'); - return (0, questionnaire_util_1.notFoundResponse)(code); - } - const mappedObservationToQuestioinnaireResponse = { - item: [ - { - answer: [(0, observation_util_1.getValue)(observation)], - linkId: observation.code.coding[0].code, - }, - ], - resourceType: observation.resourceType, - authored: observation.issued, - }; - loglevel_1.default.info(`getQuestionnaireItem - successful with code ${code} - with answer ${mappedObservationToQuestioinnaireResponse[0].answer}`); - loglevel_1.default.debug({ - serviceName: 'getQuestionnaireItem', - result: mappedObservationToQuestioinnaireResponse, - }); - return mappedObservationToQuestioinnaireResponse; - } -}; -exports.getQuestionnaireItem = getQuestionnaireItem; -const getQuestionnaireItems = async (code, count, sort) => { - if (!code) { - loglevel_1.default.error('getQuestionnaireItems - code not found'); - return []; - } - const client = await fhirclient_1.default.oauth2.ready(); - loglevel_1.default.info(`getQuestionnaireItems - start with code - ${code}`); - const questionnaireCodes = await getQuestionnaireCodes(code); - if (questionnaireCodes) { - loglevel_1.default.info(`getQuestionnaireItems - start after get codes - ${questionnaireCodes}`); - const sortType = sort === 'ascending' ? 'date' : '-date'; - const queryPath = `QuestionnaireResponse?questionnaire=${questionnaireCodes}&_sort=${sortType}&_count=${count !== null && count !== void 0 ? count : '100'}`; - const questionnaireRequest = await client.patient.request(queryPath, questionnaire_util_1.fhirOptions); - const questionnaireResource = (0, questionnaire_util_1.resourcesFrom)(questionnaireRequest); - const filteredQuestionnaire = questionnaireResource.filter((v) => v !== undefined && v.resourceType === 'QuestionnaireResponse'); - if (!filteredQuestionnaire.length) { - loglevel_1.default.error('getQuestionnaireItems - empty questionnaire'); - return []; - } - loglevel_1.default.info(`getQuestionnaireItems - successful with code ${code} - with length ${filteredQuestionnaire.length}`); - loglevel_1.default.debug({ - serviceName: 'getQuestionnaireItems', - result: filteredQuestionnaire, - }); - return filteredQuestionnaire; - } - else { - loglevel_1.default.error('getQuestionnaireItems - empty codes'); - return []; - } -}; -exports.getQuestionnaireItems = getQuestionnaireItems; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXVlc3Rpb25uYWlyZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NvdXJjZS9saWIvcXVlc3Rpb25uYWlyZS9xdWVzdGlvbm5haXJlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7OztBQUNBLDREQUE4QjtBQUc5QixvRUFBdUM7QUFDdkMsZ0RBQWdEO0FBQ2hELHNFQUEyRDtBQUUzRCw2REFLOEI7QUFFOUIsTUFBTSxxQkFBcUIsR0FBRyxLQUFLLEVBQUUsSUFBWSxFQUFtQixFQUFFO0lBQ3BFLElBQUksQ0FBQyxJQUFJLEVBQUU7UUFDVCxrQkFBRyxDQUFDLEtBQUssQ0FBQyx3Q0FBd0MsQ0FBQyxDQUFDO1FBQ3BELE9BQU8sRUFBRSxDQUFDO0tBQ1g7SUFFRCxNQUFNLE1BQU0sR0FBRyxNQUFNLG9CQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDO0lBRXpDLGtCQUFHLENBQUMsSUFBSSxDQUFDLDZDQUE2QyxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQzlELE1BQU0sU0FBUyxHQUFHLHNCQUFzQixJQUFJLGdCQUFnQixDQUFDO0lBQzdELE1BQU0sb0JBQW9CLEdBQXlCLE1BQU0sTUFBTSxDQUFDLE9BQU8sQ0FDckUsU0FBUyxFQUNULGdDQUFXLENBQ1osQ0FBQztJQUVGLE1BQU0scUJBQXFCLEdBQW9CLElBQUEsa0NBQWEsRUFDMUQsb0JBQW9CLENBQ0YsQ0FBQztJQUVyQixNQUFNLHFCQUFxQixHQUFvQixxQkFBcUIsQ0FBQyxNQUFNLENBQ3pFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FDSixDQUFDLEtBQUssU0FBUztRQUNmLENBQUMsQ0FBQyxZQUFZLEtBQUssZUFBZTtRQUNsQyw4Q0FBeUIsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUMvQyxDQUFDO0lBRUYsTUFBTSxrQkFBa0IsR0FBRyxxQkFBcUIsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLEVBQUUsRUFBRSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsQ0FBQztJQUN0RSxNQUFNLDBCQUEwQixHQUFHLGtCQUFrQixDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQztJQUVoRSxrQkFBRyxDQUFDLElBQUksQ0FDTixpREFBaUQsMEJBQTBCLEVBQUUsQ0FDOUUsQ0FBQztJQUVGLE9BQU8sMEJBQTBCLENBQUM7QUFDcEMsQ0FBQyxDQUFDO0FBRUssTUFBTSxvQkFBb0IsR0FBRyxLQUFLLEVBQ3ZDLElBQVksRUFDb0IsRUFBRTtJQUNsQyxJQUFJLENBQUMsSUFBSSxFQUFFO1FBQ1Qsa0JBQUcsQ0FBQyxLQUFLLENBQUMsdUNBQXVDLENBQUMsQ0FBQztRQUNuRCxPQUFPLElBQUEscUNBQWdCLEdBQXNDLENBQUM7S0FDL0Q7SUFDRCxNQUFNLE1BQU0sR0FBRyxNQUFNLG9CQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDO0lBRXpDLGtCQUFHLENBQUMsSUFBSSxDQUFDLDRDQUE0QyxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQzdELE1BQU0sa0JBQWtCLEdBQUcsTUFBTSxxQkFBcUIsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUU3RCxJQUFJLGtCQUFrQixFQUFFO1FBQ3RCLGtCQUFHLENBQUMsSUFBSSxDQUNOLGtEQUFrRCxrQkFBa0IsRUFBRSxDQUN2RSxDQUFDO1FBQ0YsTUFBTSxTQUFTLEdBQUcsdUNBQXVDLGtCQUFrQixnRUFBZ0UsQ0FBQztRQUM1SSxNQUFNLG9CQUFvQixHQUN4QixNQUFNLE1BQU0sQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUFDLFNBQVMsRUFBRSxnQ0FBVyxDQUFDLENBQUM7UUFFdkQsTUFBTSxxQkFBcUIsR0FBNEIsSUFBQSxrQ0FBYSxFQUNsRSxvQkFBb0IsQ0FDTSxDQUFDO1FBRTdCLE1BQU0scUJBQXFCLEdBQ3pCLHFCQUFxQixDQUFDLE1BQU0sQ0FDMUIsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsS0FBSyxTQUFTLElBQUksQ0FBQyxDQUFDLFlBQVksS0FBSyx1QkFBdUIsQ0FDckUsQ0FBQztRQUVKLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxNQUFNLEVBQUU7WUFDakMsa0JBQUcsQ0FBQyxLQUFLLENBQUMsNENBQTRDLENBQUMsQ0FBQztZQUN4RCxPQUFPLElBQUEscUNBQWdCLEVBQUMsSUFBSSxDQUFxQyxDQUFDO1NBQ25FO1FBRUQsa0JBQUcsQ0FBQyxJQUFJLENBQ04sK0NBQStDLElBQUksa0JBQWtCLHFCQUFxQixDQUFDLE1BQU0sRUFBRSxDQUNwRyxDQUFDO1FBQ0Ysa0JBQUcsQ0FBQyxLQUFLLENBQUM7WUFDUixXQUFXLEVBQUUsc0JBQXNCO1lBQ25DLE1BQU0sRUFBRSxxQkFBcUIsQ0FBQyxDQUFDLENBQUM7U0FDakMsQ0FBQyxDQUFDO1FBQ0gsT0FBTyxxQkFBcUIsQ0FBQyxDQUFDLENBQUMsQ0FBQztLQUNqQztTQUFNO1FBQ0wsa0JBQUcsQ0FBQyxJQUFJLENBQUMsd0RBQXdELElBQUksRUFBRSxDQUFDLENBQUM7UUFDekUsTUFBTSxXQUFXLEdBQVEsTUFBTSxJQUFBLDRCQUFjLEVBQUMsSUFBSSxDQUFDLENBQUM7UUFFcEQsSUFBSSxXQUFXLENBQUMsTUFBTSxLQUFLLFVBQVUsRUFBRTtZQUNyQyxrQkFBRyxDQUFDLEtBQUssQ0FBQywyQ0FBMkMsQ0FBQyxDQUFDO1lBQ3ZELE9BQU8sSUFBQSxxQ0FBZ0IsRUFBQyxJQUFJLENBQXFDLENBQUM7U0FDbkU7UUFFRCxNQUFNLHlDQUF5QyxHQUFHO1lBQ2hELElBQUksRUFBRTtnQkFDSjtvQkFDRSxNQUFNLEVBQUUsQ0FBQyxJQUFBLDJCQUFRLEVBQUMsV0FBVyxDQUFDLENBQUM7b0JBQy9CLE1BQU0sRUFBRSxXQUFXLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJO2lCQUN4QzthQUNGO1lBQ0QsWUFBWSxFQUFFLFdBQVcsQ0FBQyxZQUFZO1lBQ3RDLFFBQVEsRUFBRSxXQUFXLENBQUMsTUFBTTtTQUM3QixDQUFDO1FBRUYsa0JBQUcsQ0FBQyxJQUFJLENBQ04sK0NBQStDLElBQUksa0JBQWtCLHlDQUF5QyxDQUFDLENBQUMsQ0FBQyxDQUFDLE1BQU0sRUFBRSxDQUMzSCxDQUFDO1FBQ0Ysa0JBQUcsQ0FBQyxLQUFLLENBQUM7WUFDUixXQUFXLEVBQUUsc0JBQXNCO1lBQ25DLE1BQU0sRUFBRSx5Q0FBeUM7U0FDbEQsQ0FBQyxDQUFDO1FBQ0gsT0FBTyx5Q0FBNkUsQ0FBQztLQUN0RjtBQUNILENBQUMsQ0FBQztBQXZFVyxRQUFBLG9CQUFvQix3QkF1RS9CO0FBRUssTUFBTSxxQkFBcUIsR0FBRyxLQUFLLEVBQ3hDLElBQVksRUFDWixLQUFjLEVBQ2QsSUFBYSxFQUNxQixFQUFFO0lBQ3BDLElBQUksQ0FBQyxJQUFJLEVBQUU7UUFDVCxrQkFBRyxDQUFDLEtBQUssQ0FBQyx3Q0FBd0MsQ0FBQyxDQUFDO1FBQ3BELE9BQU8sRUFBRSxDQUFDO0tBQ1g7SUFDRCxNQUFNLE1BQU0sR0FBRyxNQUFNLG9CQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDO0lBRXpDLGtCQUFHLENBQUMsSUFBSSxDQUFDLDZDQUE2QyxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQzlELE1BQU0sa0JBQWtCLEdBQUcsTUFBTSxxQkFBcUIsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUU3RCxJQUFJLGtCQUFrQixFQUFFO1FBQ3RCLGtCQUFHLENBQUMsSUFBSSxDQUNOLG1EQUFtRCxrQkFBa0IsRUFBRSxDQUN4RSxDQUFDO1FBQ0YsTUFBTSxRQUFRLEdBQUcsSUFBSSxLQUFLLFdBQVcsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUM7UUFFekQsTUFBTSxTQUFTLEdBQUcsdUNBQXVDLGtCQUFrQixVQUFVLFFBQVEsV0FDM0YsS0FBSyxhQUFMLEtBQUssY0FBTCxLQUFLLEdBQUksS0FDWCxFQUFFLENBQUM7UUFDSCxNQUFNLG9CQUFvQixHQUN4QixNQUFNLE1BQU0sQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUFDLFNBQVMsRUFBRSxnQ0FBVyxDQUFDLENBQUM7UUFFdkQsTUFBTSxxQkFBcUIsR0FBNEIsSUFBQSxrQ0FBYSxFQUNsRSxvQkFBb0IsQ0FDTSxDQUFDO1FBRTdCLE1BQU0scUJBQXFCLEdBQ3pCLHFCQUFxQixDQUFDLE1BQU0sQ0FDMUIsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsS0FBSyxTQUFTLElBQUksQ0FBQyxDQUFDLFlBQVksS0FBSyx1QkFBdUIsQ0FDckUsQ0FBQztRQUVKLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxNQUFNLEVBQUU7WUFDakMsa0JBQUcsQ0FBQyxLQUFLLENBQUMsNkNBQTZDLENBQUMsQ0FBQztZQUN6RCxPQUFPLEVBQUUsQ0FBQztTQUNYO1FBRUQsa0JBQUcsQ0FBQyxJQUFJLENBQ04sZ0RBQWdELElBQUksa0JBQWtCLHFCQUFxQixDQUFDLE1BQU0sRUFBRSxDQUNyRyxDQUFDO1FBQ0Ysa0JBQUcsQ0FBQyxLQUFLLENBQUM7WUFDUixXQUFXLEVBQUUsdUJBQXVCO1lBQ3BDLE1BQU0sRUFBRSxxQkFBcUI7U0FDOUIsQ0FBQyxDQUFDO1FBQ0gsT0FBTyxxQkFBcUIsQ0FBQztLQUM5QjtTQUFNO1FBQ0wsa0JBQUcsQ0FBQyxLQUFLLENBQUMscUNBQXFDLENBQUMsQ0FBQztRQUNqRCxPQUFPLEVBQUUsQ0FBQztLQUNYO0FBQ0gsQ0FBQyxDQUFDO0FBcERXLFFBQUEscUJBQXFCLHlCQW9EaEMifQ== \ No newline at end of file diff --git a/build/main/lib/questionnaire/questionnaire.spec.d.ts b/build/main/lib/questionnaire/questionnaire.spec.d.ts deleted file mode 100644 index e69de29..0000000 diff --git a/build/main/lib/questionnaire/questionnaire.spec.js b/build/main/lib/questionnaire/questionnaire.spec.js deleted file mode 100644 index 9e5d35e..0000000 --- a/build/main/lib/questionnaire/questionnaire.spec.js +++ /dev/null @@ -1,2 +0,0 @@ -// noop -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXVlc3Rpb25uYWlyZS5zcGVjLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc291cmNlL2xpYi9xdWVzdGlvbm5haXJlL3F1ZXN0aW9ubmFpcmUuc3BlYy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPIn0= \ No newline at end of file diff --git a/build/main/lib/questionnaire/questionnaire.util.d.ts b/build/main/lib/questionnaire/questionnaire.util.d.ts deleted file mode 100644 index 113d904..0000000 --- a/build/main/lib/questionnaire/questionnaire.util.d.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { Resource } from 'fhir/r4'; -import { fhirclient } from 'fhirclient/lib/types'; -export declare const activeQuestionnaireStatus: string[]; -export declare const fhirOptions: fhirclient.FhirOptions; -export declare const notFoundResponse: (code?: string) => { - code: string; - status: string; - type: string; -}; -export declare const resourcesFrom: (response: fhirclient.JsonArray) => Resource[]; diff --git a/build/main/lib/questionnaire/questionnaire.util.js b/build/main/lib/questionnaire/questionnaire.util.js deleted file mode 100644 index bf7db5e..0000000 --- a/build/main/lib/questionnaire/questionnaire.util.js +++ /dev/null @@ -1,24 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.resourcesFrom = exports.notFoundResponse = exports.fhirOptions = exports.activeQuestionnaireStatus = void 0; -exports.activeQuestionnaireStatus = ['active', 'draft', 'retired']; -exports.fhirOptions = { - pageLimit: 0, -}; -const notFoundResponse = (code) => ({ - code, - status: 'notfound', - type: 'QuestionnaireResponse', -}); -exports.notFoundResponse = notFoundResponse; -const resourcesFrom = (response) => { - const firstEntries = response[0]; - const entries = (firstEntries === null || firstEntries === void 0 ? void 0 : firstEntries.entry) - ? firstEntries.entry - : []; - return entries - .map((entry) => entry === null || entry === void 0 ? void 0 : entry.resource) - .filter((resource) => resource.resourceType !== 'OperationOutcome'); -}; -exports.resourcesFrom = resourcesFrom; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXVlc3Rpb25uYWlyZS51dGlsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc291cmNlL2xpYi9xdWVzdGlvbm5haXJlL3F1ZXN0aW9ubmFpcmUudXRpbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFHYSxRQUFBLHlCQUF5QixHQUFHLENBQUMsUUFBUSxFQUFFLE9BQU8sRUFBRSxTQUFTLENBQUMsQ0FBQztBQUUzRCxRQUFBLFdBQVcsR0FBMkI7SUFDakQsU0FBUyxFQUFFLENBQUM7Q0FDYixDQUFDO0FBRUssTUFBTSxnQkFBZ0IsR0FBRyxDQUFDLElBQWEsRUFBRSxFQUFFLENBQUMsQ0FBQztJQUNsRCxJQUFJO0lBQ0osTUFBTSxFQUFFLFVBQVU7SUFDbEIsSUFBSSxFQUFFLHVCQUF1QjtDQUM5QixDQUFDLENBQUM7QUFKVSxRQUFBLGdCQUFnQixvQkFJMUI7QUFFSSxNQUFNLGFBQWEsR0FBRyxDQUFDLFFBQThCLEVBQWMsRUFBRTtJQUMxRSxNQUFNLFlBQVksR0FBRyxRQUFRLENBQUMsQ0FBQyxDQUEwQixDQUFDO0lBQzFELE1BQU0sT0FBTyxHQUE0QixDQUFBLFlBQVksYUFBWixZQUFZLHVCQUFaLFlBQVksQ0FBRSxLQUFLO1FBQzFELENBQUMsQ0FBRSxZQUFZLENBQUMsS0FBaUM7UUFDakQsQ0FBQyxDQUFDLEVBQUUsQ0FBQztJQUNQLE9BQU8sT0FBTztTQUNYLEdBQUcsQ0FBQyxDQUFDLEtBQTRCLEVBQUUsRUFBRSxDQUFDLEtBQUssYUFBTCxLQUFLLHVCQUFMLEtBQUssQ0FBRSxRQUFlLENBQUM7U0FDN0QsTUFBTSxDQUNMLENBQUMsUUFBa0IsRUFBRSxFQUFFLENBQUMsUUFBUSxDQUFDLFlBQVksS0FBSyxrQkFBa0IsQ0FDckUsQ0FBQztBQUNOLENBQUMsQ0FBQztBQVZXLFFBQUEsYUFBYSxpQkFVeEIifQ== \ No newline at end of file diff --git a/build/main/query/convertCsvToJson.d.ts b/build/main/query/convertCsvToJson.d.ts deleted file mode 100644 index e69de29..0000000 diff --git a/build/main/query/convertCsvToJson.js b/build/main/query/convertCsvToJson.js deleted file mode 100644 index 2834213..0000000 --- a/build/main/query/convertCsvToJson.js +++ /dev/null @@ -1,11 +0,0 @@ -// README: This is only to convert CSV to JSON, to run this, change it to js and simply run node convertCsvToJson.js -// const fs = require('fs') -// const path = require('path') -// let csvToJson = require('convert-csv-to-json'); -// const dirname = path.resolve('../resources'); -// const files = fs.readdirSync(dirname) -// files.forEach((filename) => { -// const filenameTrim = filename.replace('.csv', ''); -// csvToJson.fieldDelimiter(',').generateJsonFileFromCsv(dirname + '/' + filename, dirname + '/' + filenameTrim + '.json'); -// }) -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udmVydENzdlRvSnNvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NvdXJjZS9xdWVyeS9jb252ZXJ0Q3N2VG9Kc29uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLG9IQUFvSDtBQUVwSCwyQkFBMkI7QUFDM0IsK0JBQStCO0FBQy9CLGtEQUFrRDtBQUVsRCxnREFBZ0Q7QUFFaEQsd0NBQXdDO0FBRXhDLGdDQUFnQztBQUNoQyx1REFBdUQ7QUFDdkQsNkhBQTZIO0FBQzdILEtBQUsifQ== \ No newline at end of file diff --git a/build/main/query/json.d.ts b/build/main/query/json.d.ts deleted file mode 100644 index 1dcb436..0000000 --- a/build/main/query/json.d.ts +++ /dev/null @@ -1 +0,0 @@ -export declare const getAllCodes: (valueName: string) => Promise; diff --git a/build/main/query/json.js b/build/main/query/json.js deleted file mode 100644 index 4af7784..0000000 --- a/build/main/query/json.js +++ /dev/null @@ -1,46 +0,0 @@ -"use strict"; -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - var desc = Object.getOwnPropertyDescriptor(m, k); - if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { - desc = { enumerable: true, get: function() { return m[k]; } }; - } - Object.defineProperty(o, k2, desc); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.getAllCodes = void 0; -const internalGetCodeKey = (uuesystem, code) => { - return uuesystem + '%7C' + code; -}; -const getCodeKey = (system, code) => { - return internalGetCodeKey(encodeURIComponent(system), code); -}; -const getAllCodes = async (valueName) => { - var _a; - const valueSets = await Promise.resolve().then(() => __importStar(require(`../resources/${valueName}.json`))); - const mappedCodes = (_a = Object.values(valueSets)) === null || _a === void 0 ? void 0 : _a.reduce((accumulator, current) => { - if (current && !Array.isArray(current)) { - // eslint-disable-next-line functional/immutable-data - accumulator.push(getCodeKey(current === null || current === void 0 ? void 0 : current.System, current === null || current === void 0 ? void 0 : current.Code)); - } - return accumulator; - }, []); - return mappedCodes; -}; -exports.getAllCodes = getAllCodes; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoianNvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NvdXJjZS9xdWVyeS9qc29uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRUEsTUFBTSxrQkFBa0IsR0FBRyxDQUFDLFNBQWlCLEVBQUUsSUFBWSxFQUFVLEVBQUU7SUFDckUsT0FBTyxTQUFTLEdBQUcsS0FBSyxHQUFHLElBQUksQ0FBQztBQUNsQyxDQUFDLENBQUM7QUFFRixNQUFNLFVBQVUsR0FBRyxDQUFDLE1BQWMsRUFBRSxJQUFZLEVBQVUsRUFBRTtJQUMxRCxPQUFPLGtCQUFrQixDQUFDLGtCQUFrQixDQUFDLE1BQU0sQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDO0FBQzlELENBQUMsQ0FBQztBQUVLLE1BQU0sV0FBVyxHQUFHLEtBQUssRUFBRSxTQUFpQixFQUFxQixFQUFFOztJQUN4RSxNQUFNLFNBQVMsR0FBaUIsd0RBQzlCLGdCQUFnQixTQUFTLE9BQU8sR0FDakMsQ0FBQztJQUVGLE1BQU0sV0FBVyxHQUFhLE1BQUEsTUFBTSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsMENBQUUsTUFBTSxDQUM1RCxDQUFDLFdBQVcsRUFBRSxPQUFPLEVBQUUsRUFBRTtRQUN2QixJQUFJLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUFDLEVBQUU7WUFDdEMscURBQXFEO1lBQ3JELFdBQVcsQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLE9BQU8sYUFBUCxPQUFPLHVCQUFQLE9BQU8sQ0FBRSxNQUFNLEVBQUUsT0FBTyxhQUFQLE9BQU8sdUJBQVAsT0FBTyxDQUFFLElBQUksQ0FBQyxDQUFDLENBQUM7U0FDOUQ7UUFFRCxPQUFPLFdBQVcsQ0FBQztJQUNyQixDQUFDLEVBQ0QsRUFBRSxDQUNILENBQUM7SUFFRixPQUFPLFdBQVcsQ0FBQztBQUNyQixDQUFDLENBQUM7QUFsQlcsUUFBQSxXQUFXLGVBa0J0QiJ9 \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1032.52.json b/build/main/resources/2.16.840.1.113762.1.4.1032.52.json deleted file mode 100644 index cb3f963..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1032.52.json +++ /dev/null @@ -1,860 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111490003", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111491004", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11941006", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "126943008", - "Display": "Separation anxiety (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1376001", - "Display": "Obsessive compulsive personality disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1380006", - "Display": "Agoraphobia without history of panic disorder with limited symptom attacks (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15277004", - "Display": "Hallucinogen-induced anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16266831000119100", - "Display": "Moderate major depressive disorder co-occurrent with anxiety single episode (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1686006", - "Display": "Sedative" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17496003", - "Display": "Organic anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1816003", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18193002", - "Display": "Hypochondriasis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191722009", - "Display": "Agoraphobia with panic attacks (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191736004", - "Display": "Obsessive-compulsive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "192037000", - "Display": "Acute panic state due to acute stress reaction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "192039002", - "Display": "Acute stupor state due to acute stress reaction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "192042008", - "Display": "Acute post-trauma stress state (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197480006", - "Display": "Anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19766004", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20876004", - "Display": "Inhalant-induced anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "21897009", - "Display": "Generalized anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22230001", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22621000119103", - "Display": "Anxiety disorder caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231504006", - "Display": "Mixed anxiety and depressive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24781009", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25501002", - "Display": "Social phobia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271952001", - "Display": "Stress and adjustment reaction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30059008", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313182004", - "Display": "Chronic post-traumatic stress disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3158007", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31781004", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318784009", - "Display": "Posttraumatic stress disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32388005", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34116005", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34938008", - "Display": "Alcohol-induced anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35607004", - "Display": "Panic disorder with agoraphobia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371631005", - "Display": "Panic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38328002", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "386810004", - "Display": "Phobic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39951001", - "Display": "Cannabis-induced anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428687006", - "Display": "Nightmares associated with chronic post-traumatic stress disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43150009", - "Display": "Panic disorder without agoraphobia with severe panic attacks (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "436001000124105", - "Display": "Insomnia due to anxiety and fear (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446175003", - "Display": "Acute posttraumatic stress disorder following military combat (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446180007", - "Display": "Delayed posttraumatic stress disorder following military combat (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47372000", - "Display": "Adjustment disorder with anxious mood (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47505003", - "Display": "Posttraumatic stress disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4932002", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49564006", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50026000", - "Display": "Psychoactive substance-induced organic anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50983008", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51493001", - "Display": "Cocaine-induced anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52910006", - "Display": "Anxiety disorder due to a general medical condition (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53956006", - "Display": "Panic disorder without agoraphobia with panic attacks in partial remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54587008", - "Display": "Simple phobia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5509004", - "Display": "Panic disorder with agoraphobia AND severe panic attacks (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55967005", - "Display": "Phencyclidine-induced anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56576003", - "Display": "Panic disorder without agoraphobia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59923000", - "Display": "Panic disorder with agoraphobia AND panic attacks in full remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61212007", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61569007", - "Display": "Agoraphobia without history of panic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62351001", - "Display": "Generalized social phobia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63701002", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63909006", - "Display": "Panic disorder with agoraphobia AND panic attacks in partial remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "64060000", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "65064003", - "Display": "Panic disorder without agoraphobia with moderate panic attacks (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67195008", - "Display": "Acute stress disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69479009", - "Display": "Anxiety hyperventilation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698693004", - "Display": "Adjustment disorder with anxious mood in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699241002", - "Display": "Chronic post-traumatic stress disorder following military combat (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7031000119100", - "Display": "Psychogenic fugue co-occurrent and due to stress reaction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70655008", - "Display": "Caffeine-induced anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70691001", - "Display": "Agoraphobia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724654009", - "Display": "Anxiety disorder caused by opioid (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724693000", - "Display": "Obsessive compulsive disorder caused by cocaine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724708007", - "Display": "Anxiety disorder caused by methylenedioxymethamphetamine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724722007", - "Display": "Anxiety disorder caused by dissociative drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724723002", - "Display": "Anxiety disorder caused by ketamine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724730008", - "Display": "Obsessive compulsive disorder caused by psychoactive substance (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72861004", - "Display": "Panic disorder without agoraphobia with mild panic attacks (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74010007", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76812003", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76868007", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8185002", - "Display": "Panic disorder with agoraphobia AND moderate panic attacks (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82339009", - "Display": "Amphetamine-induced anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82415003", - "Display": "Agoraphobia without history of panic disorder without limited symptom attacks (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82494000", - "Display": "Panic disorder without agoraphobia with panic attacks in full remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82738004", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83631006", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87798009", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89948007", - "Display": "Panic disorder with agoraphobia AND mild panic attacks (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F06.4", - "Display": "Anxiety disorder due to known physiological condition" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.180", - "Display": "Alcohol abuse with alcohol-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.280", - "Display": "Alcohol dependence with alcohol-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.980", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.180", - "Display": "Cannabis abuse with cannabis-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.280", - "Display": "Cannabis dependence with cannabis-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.980", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.180", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.280", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.980", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.180", - "Display": "Cocaine abuse with cocaine-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.280", - "Display": "Cocaine dependence with cocaine-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.980", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.180", - "Display": "Other stimulant abuse with stimulant-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.280", - "Display": "Other stimulant dependence with stimulant-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.980", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.180", - "Display": "Hallucinogen abuse with hallucinogen-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.280", - "Display": "Hallucinogen dependence with hallucinogen-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.980", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.180", - "Display": "Inhalant abuse with inhalant-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.280", - "Display": "Inhalant dependence with inhalant-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.980", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.180", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.280", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.980", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F40.00", - "Display": "Agoraphobia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F40.01", - "Display": "Agoraphobia with panic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F40.02", - "Display": "Agoraphobia without panic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F40.10", - "Display": "Social phobia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F40.11", - "Display": "Social phobia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F40.240", - "Display": "Claustrophobia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F40.8", - "Display": "Other phobic anxiety disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F40.9", - "Display": "Phobic anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F41.0", - "Display": "Panic disorder [episodic paroxysmal anxiety]" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F41.1", - "Display": "Generalized anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F41.3", - "Display": "Other mixed anxiety disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F41.8", - "Display": "Other specified anxiety disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F41.9", - "Display": "Anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F42.2", - "Display": "Mixed obsessional thoughts and acts" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F42.4", - "Display": "Excoriation (skin-picking) disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F42.8", - "Display": "Other obsessive-compulsive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F42.9", - "Display": "Obsessive-compulsive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.0", - "Display": "Acute stress reaction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.10", - "Display": "Post-traumatic stress disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.11", - "Display": "Post-traumatic stress disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.12", - "Display": "Post-traumatic stress disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.22", - "Display": "Adjustment disorder with anxiety" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.23", - "Display": "Adjustment disorder with mixed anxiety and depressed mood" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.8", - "Display": "Other reactions to severe stress" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.9", - "Display": "Reaction to severe stress" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F45.21", - "Display": "Hypochondriasis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R46.81", - "Display": "Obsessive-compulsive behavior" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1032.9.json b/build/main/resources/2.16.840.1.113762.1.4.1032.9.json deleted file mode 100644 index 895af70..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1032.9.json +++ /dev/null @@ -1,536 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10725009", - "Display": "Benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1078301000112109", - "Display": "Multiple drug intolerant hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111438007", - "Display": "Hypertension secondary to renal disease in obstetric context (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1201005", - "Display": "Benign essential hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123799005", - "Display": "Renovascular hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123800009", - "Display": "Goldblatt hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14973001", - "Display": "Renal sclerosis with hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "169465000", - "Display": "Hypertension caused by oral contraceptive pill (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194783001", - "Display": "Secondary malignant renovascular hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194785008", - "Display": "Secondary benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194788005", - "Display": "Hypertension secondary to endocrine disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194791005", - "Display": "Hypertension caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199008003", - "Display": "Pre-existing secondary hypertension complicating pregnancy" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26078007", - "Display": "Hypertension secondary to renal disease complicating AND/OR reason for care during childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28119000", - "Display": "Renal hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31992008", - "Display": "Secondary hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371125006", - "Display": "Labile essential hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39018007", - "Display": "Renal arterial hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39727004", - "Display": "Hypertension secondary to renal disease complicating AND/OR reason for care during puerperium (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "401.0", - "Display": "Malignant essential hypertension" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "401.1", - "Display": "Benign essential hypertension" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "401.9", - "Display": "Unspecified essential hypertension" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "402.00", - "Display": "Malignant hypertensive heart disease without heart failure" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "402.01", - "Display": "Malignant hypertensive heart disease with heart failure" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "402.10", - "Display": "Benign hypertensive heart disease without heart failure" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "402.11", - "Display": "Benign hypertensive heart disease with heart failure" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "402.90", - "Display": "Unspecified hypertensive heart disease without heart failure" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "402.91", - "Display": "Unspecified hypertensive heart disease with heart failure" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "403.00", - "Display": "Hypertensive chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "403.01", - "Display": "Hypertensive chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "403.10", - "Display": "Hypertensive chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "403.11", - "Display": "Hypertensive chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "403.90", - "Display": "Hypertensive chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "403.91", - "Display": "Hypertensive chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.00", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.01", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.02", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.03", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.10", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.11", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.12", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.13", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.90", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.91", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.92", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.93", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "405.01", - "Display": "Malignant renovascular hypertension" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "405.09", - "Display": "Other malignant secondary hypertension" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "405.11", - "Display": "Benign renovascular hypertension" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "405.19", - "Display": "Other benign secondary hypertension" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "405.91", - "Display": "Unspecified renovascular hypertension" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "405.99", - "Display": "Other unspecified secondary hypertension" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427889009", - "Display": "Hypertension associated with transplantation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428575007", - "Display": "Hypertension secondary to kidney transplant (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429457004", - "Display": "Systolic essential hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "461301000124109", - "Display": "Resistant hypertensive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46481004", - "Display": "Low-renin essential hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48146000", - "Display": "Diastolic hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48552006", - "Display": "Hypertension secondary to renal disease complicating AND/OR reason for care during pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56218007", - "Display": "Systolic hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "57684003", - "Display": "Parenchymal renal hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59621000", - "Display": "Essential hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59720008", - "Display": "Sustained diastolic hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "65518004", - "Display": "Labile diastolic hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73410007", - "Display": "Benign secondary renovascular hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74451002", - "Display": "Secondary diastolic hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762463000", - "Display": "Diastolic hypertension co-occurrent with systolic hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78975002", - "Display": "Malignant essential hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89242004", - "Display": "Malignant secondary hypertension (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I10", - "Display": "Essential (primary) hypertension" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I11.0", - "Display": "Hypertensive heart disease with heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I11.9", - "Display": "Hypertensive heart disease without heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I12.0", - "Display": "Hypertensive chronic kidney disease with stage 5 chronic kidney disease or end stage renal disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I12.9", - "Display": "Hypertensive chronic kidney disease with stage 1 through stage 4 chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.0", - "Display": "Hypertensive heart and chronic kidney disease with heart failure and stage 1 through stage 4 chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.1", - "Display": "Hypertensive heart and chronic kidney disease without heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.10", - "Display": "Hypertensive heart and chronic kidney disease without heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.11", - "Display": "Hypertensive heart and chronic kidney disease without heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.2", - "Display": "Hypertensive heart and chronic kidney disease with heart failure and with stage 5 chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I15", - "Display": "Secondary hypertension" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I15.0", - "Display": "Renovascular hypertension" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I15.1", - "Display": "Hypertension secondary to other renal disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I15.2", - "Display": "Hypertension secondary to endocrine disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I15.8", - "Display": "Other secondary hypertension" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I15.9", - "Display": "Secondary hypertension" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I16", - "Display": "Hypertensive crisis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I16.0", - "Display": "Hypertensive urgency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I16.1", - "Display": "Hypertensive emergency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I16.9", - "Display": "Hypertensive crisis" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.102.json b/build/main/resources/2.16.840.1.113762.1.4.1222.102.json deleted file mode 100644 index 8547e39..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.102.json +++ /dev/null @@ -1,104 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1091000119108", - "Display": "Obstructive sleep apnea of child (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1101000119103", - "Display": "Obstructive sleep apnea of adult (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16275741000119100", - "Display": "Severe pediatric obstructive sleep apnea (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230493001", - "Display": "Mixed sleep apnea (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "361208003", - "Display": "Primary sleep apnea of newborn (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41975002", - "Display": "Insomnia with sleep apnea (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442164004", - "Display": "Organic sleep apnea (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719976001", - "Display": "Glaucoma and sleep apnea syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73430006", - "Display": "Sleep apnea (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "765751002", - "Display": "Autoimmune encephalopathy with parasomnia and obstructive sleep apnea (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "774068004", - "Display": "AT-hook DNA binding motif containing 1-related intellectual disability" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78275009", - "Display": "Obstructive sleep apnea syndrome (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G47.30", - "Display": "Sleep apnea" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G47.31", - "Display": "Primary central sleep apnea" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G47.33", - "Display": "Obstructive sleep apnea (adult) (pediatric)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G47.37", - "Display": "Central sleep apnea in conditions classified elsewhere" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G47.39", - "Display": "Other sleep apnea" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.103.json b/build/main/resources/2.16.840.1.113762.1.4.1222.103.json deleted file mode 100644 index 41a2885..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.103.json +++ /dev/null @@ -1,74 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "192042008", - "Display": "Acute post-trauma stress state (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313182004", - "Display": "Chronic post-traumatic stress disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318784009", - "Display": "Posttraumatic stress disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443919007", - "Display": "Complex posttraumatic stress disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446175003", - "Display": "Acute posttraumatic stress disorder following military combat (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446180007", - "Display": "Delayed posttraumatic stress disorder following military combat (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47505003", - "Display": "Posttraumatic stress disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699241002", - "Display": "Chronic post-traumatic stress disorder following military combat (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.1", - "Display": "Post-traumatic stress disorder (PTSD)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.10", - "Display": "Post-traumatic stress disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.11", - "Display": "Post-traumatic stress disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.12", - "Display": "Post-traumatic stress disorder" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.111.json b/build/main/resources/2.16.840.1.113762.1.4.1222.111.json deleted file mode 100644 index 493d366..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.111.json +++ /dev/null @@ -1,32 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14682-9", - "Display": "Creatinine [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2160-0", - "Display": "Creatinine [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "38483-4", - "Display": "Creatinine [Mass/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "59826-8", - "Display": "Creatinine [Moles/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "77140-2", - "Display": "Creatinine [Moles/volume] in Serum" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.113.json b/build/main/resources/2.16.840.1.113762.1.4.1222.113.json deleted file mode 100644 index a3aaceb..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.113.json +++ /dev/null @@ -1,56 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "11064-3", - "Display": "Urea nitrogen [Mass/volume] in Serum or Plasma --post dialysis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "11065-0", - "Display": "Urea nitrogen [Mass/volume] in Serum or Plasma --pre dialysis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "12961-9", - "Display": "Urea nitrogen [Mass/volume] in Arterial blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "12962-7", - "Display": "Urea nitrogen [Mass/volume] in Venous blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "12963-5", - "Display": "Urea nitrogen [Mass/volume] in Peripheral blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14937-7", - "Display": "Urea nitrogen [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "3094-0", - "Display": "Urea nitrogen [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "59570-2", - "Display": "Urea nitrogen [Moles/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "6299-2", - "Display": "Urea nitrogen [Mass/volume] in Blood" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.114.json b/build/main/resources/2.16.840.1.113762.1.4.1222.114.json deleted file mode 100644 index 200baa9..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.114.json +++ /dev/null @@ -1,56 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "20509-6", - "Display": "Hemoglobin [Mass/volume] in Blood by calculation" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30313-1", - "Display": "Hemoglobin [Mass/volume] in Arterial blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30350-3", - "Display": "Hemoglobin [Mass/volume] in Venous blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30351-1", - "Display": "Hemoglobin [Mass/volume] in Mixed venous blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30352-9", - "Display": "Hemoglobin [Mass/volume] in Capillary blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "59260-0", - "Display": "Hemoglobin [Moles/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "718-7", - "Display": "Hemoglobin [Mass/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "75928-2", - "Display": "Hemoglobin [Moles/volume] in Arterial blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "76768-1", - "Display": "Hemoglobin [Mass/volume] in Mixed venous blood by Oximetry" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.118.json b/build/main/resources/2.16.840.1.113762.1.4.1222.118.json deleted file mode 100644 index fc14135..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.118.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14801-5", - "Display": "Iron saturation [Molar fraction] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2502-3", - "Display": "Iron saturation [Mass Fraction] in Serum or Plasma" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.119.json b/build/main/resources/2.16.840.1.113762.1.4.1222.119.json deleted file mode 100644 index acb2f80..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.119.json +++ /dev/null @@ -1,50 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "17855-8", - "Display": "Hemoglobin A1c/Hemoglobin.total in Blood by calculation" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "17856-6", - "Display": "Hemoglobin A1c/Hemoglobin.total in Blood by HPLC" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "41995-2", - "Display": "Hemoglobin A1c [Mass/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "4548-4", - "Display": "Hemoglobin A1c/Hemoglobin.total in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "4549-2", - "Display": "Hemoglobin A1c/Hemoglobin.total in Blood by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "59261-8", - "Display": "Hemoglobin A1c/Hemoglobin.total in Blood by IFCC protocol" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "62388-4", - "Display": "Hemoglobin A1c/Hemoglobin.total in Blood by JDS/JSCC protocol" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "71875-9", - "Display": "Hemoglobin A1c/Hemoglobin.total [Pure mass fraction] in Blood" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.120.json b/build/main/resources/2.16.840.1.113762.1.4.1222.120.json deleted file mode 100644 index a023c6f..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.120.json +++ /dev/null @@ -1,38 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2823-3", - "Display": "Potassium [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "32713-0", - "Display": "Potassium [Moles/volume] in Arterial blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "39789-3", - "Display": "Potassium [Moles/volume] in Venous blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "41656-0", - "Display": "Potassium [Moles/volume] in Mixed venous blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "6298-4", - "Display": "Potassium [Moles/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "77142-8", - "Display": "Potassium [Moles/volume] in Serum" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.122.json b/build/main/resources/2.16.840.1.113762.1.4.1222.122.json deleted file mode 100644 index 2e7a0c7..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.122.json +++ /dev/null @@ -1,32 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "18281-6", - "Display": "Calcium [Moles/volume] corrected for total protein in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "29265-6", - "Display": "Calcium [Moles/volume] corrected for albumin in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "34907-6", - "Display": "Calcium [Mass/volume] corrected for total protein in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "46099-8", - "Display": "Calcium [Mass/volume] corrected for albumin in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "47597-0", - "Display": "Calcium [Moles/volume] corrected for total protein in Blood" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.123.json b/build/main/resources/2.16.840.1.113762.1.4.1222.123.json deleted file mode 100644 index b23cb46..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.123.json +++ /dev/null @@ -1,38 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14879-1", - "Display": "Phosphate [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2777-1", - "Display": "Phosphate [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35221-1", - "Display": "Phosphate [Mass or Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "48617-5", - "Display": "Phosphate [Mass/volume] in Serum or Plasma --post dialysis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "48641-5", - "Display": "Phosphate [Mass/volume] in Serum or Plasma --pre dialysis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "55972-4", - "Display": "Phosphate [Moles/volume] in Serum or Plasma --post dialysis" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.126.json b/build/main/resources/2.16.840.1.113762.1.4.1222.126.json deleted file mode 100644 index 02a6fed..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.126.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14635-7", - "Display": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "1989-3", - "Display": "25-hydroxyvitamin D3 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35365-6", - "Display": "Vitamin D+Metabolites [Mass/volume] in Serum or Plasma" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.128.json b/build/main/resources/2.16.840.1.113762.1.4.1222.128.json deleted file mode 100644 index 10e6359..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.128.json +++ /dev/null @@ -1,50 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "70960-0", - "Display": "Kt/V.Peritoneal Dialysis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "70961-8", - "Display": "Kt/V.Hemodialysis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "70963-4", - "Display": "Kt/V.Peritoneal Dialysis [Hume]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "70964-2", - "Display": "Kt/V.Peritoneal Dialysis [Watson]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "70965-9", - "Display": "Kt/V.Hemodialysis [Daugirdas II]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "70966-7", - "Display": "Kt/V.Hemodialysis [UKM]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "71341-2", - "Display": "Kt/V.Peritoneal Dialysis [Percent of body weight]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "71342-0", - "Display": "Kt/V.Hemodialysis [Derived]" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.129.json b/build/main/resources/2.16.840.1.113762.1.4.1222.129.json deleted file mode 100644 index 5f8b62b..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.129.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14866-8", - "Display": "Parathyrin.intact [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2731-8", - "Display": "Parathyrin.intact [Mass/volume] in Serum or Plasma" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.130.json b/build/main/resources/2.16.840.1.113762.1.4.1222.130.json deleted file mode 100644 index 8c96eea..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.130.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "1959-6", - "Display": "Bicarbonate [Moles/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "1963-8", - "Display": "Bicarbonate [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "48631-6", - "Display": "Bicarbonate [Moles/volume] in Serum --post dialysis" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.131.json b/build/main/resources/2.16.840.1.113762.1.4.1222.131.json deleted file mode 100644 index 34711d4..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.131.json +++ /dev/null @@ -1,32 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2947-0", - "Display": "Sodium [Moles/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2951-2", - "Display": "Sodium [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "32717-1", - "Display": "Sodium [Moles/volume] in Arterial blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "39791-9", - "Display": "Sodium [Moles/volume] in Venous blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "77139-4", - "Display": "Sodium [Moles/volume] in Serum" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.132.json b/build/main/resources/2.16.840.1.113762.1.4.1222.132.json deleted file mode 100644 index 5424d22..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.132.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2069-3", - "Display": "Chloride [Moles/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2075-0", - "Display": "Chloride [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "41649-5", - "Display": "Chloride [Moles/volume] in Venous blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "41650-3", - "Display": "Chloride [Moles/volume] in Arterial blood" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.135.json b/build/main/resources/2.16.840.1.113762.1.4.1222.135.json deleted file mode 100644 index 6d6ea5c..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.135.json +++ /dev/null @@ -1,146 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "11054-4", - "Display": "Cholesterol in LDL/Cholesterol in HDL [Mass Ratio] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "12771-2", - "Display": "Cholesterol in HDL [Presence] in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "12772-0", - "Display": "Cholesterol in HDL [Units/volume] in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14646-4", - "Display": "Cholesterol in HDL [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "16616-5", - "Display": "Cholesterol in HDL/Cholesterol in LDL [Mass Ratio] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "18263-4", - "Display": "Cholesterol in HDL [Mass/volume] in Serum or Plasma ultracentrifugate" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2085-9", - "Display": "Cholesterol in HDL [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "26015-8", - "Display": "Cholesterol in HDL 2 [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "26016-6", - "Display": "Cholesterol in HDL 2 [Mass/volume] in Serum or Plasma ultracentrifugate" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "26017-4", - "Display": "Cholesterol in HDL 3 [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "27340-9", - "Display": "Cholesterol in HDL [Presence] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35197-3", - "Display": "Cholesterol in HDL [Mass or Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35243-5", - "Display": "Cholesterol in HDL 3 [Mass or Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "43396-1", - "Display": "Cholesterol non HDL [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "44915-7", - "Display": "Cholesterol in LDL/Cholesterol in HDL [Molar ratio] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "47220-9", - "Display": "Cholesterol in HDL 4+5 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "47221-7", - "Display": "Cholesterol in HDL 1+2 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "47228-2", - "Display": "Cholesterol non HDL/Cholesterol.total [Mass Ratio] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "49130-8", - "Display": "Cholesterol in HDL [Mass/volume] in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "54467-6", - "Display": "Cholesterol in HDL 2a/Cholesterol in total HDL in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "54468-4", - "Display": "Cholesterol in HDL 2b/Cholesterol in total HDL in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "54469-2", - "Display": "Cholesterol in HDL 3a/Cholesterol in total HDL in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "54470-0", - "Display": "Cholesterol in HDL 3b/Cholesterol in total HDL in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "54471-8", - "Display": "Cholesterol in HDL 3c/Cholesterol in total HDL in Serum or Plasma by Electrophoresis" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.137.json b/build/main/resources/2.16.840.1.113762.1.4.1222.137.json deleted file mode 100644 index 7a1bd2b..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.137.json +++ /dev/null @@ -1,128 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "12951-0", - "Display": "Triglyceride [Mass/volume] in Serum or Plasma by calculation" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14927-8", - "Display": "Triglyceride [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "1644-4", - "Display": "Triglyceride [Mass/volume] in Serum or Plasma --12 hours fasting" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2571-8", - "Display": "Triglyceride [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "28554-4", - "Display": "Triglyceride [Presence] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "3043-7", - "Display": "Triglyceride [Mass/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "3045-2", - "Display": "Triglyceride+ester in IDL [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "3046-0", - "Display": "Triglyceride+ester in LDL [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "3047-8", - "Display": "Triglyceride+ester in VLDL [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "3048-6", - "Display": "Triglyceride [Mass/volume] in Serum or Plasma --fasting" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30524-3", - "Display": "Triglyceride [Moles/volume] in Serum or Plasma --12 hours fasting" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30570-6", - "Display": "Triglyceride [Percentile]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35360-7", - "Display": "Triglyceride in Lipoprotein a [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35361-5", - "Display": "Triglyceride in Lipoprotein a [Presence] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35362-3", - "Display": "Triglyceride in Chylomicrons [Presence] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35363-1", - "Display": "Triglyceride in Chylomicrons [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "47210-0", - "Display": "Triglyceride [Moles/volume] in Serum or Plasma --fasting" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53526-0", - "Display": "Triglyceride in VLDL [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53527-8", - "Display": "Triglyceride in HDL 2 [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53528-6", - "Display": "Triglyceride in HDL 3 [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "70218-3", - "Display": "Triglyceride [Moles/volume] in Blood" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.138.json b/build/main/resources/2.16.840.1.113762.1.4.1222.138.json deleted file mode 100644 index d6e834e..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.138.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33863-2", - "Display": "Cystatin C [Mass/volume] in Serum or Plasma" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.139.json b/build/main/resources/2.16.840.1.113762.1.4.1222.139.json deleted file mode 100644 index ebe150c..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.139.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14647-2", - "Display": "Cholesterol [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2093-3", - "Display": "Cholesterol [Mass/volume] in Serum or Plasma" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.14.json b/build/main/resources/2.16.840.1.113762.1.4.1222.14.json deleted file mode 100644 index 7095592..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.14.json +++ /dev/null @@ -1,116 +0,0 @@ -[ - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "0TY00Z0", - "Display": "Transplantation of Right Kidney" - }, - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "0TY00Z1", - "Display": "Transplantation of Right Kidney" - }, - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "0TY00Z2", - "Display": "Transplantation of Right Kidney" - }, - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "0TY10Z0", - "Display": "Transplantation of Left Kidney" - }, - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "0TY10Z1", - "Display": "Transplantation of Left Kidney" - }, - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "0TY10Z2", - "Display": "Transplantation of Left Kidney" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "175899003", - "Display": "Autotransplantation of kidney (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "175902000", - "Display": "Cadaveric renal transplant (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398887003", - "Display": "Renal replacement (procedure)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "50360", - "Display": "Renal allotransplantation" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "50365", - "Display": "Renal allotransplantation" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "50380", - "Display": "Renal autotransplantation" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6471000179103", - "Display": "Transplantation of kidney and pancreas (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70536003", - "Display": "Transplant of kidney (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "711411006", - "Display": "Allotransplantation of kidney from beating heart cadaver (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "711413009", - "Display": "Allotransplantation of kidney from non-beating heart cadaver (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "765478004", - "Display": "Allotransplantation of left kidney (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "765479007", - "Display": "Allotransplantation of right kidney (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "782655004", - "Display": "Laparoscopic transplant of kidney using robotic assistance (procedure)" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.140.json b/build/main/resources/2.16.840.1.113762.1.4.1222.140.json deleted file mode 100644 index 7acd910..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.140.json +++ /dev/null @@ -1,38 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14723-1", - "Display": "Ferritin [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14724-9", - "Display": "Ferritin [Interpretation] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "20567-4", - "Display": "Ferritin [Mass/volume] in Serum or Plasma by Immunoassay" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2276-4", - "Display": "Ferritin [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "24373-3", - "Display": "Ferritin [Mass/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35209-6", - "Display": "Ferritin [Mass or Moles/volume] in Serum or Plasma" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.141.json b/build/main/resources/2.16.840.1.113762.1.4.1222.141.json deleted file mode 100644 index a4f8aa0..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.141.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "26453-1", - "Display": "Erythrocytes [#/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "789-8", - "Display": "Erythrocytes [#/volume] in Blood by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "790-6", - "Display": "Erythrocytes [#/volume] in Blood by Manual count" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.142.json b/build/main/resources/2.16.840.1.113762.1.4.1222.142.json deleted file mode 100644 index 9811f77..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.142.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "26464-8", - "Display": "Leukocytes [#/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "49498-9", - "Display": "Leukocytes [#/volume] in Blood by Estimate" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "6690-2", - "Display": "Leukocytes [#/volume] in Blood by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "804-5", - "Display": "Leukocytes [#/volume] in Blood by Manual count" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.143.json b/build/main/resources/2.16.840.1.113762.1.4.1222.143.json deleted file mode 100644 index 32f0955..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.143.json +++ /dev/null @@ -1,32 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "20570-8", - "Display": "Hematocrit [Volume Fraction] of Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "31100-1", - "Display": "Hematocrit [Volume Fraction] of Blood by Impedance" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "4544-3", - "Display": "Hematocrit [Volume Fraction] of Blood by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "4545-0", - "Display": "Hematocrit [Volume Fraction] of Blood by Centrifugation" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "48703-3", - "Display": "Hematocrit [Volume Fraction] of Blood by Estimated" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.144.json b/build/main/resources/2.16.840.1.113762.1.4.1222.144.json deleted file mode 100644 index 4483859..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.144.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30428-7", - "Display": "MCV [Entitic volume]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "787-2", - "Display": "MCV [Entitic volume] by Automated count" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.145.json b/build/main/resources/2.16.840.1.113762.1.4.1222.145.json deleted file mode 100644 index 2a28274..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.145.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "28540-3", - "Display": "MCHC [Mass/volume]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "786-4", - "Display": "MCHC [Mass/volume] by Automated count" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.147.json b/build/main/resources/2.16.840.1.113762.1.4.1222.147.json deleted file mode 100644 index 97fc9f3..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.147.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "21000-5", - "Display": "Erythrocyte distribution width [Entitic volume] by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30384-2", - "Display": "Erythrocyte distribution width [Entitic volume]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30385-9", - "Display": "Erythrocyte distribution width [Ratio]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "788-0", - "Display": "Erythrocyte distribution width [Ratio] by Automated count" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.148.json b/build/main/resources/2.16.840.1.113762.1.4.1222.148.json deleted file mode 100644 index 0cc97cb..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.148.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "32207-3", - "Display": "Platelet distribution width [Entitic volume] in Blood by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "51631-0", - "Display": "Platelet distribution width [Ratio] in Blood" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.149.json b/build/main/resources/2.16.840.1.113762.1.4.1222.149.json deleted file mode 100644 index 32c16b4..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.149.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "28542-9", - "Display": "Platelet mean volume [Entitic volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "32623-1", - "Display": "Platelet mean volume [Entitic volume] in Blood by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "776-5", - "Display": "Platelet mean volume [Entitic volume] in Blood by Rees-Ecker" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.15.json b/build/main/resources/2.16.840.1.113762.1.4.1222.15.json deleted file mode 100644 index 161c6d1..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.15.json +++ /dev/null @@ -1,38 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714152005", - "Display": "Chronic kidney disease stage 5 on dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714153000", - "Display": "Chronic kidney disease stage 5 with transplant (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I12.0", - "Display": "Hypertensive chronic kidney disease with stage 5 chronic kidney disease or end stage renal disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.11", - "Display": "Hypertensive heart and chronic kidney disease without heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.2", - "Display": "Hypertensive heart and chronic kidney disease with heart failure and with stage 5 chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18.6", - "Display": "End stage renal disease" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.150.json b/build/main/resources/2.16.840.1.113762.1.4.1222.150.json deleted file mode 100644 index 6d6e8fa..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.150.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "27353-2", - "Display": "Glucose mean value [Mass/volume] in Blood Estimated from glycated hemoglobin" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53553-4", - "Display": "Glucose mean value [Moles/volume] in Blood Estimated from glycated hemoglobin" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.151.json b/build/main/resources/2.16.840.1.113762.1.4.1222.151.json deleted file mode 100644 index b735856..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.151.json +++ /dev/null @@ -1,50 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "1751-7", - "Display": "Albumin [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2862-1", - "Display": "Albumin [Mass/volume] in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "54347-0", - "Display": "Albumin [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "61151-7", - "Display": "Albumin [Mass/volume] in Serum or Plasma by Bromocresol green (BCG) dye binding method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "61152-5", - "Display": "Albumin [Mass/volume] in Serum or Plasma by Bromocresol purple (BCP) dye binding method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "62234-0", - "Display": "Albumin [Moles/volume] in Serum or Plasma by Bromocresol purple (BCP) dye binding method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "62235-7", - "Display": "Albumin [Moles/volume] in Serum or Plasma by Bromocresol green (BCG) dye binding method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "77148-5", - "Display": "Albumin [Mass/volume] in Serum" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.153.json b/build/main/resources/2.16.840.1.113762.1.4.1222.153.json deleted file mode 100644 index a307f7e..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.153.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33037-3", - "Display": "Anion gap in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "41276-7", - "Display": "Anion gap in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "42485-3", - "Display": "Anion gap in Vitreous fluid" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "47561-6", - "Display": "Anion gap in Body fluid" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.154.json b/build/main/resources/2.16.840.1.113762.1.4.1222.154.json deleted file mode 100644 index e32a86f..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.154.json +++ /dev/null @@ -1,74 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "12967-6", - "Display": "Urea nitrogen [Mass/volume] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "13506-1", - "Display": "Urea nitrogen renal clearance in Urine and Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "13821-4", - "Display": "Urea nitrogen/Creatinine [Mass Ratio] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14938-5", - "Display": "Urea nitrogen [Moles/volume] in Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14939-3", - "Display": "Urea nitrogen [Moles/time] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "24465-7", - "Display": "Urea nitrogen [Mass/time] in 12 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "3095-7", - "Display": "Urea nitrogen [Mass/volume] in Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "3096-5", - "Display": "Urea nitrogen [Mass/time] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33355-9", - "Display": "Urea nitrogen [Moles/volume] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35657-6", - "Display": "Urea nitrogen/Body weight [Mass/kg/time] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "44416-6", - "Display": "Urea nitrogen/Creatinine [Mass Ratio] in Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "51735-9", - "Display": "Urea nitrogen renal clearance in 24 hour Urine and Serum or Plasma" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.159.json b/build/main/resources/2.16.840.1.113762.1.4.1222.159.json deleted file mode 100644 index 98d323b..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.159.json +++ /dev/null @@ -1,578 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "117681000119102", - "Display": "Chronic kidney disease stage 1 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "120261000119101", - "Display": "Benign hypertensive heart disease and chronic renal disease stage 5 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123609007", - "Display": "Subacute glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129151000119102", - "Display": "Chronic kidney disease stage 4 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129161000119100", - "Display": "Chronic kidney disease stage 5 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129171000119106", - "Display": "Chronic kidney disease stage 3 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129181000119109", - "Display": "Chronic kidney disease stage 2 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "140101000119109", - "Display": "Hypertension in chronic kidney disease stage 5 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "140111000119107", - "Display": "Hypertension in chronic kidney disease stage 4 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "140121000119100", - "Display": "Hypertension in chronic kidney disease stage 3 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "140131000119102", - "Display": "Hypertension in chronic kidney disease stage 2 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "153851000119106", - "Display": "Malignant hypertensive chronic kidney disease stage 5 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20917003", - "Display": "Chronic glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253878003", - "Display": "Adult type polycystic kidney disease type 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253879006", - "Display": "Adult type polycystic kidney disease type 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284971000119100", - "Display": "Chronic kidney disease stage 1 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284981000119102", - "Display": "Chronic kidney disease stage 2 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284991000119104", - "Display": "Chronic kidney disease stage 3 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285001000119105", - "Display": "Chronic kidney disease stage 4 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285011000119108", - "Display": "Chronic kidney disease stage 5 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285041000119107", - "Display": "Benign hypertensive heart disease and chronic renal disease stage 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285061000119106", - "Display": "Benign hypertensive heart disease and chronic renal disease stage 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285081000119102", - "Display": "Benign hypertensive heart disease and chronic renal disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285101000119109", - "Display": "Benign hypertensive heart disease and chronic renal disease stage 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285851000119102", - "Display": "Malignant hypertensive chronic kidney disease stage 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285861000119100", - "Display": "Malignant hypertensive chronic kidney disease stage 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285871000119106", - "Display": "Malignant hypertensive chronic kidney disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285881000119109", - "Display": "Malignant hypertensive chronic kidney disease stage 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285911000119109", - "Display": "Malignant hypertensive heart disease and chronic renal disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285921000119102", - "Display": "Malignant hypertensive heart disease and chronic renal disease stage 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28770003", - "Display": "Polycystic kidney disease" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368421000119108", - "Display": "Chronic kidney disease stage 1 due to drug induced diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368431000119106", - "Display": "Chronic kidney disease stage 2 due to drug induced diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368441000119102", - "Display": "Chronic kidney disease stage 3 due to drug induced diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368451000119100", - "Display": "Chronic kidney disease stage 4 due to drug induced diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368461000119103", - "Display": "Chronic kidney disease stage 5 due to drug induced diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425455002", - "Display": "Glomerulonephritis due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431855005", - "Display": "Chronic kidney disease stage 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431856006", - "Display": "Chronic kidney disease stage 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431857002", - "Display": "Chronic kidney disease stage 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433144002", - "Display": "Chronic kidney disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433146000", - "Display": "Chronic kidney disease stage 5 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "691421000119108", - "Display": "Anemia co-occurrent and due to chronic kidney disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700378005", - "Display": "Chronic kidney disease stage 3A (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700379002", - "Display": "Chronic kidney disease stage 3B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "709044004", - "Display": "Chronic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71064009", - "Display": "Acquired polycystic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "711000119100", - "Display": "Chronic kidney disease stage 5 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714152005", - "Display": "Chronic kidney disease stage 5 on dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714153000", - "Display": "Chronic kidney disease stage 5 with transplant (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721000119107", - "Display": "Chronic kidney disease stage 4 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "731000119105", - "Display": "Chronic kidney disease stage 3 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "741000119101", - "Display": "Chronic kidney disease stage 2 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "751000119104", - "Display": "Chronic kidney disease stage 1 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82525005", - "Display": "Congenital cystic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90708001", - "Display": "Kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90721000119101", - "Display": "Chronic kidney disease stage 1 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90731000119103", - "Display": "Chronic kidney disease stage 2 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90741000119107", - "Display": "Chronic kidney disease stage 3 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90751000119109", - "Display": "Chronic kidney disease stage 4 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90761000119106", - "Display": "Chronic kidney disease stage 5 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96711000119105", - "Display": "Hypertensive heart AND chronic kidney disease stage 5 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96721000119103", - "Display": "Hypertensive heart AND chronic kidney disease stage 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96731000119100", - "Display": "Hypertensive heart AND chronic kidney disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96741000119109", - "Display": "Hypertensive heart AND chronic kidney disease stage 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96751000119106", - "Display": "Hypertensive heart AND chronic kidney disease stage 1 (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "D63.1", - "Display": "Anemia in chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.22", - "Display": "Diabetes mellitus due to underlying condition with diabetic chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.22", - "Display": "Drug or chemical induced diabetes mellitus with diabetic chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.22", - "Display": "Other specified diabetes mellitus with diabetic chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I12", - "Display": "Hypertensive chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I12.0", - "Display": "Hypertensive chronic kidney disease with stage 5 chronic kidney disease or end stage renal disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I12.9", - "Display": "Hypertensive chronic kidney disease with stage 1 through stage 4 chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.10", - "Display": "Hypertensive heart and chronic kidney disease without heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.11", - "Display": "Hypertensive heart and chronic kidney disease without heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.2", - "Display": "Hypertensive heart and chronic kidney disease with heart failure and with stage 5 chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18", - "Display": "Chronic kidney disease (CKD)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18.1", - "Display": "Chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18.2", - "Display": "Chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18.3", - "Display": "Chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18.4", - "Display": "Chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18.5", - "Display": "Chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18.6", - "Display": "End stage renal disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18.9", - "Display": "Chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O10.211", - "Display": "Pre-existing hypertensive chronic kidney disease complicating pregnancy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O10.212", - "Display": "Pre-existing hypertensive chronic kidney disease complicating pregnancy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O10.213", - "Display": "Pre-existing hypertensive chronic kidney disease complicating pregnancy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O10.219", - "Display": "Pre-existing hypertensive chronic kidney disease complicating pregnancy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O10.22", - "Display": "Pre-existing hypertensive chronic kidney disease complicating childbirth" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O10.31", - "Display": "Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O10.32", - "Display": "Pre-existing hypertensive heart and chronic kidney disease complicating childbirth" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O10.33", - "Display": "Pre-existing hypertensive heart and chronic kidney disease complicating the puerperium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q61.2", - "Display": "Polycystic kidney" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q61.3", - "Display": "Polycystic kidney" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q61.8", - "Display": "Other cystic kidney diseases" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.161.json b/build/main/resources/2.16.840.1.113762.1.4.1222.161.json deleted file mode 100644 index 7fa5606..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.161.json +++ /dev/null @@ -1,332 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11000731000119102", - "Display": "Dependence on continuous ambulatory peritoneal dialysis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11000771000119104", - "Display": "Dependence on continuous cycling peritoneal dialysis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16320631000119104", - "Display": "Dependence on continuous ambulatory peritoneal dialysis due to end stage renal disease (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236556004", - "Display": "Bloodstained peritoneal dialysis effluent (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251860000", - "Display": "Peritoneal dialysis observable (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251861001", - "Display": "Net solute removal rate (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251862008", - "Display": "Net mean clearance rate (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251863003", - "Display": "Instantaneous clearance (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251864009", - "Display": "Dialysance (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251865005", - "Display": "Dwell time (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "263636009", - "Display": "Type of hemodialysis (attribute)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "331000124109", - "Display": "Hemodialysis finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "341000124104", - "Display": "Peritoneal dialysis finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "401000124105", - "Display": "Hemodialysis blood flow (observable entity)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "4052F", - "Display": "Hemodialysis via functioning arteriovenous (AV) fistula (ESRD)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "4053F", - "Display": "Hemodialysis via functioning arteriovenous (AV) graft (ESRD)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "4054F", - "Display": "Hemodialysis via catheter (ESRD)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "4055F", - "Display": "Patient receiving peritoneal dialysis (ESRD)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "411000124108", - "Display": "Hemodialysis residual renal function (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421000124100", - "Display": "Hemodialysis session time (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428937001", - "Display": "Dependence on peritoneal dialysis due to end stage renal disease (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428982002", - "Display": "Dependence on hemodialysis due to end stage renal disease (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431000124102", - "Display": "Hemodialysis access site non-patent (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441000124107", - "Display": "Hemodialysis access site patent (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442326005", - "Display": "Cloudy peritoneal dialysis effluent (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443143006", - "Display": "Dependence on hemodialysis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443596009", - "Display": "Dependence on peritoneal dialysis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445940005", - "Display": "Duration of hemodialysis session (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "451000124109", - "Display": "Increase in hemodialysis blood flow (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "461000124106", - "Display": "Increase in hemodialysis dialyzer size (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "471000124104", - "Display": "Increase in hemodialysis session time (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473195006", - "Display": "Normal renal function of transplanted kidney (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "481000124101", - "Display": "Hemodialysis observable (observable entity)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "50360", - "Display": "Renal allotransplantation" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "50365", - "Display": "Renal allotransplantation" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "50380", - "Display": "Renal autotransplantation" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "551000124105", - "Display": "Peritoneal dialysate analysis compliance (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "561000124107", - "Display": "Peritoneal dialysate collection compliance (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "571000124100", - "Display": "Requires additional education about peritoneal dialysis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "581000124102", - "Display": "Complies with collection of peritoneal dialysate specimen (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "591000124104", - "Display": "Complies with analysis of peritoneal dialysate (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "601000124107", - "Display": "Inadequate monitoring of dose delivery of peritoneal dialysis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "611000124105", - "Display": "Non-compliance with collection of peritoneal dialysate specimen (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "621000124102", - "Display": "Non-compliance with analysis of peritoneal dialysate (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698306007", - "Display": "Awaiting transplantation of kidney (situation)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704308002", - "Display": "Difficulty managing peritoneal dialysis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "708513005", - "Display": "Substitution flow rate (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "708514004", - "Display": "Substitution volume (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714152005", - "Display": "Chronic kidney disease stage 5 on dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "736795005", - "Display": "Hemodialysis needle gauge (observable entity)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "90959", - "Display": "End-stage renal disease (ESRD) related services monthly" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "90960", - "Display": "End-stage renal disease (ESRD) related services monthly" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "90966", - "Display": "End-stage renal disease (ESRD) related services for home dialysis per full month" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "90969", - "Display": "End-stage renal disease (ESRD) related services for dialysis less than a full month of service" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "90970", - "Display": "End-stage renal disease (ESRD) related services for dialysis less than a full month of service" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.166.json b/build/main/resources/2.16.840.1.113762.1.4.1222.166.json deleted file mode 100644 index eb4cdd3..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.166.json +++ /dev/null @@ -1,344 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14531000087108", - "Display": "Doppler ultrasonography of vein of right upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14541000087102", - "Display": "Doppler ultrasonography of vein of left upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17281000087103", - "Display": "Fluoroscopic venography of right upper limb with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17291000087101", - "Display": "Fluoroscopic venography of left upper limb with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17691000087103", - "Display": "Fluoroscopic venography of bilateral upper limbs with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312499002", - "Display": "Axillary venography (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312727008", - "Display": "Duplex scan veins of upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312814004", - "Display": "Ultrasound scan of upper limb veins (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38356007", - "Display": "Venography of upper extremity (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "411981000119101", - "Display": "Fluoroscopic venography of bilateral extremities with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419453004", - "Display": "Ultrasound scan venography of upper limbs (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419461009", - "Display": "Magnetic resonance imaging venography of upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419870000", - "Display": "Fluoroscopic venography of upper limb with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420154007", - "Display": "Radionuclide venography of upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431303002", - "Display": "Percutaneous mechanical thrombectomy of vein of upper limb using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431394000", - "Display": "Ultrasound doppler flow mapping of vein of upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431529003", - "Display": "Percutaneous transluminal cutting balloon angioplasty of axillary vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431594001", - "Display": "Percutaneous transluminal cutting balloon angioplasty of cephalic vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431818005", - "Display": "Doppler ultrasonography of vein of upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431951000", - "Display": "Percutaneous transluminal cutting balloon angioplasty of brachial vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431961007", - "Display": "Percutaneous embolization of superficial forearm vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432038005", - "Display": "Percutaneous transluminal cutting balloon angioplasty of basilic vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432643004", - "Display": "Fluoroscopic venography of axillary vein using contrast with insertion of stent (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432688003", - "Display": "Percutaneous transluminal cutting balloon angioplasty of superficial forearm vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432692005", - "Display": "Compression ultrasonography of vein of upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432765008", - "Display": "Percutaneous embolization of axillary vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432780002", - "Display": "Fluoroscopic venography of superficial forearm vein using contrast with insertion of stent (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433692003", - "Display": "Fluoroscopic venography of superficial forearm vein using contrast with insertion of stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433763007", - "Display": "Fluoroscopic venography of axillary vein using contrast with insertion of stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433764001", - "Display": "Fluoroscopic venography of basilic vein using contrast with insertion of stent (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433778000", - "Display": "Fluoroscopic venography of cephalic vein using contrast with insertion of stent (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433975005", - "Display": "Percutaneous embolization of basilic vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434009008", - "Display": "Percutaneous embolization of brachial vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434225009", - "Display": "Percutaneous embolization of cephalic vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434308005", - "Display": "Fluoroscopic venography of brachial vein using contrast with insertion of stent (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434566008", - "Display": "Fluoroscopic venography of cephalic vein using contrast with insertion of stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434569001", - "Display": "Fluoroscopic venography of brachial vein using contrast with insertion of stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434642005", - "Display": "Fluoroscopic venography of basilic vein using contrast with insertion of stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441542001", - "Display": "Percutaneous transluminal insertion of stent into axillary vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441544000", - "Display": "Percutaneous thrombolysis of axillary vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441577001", - "Display": "Percutaneous transluminal angioplasty of axillary vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4711000087109", - "Display": "Venography of left upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4721000087101", - "Display": "Venography of right upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5211000087102", - "Display": "Venography of bilateral upper limbs (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6301000087102", - "Display": "Doppler ultrasonography flow mapping of vein of right upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6311000087100", - "Display": "Doppler ultrasonography flow mapping of vein of left upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6781000087105", - "Display": "Doppler ultrasonography flow mapping of veins of bilateral upper limbs (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "763459002", - "Display": "Fluoroscopic venography of axillary vein using contrast with insertion of metallic stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "763461006", - "Display": "Fluoroscopic venography of basilic vein using contrast with insertion of metallic stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "763463009", - "Display": "Fluoroscopic venography of brachial vein using contrast with insertion of metallic stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "763464003", - "Display": "Fluoroscopic venography of cephalic vein using contrast with insertion of metallic stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "763466001", - "Display": "Fluoroscopic venography of superficial forearm vein using contrast with insertion of metallic stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "765168005", - "Display": "Doppler ultrasonography compression venography of upper limb (procedure)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "93970", - "Display": "Duplex scan of extremity veins including responses to compression and other maneuvers; complete bilateral study" - }, - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "B54MZZZ", - "Display": "Ultrasonography of Right Upper Extremity Veins" - }, - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "B54NZZZ", - "Display": "Ultrasonography of Left Upper Extremity Veins" - }, - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "B54PZZZ", - "Display": "Ultrasonography of Bilateral Upper Extremity Veins" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.176.json b/build/main/resources/2.16.840.1.113762.1.4.1222.176.json deleted file mode 100644 index 6593279..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.176.json +++ /dev/null @@ -1,212 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "11276-3", - "Display": "Tubular cells [Presence] in Urine sediment by Light microscopy" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "11279-7", - "Display": "Urine sediment comments by Light microscopy Narrative" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "25158-7", - "Display": "Oval fat bodies (globules) [Presence] in Urine sediment by Light microscopy" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "25159-5", - "Display": "Fatty casts [Presence] in Urine sediment by Light microscopy" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33221-3", - "Display": "Epithelial cells.renal [#/area] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33222-1", - "Display": "Oval fat bodies (globules) [#/area] in Urine sediment by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33228-8", - "Display": "WBC casts [#/area] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33229-6", - "Display": "RBC casts [#/area] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33231-2", - "Display": "Fatty casts [#/area] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33342-7", - "Display": "Epithelial cells [#/area] in Urine sediment by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33804-6", - "Display": "RBC casts [Presence] in Urine sediment by Light microscopy" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33825-1", - "Display": "WBC casts [Presence] in Urine sediment by Light microscopy" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "34173-5", - "Display": "Mixed cellular casts [Presence] in Urine sediment by Light microscopy" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "38995-7", - "Display": "Mixed cellular casts [#/area] in Urine sediment by Microscopy low power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "43755-8", - "Display": "Casts [#/area] in Urine sediment by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "49103-5", - "Display": "WBC casts [#/area] in Urine sediment by Microscopy high power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "50228-6", - "Display": "Oval fat bodies (globules) [Presence] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "50229-4", - "Display": "Fatty casts [Presence] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "50234-4", - "Display": "Mixed cellular casts [Presence] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "51790-4", - "Display": "RBC casts [#/area] in Urine sediment by Microscopy high power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53278-8", - "Display": "RBC casts [Presence] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53279-6", - "Display": "WBC casts [Presence] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53283-8", - "Display": "Mixed cellular casts [#/volume] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53285-3", - "Display": "RBC casts [#/volume] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53286-1", - "Display": "WBC casts [#/volume] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53288-7", - "Display": "Fatty casts [#/volume] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53289-5", - "Display": "Mixed cellular casts [#/area] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53352-1", - "Display": "Oval fat bodies (globules) [#/volume] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53848-8", - "Display": "Mixed cellular casts [#/area] in Urine sediment by Microscopy high power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "5788-5", - "Display": "Oval fat bodies (globules) [#/area] in Urine sediment by Microscopy high power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "5789-3", - "Display": "Fatty casts [#/area] in Urine sediment by Microscopy low power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "5807-3", - "Display": "RBC casts [#/area] in Urine sediment by Microscopy low power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "5820-6", - "Display": "WBC casts [#/area] in Urine sediment by Microscopy low power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "67813-6", - "Display": "Fatty casts [#/area] in Urine sediment by Microscopy high power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "8246-1", - "Display": "Amorphous sediment [Presence] in Urine sediment by Light microscopy" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.179.json b/build/main/resources/2.16.840.1.113762.1.4.1222.179.json deleted file mode 100644 index 8d5885d..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.179.json +++ /dev/null @@ -1,92 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33914-3", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum or Plasma by Creatinine-based formula (MDRD)" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "45066-8", - "Display": "Creatinine and Glomerular filtration rate.predicted panel - Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "48642-3", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among non-blacks [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "48643-1", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among blacks [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "50044-7", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among females [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "50210-4", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "50384-7", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "62238-1", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "69405-9", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "70969-1", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among males [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "76633-7", - "Display": "Glomerular filtration rate/1.73 sq M.predicted by Creatinine-based formula (MDRD) in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "77147-7", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "88293-6", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among blacks [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "88294-4", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among non-blacks [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "94677-2", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.24.json b/build/main/resources/2.16.840.1.113762.1.4.1222.24.json deleted file mode 100644 index 6dbdf99..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.24.json +++ /dev/null @@ -1,464 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10741871000119101", - "Display": "Alcohol dependence in pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10755041000119100", - "Display": "Alcohol dependence in childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15167005", - "Display": "Alcohol abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191811004", - "Display": "Continuous chronic alcoholism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191812006", - "Display": "Episodic chronic alcoholism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191813001", - "Display": "Chronic alcoholism in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191882002", - "Display": "Nondependent alcohol abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191883007", - "Display": "Nondependent alcohol abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191884001", - "Display": "Nondependent alcohol abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268645007", - "Display": "Nondependent alcohol abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284591009", - "Display": "Persistent alcohol abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "288031000119105", - "Display": "Alcohol induced disorder co-occurrent and due to alcohol dependence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66590003", - "Display": "Alcohol dependence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713583005", - "Display": "Mild alcohol dependence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713862009", - "Display": "Severe alcohol dependence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714829008", - "Display": "Moderate alcohol dependence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7200002", - "Display": "Alcoholism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "97571000119109", - "Display": "Thrombocytopenia co-occurrent and due to alcoholism (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.1", - "Display": "Alcohol abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.10", - "Display": "Alcohol abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.12", - "Display": "Alcohol abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.120", - "Display": "Alcohol abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.121", - "Display": "Alcohol abuse with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.129", - "Display": "Alcohol abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.14", - "Display": "Alcohol abuse with alcohol-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.15", - "Display": "Alcohol abuse with alcohol-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.150", - "Display": "Alcohol abuse with alcohol-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.151", - "Display": "Alcohol abuse with alcohol-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.159", - "Display": "Alcohol abuse with alcohol-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.18", - "Display": "Alcohol abuse with other alcohol-induced disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.180", - "Display": "Alcohol abuse with alcohol-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.181", - "Display": "Alcohol abuse with alcohol-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.182", - "Display": "Alcohol abuse with alcohol-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.188", - "Display": "Alcohol abuse with other alcohol-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.19", - "Display": "Alcohol abuse with unspecified alcohol-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.2", - "Display": "Alcohol dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.20", - "Display": "Alcohol dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.21", - "Display": "Alcohol dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.22", - "Display": "Alcohol dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.220", - "Display": "Alcohol dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.221", - "Display": "Alcohol dependence with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.229", - "Display": "Alcohol dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.23", - "Display": "Alcohol dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.230", - "Display": "Alcohol dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.231", - "Display": "Alcohol dependence with withdrawal delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.232", - "Display": "Alcohol dependence with withdrawal with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.239", - "Display": "Alcohol dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.24", - "Display": "Alcohol dependence with alcohol-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.25", - "Display": "Alcohol dependence with alcohol-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.250", - "Display": "Alcohol dependence with alcohol-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.251", - "Display": "Alcohol dependence with alcohol-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.259", - "Display": "Alcohol dependence with alcohol-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.26", - "Display": "Alcohol dependence with alcohol-induced persisting amnestic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.27", - "Display": "Alcohol dependence with alcohol-induced persisting dementia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.28", - "Display": "Alcohol dependence with other alcohol-induced disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.280", - "Display": "Alcohol dependence with alcohol-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.281", - "Display": "Alcohol dependence with alcohol-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.282", - "Display": "Alcohol dependence with alcohol-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.288", - "Display": "Alcohol dependence with other alcohol-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.29", - "Display": "Alcohol dependence with unspecified alcohol-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.9", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.92", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.920", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.921", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.929", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.94", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.95", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.950", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.951", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.959", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.96", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.97", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.98", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.980", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.982", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.988", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.99", - "Display": "Alcohol use" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.27.json b/build/main/resources/2.16.840.1.113762.1.4.1222.27.json deleted file mode 100644 index c1668ce..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.27.json +++ /dev/null @@ -1,44 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10596002", - "Display": "Peripheral vascular complication (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "27550009", - "Display": "Disorder of blood vessel (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "400047006", - "Display": "Peripheral vascular disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473109007", - "Display": "History of peripheral vascular disease (situation)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473449006", - "Display": "Disease of non-coronary systemic artery (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I73.89", - "Display": "Other specified peripheral vascular diseases" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I73.9", - "Display": "Peripheral vascular disease" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.30.json b/build/main/resources/2.16.840.1.113762.1.4.1222.30.json deleted file mode 100644 index 756afe6..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.30.json +++ /dev/null @@ -1,284 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10295004", - "Display": "Chronic viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1092801000119102", - "Display": "Hepatic ascites co-occurrent with chronic active hepatitis due to toxic liver disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1116000", - "Display": "Chronic aggressive type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "128302006", - "Display": "Chronic hepatitis C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16098491000119109", - "Display": "Chronic autoimmune hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197284004", - "Display": "Chronic active hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235866006", - "Display": "Acute hepatitis C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235869004", - "Display": "Chronic viral hepatitis B with hepatitis D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235889003", - "Display": "Drug-induced chronic hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307757001", - "Display": "Chronic alcoholic hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "347891000119103", - "Display": "Chronic hepatitis C with stage 3 fibrosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38662009", - "Display": "Chronic persistent type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41889008", - "Display": "Chronic persistent hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "435101000124104", - "Display": "Chronic viral hepatitis C with hepatic coma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442374005", - "Display": "Hepatitis B and hepatitis C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "450880008", - "Display": "Chronic hepatitis E (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50167007", - "Display": "Chronic active type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50711007", - "Display": "Viral hepatitis type C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "57339008", - "Display": "Chronic lobular hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60037002", - "Display": "Chronic persistent viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61977001", - "Display": "Chronic type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66870002", - "Display": "Chronic active viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "702969000", - "Display": "Reactivation of hepatitis C viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703866000", - "Display": "Chronic hepatitis C with stage 2 fibrosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "708198006", - "Display": "Chronic active hepatitis C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713966008", - "Display": "Occult chronic type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "767809001", - "Display": "Chronic hepatitis C caused by hepatitis C virus genotype 6 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "767810006", - "Display": "Chronic hepatitis C caused by hepatitis C virus genotype 5 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76783007", - "Display": "Chronic hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "768006009", - "Display": "Chronic hepatitis C caused by Hepatitis C virus genotype 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "768125005", - "Display": "Chronic hepatitis C caused by Hepatitis C virus genotype 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "768126006", - "Display": "Chronic hepatitis C caused by Hepatitis C virus genotype 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "768127002", - "Display": "Chronic hepatitis C caused by Hepatitis C virus genotype 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "768288001", - "Display": "Chronic hepatitis C caused by Hepatitis C virus genotype 1b (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "768289009", - "Display": "Chronic hepatitis C caused by Hepatitis C virus genotype 1a (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "774204006", - "Display": "Growth retardation" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "838377003", - "Display": "Chronic hepatitis C co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "838380002", - "Display": "Chronic hepatitis B co-occurrent with hepatitis C and hepatitis D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89789003", - "Display": "Chronic aggressive viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9843006", - "Display": "Chronic lymphocytic cholangitis-cholangiohepatitis (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B17.1", - "Display": "Acute hepatitis C" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B17.10", - "Display": "Acute hepatitis C without hepatic coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B17.11", - "Display": "Acute hepatitis C with hepatic coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B18.2", - "Display": "Chronic viral hepatitis C" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B19.2", - "Display": "Unspecified viral hepatitis C" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B19.20", - "Display": "Unspecified viral hepatitis C without hepatic coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B19.21", - "Display": "Unspecified viral hepatitis C with hepatic coma" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.33.json b/build/main/resources/2.16.840.1.113762.1.4.1222.33.json deleted file mode 100644 index 5887eff..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.33.json +++ /dev/null @@ -1,350 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102781000119107", - "Display": "Sensory neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "110181000119105", - "Display": "Peripheral sensory neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "126534007", - "Display": "Mixed sensorimotor polyneuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "126535008", - "Display": "Motor polyneuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127011001", - "Display": "Sensory neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1511000119107", - "Display": "Peripheral neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193141005", - "Display": "Mononeuritis multiplex due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193183000", - "Display": "Acute painful neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193184006", - "Display": "Chronic painful neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193185007", - "Display": "Asymptomatic neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19378003", - "Display": "Pseudotabes due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201724008", - "Display": "Neuropathic arthropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230572002", - "Display": "Neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230574001", - "Display": "Acute painful polyneuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230575000", - "Display": "Chronic painful polyneuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230576004", - "Display": "Asymmetric polyneuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230577008", - "Display": "Mononeuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230579006", - "Display": "Thoracic radiculopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "232021008", - "Display": "Proliferative retinopathy with optic disc neovascularization due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267604001", - "Display": "Myasthenic syndrome due to diabetic mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314537004", - "Display": "Optic papillopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35777006", - "Display": "Mononeuropathy multiplex due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "359611005", - "Display": "Neuropathy with neurologic complication due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "361216007", - "Display": "Femoral mononeuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368141000119106", - "Display": "Autonomic neuropathy due to drug induced diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368251000119101", - "Display": "Polyneuropathy due to drug induced diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368581000119106", - "Display": "Neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38205001", - "Display": "Diarrhea due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39058009", - "Display": "Lumbosacral radiculoplexus neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39127005", - "Display": "Symmetric proximal motor neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420436000", - "Display": "Mononeuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420918009", - "Display": "Mononeuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424736006", - "Display": "Peripheral neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427027005", - "Display": "Lumbosacral radiculoplexus neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427571000", - "Display": "Lumbosacral radiculoplexus neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427943001", - "Display": "Ophthalmoplegia due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49455004", - "Display": "Polyneuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50620007", - "Display": "Autonomic neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712882000", - "Display": "Autonomic neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712883005", - "Display": "Autonomic neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713702000", - "Display": "Gastroparesis due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713703005", - "Display": "Gastroparesis due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713704004", - "Display": "Gastroparesis due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713705003", - "Display": "Polyneuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713706002", - "Display": "Polyneuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71771000119100", - "Display": "Neuropathic arthropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71791000119104", - "Display": "Peripheral neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "770094004", - "Display": "Cervical radiculoplexus neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "770095003", - "Display": "Cranial nerve palsy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "770098001", - "Display": "Cranial nerve palsy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "781000119106", - "Display": "Neuropathic arthropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789542009", - "Display": "Neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789585000", - "Display": "Sensory polyneuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79554005", - "Display": "Asymmetric proximal motor neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81830002", - "Display": "Mononeuropathy simplex due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87921000119104", - "Display": "Cranial nerve palsy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.40", - "Display": "Type 2 diabetes mellitus with diabetic neuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.40", - "Display": "Other specified diabetes mellitus with diabetic neuropathy" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.36.json b/build/main/resources/2.16.840.1.113762.1.4.1222.36.json deleted file mode 100644 index 8a7d99e..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.36.json +++ /dev/null @@ -1,452 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1003380001", - "Display": "6q16 microdeletion syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10750551000119100", - "Display": "Obesity in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076701000119104", - "Display": "Hypertrophy of fat pad of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076711000119101", - "Display": "Hypertrophy of fat pad of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111036000", - "Display": "Hyperinsulinar obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15750121000119108", - "Display": "Pre-existing severe obesity in mother complicating pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "171000119107", - "Display": "Maternal obesity complicating pregnancy" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190965006", - "Display": "Drug-induced obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190966007", - "Display": "Extreme obesity with alveolar hypoventilation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238132000", - "Display": "Android obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238133005", - "Display": "Gynecoid obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238134004", - "Display": "Generalized obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238135003", - "Display": "Fat pad syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238136002", - "Display": "Morbid obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248311001", - "Display": "Central obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248312008", - "Display": "Peripheral obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "270486005", - "Display": "Localized obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "290439001", - "Display": "Familial obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "292464007", - "Display": "Constitutional obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "293481008", - "Display": "Hyperplastic-hypertrophic obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "294493008", - "Display": "Lifelong obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "295509007", - "Display": "Hypertrophic obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "296526005", - "Display": "Adult-onset obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "297500005", - "Display": "Endogenous obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "298464002", - "Display": "Obesity of endocrine origin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "360566006", - "Display": "Buffalo obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414438005", - "Display": "Hyperplastic obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414916001", - "Display": "Obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414917005", - "Display": "Obesity by adipocyte growth pattern (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414918000", - "Display": "Obesity by age of onset (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414919008", - "Display": "Obesity by contributing factors (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414920002", - "Display": "Obesity by fat distribution pattern (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "415530009", - "Display": "Simple obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444862003", - "Display": "Childhood obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44772007", - "Display": "Maternal obesity syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "461341000124106", - "Display": "Gluteal-femoral obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5036006", - "Display": "Hypogonadal obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53146006", - "Display": "Hypothyroid obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "57337005", - "Display": "Steatopygia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62999006", - "Display": "Adiposogenital dystrophy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63702009", - "Display": "Alstrom syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "702949005", - "Display": "Proopiomelanocortin deficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "715628009", - "Display": "Intellectual disability" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717269008", - "Display": "Obesity due to melanocortin 4 receptor deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717761005", - "Display": "Choroideremia with deafness and obesity syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719160009", - "Display": "Syndromic X-linked intellectual disability type 7 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719834005", - "Display": "Wilson Turner syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721231007", - "Display": "Hydrocephalus with obesity and hypogonadism syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722037004", - "Display": "Intellectual disability" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722051004", - "Display": "Obesity" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722053001", - "Display": "Obesity due to prohormone convertase I deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722596001", - "Display": "Obesity caused by energy imbalance (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724137002", - "Display": "Macrocephaly" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72894001", - "Display": "Hypertrophy of fat pad of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "763350002", - "Display": "Intellectual disability" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "770680004", - "Display": "Prader-Willi-like syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "770750002", - "Display": "Intellectual disability" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "773663004", - "Display": "Rapid-onset childhood obesity" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "774102003", - "Display": "Intellectual disability" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "776204008", - "Display": "Colobomatous microphthalmia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "783549006", - "Display": "Obesity due to centrosomal protein 19 deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "783556000", - "Display": "Severe early-onset obesity insulin resistance syndrome due to SH2B adaptor protein 1 deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "783719006", - "Display": "Obesity due to SIM bHLH transcription factor 1 deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "785722006", - "Display": "Obesity due to leptin receptor gene deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "788996008", - "Display": "Obesity in adolescence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80660001", - "Display": "Mauriac's syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82793005", - "Display": "Hypothalamic obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83911000119104", - "Display": "Severe obesity (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E66.0", - "Display": "Obesity due to excess calories" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E66.01", - "Display": "Morbid (severe) obesity due to excess calories" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E66.09", - "Display": "Other obesity due to excess calories" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E66.1", - "Display": "Drug-induced obesity" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E66.2", - "Display": "Morbid (severe) obesity with alveolar hypoventilation" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E66.8", - "Display": "Other obesity" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E66.9", - "Display": "Obesity" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.40.json b/build/main/resources/2.16.840.1.113762.1.4.1222.40.json deleted file mode 100644 index 27b7d97..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.40.json +++ /dev/null @@ -1,4778 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102891000", - "Display": "Age-related cognitive decline (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102910004", - "Display": "Prelogical thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102911000", - "Display": "Thoughts of self harm (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102941003", - "Display": "Alethia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102942005", - "Display": "Intelligence quotient low (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "105421000119105", - "Display": "Early onset Alzheimer's disease with behavioral disturbance (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "106136008", - "Display": "Memory finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "106138009", - "Display": "Learning finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "110352000", - "Display": "Minimal cognitive impairment (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "110355003", - "Display": "Lack of thinking ability (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "112088009", - "Display": "Egomania (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "112090005", - "Display": "Eidetic images (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "116340000", - "Display": "Disturbance of cognitive learning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12332005", - "Display": "Pseudologia fantastica (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129686009", - "Display": "Finding related to communication with community resources (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129862009", - "Display": "Deficient knowledge of diagnostic testing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129863004", - "Display": "Deficient knowledge of dietary regimen (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129864005", - "Display": "Deficient knowledge of disease process (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129865006", - "Display": "Deficient knowledge of fluid volume management (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129866007", - "Display": "Deficient knowledge of medication regimen (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129867003", - "Display": "Deficient knowledge of safety precautions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129868008", - "Display": "Deficient knowledge of therapeutic regimen (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "130964008", - "Display": "Impaired environmental interpretation syndrome (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14003003", - "Display": "Monomania (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "141601000119107", - "Display": "Cognitive changes due to organic disorder (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "141991000119109", - "Display": "Delusions in Alzheimer's disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "142001000119106", - "Display": "Depressed mood in Alzheimer's disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "142261000119100", - "Display": "Cognitive deficit in attention (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15928141000119107", - "Display": "Cognitive impairment co-occurrent and due to human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "161129001", - "Display": "Learning difficulties (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16219201000119101", - "Display": "Behavioral disturbance co-occurrent and due to late onset Alzheimer dementia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "162200009", - "Display": "Temporary loss of memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "162314006", - "Display": "Harmful thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "162315007", - "Display": "Morbid thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "162327005", - "Display": "Loss of judgement (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165179006", - "Display": "Intelligence quotient normal (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165280004", - "Display": "Memory: own age not known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165281000", - "Display": "Memory: own age known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165283002", - "Display": "Memory: present time not known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165284008", - "Display": "Memory: present time known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165286005", - "Display": "Memory: present place not known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165287001", - "Display": "Memory: present place known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165289003", - "Display": "Memory: present year not known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165290007", - "Display": "Memory: present year known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165292004", - "Display": "Memory: own date of birth not known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165293009", - "Display": "Memory: own date of birth known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165295002", - "Display": "Memory: present month not known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165296001", - "Display": "Memory: present month known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165298000", - "Display": "Memory: important event not known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165299008", - "Display": "Memory: important event known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165301001", - "Display": "Memory: important person not known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165302008", - "Display": "Memory: important person known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165304009", - "Display": "Memory: count down successful (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165305005", - "Display": "Memory: count down unsuccessful (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165307002", - "Display": "Memory: address recall success (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165308007", - "Display": "Memory: address recall unsuccessful (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16703491000119101", - "Display": "Memory deficit due to and following spontaneous intracerebral hemorrhage (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16703551000119107", - "Display": "Memory deficit due to and following cerebrovascular disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16703601000119109", - "Display": "Memory deficit due to and following spontaneous subarachnoid hemorrhage (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16703661000119105", - "Display": "Memory deficit due to and following cerebrovascular accident (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16703711000119100", - "Display": "Memory deficit due to and following embolic cerebrovascular accident (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16703761000119102", - "Display": "Memory deficit due to and following ischemic cerebrovascular accident (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16703821000119101", - "Display": "Memory deficit due to and following hemorrhagic cerebrovascular accident (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17842005", - "Display": "Confabulation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "182891003", - "Display": "Patient misunderstood treatment instructions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18343006", - "Display": "Circumstantiality (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18541000119100", - "Display": "Borderline cognitive developmental delay (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191992009", - "Display": "Repetitive routines (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "192071009", - "Display": "Mild memory disturbance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20517006", - "Display": "Mental condensation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2073000", - "Display": "Delusions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "21001001", - "Display": "Déjà pensé (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "216004", - "Display": "Delusion of persecution (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22058002", - "Display": "Inattention (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "224998004", - "Display": "Slow learner (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225001006", - "Display": "Preoccupied with emotional problems (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225033002", - "Display": "Memory recall finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225034008", - "Display": "Unpleasant memories (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225036005", - "Display": "Distortion of memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225037001", - "Display": "Minor memory lapses (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225038006", - "Display": "Memory lapses (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225039003", - "Display": "Mixes past with present (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225041002", - "Display": "Talks about the past (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225042009", - "Display": "Finding relating to reminiscing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225434001", - "Display": "Does not recognize self (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225435000", - "Display": "Does not recognize self in mirror (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225436004", - "Display": "Reflecting (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225437008", - "Display": "Thinks realistically (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225439006", - "Display": "Not confused (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225440008", - "Display": "Onset of confusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225441007", - "Display": "Not wanting to think about something (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225442000", - "Display": "Not wanting to think (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225443005", - "Display": "Recovery of memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225445003", - "Display": "Intrusive thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225446002", - "Display": "Positive self thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225447006", - "Display": "Reappearance of old thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225448001", - "Display": "Has imaginary friend (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225449009", - "Display": "Bizarre thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225450009", - "Display": "Homicidal thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225451008", - "Display": "Believes television is bugged (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225452001", - "Display": "Paranoid delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225635005", - "Display": "Anxiety about treatment (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225636006", - "Display": "Anxiety about forced dependence (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225637002", - "Display": "Anxiety about loss of control (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225638007", - "Display": "Anxiety about resuming sexual relations (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225639004", - "Display": "Worried about not coping with baby (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225640002", - "Display": "Worried about being a bad father (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225641003", - "Display": "Worried about being a bad mother (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225642005", - "Display": "Anxiety about not coping with parenthood (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225643000", - "Display": "Anxiety about making mistakes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225644006", - "Display": "Anxiety about altered body image (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225660005", - "Display": "Believes phones are bugged (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225661009", - "Display": "Positive thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225662002", - "Display": "Able to think clearly (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225664001", - "Display": "Does not recognize photographs of self (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225665000", - "Display": "Recognizes self (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225666004", - "Display": "Mistakes people's identity (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "229676007", - "Display": "Language-related cognitive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230736007", - "Display": "Transient global amnesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231448004", - "Display": "Age-associated memory impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23766009", - "Display": "Basic learning problem in reading (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2421000119107", - "Display": "Hallucinations co-occurrent and due to late onset dementia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247575000", - "Display": "Below average intellect (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247578003", - "Display": "Low intelligence (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247579006", - "Display": "Underestimates intellectual ability (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247582001", - "Display": "Difficulty solving problems (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247584000", - "Display": "Difficulty making plans (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247585004", - "Display": "Difficulty making decisions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247587007", - "Display": "Long-term memory within normal limits (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247588002", - "Display": "Poor long-term memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247590001", - "Display": "Short-term memory within normal limits (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247592009", - "Display": "Poor short-term memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247593004", - "Display": "Forgets what was going to do (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247594005", - "Display": "Forgets what was going to say (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247595006", - "Display": "Forgets recent activities (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247596007", - "Display": "Forgets what has just done (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247597003", - "Display": "Forgets what has just said (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247598008", - "Display": "Forgets what has just read (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247599000", - "Display": "Forgets what has just seen (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247600002", - "Display": "Forgets what has just heard (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247602005", - "Display": "Memory function normal (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247603000", - "Display": "Extremely efficient use of mnemonics (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247605007", - "Display": "Sharpened memory for remote events (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247607004", - "Display": "Amnesia for day to day facts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247608009", - "Display": "Unable to remember today's date (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247609001", - "Display": "Unable to remember name of reigning monarch (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247610006", - "Display": "Unable to remember name of current prime minister (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247611005", - "Display": "Amnesia for important personal information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247612003", - "Display": "Cannot remember names of intimates (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247613008", - "Display": "Unable to remember own age (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247614002", - "Display": "Cannot remember wedding anniversary (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247615001", - "Display": "Cannot remember birth dates of children (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247616000", - "Display": "Cannot remember name of school (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247617009", - "Display": "Impaired ability to learn new material (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247618004", - "Display": "Memory assessment finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247619007", - "Display": "Thought finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247620001", - "Display": "Increased thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247621002", - "Display": "Expansive ideation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247622009", - "Display": "Sharpened thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247623004", - "Display": "Exciting ideas (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247624005", - "Display": "Unusually creative thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247627003", - "Display": "Slow flow of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247630005", - "Display": "Pressure of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247631009", - "Display": "Persistent thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247632002", - "Display": "Preoccupation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247633007", - "Display": "Preoccupation with compensation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247634001", - "Display": "Preoccupation with litigation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247635000", - "Display": "Sexual preoccupation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247636004", - "Display": "Preoccupation with appearance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247637008", - "Display": "Preoccupation with body size (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247638003", - "Display": "Preoccupation with specific bodily feature (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247640008", - "Display": "Unable to think clearly (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247641007", - "Display": "Puzzled (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247643005", - "Display": "Loud thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247646002", - "Display": "Direction of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247647006", - "Display": "Maintained direction of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247648001", - "Display": "Loss of direction of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247650009", - "Display": "Planning suicide (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247651008", - "Display": "Obscene thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247652001", - "Display": "Sexually obscene thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247653006", - "Display": "Negative automatic thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247654000", - "Display": "Fatuous thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247655004", - "Display": "Disinhibited thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247657007", - "Display": "Poor grasp of abstract concepts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247658002", - "Display": "Creative thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247661001", - "Display": "Gullible (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247662008", - "Display": "Suggestible (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247667002", - "Display": "Grandiose delusions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247668007", - "Display": "Delusion of grandiose ability (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247669004", - "Display": "Delusion of grandiose identity (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247670003", - "Display": "Delusion of special mission (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247671004", - "Display": "Religious delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247675008", - "Display": "Delusion associated with smell (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247676009", - "Display": "Delusion associated with sexual hallucinations (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247677000", - "Display": "Bizarre delusion associated with bodily sensation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247678005", - "Display": "Delusion of depersonalization (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247679002", - "Display": "Nihilistic delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247680004", - "Display": "Delusion concerning appearance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247683002", - "Display": "Delusion of being loved (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247684008", - "Display": "Delusion of catastrophe (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247686005", - "Display": "Depressive delusion of catastrophe (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247687001", - "Display": "Depressive delusion of poverty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247688006", - "Display": "Hypochondriacal delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247689003", - "Display": "Depressive hypochondriacal delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247691006", - "Display": "Delusion of replacement of will by external force (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247692004", - "Display": "Delusion of control of voice (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247693009", - "Display": "Delusion of control of handwriting (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247695002", - "Display": "Thought alienation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247696001", - "Display": "Delusion of own appearance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247776002", - "Display": "Depressive preoccupation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247788000", - "Display": "Lack of judgement (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247808006", - "Display": "Anxiety about body function or health (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247825008", - "Display": "Anxiety about behavior or performance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247872008", - "Display": "Obsessional thoughts of harm occurring to property (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247873003", - "Display": "Obsessional thoughts of being robbed (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247874009", - "Display": "Obsessional thoughts of fire (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247875005", - "Display": "Obsessional thoughts of explosions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247876006", - "Display": "Obsessional thoughts of causing accidents (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247877002", - "Display": "Obsessional thoughts of poisoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247878007", - "Display": "Obsessional thoughts of giving others illness (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247879004", - "Display": "Obsessional thoughts of contamination (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247880001", - "Display": "Obsessional thoughts of disease (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247881002", - "Display": "Obsessional thoughts of dirt (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247882009", - "Display": "Obsessional thoughts of germs (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247883004", - "Display": "Obsessional doubts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247884005", - "Display": "Obsessional thoughts of incompletion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247885006", - "Display": "Obsessional thoughts of throwing things away (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247887003", - "Display": "Unable to resist obsessional thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247922007", - "Display": "Flapping movements of hands (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247923002", - "Display": "Flapping movements of arms (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247924008", - "Display": "Repetitive spinning of whole body (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247925009", - "Display": "Repetitive spinning of objects (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247926005", - "Display": "Repetitive touching of objects (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247927001", - "Display": "Repetitive complex twisting movements (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247928006", - "Display": "Repetitive complex twisting movements of fingers (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247929003", - "Display": "Repetitive complex twisting movements of limbs (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247930008", - "Display": "Repetitive complex twisting movements of whole body (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247931007", - "Display": "Repetitive complex twisting of objects near eyes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247932000", - "Display": "Repititive complex twisting of hands near eyes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247933005", - "Display": "Flicking objects near eyes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247934004", - "Display": "Flicking hands near eyes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247936002", - "Display": "Repetitive pressing on eyes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247937006", - "Display": "Repetitive chin tapping (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247939009", - "Display": "Repetitive rubbing of body parts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247940006", - "Display": "Repetitive tiptoe walking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2496007", - "Display": "Acalculia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25107009", - "Display": "Verbal repetition (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25462005", - "Display": "Palinopsia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25470001000004105", - "Display": "Cognitive impairment due to multiple sclerosis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25772007", - "Display": "Multi-infarct dementia with delusions (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26243003", - "Display": "Palinacousia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26439000", - "Display": "Basic learning problem in arithmetic (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26581009", - "Display": "Retrospective falsification (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26628009", - "Display": "Disturbance in thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267073005", - "Display": "Suicidal (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26941006", - "Display": "Average intellect (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271559000", - "Display": "Obsessional thoughts of causing harm to others (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271953006", - "Display": "Obsessional thoughts of causing harm to self (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "275277000", - "Display": "Post-traumatic amnesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "275278005", - "Display": "Difficulty in remembering dates (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276236009", - "Display": "Comments on own thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276237000", - "Display": "Comments on own reading (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276238005", - "Display": "Comments on own writing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276240000", - "Display": "Comments on own actions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276243003", - "Display": "Primary delusions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276244009", - "Display": "Delusional memories (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276294005", - "Display": "Isolated memory skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276303005", - "Display": "Preoccupation with death (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276304004", - "Display": "Preoccupation with disaster (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276305003", - "Display": "Preoccupation with ruin (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276360005", - "Display": "Preoccupation with body weight (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277818007", - "Display": "Anxiety about losing control of bowels (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277819004", - "Display": "Anxiety about wetting self (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277820005", - "Display": "Anxiety about vomiting in public (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277821009", - "Display": "Anxiety about having a fit (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277822002", - "Display": "Anxiety about choking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277823007", - "Display": "Anxiety about swallowing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277824001", - "Display": "Anxiety about collapsing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277825000", - "Display": "Anxiety about shaking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277826004", - "Display": "Anxiety about sweating (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277827008", - "Display": "Anxiety about dying (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277828003", - "Display": "Anxiety about going crazy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277829006", - "Display": "Anxiety about losing emotional control (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277831002", - "Display": "Anxiety about becoming fat (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277833004", - "Display": "Anxiety about fainting (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277834005", - "Display": "Anxiety about having a heart attack (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277838008", - "Display": "Anxiety about appearing ridiculous (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277839000", - "Display": "Anxiety about saying the wrong thing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28051002", - "Display": "Repetition of words (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281136009", - "Display": "Able to think abstractly (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28116007", - "Display": "Passivity of drive (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28249008", - "Display": "Jamais vu (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283878007", - "Display": "Impairment of registration (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283880001", - "Display": "Momentary confabulation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283881002", - "Display": "Fantastical confabulation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283882009", - "Display": "Finding of memory performance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283883004", - "Display": "Finding relating to immediate recall (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283902008", - "Display": "Has delayed recall (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283989001", - "Display": "Intrusive memories (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283990005", - "Display": "Pleasant memories (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283995000", - "Display": "Verbal memory for events (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283997008", - "Display": "False memories (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284515004", - "Display": "Repetitive flapping movements (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284516003", - "Display": "Repetitive spinning movements (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284517007", - "Display": "Repetitive flicking movements (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284518002", - "Display": "Repetitive tapping movements (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284519005", - "Display": "Repetitive finger tapping (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285156004", - "Display": "Able to recognize objects (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285157008", - "Display": "Unable to recognize objects (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285159006", - "Display": "Able to recognize objects by touch (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285161002", - "Display": "Unable to recognize objects by touch (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285163004", - "Display": "Able to recognize objects by sight (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285164005", - "Display": "Unable to recognize objects by sight (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285168008", - "Display": "Able to recognize faces by sight (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285169000", - "Display": "Unable to recognize faces by sight (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285170004", - "Display": "Able to recognize faces (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285171000", - "Display": "Unable to recognize faces (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285173002", - "Display": "Able to recognize sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285174008", - "Display": "Unable to recognize sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285176005", - "Display": "Able to recognize surroundings (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285177001", - "Display": "Unable to recognize surroundings (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285182008", - "Display": "Able to recognize warning sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285183003", - "Display": "Unable to recognize warning sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285185005", - "Display": "Able to recognize odors (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285186006", - "Display": "Unable to recognize odors (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285187002", - "Display": "Able to remember own date of birth (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285188007", - "Display": "Unable to remember own date of birth (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285189004", - "Display": "Able to remember own age (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285190008", - "Display": "Able to remember day of the week (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285191007", - "Display": "Unable to remember day of the week (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285193005", - "Display": "Able to remember month of year (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285194004", - "Display": "Unable to remember month of year (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285196002", - "Display": "Able to remember current year (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285197006", - "Display": "Unable to remember current year (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285198001", - "Display": "Able to remember name of reigning monarch (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285199009", - "Display": "Able to remember name of current prime minister (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285205002", - "Display": "Able to remember today's date (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285207005", - "Display": "Able to recall random address at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285208000", - "Display": "Unable to recall random address at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285209008", - "Display": "Able to reproduce geometric figure at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285210003", - "Display": "Unable to reproduce geometric figure at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285211004", - "Display": "Able to recall five digit number at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285212006", - "Display": "Unable to recall five digit number at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285213001", - "Display": "Memory aided by use of lists (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285214007", - "Display": "Memory aided by use of labels (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285215008", - "Display": "Memory aided by use of diary (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285216009", - "Display": "Reliving traumatic memories (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285218005", - "Display": "Able to remember motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285219002", - "Display": "Unable to remember motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285220008", - "Display": "Able to remember new motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285221007", - "Display": "Unable to remember new motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285222000", - "Display": "Able to remember old motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285223005", - "Display": "Unable to remember old motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285224004", - "Display": "Able to remember objects (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285225003", - "Display": "Unable to remember objects (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285227006", - "Display": "Able to remember faces (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285228001", - "Display": "Unable to remember faces (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285229009", - "Display": "Able to remember sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285230004", - "Display": "Unable to remember sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285241002", - "Display": "Lucid (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285242009", - "Display": "Bradyphrenia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285243004", - "Display": "Sluggish thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285245006", - "Display": "Arbitrary inference (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285246007", - "Display": "Selective abstraction (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285247003", - "Display": "Catastrophization (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285248008", - "Display": "Overgeneralization (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285249000", - "Display": "Black and white thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285251001", - "Display": "Able to resist dangerous thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285252008", - "Display": "Unable to resist dangerous thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285253003", - "Display": "Able to resist dangerous thoughts with ease (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285254009", - "Display": "Able to resist dangerous thoughts with difficulty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285255005", - "Display": "Compulsion to act on dangerous thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285256006", - "Display": "Able to think independently (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285257002", - "Display": "Difficulty in thinking independently (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285260009", - "Display": "Able to resist obsessional thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285261008", - "Display": "Dangerous and harmful thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285262001", - "Display": "Thoughts of revenge (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285263006", - "Display": "Thoughts of violence (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285264000", - "Display": "Thoughts of arson (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285265004", - "Display": "Dangerous plans (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285266003", - "Display": "Dangerous fantasy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285267007", - "Display": "Thoughts of physical assault (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285268002", - "Display": "Thoughts of sexual violence (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285269005", - "Display": "Thoughts of raping (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285270006", - "Display": "Plans to kill (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285271005", - "Display": "Plans to assault (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285272003", - "Display": "Plans to commit sexual crime (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285273008", - "Display": "Plans to rape (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285274002", - "Display": "Plans to set fire (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285275001", - "Display": "Rape fantasy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285276000", - "Display": "Optimistic thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285277009", - "Display": "Delusion of unworthiness (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285286004", - "Display": "Compulsion to act on thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285294006", - "Display": "Pleasant fantasy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285295007", - "Display": "Pornographic fantasy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285303006", - "Display": "Racing thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285628005", - "Display": "Difficulty telling the time (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285629002", - "Display": "Unable to tell the time (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285630007", - "Display": "Able to tell the time (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285773007", - "Display": "Able to recognize familiar people (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285774001", - "Display": "Unable to recognize familiar people (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285779006", - "Display": "Able to recognize parts of own body (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285780009", - "Display": "Unable to recognize parts of own body (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285790001", - "Display": "Able to recognize own fingers (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285791002", - "Display": "Unable to recognize own fingers (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "286666002", - "Display": "Delusional projection - mental defense mechanism (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28810003", - "Display": "Flight of ideas (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2899008", - "Display": "Thought block (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "290621000119101", - "Display": "Cognitive deficit due to and following cerebrovascular disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "291621000119109", - "Display": "Cognitive deficit due to and following nontraumatic subarachnoid hemorrhage (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "291711000119109", - "Display": "Cognitive deficit due to and following nontraumatic intracerebral hemorrhage (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30189004", - "Display": "Repetitive rocking movements (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30199009", - "Display": "Glossolalia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "302759005", - "Display": "Guilty ideas of reference (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "302760000", - "Display": "Fast flow of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304594002", - "Display": "Suicidal intent (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304642007", - "Display": "Able to reason (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304643002", - "Display": "Unable to reason (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304644008", - "Display": "Difficulty reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304646005", - "Display": "Able to perform logical sequencing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304647001", - "Display": "Difficulty performing logical sequencing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304648006", - "Display": "Unable to perform logical sequencing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304650003", - "Display": "Able to use decision making strategies (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304651004", - "Display": "Unable to use decision making strategies (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304652006", - "Display": "Difficulty using decision making strategies (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304655008", - "Display": "Able to use visuospatial reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304656009", - "Display": "Unable to use visuospatial reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304657000", - "Display": "Difficulty using visuospatial reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304660007", - "Display": "Able to use arithmetic reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304661006", - "Display": "Unable to use arithmetic reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304662004", - "Display": "Difficulty using arithmetic reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304664003", - "Display": "Able to use verbal reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304665002", - "Display": "Unable to use verbal reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304666001", - "Display": "Difficulty using verbal reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304687006", - "Display": "Able to make considered choices (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304688001", - "Display": "Unable to make considered choices (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304689009", - "Display": "Difficulty making considered choices (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307078008", - "Display": "Thought commentary (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307083000", - "Display": "Able to process information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307084006", - "Display": "Unable to process information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307085007", - "Display": "Difficulty processing information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307087004", - "Display": "Able to analyze information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307088009", - "Display": "Unable to analyze information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307089001", - "Display": "Difficulty analyzing information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307413004", - "Display": "Transient memory loss (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309251006", - "Display": "Able to read (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309252004", - "Display": "Unable to read (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309253009", - "Display": "Difficulty reading (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311407009", - "Display": "Digit span forwards (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311476004", - "Display": "Digit span reverse (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311533004", - "Display": "Delayed verbal memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311535006", - "Display": "Rigidity of thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311538008", - "Display": "Able to process information accurately (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311539000", - "Display": "Unable to process information accurately (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311540003", - "Display": "Difficulty processing information accurately (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311541004", - "Display": "Able to process information at normal speed (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311542006", - "Display": "Unable to process information at normal speed (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311543001", - "Display": "Difficulty processing information at normal speed (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313005", - "Display": "Déjà vu (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3185000", - "Display": "Mood-congruent delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32541007", - "Display": "Paramnesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33254005", - "Display": "Uncompensated short term memory deficit (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34883005", - "Display": "Autistic thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "357705009", - "Display": "Cotard's syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365252004", - "Display": "Finding of thought process (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365264007", - "Display": "Finding of flow of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365276007", - "Display": "Finding of speed of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365287004", - "Display": "Finding of amount of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365298003", - "Display": "Finding of clarity of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365309002", - "Display": "Finding of use of imagination (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365320002", - "Display": "Finding of independence of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365331005", - "Display": "Finding related to ability to think abstractly (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365342001", - "Display": "Finding of cognitive style (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365353007", - "Display": "Finding related to ability to resist thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365364005", - "Display": "Finding related to ability to resist dangerous thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365375009", - "Display": "Finding related to ability to resist obsessional thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365518001", - "Display": "Finding related to ability to recognize objects (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365529002", - "Display": "Finding related to ability to recognize objects by touch (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365540005", - "Display": "Finding related to ability to recognize objects by sight (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365551005", - "Display": "Finding related to ability to recognize sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365562005", - "Display": "Finding related to ability to recognize warning sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365572008", - "Display": "Finding related to ability to recognize odors (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365583004", - "Display": "Finding related to ability to recognize surroundings (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365594000", - "Display": "Finding related to ability to recognize other persons (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365606002", - "Display": "Finding related to ability to recognize faces (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365617001", - "Display": "Finding related to ability to recognize faces by sight (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365628002", - "Display": "Finding related to ability to recognize familiar people (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365639004", - "Display": "Finding related to ability to recognize self (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365650001", - "Display": "Finding related to ability to recognize parts of own body (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365661009", - "Display": "Finding related to ability to recognize own fingers (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365672004", - "Display": "Finding related to ability to reason (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365682003", - "Display": "Finding related to ability to use verbal reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365693001", - "Display": "Finding related to ability to use arithmetic reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365704005", - "Display": "Finding related to ability to use visuospatial reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365715000", - "Display": "Finding related to ability to process information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365726006", - "Display": "Finding related to ability to process information accurately (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365737007", - "Display": "Finding related to ability to process information at normal speed (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365748000", - "Display": "Finding related to ability to analyze information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365770002", - "Display": "Finding related to ability to tell the time (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365792003", - "Display": "Finding related to ability to read (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365803008", - "Display": "Finding related to logical sequencing ability (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365814006", - "Display": "Finding of intellectual ability (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365826001", - "Display": "Finding of intellectual faculties (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365837000", - "Display": "Finding of judgement (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365848007", - "Display": "Finding of digit span performance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365859003", - "Display": "Finding of short-term memory performance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365869009", - "Display": "Finding of verbal short-term memory performance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365875000", - "Display": "Finding related to ability to recall random address at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365885004", - "Display": "Finding related to ability to recall five digit number at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365886003", - "Display": "Finding of visual short-term memory performance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365887007", - "Display": "Finding related to ability to reproduce geometric figure at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365888002", - "Display": "Finding of long-term memory performance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365890001", - "Display": "Finding of semantic memory performance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365891002", - "Display": "Finding related to ability to remember own date of birth (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365892009", - "Display": "Finding related to ability to remember own age (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365893004", - "Display": "Finding related to ability to remember day of the week (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365894005", - "Display": "Finding related to ability to remember today's date (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365895006", - "Display": "Finding related to ability to remember month of year (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365896007", - "Display": "Finding related to ability to remember current year (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365897003", - "Display": "Finding related to ability to remember name of reigning monarch (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365898008", - "Display": "Finding related to ability to remember name of current prime minister (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365899000", - "Display": "Finding related to ability to remember objects (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365900005", - "Display": "Finding related to ability to remember faces (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365901009", - "Display": "Finding related to ability to remember sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365902002", - "Display": "Finding related to ability to remember motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365903007", - "Display": "Finding related to ability to remember new motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365904001", - "Display": "Finding related to ability to remember old motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365905000", - "Display": "Finding of use of memory retrieval aids (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365906004", - "Display": "Finding of memory for own age (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365907008", - "Display": "Finding of memory for present time (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365908003", - "Display": "Finding of memory for present place (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365909006", - "Display": "Finding of memory for present year (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365911002", - "Display": "Finding of memory for own date of birth (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365912009", - "Display": "Finding of memory for present month (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365913004", - "Display": "Finding of memory for important event (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365914005", - "Display": "Finding of memory for important person (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365915006", - "Display": "Finding of memory for counting down (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365916007", - "Display": "Finding of memory for address recall (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365918008", - "Display": "Finding of semantic memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365919000", - "Display": "Finding of verbal memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365920006", - "Display": "Finding of type of memories (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365923008", - "Display": "Finding related to decision making (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365924002", - "Display": "Finding related to ability to use decision making strategies (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365925001", - "Display": "Finding related to ability to make considered choices (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365926000", - "Display": "Finding of problem solving (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "367358004", - "Display": "Above average intellect (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373930000", - "Display": "Cognitive function finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38504003", - "Display": "Impaired judgement (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "386805003", - "Display": "Mild cognitive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "386806002", - "Display": "Impaired cognition (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "386807006", - "Display": "Memory impairment (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39416002", - "Display": "Non sequiturs (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "395689002", - "Display": "Transient epileptic amnesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397588000", - "Display": "Demonstrates knowledge of expected responses to operative procedure (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397598006", - "Display": "Demonstrates knowledge of nutritional requirements related to operative procedure (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397629003", - "Display": "Participates in perioperative plan of care decisions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397640006", - "Display": "Healthcare knowledge finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397675006", - "Display": "Demonstrates knowledge of wound healing process (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397699006", - "Display": "Demonstrates knowledge of medication management (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397724004", - "Display": "Demonstrates knowledge of pain management (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40077001", - "Display": "Magical thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "401010000", - "Display": "Patient concerned about eyesight (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "401229000", - "Display": "Thoughts of deliberate self harm (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "401230005", - "Display": "Plans for deliberate self harm without intent (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "401231009", - "Display": "Intent of deliberate self harm with detailed plans (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40277007", - "Display": "Systematized delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40628008", - "Display": "Repetition of phrases (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "407628009", - "Display": "Global deterioration scale finding for assessment of primary degenerative dementia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "407629001", - "Display": "Global Deterioration Scale level 1 - no cognitive decline (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "407630006", - "Display": "Global Deterioration Scale level 2 - very mild cognitive decline (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "407631005", - "Display": "Global Deterioration Scale level 3 - mild cognitive decline (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "407632003", - "Display": "Global Deterioration Scale level 4 - moderate cognitive decline (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "407633008", - "Display": "Global Deterioration Scale level 5 - moderately severe cognitive decline (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "407634002", - "Display": "Global Deterioration Scale level 6 - severe cognitive decline (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "407635001", - "Display": "Global Deterioration Scale level 7 - very severe cognitive decline (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "408364003", - "Display": "Patient does not understand why taking all medication (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40907002", - "Display": "Word salad (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41189006", - "Display": "Ideas of reference (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413088002", - "Display": "Poor visual sequential memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413089005", - "Display": "Poor auditory sequential memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413301003", - "Display": "Feels at risk of crime in the neighborhood (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41435003", - "Display": "Disturbance in structure of associations (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "415806002", - "Display": "Using decision making strategies (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41591006", - "Display": "Disorder of form of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416106008", - "Display": "Disturbance of memory for order of events (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416687002", - "Display": "Flashbacks have stopped (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417233008", - "Display": "Paranoid ideation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417938007", - "Display": "Verbalizes prescribed activity plan (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "418075002", - "Display": "Verbalizes plan for reduction of exercise barriers (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "418415002", - "Display": "Finding related to the ability to verbalize understanding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "418428009", - "Display": "Verbalizes plan to support exercise (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "418716000", - "Display": "Verbalizes essential medication characteristics (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "418837001", - "Display": "Verbalizes chronic illness diagnosis and severity (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419011006", - "Display": "Verbalizes medication compliance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419049005", - "Display": "Verbalizes medication refill plans (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419128007", - "Display": "Verbalizes plan for reduction of medication compliance barriers (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419399001", - "Display": "Verbalizes discharge instructions regarding activity plan (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419606008", - "Display": "Verbalizes medication self-dose adjustment methods (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419849006", - "Display": "Verbalizes activity tolerance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41996009", - "Display": "Repetitive hand wringing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420169008", - "Display": "Verbalizes routine for medication administration (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42176003", - "Display": "Amnesia for recent events (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422423006", - "Display": "Cultural barrier impedes ability to use community resources (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422454005", - "Display": "Unable to use communication device to communicate with community resources (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422716006", - "Display": "Difficulty understanding community service provider role (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422742006", - "Display": "Difficulty problem solving without conflict (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423124001", - "Display": "Diminished judgement (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423324006", - "Display": "Limited reasoning ability (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423525008", - "Display": "Inadequate use of communication device to communicate with community resources (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423864004", - "Display": "Forgets to complete personal care (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423875000", - "Display": "Deficient knowledge of family planning methods (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423884000", - "Display": "Repetitious behavior (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424040008", - "Display": "Psychological pseudocyesis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424100000", - "Display": "Limited ability to think abstractly (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424423005", - "Display": "Language barrier impedes ability to use community resources (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424537004", - "Display": "Deficient knowledge of preconception health practices (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424629004", - "Display": "Transportation barrier impedes ability to use community resources (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424746008", - "Display": "Unable to communicate concern to community service provider (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424994000", - "Display": "Educational barrier impedes ability to use community resources (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425104003", - "Display": "Suicidal behavior (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425209002", - "Display": "Unfamiliar with process for obtaining community services (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425296002", - "Display": "Dissatisfaction with community resource services (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425805004", - "Display": "Cognitive developmental delay (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426502000", - "Display": "Ready for enhanced knowledge (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42688000", - "Display": "Preoccupation of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427305007", - "Display": "Ready for enhanced decision making (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431432003", - "Display": "Anxiety about loss of memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433081000", - "Display": "Organic amnesia of language (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4364002", - "Display": "Structure of associations (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442212003", - "Display": "Residual cognitive deficit as late effect of cerebrovascular accident (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443265004", - "Display": "Cognitive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44515000", - "Display": "Perseveration (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445201000124105", - "Display": "Non-verbally indicates understanding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445651000124107", - "Display": "Verbalizes understanding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44906001", - "Display": "Capgras' syndrome (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449888003", - "Display": "Normal cognition (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "453521000124104", - "Display": "Deficient knowledge of medication administration (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "453531000124101", - "Display": "Deficient knowledge of medication storage (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "45418009", - "Display": "Basic learning problem in speaking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "458461000124102", - "Display": "Does not understand benefit of taking medication (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "461281000124105", - "Display": "Able to remember season (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46781003", - "Display": "Basic learning problem in writing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4721006", - "Display": "Basic motor learning problem (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48167000", - "Display": "Amnesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49229003", - "Display": "Déjà entendu (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4941000175101", - "Display": "Difficulty following instructions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50532002", - "Display": "Noesis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50543005", - "Display": "Thought insertion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50829006", - "Display": "Basic learning problem (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51474003", - "Display": "Disturbance in speed of associations (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51921000", - "Display": "Retrograde amnesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53108004", - "Display": "Delusion of guilt (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53138005", - "Display": "Mood-incongruent delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53209001", - "Display": "Decisional conflict (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53297005", - "Display": "Fregoli syndrome (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53427000", - "Display": "Finger-flicking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54407007", - "Display": "Fast learner (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54501006", - "Display": "Neologism (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5451000175105", - "Display": "Verbalizes partial understanding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5461000175107", - "Display": "Verbalizes no understanding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55050000", - "Display": "Hypermnesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55346003", - "Display": "Loosening of associations (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55533009", - "Display": "Forgetful (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55640002", - "Display": "Dyscalculia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55781004", - "Display": "Intellectual precocity (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55956009", - "Display": "Disturbance in content of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56435009", - "Display": "Poverty of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56835001", - "Display": "Palikinesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58585005", - "Display": "Autochthonous delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5921000175108", - "Display": "Deficient knowledge of healthcare alternatives (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "609583009", - "Display": "Repetitive questioning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6149008", - "Display": "Amnesia for remote events (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61861001", - "Display": "Speed of associations (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6349000", - "Display": "Projection - mental defense mechanism (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "64336009", - "Display": "Incoherent thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "64514005", - "Display": "Delusional perception (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6471006", - "Display": "Suicidal thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "65135009", - "Display": "Knight's move in thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "672561000119103", - "Display": "Cognitive deficit due to and following ischemic cerebrovascular accident (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "672571000119109", - "Display": "Cognitive deficit due to and following hemorrhagic cerebrovascular accident (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67348001", - "Display": "Delusional conclusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67698009", - "Display": "Obsessional thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "690341000119100", - "Display": "Cognitive deficit due to and following embolic cerebrovascular accident (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698687007", - "Display": "Post-traumatic dementia with behavioral change (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698691002", - "Display": "Cognitive disorder in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "702535006", - "Display": "Anxiety about breathlessness (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "702955000", - "Display": "Moderate cognitive impairment (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "702956004", - "Display": "Severe cognitive impairment (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704375003", - "Display": "Deficient knowledge of breast feeding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704377006", - "Display": "Deficient knowledge of peritoneal dialysis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704379009", - "Display": "Deficient knowledge of sexual behavior (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704381006", - "Display": "Deficient knowledge of oral hygiene (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704383009", - "Display": "Deficient knowledge of child development (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704400005", - "Display": "Deficient knowledge of community services (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704402002", - "Display": "Deficient knowledge of physical therapy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704403007", - "Display": "Deficient knowledge of fall prevention (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704404001", - "Display": "Deficient knowledge of pain management (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704406004", - "Display": "Deficient knowledge of symptom (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704446005", - "Display": "Deficient knowledge of exercise (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704491001", - "Display": "Deficient knowledge of traditional therapy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704680001", - "Display": "Deficient knowledge of behavior change process (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "705086000", - "Display": "Deficient knowledge of patient controlled analgesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "706869001", - "Display": "Deficient knowledge of medication (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "707165003", - "Display": "Does not agree with care plan (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "708571001", - "Display": "Demonstrates knowledge of who to contact in medical emergency (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "709073001", - "Display": "Neurocognitive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "709134004", - "Display": "Judgement intact (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "711561004", - "Display": "Has access to planned means of suicide (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712759008", - "Display": "Sense of impending doom (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713398008", - "Display": "Deficient knowledge of travel health (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713447003", - "Display": "Deficient knowledge of parenting (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713448008", - "Display": "Deficient knowledge of infant feeding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713449000", - "Display": "Deficient knowledge of infant care (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713451001", - "Display": "Deficient knowledge of labor and delivery (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713452008", - "Display": "Deficient knowledge of fetal development (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71426002", - "Display": "Erotographomania (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714411005", - "Display": "Able to agree with care plan (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714421002", - "Display": "Difficulty agreeing with care plan (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714670007", - "Display": "Deficient knowledge of pregnancy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714830003", - "Display": "Unable to agree with care plan (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714831004", - "Display": "Does agree with care plan (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71573006", - "Display": "Concrete thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "716391009", - "Display": "Able to adapt to sensory changes in body part (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "716415003", - "Display": "Able to make decision on safe information to give over telephone (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "716433009", - "Display": "Able to problem solve (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "716438000", - "Display": "Able to recognize need for pressure area care (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "716442002", - "Display": "Able to remember people (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "716454002", - "Display": "Able to think creatively (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719731006", - "Display": "Able to remember places (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719734003", - "Display": "Able to identify choices (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719743007", - "Display": "Able to make decisions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719747008", - "Display": "Able to remember routines (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "720438009", - "Display": "Able to make decision on safe entry of visitors (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721157004", - "Display": "Able to remember past events (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724755002", - "Display": "Positive symptoms co-occurrent and due to primary psychotic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724760003", - "Display": "Cognitive impairment co-occurrent and due to primary psychotic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "736314008", - "Display": "Dissociative neurological symptom disorder co-occurrent with cognitive symptoms (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "736317001", - "Display": "Impaired executive functioning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "736319003", - "Display": "Disorganized thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74396008", - "Display": "Tangential thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762298000", - "Display": "Cognitive impairment due to toxicity of substance (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762622003", - "Display": "Referential thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76789006", - "Display": "Information conversion problem (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7684004", - "Display": "Fantasizing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77303001", - "Display": "Delusion of poverty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78205008", - "Display": "Irrational thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78633001", - "Display": "Altered thought processes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7865000", - "Display": "Reality testing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "788897000", - "Display": "Delusion of misidentification (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79015004", - "Display": "Worried (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79427009", - "Display": "Unio mystica (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81215003", - "Display": "Overvalued idea (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81511006", - "Display": "Basic learning problem in language (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82361000119107", - "Display": "Altered behavior in dementia due to Huntington chorea (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82371000119101", - "Display": "Dementia due to multiple sclerosis with altered behavior (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8273004", - "Display": "Intelligence quotient high (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82791007", - "Display": "Bizarre delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82870007", - "Display": "Pornographomania (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8330006", - "Display": "Delusion of infidelity (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83507006", - "Display": "Finding of thought content (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "836301008", - "Display": "Amnestic mild cognitive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "840449007", - "Display": "Cognitive impairment caused by ingestible alcohol (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85173004", - "Display": "False recognition (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86110000", - "Display": "Rumination - thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86597007", - "Display": "Illogical thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8684002", - "Display": "Disturbance in judgement (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86917003", - "Display": "Thought broadcast (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870262000", - "Display": "Pervasive developmental disorder with disorder of intellectual development without loss of previously acquired skills (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870264004", - "Display": "Pervasive developmental disorder with disorder of intellectual development and pervasive impairment of functional language without loss of previously acquired skills (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870265003", - "Display": "Pervasive developmental disorder with disorder of intellectual development with loss of previously acquired skills (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870266002", - "Display": "Pervasive developmental disorder with disorder of intellectual development and marked impairment of functional language with loss of previously acquired skills (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870267006", - "Display": "Pervasive developmental disorder with disorder of intellectual development and marked impairment of functional language without loss of previously acquired skills (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870268001", - "Display": "Pervasive developmental disorder with disorder of intellectual development and complete impairment of functional language without loss of previously acquired skills (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870269009", - "Display": "Pervasive developmental disorder with disorder of intellectual development and absence of functional language with loss of previously acquired skills (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870270005", - "Display": "Pervasive developmental disorder with disorder of intellectual development and complete impairment of functional language with loss of previously acquired skills (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870305003", - "Display": "Pervasive developmental disorder with cognitive developmental delay and marked impairment of functional language (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870308001", - "Display": "Pervasive developmental disorder with cognitive developmental delay and complete impairment of functional language (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870752006", - "Display": "Finding related to health literacy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87076008", - "Display": "Thought withdrawal (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "871869008", - "Display": "Difficulty demonstrating health literacy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "871870009", - "Display": "Able to demonstrate health literacy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "871872001", - "Display": "Unable to demonstrate health literacy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88293003", - "Display": "Clang associations (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88822006", - "Display": "Anterograde amnesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88962006", - "Display": "Incomplete clearmindedness (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89225005", - "Display": "Anxiety about blushing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89809008", - "Display": "Delusion of parasitosis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90207007", - "Display": "Grinding teeth (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90406001", - "Display": "Amorphosynthesis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9288000", - "Display": "Irrelevant answer (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "97751000119108", - "Display": "Altered behavior in Alzheimer's disease (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G31.84", - "Display": "Mild cognitive impairment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I69.31", - "Display": "Cognitive deficits following cerebral infarction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R41.81", - "Display": "Age-related cognitive decline" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R41.841", - "Display": "Cognitive communication deficit" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R41.9", - "Display": "Unspecified symptoms and signs involving cognitive functions and awareness" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.43.json b/build/main/resources/2.16.840.1.113762.1.4.1222.43.json deleted file mode 100644 index d34198d..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.43.json +++ /dev/null @@ -1,1910 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10528009", - "Display": "Lupus vulgaris (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10706006", - "Display": "Tuberculosis of central nervous system (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10759881000119100", - "Display": "Tuberculosis in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10893003", - "Display": "Tuberculous adenitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1092771000119104", - "Display": "Tuberculous neuritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111825008", - "Display": "Tuberculosis of conjunctiva (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111830007", - "Display": "Tuberculosis of urinary organs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111832004", - "Display": "Primary progressive tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11676005", - "Display": "Tuberculous leptomeningitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11999007", - "Display": "Inactive tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12137005", - "Display": "Tuberculous enteritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12677003", - "Display": "Tuberculosis of brain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129211000119108", - "Display": "Isoniazid resistant tuberculosis of lung (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12985005", - "Display": "Tuberculosis of seminal vesicle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13570003", - "Display": "Tuberculous tenosynovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14188007", - "Display": "Tuberculosis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14527007", - "Display": "Tuberculous empyema (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15202009", - "Display": "Tuberculoma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15284007", - "Display": "Tuberculosis of esophagus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "154283005", - "Display": "Pulmonary tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016231000119109", - "Display": "Tuberculosis of right knee joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016311000119107", - "Display": "Tuberculosis of left knee joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "161414005", - "Display": "History of tuberculosis (situation)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16409009", - "Display": "Tuberculosis of retroperitoneal lymph nodes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17136009", - "Display": "Tuberculosis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17653001", - "Display": "Tuberculosis of bones and/or joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "182159002", - "Display": "Disseminated tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "185113005", - "Display": "Tuberculosis of adrenal glands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186172004", - "Display": "Tuberculous pleurisy in primary progressive tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186175002", - "Display": "Infiltrative lung tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186177005", - "Display": "Tuberculosis of lung with cavitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186178000", - "Display": "Tuberculosis of bronchus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186182003", - "Display": "Tuberculosis of pleura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186192006", - "Display": "Respiratory tuberculosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186193001", - "Display": "Tuberculosis of lung" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186194007", - "Display": "Tuberculosis of lung" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186195008", - "Display": "Tuberculosis of lung" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186199002", - "Display": "Tuberculosis of larynx" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186200004", - "Display": "Tuberculous pleurisy" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186201000", - "Display": "Primary respiratory tuberculosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186202007", - "Display": "Respiratory tuberculosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186203002", - "Display": "Tuberculosis of lung" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186204008", - "Display": "Tuberculosis of lung" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186225008", - "Display": "Tuberculosis of intestines" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186259007", - "Display": "Scrofulous tuberculous abscess (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186263000", - "Display": "Tuberculous chorioretinitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186266008", - "Display": "Tuberculous chronic iridocyclitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186267004", - "Display": "Tuberculous keratoconjunctivitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186269001", - "Display": "Tuberculosis of ear (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186270000", - "Display": "Tuberculous Addison's disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186272008", - "Display": "Tuberculosis of stomach (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186273003", - "Display": "Tuberculosis of liver (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186276006", - "Display": "Acute miliary tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186278007", - "Display": "Acute miliary tuberculosis of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190710003", - "Display": "Tuberculous arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193787009", - "Display": "Keratitis caused by tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194908003", - "Display": "Acute tuberculous pericarditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194949003", - "Display": "Acute myocarditis - tuberculous (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "198241002", - "Display": "Female tuberculous pelvic inflammatory disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199175001", - "Display": "Maternal tuberculosis during pregnancy" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199178004", - "Display": "Tuberculosis in pregnancy" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199179007", - "Display": "Maternal tuberculosis in the puerperium - baby delivered during current episode of care (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199180005", - "Display": "Maternal tuberculosis during pregnancy - baby not yet delivered (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199181009", - "Display": "Maternal tuberculosis in the puerperium - baby delivered during previous episode of care (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202994006", - "Display": "Tuberculous infection of tendon sheath (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203263006", - "Display": "Tuberculosis of cervical spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203264000", - "Display": "Tuberculosis of thoracic spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203265004", - "Display": "Tuberculosis of lumbar spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203267007", - "Display": "Tuberculosis of limb bones (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203269005", - "Display": "Tuberculosis of the upper arm bone (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203270006", - "Display": "Tuberculosis of the forearm bone (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203271005", - "Display": "Tuberculosis of the pelvic and/or thigh bones (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203272003", - "Display": "Tuberculosis of the lower leg bone (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203274002", - "Display": "Tuberculosis of multiple limb bones (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203278004", - "Display": "Tuberculosis of the bones of the shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203279007", - "Display": "Tuberculosis of the bones of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203280005", - "Display": "Tuberculosis of the bones of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203282002", - "Display": "Tuberculosis of the bones of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20372007", - "Display": "Tuberculosis of prostate (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "213580002", - "Display": "Caseating tuberculoid granuloma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22990009", - "Display": "Chronic tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233649005", - "Display": "Tuberculous chylothorax (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233763009", - "Display": "Silicotuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233794009", - "Display": "Tuberculous bronchopleural fistula (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234090004", - "Display": "Tuberculous mesenteric adenitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235067001", - "Display": "Oral tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235694001", - "Display": "Tuberculous duodenitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236602004", - "Display": "Tuberculous stricture of ureter (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236684001", - "Display": "Tuberculous urethritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236770001", - "Display": "Tuberculous epididymo-orchitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237445009", - "Display": "Tuberculosis of breast (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238430004", - "Display": "Cutaneous complication of bacillus Calmette-Guerin immunization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238431000", - "Display": "Bacillus Calmette-Guerin granuloma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238432007", - "Display": "Bacillus Calmette-Guerin ulcer (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240376003", - "Display": "Tuberculosis of gastrointestinal tract (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240379005", - "Display": "Tuberculosis of male genital organs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240380008", - "Display": "Acute tuberculous ulcer (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240381007", - "Display": "Acute miliary cutaneous tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240382000", - "Display": "Cutaneous tuberculous gumma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24235005", - "Display": "Tuberculous hydrothorax (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24810006", - "Display": "Tuberculosis orificialis of mouth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25629007", - "Display": "Acute tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25738004", - "Display": "Tuberculous synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25831001", - "Display": "Tuberculosis of nasal septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267317007", - "Display": "Tuberculosis in pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26935004", - "Display": "Tuberculosis of thyroid gland (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271423008", - "Display": "Tuberculosis of skin and subcutaneous tissue (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281623008", - "Display": "Genital tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28399005", - "Display": "Tuberculosis of spleen (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29731002", - "Display": "Tuberculous pneumothorax (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301836007", - "Display": "Tuberculosis of colon (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "302131003", - "Display": "Tuberculosis of heart (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31112008", - "Display": "Tuberculous meningoencephalitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314029000", - "Display": "Tuberculous uveitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32268008", - "Display": "Tuberculosis of bladder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33893009", - "Display": "Tuberculosis verrucosa cutis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35585004", - "Display": "Tuberculous endometritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35786001", - "Display": "Tuberculoma of meninges (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35984006", - "Display": "Tuberculosis of vertebral column (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "37133005", - "Display": "Tuberculous pyelitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "37260006", - "Display": "Congenital tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373043002", - "Display": "Infection caused by Mycobacterium microti (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373085003", - "Display": "Infection caused by Mycobacterium africanum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373086002", - "Display": "Infection caused by mycobacterium tuberculosis hominis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373437006", - "Display": "Infection caused by Mycobacterium bovis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373576009", - "Display": "Infection caused by Mycobacterium tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38115001", - "Display": "Tuberculosis of spinal meninges (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38279006", - "Display": "Tuberculosis of bone (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38420005", - "Display": "Tuberculosis of large intestine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39306006", - "Display": "Tuberculosis of anus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40258005", - "Display": "Tuberculosis of testis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402973006", - "Display": "Bacillus Calmette-Guerin-induced lupus vulgaris (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402974000", - "Display": "Bacillus Calmette-Guerin-induced scrofuloderma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402975004", - "Display": "Bacillus Calmette-Guerin-induced tuberculide (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413556004", - "Display": "Antibiotic resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413852006", - "Display": "Ciprofloxacin resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414146004", - "Display": "Ethambutol resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414149006", - "Display": "Ethionamide resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414546009", - "Display": "Isoniazid resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "415222009", - "Display": "Pyrazinamide resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "415345001", - "Display": "Rifampicin resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "415622003", - "Display": "Streptomycin resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416265003", - "Display": "Tuberculoma of brain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416903004", - "Display": "Tuberculoma of spinal cord (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421571007", - "Display": "Tuberculosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422481005", - "Display": "Extreme drug resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4225003", - "Display": "Tuberculosis of nose (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423092005", - "Display": "Multidrug resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423709000", - "Display": "Drug resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423997002", - "Display": "Tuberculosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427099000", - "Display": "Active tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428697002", - "Display": "Inactive tuberculosis of lung (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428934008", - "Display": "History of inactive tuberculosis (situation)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441770001", - "Display": "Tuberculosis of external body orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44182001", - "Display": "Tuberculous necrosis of bone (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44323002", - "Display": "Tuberculosis of kidney (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443378001", - "Display": "Lady Windermere syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4445009", - "Display": "Tuberculosis of genitourinary system (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44572005", - "Display": "Tuberculous peritonitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446753005", - "Display": "Tuberculosis of oropharynx (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446946005", - "Display": "Reinfection pulmonary tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446986002", - "Display": "Tuberculous pleural effusion (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447006007", - "Display": "Relapse pulmonary tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447012002", - "Display": "Tuberculosis of spinal cord (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447253004", - "Display": "Tuberculous arachnoiditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447330002", - "Display": "Tuberculosis of abdomen (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447371008", - "Display": "Tuberculosis of ileum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449925002", - "Display": "Tuberculosis of bone of upper limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4501007", - "Display": "Tuberculous ascites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "460440005", - "Display": "Pericarditis with pericardial effusion caused by Mycobacterium tuberculosis complex (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "460464006", - "Display": "Constrictive pericarditis caused by Mycobacterium tuberculosis complex (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47292005", - "Display": "Tuberculosis of myocardium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473114006", - "Display": "History of active tuberculosis (situation)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473426009", - "Display": "Primary tuberculous complex confirmed by culture (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473427000", - "Display": "Primary tuberculous complex confirmed histologically (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473428005", - "Display": "Primary tuberculous complex confirmed by microscopic examination (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473429002", - "Display": "Tuberculoma of spinal cord confirmed (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473430007", - "Display": "Primary tuberculous complex confirmed (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473431006", - "Display": "Primary tuberculous complex with bacteriological or histological examination results unknown (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47604008", - "Display": "Miliary tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48225000", - "Display": "Tuberculous disseminated chorioretinitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49107007", - "Display": "Tuberculosis of eye (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49558004", - "Display": "Tuberculous salpingitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49807009", - "Display": "Tuberculous dactylitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51014003", - "Display": "Reinfection tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52721006", - "Display": "Tuberculosis of nasal sinus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52987001", - "Display": "Tuberculosis of endocardium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54084005", - "Display": "Cervical tuberculous lymphadenitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55419007", - "Display": "Tuberculosis of glottis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56498009", - "Display": "Tuberculosis of nasopharynx (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56717001", - "Display": "Tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58374007", - "Display": "Acute diffuse tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58437007", - "Display": "Tuberculosis of meninges (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58764007", - "Display": "Tuberculous osteomyelitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60136008", - "Display": "Tuberculosis of intestines (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62494007", - "Display": "Chronic miliary tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62819009", - "Display": "Tuberculous cervicitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63309002", - "Display": "Primary tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63808004", - "Display": "Tuberculous chancre (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66986005", - "Display": "Tuberculosis of skin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67256000", - "Display": "Tuberculosis of pericardium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700272008", - "Display": "Tuberculosis of respiratory system (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700273003", - "Display": "Isolated tracheobronchial tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70341005", - "Display": "Tuberculous laryngitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "707149004", - "Display": "Mycobacterial lymphadenitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "710106005", - "Display": "Extensively drug resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71375000", - "Display": "Tuberculosis of mastoid process (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714394004", - "Display": "Lupus vulgaris of nose (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717697005", - "Display": "Tuberculous ulceration of vulva (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71943007", - "Display": "Chronic granulomatous tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721732001", - "Display": "Infection of musculoskeletal system caused by Mycobacterium tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724541008", - "Display": "Acute miliary tuberculosis of single site (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72807002", - "Display": "Tuberculous polyserositis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "733835007", - "Display": "Extrapulmonary tuberculosis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735517008", - "Display": "Myositis caused by Mycobacterium tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735518003", - "Display": "Infection of digestive system caused by Mycobacterium tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735519006", - "Display": "Infection of endocrine gland caused by Mycobacterium tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735521001", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 1 co-occurrent with tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735523003", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 2 co-occurrent with tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735525005", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 3 co-occurrent with tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735527002", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 4 co-occurrent with tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74181004", - "Display": "Tuberculosis of female genital organs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74387008", - "Display": "Tuberculosis of hilar lymph nodes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7444001", - "Display": "Tuberculosis of rectum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74610006", - "Display": "Tuberculous erythema nodosum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77038006", - "Display": "Tuberculosis of peripheral lymph nodes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "770674007", - "Display": "Tubercular lesion of lung (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78436002", - "Display": "Tuberculosis of intrathoracic lymph nodes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "788960009", - "Display": "Infection of placenta caused by Mycobacterium tuberculosis complex (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789056000", - "Display": "Tuberculosis of inner ear (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789057009", - "Display": "Tuberculosis of middle ear (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79158003", - "Display": "Tuberculous interstitial keratitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80003002", - "Display": "Tuberculous pneumonia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80010008", - "Display": "Isolated bronchial tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80602006", - "Display": "Nodular tuberculosis of lung (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81133003", - "Display": "Tuberculosis of bones of lower extremity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81359005", - "Display": "Tuberculosis of ureter (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81554001", - "Display": "Tuberculosis of lung with involvement of bronchus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82495004", - "Display": "Tuberculosis of mediastinal lymph nodes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8250007", - "Display": "Tuberculosis of subcutaneous cellular tissue (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82796002", - "Display": "Scrofuloderma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83652003", - "Display": "Tuberculosis of epididymis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83784000", - "Display": "Tuberculosis of mediastinum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "840446000", - "Display": "Dacryoadenitis caused by Mycobacterium tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84194006", - "Display": "Tuberculous oophoritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84288007", - "Display": "Tuberculous episcleritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85692003", - "Display": "Tuberculosis of tracheobronchial lymph nodes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85940005", - "Display": "Tuberculous otitis media (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "860803004", - "Display": "Hydrocephalus due to tuberculosis of brain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "866083008", - "Display": "Infection of eyelid caused by Mycobacterium tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870333003", - "Display": "Panuveitis caused by Mycobacterium tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8832006", - "Display": "Tuberculosis orificialis of anus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88356006", - "Display": "Primary tuberculous complex (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90117007", - "Display": "Tuberculous fibrosis of lung (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90302003", - "Display": "Tuberculosis of cerebral meninges (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91483004", - "Display": "Tuberculous encephalitis (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A15.0", - "Display": "Tuberculosis of lung" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A15.4", - "Display": "Tuberculosis of intrathoracic lymph nodes" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A15.5", - "Display": "Tuberculosis of larynx" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A15.6", - "Display": "Tuberculous pleurisy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A15.7", - "Display": "Primary respiratory tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A15.8", - "Display": "Other respiratory tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A15.9", - "Display": "Respiratory tuberculosis unspecified" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A17.0", - "Display": "Tuberculous meningitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A17.1", - "Display": "Meningeal tuberculoma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A17.81", - "Display": "Tuberculoma of brain and spinal cord" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A17.82", - "Display": "Tuberculous meningoencephalitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A17.83", - "Display": "Tuberculous neuritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A17.89", - "Display": "Other tuberculosis of nervous system" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A17.9", - "Display": "Tuberculosis of nervous system" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.01", - "Display": "Tuberculosis of spine" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.02", - "Display": "Tuberculous arthritis of other joints" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.03", - "Display": "Tuberculosis of other bones" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.09", - "Display": "Other musculoskeletal tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.1", - "Display": "Tuberculosis of genitourinary system" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.10", - "Display": "Tuberculosis of genitourinary system" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.11", - "Display": "Tuberculosis of kidney and ureter" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.12", - "Display": "Tuberculosis of bladder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.13", - "Display": "Tuberculosis of other urinary organs" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.14", - "Display": "Tuberculosis of prostate" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.15", - "Display": "Tuberculosis of other male genital organs" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.16", - "Display": "Tuberculosis of cervix" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.17", - "Display": "Tuberculous female pelvic inflammatory disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.18", - "Display": "Tuberculosis of other female genital organs" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.2", - "Display": "Tuberculous peripheral lymphadenopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.3", - "Display": "Tuberculosis of intestines" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.31", - "Display": "Tuberculous peritonitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.32", - "Display": "Tuberculous enteritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.39", - "Display": "Retroperitoneal tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.4", - "Display": "Tuberculosis of skin and subcutaneous tissue" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.5", - "Display": "Tuberculosis of eye" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.50", - "Display": "Tuberculosis of eye" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.51", - "Display": "Tuberculous episcleritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.52", - "Display": "Tuberculous keratitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.53", - "Display": "Tuberculous chorioretinitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.54", - "Display": "Tuberculous iridocyclitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.59", - "Display": "Other tuberculosis of eye" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.6", - "Display": "Tuberculosis of (inner) (middle) ear" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.7", - "Display": "Tuberculosis of adrenal glands" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.8", - "Display": "Tuberculosis of other specified organs" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.81", - "Display": "Tuberculosis of thyroid gland" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.82", - "Display": "Tuberculosis of other endocrine glands" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.83", - "Display": "Tuberculosis of digestive tract organs" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.84", - "Display": "Tuberculosis of heart" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.85", - "Display": "Tuberculosis of spleen" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.89", - "Display": "Tuberculosis of other sites" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A19.0", - "Display": "Acute miliary tuberculosis of a single specified site" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A19.1", - "Display": "Acute miliary tuberculosis of multiple sites" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A19.2", - "Display": "Acute miliary tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A19.8", - "Display": "Other miliary tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A19.9", - "Display": "Miliary tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B90.0", - "Display": "Sequelae of central nervous system tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B90.1", - "Display": "Sequelae of genitourinary tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B90.2", - "Display": "Sequelae of tuberculosis of bones and joints" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B90.8", - "Display": "Sequelae of tuberculosis of other organs" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B90.9", - "Display": "Sequelae of respiratory and unspecified tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "J65", - "Display": "Pneumoconiosis associated with tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Z86.11", - "Display": "Personal history of tuberculosis" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.47.json b/build/main/resources/2.16.840.1.113762.1.4.1222.47.json deleted file mode 100644 index 043f350..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.47.json +++ /dev/null @@ -1,44 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "119247004", - "Display": "Hypoalbuminemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "97361000119109", - "Display": "Hypoalbuminemia due to protein calorie malnutrition (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E43", - "Display": "Unspecified severe protein-calorie malnutrition" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E44", - "Display": "Protein-calorie malnutrition of moderate and mild degree" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E46", - "Display": "Unspecified protein-calorie malnutrition" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E88.09", - "Display": "Other disorders of plasma-protein metabolism" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R77.0", - "Display": "Abnormality of albumin" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.50.json b/build/main/resources/2.16.840.1.113762.1.4.1222.50.json deleted file mode 100644 index 0978c36..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.50.json +++ /dev/null @@ -1,68 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14140009", - "Display": "Hyperkalemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237846001", - "Display": "Hyperkalemic alkalosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237847005", - "Display": "Hyperkalemic acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237848000", - "Display": "Hyperkalemia with normal acid-base balance (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237849008", - "Display": "Drug-induced hyperkalemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40777006", - "Display": "Chronic hyperkalemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427195008", - "Display": "Hyperkalemia caused by angiotensin-converting enzyme inhibitor (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5354002", - "Display": "Hyperkalemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54781007", - "Display": "Hyperkalemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5579000", - "Display": "Acute hyperkalemia (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E87.5", - "Display": "Hyperkalemia" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.53.json b/build/main/resources/2.16.840.1.113762.1.4.1222.53.json deleted file mode 100644 index e871d5c..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.53.json +++ /dev/null @@ -1,3134 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10205009", - "Display": "Megaloblastic anemia due to exfoliative dermatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "105599000", - "Display": "Anemia related to disturbed deoxyribonucleic acid synthesis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10564005", - "Display": "Severe hereditary spherocytosis due to combined deficiency of spectrin AND ankyrin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10619002", - "Display": "Megaloblastic anemia due to poor nutrition (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10741751000119100", - "Display": "Anemia in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10759351000119103", - "Display": "Sickle cell anemia in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10762261000119105", - "Display": "Anemia following acute postoperative blood loss (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10806241000119108", - "Display": "Thalassemia in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10812081000119108", - "Display": "Iron deficiency anemia in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109996008", - "Display": "Myelodysplastic syndrome: Refractory anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109998009", - "Display": "Refractory anemia with ringed sideroblasts (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "110000005", - "Display": "Refractory anemia with excess blasts in transformation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111407006", - "Display": "Hemolytic uremic syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111469006", - "Display": "Hemolytic disease of the newborn due to non-ABO" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111571009", - "Display": "Congenital atransferrinemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111572002", - "Display": "beta^0^ Thalassemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111574001", - "Display": "Anemia due to copper deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111575000", - "Display": "Anemia due to membrane defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111576004", - "Display": "Acquired stomatocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111577008", - "Display": "Anemia due to enzyme deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111578003", - "Display": "Hereditary nonspherocytic hemolytic anemia due to aldolase A deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111579006", - "Display": "Hereditary nonspherocytic hemolytic anemia due to glutathione synthetase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111581008", - "Display": "Anemia caused by physical agent (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11491000", - "Display": "Anemia due to niacin deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11503009", - "Display": "Relative anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "115963009", - "Display": "Regenerative anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11781007", - "Display": "Autoimmune hemolytic anemia caused by complement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "118791000119106", - "Display": "Aplastic anemia caused by antineoplastic agent (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "119641000119103", - "Display": "Homozygous hemoglobin H constant spring thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "119691000119106", - "Display": "Hemoglobin C/beta thalassemia disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "119701000119106", - "Display": "Hemoglobin D/beta thalassemia disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12189000", - "Display": "Coombs negative hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12238007", - "Display": "Megaloblastic anemia due to gastrectomy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127040003", - "Display": "Sickle cell-hemoglobin SS disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127041004", - "Display": "Sickle cell-beta-thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127042006", - "Display": "Sickle cell beta plus thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127043001", - "Display": "Sickle cell-beta^0^-thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127044007", - "Display": "Sickle cell-delta beta^0^-thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127045008", - "Display": "Sickle cell anemia with coexistent alpha-thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127046009", - "Display": "Sickle cell trait with coexistent alpha-thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127049002", - "Display": "Primary (idiopathic) autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127050002", - "Display": "Secondary autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127052005", - "Display": "Secondary warm autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127053000", - "Display": "Post-infectious cold agglutinin disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127054006", - "Display": "Cold agglutinin disease caused by Epstein-Barr virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127055007", - "Display": "Chronic cold agglutinin disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127056008", - "Display": "Chronic cold agglutinin disease associated with B-cell neoplasm (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127057004", - "Display": "Paroxysmal cold hemoglobinuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127058009", - "Display": "Paroxysmal cold hemoglobinuria associated with tertiary syphilis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127060006", - "Display": "Drug-induced immune hemolytic anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127061005", - "Display": "Autoimmune hemolytic anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127319005", - "Display": "Anemia caused by alloimmune destruction of transfused red cells (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12907000", - "Display": "Thiamine-responsive megaloblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129638002", - "Display": "Hemolytic anemia caused by hyperbaric oxygen (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13172003", - "Display": "Chronic idiopathic thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14024008", - "Display": "Humoral immunologic aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14087004", - "Display": "Hereditary stomatocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14126008", - "Display": "Autosomal-linked pyridoxine refractory sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14379009", - "Display": "Dimorphic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14514008", - "Display": "Anemia due to disturbance of hemoglobin synthesis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15121005", - "Display": "Hereditary elliptocytosis due to glycophorin C deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15276008", - "Display": "Drug-induced enzyme deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15326009", - "Display": "beta^+^ Thalassemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15332004", - "Display": "Goats' milk anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16360009", - "Display": "Delta beta thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16427007", - "Display": "Delta thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16645003", - "Display": "Anemia caused by insect venom (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16964007", - "Display": "Hereditary persistence of fetal hemoglobin thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1801000119106", - "Display": "Anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18273004", - "Display": "Unstable hemoglobin disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18323000", - "Display": "Drug-induced immune hemolytic anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18637002", - "Display": "Megaloblastic anemia of premature infant (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18662002", - "Display": "Acquired Heinz body anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "189509003", - "Display": "Refractory anemia without sideroblasts" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191128004", - "Display": "Iron deficiency anemia due to dietary causes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191136008", - "Display": "Idiopathic hypochromic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191142007", - "Display": "Vitamin B12 deficiency anemia due to malabsorption with proteinuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191146005", - "Display": "Congenital folate malabsorption anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191148006", - "Display": "Folate deficiency anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191149003", - "Display": "Folate deficiency anemia due to malabsorption (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191150003", - "Display": "Folate deficiency anemia due to liver disorders (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191154007", - "Display": "Combined B12 and folate deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191161006", - "Display": "Vitamin C deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191169008", - "Display": "Hereditary elliptocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191170009", - "Display": "Hemolytic anemia due to glutathione metabolism disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191177007", - "Display": "Hemolytic anemia due to hexokinase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191178002", - "Display": "Hemolytic anemia due to pyruvate kinase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191179005", - "Display": "Hemolytic anemia due to triose phosphate isomerase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191180008", - "Display": "Anemia due to disorders of nucleotide metabolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191187006", - "Display": "Alpha trait thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191189009", - "Display": "Beta thalassemia intermedia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191210005", - "Display": "Primary cold-type hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191211009", - "Display": "Primary warm-type hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191212002", - "Display": "Secondary cold-type hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191213007", - "Display": "Secondary warm-type hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191216004", - "Display": "Non-autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191217008", - "Display": "Mechanical hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191218003", - "Display": "Toxic hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191222008", - "Display": "Hemoglobinuria due to hemolysis from external causes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191228007", - "Display": "Acquired spherocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191229004", - "Display": "Pyknocytosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191244003", - "Display": "Aplastic anemia due to chronic disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191246001", - "Display": "Aplastic anemia due to infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191247005", - "Display": "Aplastic anemia caused by radiation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191248000", - "Display": "Aplastic anemia caused by toxic cause (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191251007", - "Display": "Transient hypoplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191255003", - "Display": "Transient acquired pure red cell aplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191256002", - "Display": "Idiopathic aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191260004", - "Display": "Pyridoxine-responsive sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191261000", - "Display": "Secondary sideroblastic anemia due to disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191262007", - "Display": "Secondary sideroblastic anemia caused by drugs and toxins (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191265009", - "Display": "Anemia in neoplastic disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191268006", - "Display": "Chronic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19442009", - "Display": "Heterozygous thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1963002", - "Display": "Paroxysmal nocturnal hemoglobinuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199244000", - "Display": "Anemia during pregnancy - baby delivered (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199245004", - "Display": "Anemia in the puerperium - baby delivered during current episode of care (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199246003", - "Display": "Anemia during pregnancy - baby not yet delivered (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199247007", - "Display": "Anemia in the puerperium - baby delivered during previous episode of care (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199248002", - "Display": "Iron deficiency anemia of pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "21412009", - "Display": "X chromosome-linked pyridoxine refractory sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "21914002", - "Display": "Anemia of thyroid dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22098000", - "Display": "Chronic idiopathic autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22347002", - "Display": "Anemia of gonadal dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22438006", - "Display": "Anemia due to disturbance of proliferation AND/OR differentiation of hematopoietic stem cells (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22933009", - "Display": "Glucose-6-phosphate dehydrogenase deficiency class I variant anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23371004", - "Display": "Epsilon gamma delta beta thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234343008", - "Display": "Normocytic anemia due to aplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234346000", - "Display": "Dilutional anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234347009", - "Display": "Anemia of chronic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234348004", - "Display": "Anemia of renal disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234349007", - "Display": "Microcytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234350007", - "Display": "Neonatal anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234352004", - "Display": "Normocytic anemia due to chronic blood loss (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234353009", - "Display": "Congenital transferrin deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234358000", - "Display": "Megaloblastic anemia due to dietary causes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234360003", - "Display": "Vegan's anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234361004", - "Display": "Congenital deficiency of intrinsic factor (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234362006", - "Display": "Biermer's congenital pernicious anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234363001", - "Display": "Selective malabsorption of cyanocobalamin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234364007", - "Display": "Combined deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234365008", - "Display": "Thiamine-responsive macrocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234366009", - "Display": "Alcohol-related sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234370001", - "Display": "Pure red cell aplasia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234376007", - "Display": "Acquired red cell aplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234380002", - "Display": "Kell isoimmunization of the newborn (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234381003", - "Display": "Maternal autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234383000", - "Display": "Homozygous alpha thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234385007", - "Display": "Alpha thalassemia-2 trait (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234386008", - "Display": "Hemoglobin Constant Spring trait (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234387004", - "Display": "Hemoglobin Lepore trait (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234388009", - "Display": "Delta-beta-Lepore thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234389001", - "Display": "Alpha-beta thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234390005", - "Display": "Gamma thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234391009", - "Display": "Sickle cell anemia with high hemoglobin F (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234410008", - "Display": "Hereditary elliptocytosis with transient poikilocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237617006", - "Display": "Megaloblastic anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237985009", - "Display": "Pearson's syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240453002", - "Display": "Oroya fever (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240486003", - "Display": "Parvoviral aplastic crisis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24620004", - "Display": "Hemolytic anemia caused by babesiosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24661004", - "Display": "Glucose-6-phosphate dehydrogenase deficiency class III variant anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24962009", - "Display": "Anemia due to vitamin E deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24975009", - "Display": "Mild hereditary spherocytosis due to combined deficiency of spectrin AND ankyrin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25251008", - "Display": "Hereditary nonspherocytic hemolytic anemia due to gamma glutamyl cysteine synthetase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25266006", - "Display": "Hereditary spherocytosis due to spectrin deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25443007", - "Display": "X chromosome-linked pyridoxine responsive sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26333003", - "Display": "Megaloblastic anemia due to vitamin B>12< malabsorption with proteinuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26409005", - "Display": "Congenital dyserythropoietic anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26682008", - "Display": "Homozygous beta thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267513007", - "Display": "Deficiency anemias (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267517008", - "Display": "Vitamin B12 deficiency anemia due to dietary causes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267518003", - "Display": "Folate deficiency anemia due to dietary causes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267524009", - "Display": "Constitutional aplastic anemia with malformation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267527002", - "Display": "Aplastic anemia due to drugs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267530009", - "Display": "Acute posthemorrhagic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267535004", - "Display": "Congenital thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "269175006", - "Display": "Beta thalassemia trait (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2694001", - "Display": "Myelophthisic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26944003", - "Display": "Acute megaloblastic anemia due to dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "27080008", - "Display": "beta^0^ Thalassemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271737000", - "Display": "Anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "27342004", - "Display": "Anemia of pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "27366005", - "Display": "Megaloblastic anemia due to hemodialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "273985002", - "Display": "Anemia due to isoimmunization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276448005", - "Display": "Idiopathic sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276578004", - "Display": "Physiological anemia of infancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276580005", - "Display": "Atypical isoimmunization of newborn (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "27798002", - "Display": "Megaloblastic anemia due to impaired absorption of folate (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "278363000", - "Display": "Alcoholic macrocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28147001", - "Display": "Hemolytic anemia caused by Clostridium welchii (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2835000", - "Display": "Traumatic cardiac hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28505005", - "Display": "Acute idiopathic thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "286928002", - "Display": "Deficiency anemias" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28975000", - "Display": "Constitutional aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "290246007", - "Display": "Sideropenic anemia with reticuloendothelial siderosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "291262006", - "Display": "Simple chronic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29177004", - "Display": "Anemia due to pentose phosphate pathway defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29551000", - "Display": "Anemia caused by oxygen (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "300980002", - "Display": "Normocytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301317008", - "Display": "Hereditary nonspherocytic hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "302873008", - "Display": "Thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303060002", - "Display": "Normocytic anemia following acute bleed (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30418008", - "Display": "Anemia of adrenal dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30575002", - "Display": "Fanconi's anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306058006", - "Display": "Aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307333004", - "Display": "Rhesus isoimmunization due to anti-D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307334005", - "Display": "Rhesus isoimmunization due to anti-c (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307335006", - "Display": "Rhesus isoimmunization due to anti-E (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307336007", - "Display": "Rhesus isoimmunization due to anti-Cw (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307337003", - "Display": "Duffy isoimmunization of the newborn (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307338008", - "Display": "Kidd isoimmunization of the newborn (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307343001", - "Display": "Acquired hemoglobin H disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307726001", - "Display": "Anemia in ovarian carcinoma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309742004", - "Display": "Drug-induced autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310647000", - "Display": "Anemia secondary to renal failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31206006", - "Display": "Refractory megaloblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313291009", - "Display": "Anemia during the puerperium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31820007", - "Display": "Anemia of endocrine disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32094009", - "Display": "Megaloblastic anemia caused by fish tapeworm (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322699009", - "Display": "Intracorpuscular hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32273002", - "Display": "Immune thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323666000", - "Display": "Anemia due to intrinsic red cell abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32648007", - "Display": "Mild hereditary spherocytosis due to spectrin deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3272007", - "Display": "Stomatocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "328301000119102", - "Display": "Pancytopenia due to antineoplastic chemotherapy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32855007", - "Display": "Hereditary persistence of fetal hemoglobin unlinked to beta-globulin gene cluster (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32858009", - "Display": "Hemolytic disease of fetus OR newborn due to ABO immunization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33183004", - "Display": "Post infectious thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33491002", - "Display": "Autoimmune hemolytic anemia caused by immunoglobulin A plus complement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33905008", - "Display": "Hereditary spherocytosis due to deficiency of protein 4.2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34194007", - "Display": "Hereditary nonspherocytic hemolytic anemia due to pyrimidine-5'-nucleotidase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34247008", - "Display": "Anemia due to mechanical damage (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34629009", - "Display": "Anemia due to zinc deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34852006", - "Display": "Glucose-6-phosphate dehydrogenase deficiency class II variant anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34925000", - "Display": "Megaloblastic anemia due to inborn errors of metabolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "350601000119109", - "Display": "Hemolytic disease of newborn co-occurrent and due to ABO immunization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "350611000119107", - "Display": "Hemolytic disease of fetus due to ABO immunization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35703006", - "Display": "Post-viral paroxysmal cold hemoglobinuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3571004", - "Display": "Megaloblastic anemia due to pancreatic insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35778001", - "Display": "Megaloblastic anemia due to error of folate metabolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "360495000", - "Display": "Familial megaloblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "363041004", - "Display": "Congenital nonspherocytic hemolytic anemia due to inborn error of metabolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36467003", - "Display": "Alpha plus thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36472007", - "Display": "Sickle cell-thalassemia disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36568005", - "Display": "Hemolytic uremic syndrome of childhood (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36919001", - "Display": "Anemia caused by lead (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371046004", - "Display": "Traumatic hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371315009", - "Display": "Iron deficiency anemia secondary to inadequate dietary iron intake (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "37272000", - "Display": "Rh deficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373420004", - "Display": "Upshaw-Schulman syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373421000", - "Display": "Diarrhea-associated hemolytic uremic syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373422007", - "Display": "Diarrhea-negative hemolytic uremic syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "37370005", - "Display": "Megaloblastic anemia caused by drugs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38689004", - "Display": "Hemolytic anemia due to infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "387702001", - "Display": "Perinatal anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "387705004", - "Display": "Hemolytic disease of fetus OR newborn due to isoimmunization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "387745008", - "Display": "Sports anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38911009", - "Display": "Hereditary hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "389214003", - "Display": "Diaphyseal dysplasia with anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39586009", - "Display": "Hereditary persistence of fetal hemoglobin A gamma beta^+^ thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3978000", - "Display": "Warm autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398623004", - "Display": "Refractory anemia with excess blasts (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398937006", - "Display": "Cold autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40108008", - "Display": "Thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402653004", - "Display": "Thrombocytopenic purpura due to defective platelet production (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402654005", - "Display": "Thrombocytopenic purpura due to platelet consumption (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40387008", - "Display": "Polyagglutinable erythrocyte syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413532003", - "Display": "Anemia due to blood loss (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413533008", - "Display": "Anemia due to chronic blood loss (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413565006", - "Display": "Aplastic anemia associated with metabolic alteration (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413566007", - "Display": "Aplastic anemia associated with pancreatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413567003", - "Display": "Aplastic anemia associated with pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413603009", - "Display": "Autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41387000", - "Display": "Hereditary nonspherocytic hemolytic anemia due to phosphofructokinase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41462006", - "Display": "Anemia due to disturbance of proliferation AND/OR differentiation of erythroid precursor cells (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "415283002", - "Display": "Refractory anemia with excess blasts-1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "415284008", - "Display": "Refractory anemia with excess blasts-2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41614006", - "Display": "Hypoplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416180004", - "Display": "Hemoglobin SS disease without crisis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416826005", - "Display": "Sickle cell-thalassemia disease with crisis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417048006", - "Display": "Sickle cell-thalassemia disease without crisis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417425009", - "Display": "Hemoglobin SS disease with crisis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417626001", - "Display": "Thrombocytopenic purpura associated with metabolic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41841004", - "Display": "Sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420543008", - "Display": "Anemia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421102007", - "Display": "Aplastic anemia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421851008", - "Display": "Acquired hemolytic anemia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42461002", - "Display": "Anemia caused by copper (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42484009", - "Display": "Hereditary nonspherocytic hemolytic anemia due to hexokinase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424988008", - "Display": "Anemia caused by substance (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42601008", - "Display": "Congenital hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428383000", - "Display": "Anemia caused by medication (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43707008", - "Display": "Anemia caused by heat (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "438476003", - "Display": "Autoimmune thrombotic thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43858000", - "Display": "Secondary aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "439007008", - "Display": "Acquired thrombotic thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "440206000", - "Display": "Hemoglobin SS disease with vasoocclusive crisis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441322009", - "Display": "Drug induced thrombotic thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44206008", - "Display": "Hapten type low affinity hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44288006", - "Display": "Anemia due to abnormality extrinsic to the red cell (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444108000", - "Display": "Acute sickle cell splenic sequestration crisis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444271000", - "Display": "Erythropoietin resistance in anemia of chronic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44452003", - "Display": "Normocytic hypochromic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444976001", - "Display": "Congenital hemolytic uremic syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44641000", - "Display": "Hereditary nonspherocytic hemolytic anemia due to triosephosphate isomerase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44666001", - "Display": "Microcytic hypochromic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447117006", - "Display": "Hemoglobin H constant spring thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44910003", - "Display": "Megaloblastic anemia due to decreased intake of vitamin B>12< (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "45098004", - "Display": "Anemia due to multiple mechanisms (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "45828008", - "Display": "Anemia in mother complicating pregnancy" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "462166006", - "Display": "Fetal anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46737006", - "Display": "Normocytic normochromic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46760003", - "Display": "Estren-Dameshek anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47047009", - "Display": "Thalassemia with other hemoglobinopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47084006", - "Display": "beta^+^ Thalassemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47100003", - "Display": "Anemia of prematurity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47516005", - "Display": "Hereditary spherocytosis due to combined deficiency of spectrin AND ankyrin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47526003", - "Display": "Hereditary nonspherocytic hemolytic anemia due to reduced nicotinamide adenine dinucleotide diaphorase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47844003", - "Display": "Megaloblastic anemia due to chronic hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4854004", - "Display": "Acquired hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48553001", - "Display": "Hemoglobin H disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48580008", - "Display": "Anemia due to starvation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48983004", - "Display": "X chromosome-linked sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49284006", - "Display": "Juvenile type megaloblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4939006", - "Display": "Hemolytic anemia due to nonlymphoid neoplasm (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49472006", - "Display": "Megaloblastic anemia due to vitamin B>12< deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49708008", - "Display": "Anemia of chronic renal failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4984008", - "Display": "Microcytic normochromic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50220002", - "Display": "Cellular immunologic aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50253007", - "Display": "Secondary paroxysmal cold hemoglobinuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51071000", - "Display": "Microangiopathic hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51667002", - "Display": "Anemia due to riboflavin deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52212006", - "Display": "Hereditary nonspherocytic hemolytic anemia due to glutathione reductase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52413004", - "Display": "Hereditary nonspherocytic hemolytic anemia due to glucose phosphate isomerase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52565000", - "Display": "Non megaloblastic anemia associated with nutritional deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52951008", - "Display": "Congenital dyserythropoietic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5300004", - "Display": "Hemoglobin Bart's hydrops syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5315003", - "Display": "Hereditary nonspherocytic hemolytic anemia due to increased adenosine deaminase activity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53165003", - "Display": "Megaloblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53743006", - "Display": "Anemia following fetal blood loss (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54006005", - "Display": "Hereditary persistence of fetal hemoglobin delta beta plus thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5430006", - "Display": "Megaloblastic anemia due to total parenteral nutrition (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54698001", - "Display": "Megaloblastic anemia due to Zollinger-Ellison syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55907008", - "Display": "Acquired aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55995005", - "Display": "Hereditary spherocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5603006", - "Display": "Autoimmune hemolytic anemia caused by immunoglobulin G (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56205004", - "Display": "Hereditary persistence of fetal hemoglobin" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59106005", - "Display": "Anemia due to decreased red cell production (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59548005", - "Display": "Congenital dyserythropoietic anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59644002", - "Display": "Hereditary nonspherocytic hemolytic anemia due to phosphoglycerate kinase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5967006", - "Display": "A gamma beta^+^ hereditary persistence of fetal hemoglobin AND beta^0^ thalassemia in cis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5994005", - "Display": "Hereditary elliptocytosis due to deficiency of protein 4.1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60138009", - "Display": "Anemia of pituitary deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60164003", - "Display": "Megaloblastic anemia due to blind loop syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60504009", - "Display": "Megaloblastic anemia due to congenital deficiency of intrinsic factor (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60805002", - "Display": "Hemolytic anemia with emphysema AND cutis laxa (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61261009", - "Display": "Hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61395005", - "Display": "Hereditary persistence of fetal hemoglobin G gamma beta plus thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61777009", - "Display": "Thalassemia-hemoglobin C disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62074008", - "Display": "Delta zero thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62268000", - "Display": "Hereditary nonspherocytic hemolytic anemia due to diphosphoglycerate mutase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62389006", - "Display": "Acute megaloblastic anemia due to severe illness (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62403005", - "Display": "Glucose-6-phosphate dehydrogenase deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62609001", - "Display": "Autoimmune hemolytic anemia caused by immunoglobulin G plus complement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62871001", - "Display": "Idiopathic paroxysmal cold hemoglobinuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63565007", - "Display": "Congenital anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6398009", - "Display": "Idiopathic chronic cold agglutinin disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "65959000", - "Display": "Beta thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66055002", - "Display": "Alpha zero thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66262001", - "Display": "Hereditary elliptocytosis due to beta spectrin-ankyrin interaction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66309005", - "Display": "Antibody-mediated anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6659005", - "Display": "Megaloblastic anemia due to nontropical sprue (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66612000", - "Display": "Nutritional anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67894009", - "Display": "Megaloblastic anemia due to increased requirements (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68361004", - "Display": "Late anemia due to isoimmunization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68700003", - "Display": "Megaloblastic anemia due to error of cobalamin metabolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68870007", - "Display": "Congenital dyserythropoietic anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68913001", - "Display": "Alpha thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "691381000119104", - "Display": "Anemia due to chronic kidney disease stage 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "691421000119108", - "Display": "Anemia co-occurrent and due to chronic kidney disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69216008", - "Display": "Hb Lepore thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69574002", - "Display": "Anemia of parathyroid dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69981004", - "Display": "Hereditary spherocytosis due to beta spectrin defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703135009", - "Display": "Anemia in malignant neoplastic disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703540008", - "Display": "Chronic recurrent multifocal osteomyelitis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "707323002", - "Display": "Anemia co-occurrent and due to chronic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "707324008", - "Display": "Anemia co-occurrent and due to end stage renal disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "707480001", - "Display": "Chronic hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "711161006", - "Display": "Hypochromic microcytic anemia with iron overload (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713508003", - "Display": "Aplastic anemia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713533000", - "Display": "Acquired hemolytic anemia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713910008", - "Display": "Antibody mediated acquired pure red cell aplasia caused by erythropoiesis stimulating agent (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "715342005", - "Display": "Alpha thalassemia X-linked intellectual disability syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "715526002", - "Display": "Dehydrated hereditary stomatocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "716682000", - "Display": "Dominant beta-thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717050005", - "Display": "Autosomal recessive sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717254007", - "Display": "Familial pseudohyperkalemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717946000", - "Display": "Megaloblastic anemia due to vitamin B12 deficiency secondary to intestinal disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717947009", - "Display": "Vitamin B12 deficiency anemia caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717948004", - "Display": "Acquired iron deficiency anemia due to increased iron requirement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "718196002", - "Display": "Beta thalassemia X-linked thrombocytopenia syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71832003", - "Display": "Autoimmune hemolytic anemia caused by immunoglobulin M (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71855000", - "Display": "Acute megaloblastic anemia secondary to total parenteral nutrition (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "718716008", - "Display": "Autoimmune hemolytic anemia mixed type (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719019000", - "Display": "WT limb blood syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719402008", - "Display": "Lethal hemolytic anemia and genital anomaly syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719453009", - "Display": "Congenital dyserythropoietic anemia type IV (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719816006", - "Display": "X-linked sideroblastic anemia with spinocerebellar ataxia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "720401009", - "Display": "Cystic fibrosis with gastritis and megaloblastic anemia syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "720465002", - "Display": "Adult-onset autosomal recessive sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "720982007", - "Display": "Alport syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721184003", - "Display": "Megaloblastic anemia due to folate deficiency due to increased requirement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721185002", - "Display": "Megaloblastic anemia due to folate deficiency in pregnancy and lactation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721186001", - "Display": "Megaloblastic anemia due to folate deficiency in prematurity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721295000", - "Display": "Acquired thiamine deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722005000", - "Display": "Iron-refractory iron deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722125003", - "Display": "Overhydrated hereditary stomatocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722207000", - "Display": "Pancreatic insufficiency" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722475006", - "Display": "X-linked congenital dyserythropoietic anemia with thrombocytopenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722721004", - "Display": "Familial hemolytic uremic syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72331000119105", - "Display": "Thalassemia in mother complicating pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "723512008", - "Display": "Revesz syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "723623002", - "Display": "Southeast Asian ovalocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724138007", - "Display": "Mitochondrial myopathy with sideroblastic anemia syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724556004", - "Display": "Iron deficiency anemia due to blood loss (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724557008", - "Display": "Acquired iron deficiency anemia due to decreased absorption (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72501006", - "Display": "Anemia caused by arsenic hydride (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "725057008", - "Display": "Nonspherocytic hemolytic anemia due to deficiency of adenosinetriphosphatase (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "725463007", - "Display": "Severe congenital hypochromic anemia with ringed sideroblasts (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "726669007", - "Display": "Central nervous system calcification" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73073009", - "Display": "Hereditary elliptocytosis due to beta spectrin defect in self-association (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73162004", - "Display": "Posttransfusion purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73190000", - "Display": "epsilon gamma delta beta^0^ Thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "732960002", - "Display": "Secondary autoimmune hemolytic anemia co-occurrent and due to systemic lupus erythematosus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "732962005", - "Display": "Secondary autoimmune hemolytic anemia co-occurrent and due to chronic inflammatory disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "732963000", - "Display": "Secondary autoimmune hemolytic anemia co-occurrent and due to lymphoproliferative disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "732965007", - "Display": "Secondary autoimmune hemolytic anemia co-occurrent and due to rheumatic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "732966008", - "Display": "Secondary autoimmune hemolytic anemia co-occurrent and due to ulcerative colitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "734349003", - "Display": "Alpha-thalassemia intellectual disability syndrome linked to chromosome 16 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735452003", - "Display": "Hereditary vitamin B12 deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735453008", - "Display": "Hereditary folate deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "737220002", - "Display": "Anemia due to metabolic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73891003", - "Display": "Acute megaloblastic anemia caused by nitrous oxide (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74703006", - "Display": "Hereditary nonspherocytic hemolytic anemia due to pyruvate kinase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74789008", - "Display": "Coombs positive hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75331009", - "Display": "Evans syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75443009", - "Display": "Hereditary elliptocytosis due to abnormal protein 4.1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75451007", - "Display": "Thalassemia major (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76336008", - "Display": "Delta beta zero thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76366001", - "Display": "Hemolytic anemia caused by Bartonella (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "765327005", - "Display": "Congenital sideroblastic anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "765748009", - "Display": "Adult pure red cell aplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "766982000", - "Display": "Hemolytic anemia due to adenylate kinase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77084001", - "Display": "Immunologic aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "773489008", - "Display": "Hereditary cryohydrocytosis with normal stomatin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "774071007", - "Display": "Pancytopenia with developmental delay syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "774083009", - "Display": "Neonatal autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77413008", - "Display": "Severe hereditary spherocytosis due to spectrin deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77607006", - "Display": "Drug-induced sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77663007", - "Display": "Hemolytic anemia caused by malaria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "778027003", - "Display": "Primary CD59 deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78129009", - "Display": "Thrombotic thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78209002", - "Display": "Hemolytic uremic syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "782759001", - "Display": "X-linked dyserythropoietic anemia with abnormal platelets and neutropenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "782911008", - "Display": "Hereditary cryohydrocytosis with reduced stomatin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "783255002", - "Display": "Hereditary isolated aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78677008", - "Display": "Anemia due to pantothenic deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "788865000", - "Display": "Anemia due to chronic infectious disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "788944005", - "Display": "Gamma delta beta thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78908001", - "Display": "Hereditary nonspherocytic hemolytic anemia due to decreased adenosine deaminase activity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789660001", - "Display": "Atypical hemolytic uremic syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78997000", - "Display": "Megaloblastic anemia due to vegetarianism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79035003", - "Display": "Anemia due to unknown mechanism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79592006", - "Display": "Beta plus thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80126007", - "Display": "Plummer-Vinson syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80875006", - "Display": "Achlorhydric anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80963002", - "Display": "Glucose-6-phosphate dehydrogenase deficiency class V variant anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81711008", - "Display": "Hemolytic anemia caused by drugs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82003006", - "Display": "Glucose-6-phosphate dehydrogenase deficiency class IV variant anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82430007", - "Display": "Acute megaloblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82895008", - "Display": "Megaloblastic anemia due to disease of small intestine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82980005", - "Display": "Anemia due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83414005", - "Display": "Macrocytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84027009", - "Display": "Pernicious anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84188003", - "Display": "Thalassemia syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85422000", - "Display": "alpha^+^ Thalassemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85557000", - "Display": "Hereditary persistence of fetal hemoglobin deletion type (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85570009", - "Display": "Anemia due to vitamin A deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85649008", - "Display": "Megaloblastic anemia due to folate deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85746008", - "Display": "Anemia due to protein deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "862001", - "Display": "Anemia caused by chlorate (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86225009", - "Display": "Hapten type high affinity hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86242003", - "Display": "alpha^+^ Thalassemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86325007", - "Display": "Non megaloblastic anemia due to alcoholism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "863953007", - "Display": "Primaquine sensitivity anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86448001", - "Display": "Anemia due to vitamin B>6< deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "866092006", - "Display": "Megaloblastic anemia due to dihydrofolate reductase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86715000", - "Display": "Beta zero thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86859003", - "Display": "Glucose-6-phosphate dehydrogenase variant enzyme deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86986002", - "Display": "Hemolytic disease of fetus OR newborn due to RhD isoimmunization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87522002", - "Display": "Iron deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87806008", - "Display": "Megaloblastic anemia due to tropical sprue (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87810006", - "Display": "Megaloblastic anemia caused by alcoholism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87994004", - "Display": "Xerocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8857001", - "Display": "Hereditary elliptocytosis due to alpha spectrin defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88854002", - "Display": "Congenital hypoplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89459006", - "Display": "Hereditary persistence of fetal hemoglobin linked to beta-globulin gene cluster (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89810003", - "Display": "^A^gamma delta beta^0^ thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90175006", - "Display": "Secondary acquired sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90414007", - "Display": "Chronic acquired pure red cell aplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91217009", - "Display": "Megaloblastic anemia due to pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91411007", - "Display": "Autoimmune hemolytic anemia caused by immunoglobulin A (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "934007", - "Display": "Thalassemia intermedia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9434008", - "Display": "Hereditary pyropoikilocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9764001", - "Display": "Anemia caused by radiation (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "D63", - "Display": "Anemia in chronic diseases classified elsewhere" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "D63.1", - "Display": "Anemia in chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "D63.8", - "Display": "Anemia in other chronic diseases classified elsewhere" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "D64.8", - "Display": "Other specified anemias" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "D64.89", - "Display": "Other specified anemias" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "D64.9", - "Display": "Anemia" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.6.json b/build/main/resources/2.16.840.1.113762.1.4.1222.6.json deleted file mode 100644 index 55a1fe7..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.6.json +++ /dev/null @@ -1,746 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "104931000119100", - "Display": "Chronic kidney disease due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10757401000119104", - "Display": "Pre-existing hypertensive heart and chronic kidney disease in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10757481000119107", - "Display": "Pre-existing hypertensive heart and chronic kidney disease in mother complicating pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111411000119103", - "Display": "End stage renal disease due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "117681000119102", - "Display": "Chronic kidney disease stage 1 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "118781000119108", - "Display": "Pre-existing hypertensive chronic kidney disease in mother complicating pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123609007", - "Display": "Subacute glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127991000119101", - "Display": "Hypertension concurrent and due to end stage renal disease on dialysis due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "128001000119105", - "Display": "Hypertension concurrent and due to end stage renal disease on dialysis due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129151000119102", - "Display": "Chronic kidney disease stage 4 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129161000119100", - "Display": "Chronic kidney disease stage 5 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129171000119106", - "Display": "Chronic kidney disease stage 3 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129181000119109", - "Display": "Chronic kidney disease stage 2 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "140101000119109", - "Display": "Hypertension in chronic kidney disease stage 5 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "140111000119107", - "Display": "Hypertension in chronic kidney disease stage 4 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "140121000119100", - "Display": "Hypertension in chronic kidney disease stage 3 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "140131000119102", - "Display": "Hypertension in chronic kidney disease stage 2 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "153851000119106", - "Display": "Malignant hypertensive chronic kidney disease stage 5 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "153891000119101", - "Display": "End stage renal disease on dialysis due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195791000119101", - "Display": "Chronic proliferative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197613008", - "Display": "Chronic mesangial proliferative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197616000", - "Display": "Chronic glomerulonephritis associated with another disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197617009", - "Display": "Chronic exudative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197618004", - "Display": "Chronic focal glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197619007", - "Display": "Chronic diffuse glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197626007", - "Display": "Focal membranoproliferative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197709005", - "Display": "Chronic nephritic syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197712008", - "Display": "Chronic nephritic syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197713003", - "Display": "Chronic nephritic syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197714009", - "Display": "Chronic nephritic syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197715005", - "Display": "Chronic nephritic syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20917003", - "Display": "Chronic glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234485006", - "Display": "Epstein syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236399008", - "Display": "Steroid-sensitive minimal change glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236400001", - "Display": "Steroid-resistant minimal change glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236401002", - "Display": "Steroid-dependent minimal change glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236407003", - "Display": "Immunoglobulin A nephropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236409000", - "Display": "Mesangiocapillary glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236410005", - "Display": "Mesangiocapillary glomerulonephritis type IV (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236411009", - "Display": "Immunoglobulin M nephropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236412002", - "Display": "C1q nephropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236413007", - "Display": "Membranous glomerulonephritis - stage I (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236414001", - "Display": "Membranous glomerulonephritis - stage II (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236415000", - "Display": "Membranous glomerulonephritis - stage III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236416004", - "Display": "Membranous glomerulonephritis - stage IV (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236417008", - "Display": "Membranous glomerulonephritis stage V (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253878003", - "Display": "Adult type polycystic kidney disease type 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253879006", - "Display": "Adult type polycystic kidney disease type 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28191000119109", - "Display": "Chronic nephritic syndrome with membranous glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "282364005", - "Display": "Immunoglobulin A nephropathy associated with liver disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284961000119106", - "Display": "Chronic kidney disease due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284971000119100", - "Display": "Chronic kidney disease stage 1 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284981000119102", - "Display": "Chronic kidney disease stage 2 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284991000119104", - "Display": "Chronic kidney disease stage 3 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285001000119105", - "Display": "Chronic kidney disease stage 4 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285011000119108", - "Display": "Chronic kidney disease stage 5 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285831000119108", - "Display": "Malignant hypertensive chronic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285841000119104", - "Display": "Malignant hypertensive end stage renal disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285851000119102", - "Display": "Malignant hypertensive chronic kidney disease stage 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285861000119100", - "Display": "Malignant hypertensive chronic kidney disease stage 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285871000119106", - "Display": "Malignant hypertensive chronic kidney disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285881000119109", - "Display": "Malignant hypertensive chronic kidney disease stage 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "286371000119107", - "Display": "Malignant hypertensive end stage renal disease on dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28770003", - "Display": "Polycystic kidney disease" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "367511000119101", - "Display": "Hereditary mesangiocapillary glomerulonephritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "367551000119100", - "Display": "Hereditary diffuse mesangial proliferative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368871000119106", - "Display": "Acute nephritic syndrome co-occurrent and due to membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368881000119109", - "Display": "Rapidly progressive nephritic syndrome co-occurrent and due to membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368901000119106", - "Display": "Chronic nephritic syndrome co-occurrent and due to membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368911000119109", - "Display": "Nephrotic syndrome co-occurrent and due to membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368921000119102", - "Display": "Nephritic syndrome co-occurrent and due to membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368931000119104", - "Display": "Isolated proteinuria co-occurrent and due to membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368941000119108", - "Display": "Hereditary nephropathy co-occurrent with membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425455002", - "Display": "Glomerulonephritis due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434431000124103", - "Display": "Hypertensive end stage renal disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445404003", - "Display": "Familial immunoglobulin A nephropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44785005", - "Display": "Minimal change disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52042003", - "Display": "Systemic lupus erythematosus glomerulonephritis syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59479006", - "Display": "Mesangiocapillary glomerulonephritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68779003", - "Display": "Primary immunoglobulin A nephropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704667004", - "Display": "Hypertension concurrent and due to end stage renal disease on dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71064009", - "Display": "Acquired polycystic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "711000119100", - "Display": "Chronic kidney disease stage 5 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712487000", - "Display": "End stage renal disease due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71421000119105", - "Display": "Hypertension in chronic kidney disease due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714813000", - "Display": "Recurrent hematuria co-occurrent and due to dense deposit disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714814006", - "Display": "Persistent hematuria co-occurrent and due to dense deposit disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71701000119105", - "Display": "Hypertension in chronic kidney disease due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721000119107", - "Display": "Chronic kidney disease stage 4 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722086002", - "Display": "Membranous glomerulonephritis due to malignant neoplastic disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722119002", - "Display": "Idiopathic membranous glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722120008", - "Display": "Membranous glomerulonephritis caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722168002", - "Display": "Membranous glomerulonephritis co-occurrent with infectious disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722433005", - "Display": "Dyschondrosteosis and nephritis syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722758004", - "Display": "Complement component 3 glomerulopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722760002", - "Display": "Dense deposit disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722761003", - "Display": "Complement component 3 glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "731000119105", - "Display": "Chronic kidney disease stage 3 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "741000119101", - "Display": "Chronic kidney disease stage 2 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "751000119104", - "Display": "Chronic kidney disease stage 1 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75888001", - "Display": "Mesangiocapillary glomerulonephritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "771000119108", - "Display": "Chronic kidney disease due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77182004", - "Display": "Membranous glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80321008", - "Display": "Mesangiocapillary glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8501000119104", - "Display": "Hypertensive heart and chronic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90721000119101", - "Display": "Chronic kidney disease stage 1 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90731000119103", - "Display": "Chronic kidney disease stage 2 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90741000119107", - "Display": "Chronic kidney disease stage 3 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90751000119109", - "Display": "Chronic kidney disease stage 4 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90761000119106", - "Display": "Chronic kidney disease stage 5 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90771000119100", - "Display": "End stage renal disease on dialysis due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90791000119104", - "Display": "End stage renal disease on dialysis due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96441000119101", - "Display": "Chronic kidney disease due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96701000119107", - "Display": "Hypertensive heart AND chronic kidney disease on dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96711000119105", - "Display": "Hypertensive heart AND chronic kidney disease stage 5 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96721000119103", - "Display": "Hypertensive heart AND chronic kidney disease stage 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96731000119100", - "Display": "Hypertensive heart AND chronic kidney disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96741000119109", - "Display": "Hypertensive heart AND chronic kidney disease stage 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96751000119106", - "Display": "Hypertensive heart AND chronic kidney disease stage 1 (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I12", - "Display": "Hypertensive chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q61.2", - "Display": "Polycystic kidney" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q61.3", - "Display": "Polycystic kidney" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q61.8", - "Display": "Other cystic kidney diseases" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.60.json b/build/main/resources/2.16.840.1.113762.1.4.1222.60.json deleted file mode 100644 index 164b780..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.60.json +++ /dev/null @@ -1,176 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13901000119100", - "Display": "Hypocalciuric hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190866006", - "Display": "Idiopathic hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2243000", - "Display": "Hypercalcemia due to hyperthyroidism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237880003", - "Display": "Secondary hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237885008", - "Display": "Familial hypocalciuric hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24052000", - "Display": "Hypercalcemia due to immobilization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2638001", - "Display": "Hypercalcemia caused by a drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276645004", - "Display": "Infantile hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276646003", - "Display": "Idiopathic infantile hypercalcemia - mild form (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277481003", - "Display": "Idiopathic infantile hypercalcemia - severe form (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34225008", - "Display": "Idiopathic hypercalcemia of infancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "361129004", - "Display": "Hypercalcemia caused by lithium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "37121000", - "Display": "Hypercalcemia caused by thiazide AND vitamin A (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43258006", - "Display": "Milk alkali syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "45646000", - "Display": "Subacute milk alkali syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47709007", - "Display": "Humoral hypercalcemia of malignancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52760008", - "Display": "Hypercalcemia due to granulomatous disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "57557005", - "Display": "Chronic milk alkali syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58136006", - "Display": "Nutritional disorder due to calcium-phosphorus imbalance (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66931009", - "Display": "Hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698729002", - "Display": "Hypercalcemia due to tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699260009", - "Display": "Hypercalcemia due to hypervitaminosis D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704166007", - "Display": "Acquired hypocalciuric hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7085002", - "Display": "Hypercalcemia due to sarcoidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724559006", - "Display": "Myopathy co-occurrent and due to hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "771445001", - "Display": "Autosomal recessive infantile hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88351001", - "Display": "Hypercalcemia associated with chronic dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88380005", - "Display": "Acute milk alkali syndrome (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E83.52", - "Display": "Hypercalcemia" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.61.json b/build/main/resources/2.16.840.1.113762.1.4.1222.61.json deleted file mode 100644 index 8da8c39..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.61.json +++ /dev/null @@ -1,152 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16195001", - "Display": "Parathyroid hypocalcemic tetany (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190869004", - "Display": "Hypocalcemic tetany (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23490001000004109", - "Display": "Iatrogenic hypocalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237658004", - "Display": "Pseudohypoparathyroidism and pseudopseudohypoparathyroidism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237659007", - "Display": "Pseudopseudohypoparathyroidism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237883001", - "Display": "Hungry bone syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237884007", - "Display": "Drug-induced hypocalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240307008", - "Display": "Late neonatal hypocalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268846006", - "Display": "Neonatal hypocalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "400170001", - "Display": "Hypocalcemia of puerperium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "405256006", - "Display": "Parturient paresis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "405733001", - "Display": "Hypocalcemia of late pregnancy or lactation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42183005", - "Display": "Pseudohypoparathyroidism type II (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5291005", - "Display": "Hypocalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56090007", - "Display": "Pseudohypoparathyroidism type I B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58833000", - "Display": "Pseudohypoparathyroidism type I A (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58976002", - "Display": "Pseudohypoparathyroidism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60334003", - "Display": "Phosphate-loading hypocalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63275006", - "Display": "Cow's milk hypocalcemia of newborn (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "711151004", - "Display": "Hypomagnesemia with secondary hypocalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "711152006", - "Display": "Autosomal dominant hypocalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717792007", - "Display": "Pseudohypoparathyroidism type 1C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722947004", - "Display": "Hypocalcemic rickets (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81677009", - "Display": "Lactation tetany (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E83.51", - "Display": "Hypocalcemia" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.66.json b/build/main/resources/2.16.840.1.113762.1.4.1222.66.json deleted file mode 100644 index 51cf912..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.66.json +++ /dev/null @@ -1,32 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20165001", - "Display": "Hyperphosphatemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237904006", - "Display": "Renal failure-associated hyperphosphatemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237905007", - "Display": "Iatrogenic hyperphosphatemia (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E83.3", - "Display": "Disorders of phosphorus metabolism and phosphatases" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E83.39", - "Display": "Other disorders of phosphorus metabolism" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.67.json b/build/main/resources/2.16.840.1.113762.1.4.1222.67.json deleted file mode 100644 index 9a6d7d3..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.67.json +++ /dev/null @@ -1,374 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16698651000119109", - "Display": "Asymptomatic microscopic hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197627003", - "Display": "Recurrent benign hematuria syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197688006", - "Display": "Acute nephritic syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197707007", - "Display": "Chronic nephritic syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197708002", - "Display": "Chronic nephritic syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197938001", - "Display": "Painless hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197939009", - "Display": "Painful hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197940006", - "Display": "Microscopic hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197941005", - "Display": "Frank hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197942003", - "Display": "Clot hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20407004", - "Display": "Benign hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236717007", - "Display": "Upper urinary tract hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236718002", - "Display": "Chemical hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281855006", - "Display": "Persistent frank hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281856007", - "Display": "Recurrent frank hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281857003", - "Display": "Persistent microscopic hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281858008", - "Display": "Recurrent microscopic hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281859000", - "Display": "Persistent hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281860005", - "Display": "Recurrent hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28191000119109", - "Display": "Chronic nephritic syndrome with membranous glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314280007", - "Display": "Hematuria of undiagnosed cause (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "366941000119107", - "Display": "Hematuria co-occurrent and due to acute cystitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "367011000119109", - "Display": "Benign essential microscopic hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "367171000119100", - "Display": "Hematuria co-occurrent and due to cystitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "367661000119102", - "Display": "Hematuria co-occurrent and due to chronic interstitial cystitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "367671000119108", - "Display": "Hematuria co-occurrent and due to irradiation cystitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368371000119102", - "Display": "Hematuria co-occurrent and due to trigonitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368901000119106", - "Display": "Chronic nephritic syndrome co-occurrent and due to membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368921000119102", - "Display": "Nephritic syndrome co-occurrent and due to membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368971000119101", - "Display": "Hematuria co-occurrent and due to chronic cystitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371020003", - "Display": "Renal hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399094007", - "Display": "Familial hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40233000", - "Display": "Nephrotic-nephritic syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53298000", - "Display": "Hematuria syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714813000", - "Display": "Recurrent hematuria co-occurrent and due to dense deposit disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714814006", - "Display": "Persistent hematuria co-occurrent and due to dense deposit disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714815007", - "Display": "Recurrent hematuria co-occurrent and due to diffuse crescentic glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714816008", - "Display": "Persistent hematuria co-occurrent and due to diffuse crescentic glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714817004", - "Display": "Recurrent hematuria co-occurrent and due to diffuse endocapillary proliferative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714818009", - "Display": "Persistent hematuria co-occurrent and due to diffuse endocapillary proliferative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714819001", - "Display": "Recurrent hematuria co-occurrent and due to diffuse mesangiocapillary glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714820007", - "Display": "Persistent hematuria co-occurrent and due to diffuse mesangiocapillary glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714821006", - "Display": "Recurrent hematuria co-occurrent and due to diffuse membranous glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714822004", - "Display": "Persistent hematuria co-occurrent and due to diffuse membranous glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714823009", - "Display": "Recurrent hematuria co-occurrent and due to minor glomerular abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714824003", - "Display": "Persistent hematuria co-occurrent and due to minor glomerular abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714825002", - "Display": "Recurrent hematuria co-occurrent and due to diffuse mesangial proliferative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714826001", - "Display": "Persistent hematuria co-occurrent and due to diffuse mesangial proliferative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714827005", - "Display": "Recurrent hematuria co-occurrent and due to focal and segmental glomerular lesions (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714828000", - "Display": "Persistent hematuria co-occurrent and due to focal and segmental glomerular lesions (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719551008", - "Display": "Hematuria due to radiation cystitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7724006", - "Display": "Nephritic syndrome (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N02", - "Display": "Recurrent and persistent hematuria" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N02.0", - "Display": "Recurrent and persistent hematuria with minor glomerular abnormality" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N02.1", - "Display": "Recurrent and persistent hematuria with focal and segmental glomerular lesions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N02.4", - "Display": "Recurrent and persistent hematuria with diffuse endocapillary proliferative glomerulonephritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N02.5", - "Display": "Recurrent and persistent hematuria with diffuse mesangiocapillary glomerulonephritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N02.7", - "Display": "Recurrent and persistent hematuria with diffuse crescentic glomerulonephritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N02.9", - "Display": "Recurrent and persistent hematuria with unspecified morphologic changes" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R31", - "Display": "Hematuria" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R31.0", - "Display": "Gross hematuria" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R31.9", - "Display": "Hematuria" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.70.json b/build/main/resources/2.16.840.1.113762.1.4.1222.70.json deleted file mode 100644 index b7cac41..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.70.json +++ /dev/null @@ -1,374 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1003847003", - "Display": "Pyruvate dehydrogenase phosphatase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1003849000", - "Display": "Pyruvate dehydrogenase complex E2 subunit deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1003850000", - "Display": "Pyruvate dehydrogenase complex E1-alpha subunit deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1003851001", - "Display": "Pyruvate dehydrogenase complex E1 beta subunit deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111377009", - "Display": "Metabolic acidosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111556005", - "Display": "Ketoacidosis without coma due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13490001000004105", - "Display": "D-lactic acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "138621000119108", - "Display": "Ketoacidosis due to secondary diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1776003", - "Display": "Renal tubular acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18104000", - "Display": "Metabolic acidosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190406000", - "Display": "Ketoacidosis due to malnutrition related diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236460004", - "Display": "Familial proximal renal tubular acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236461000", - "Display": "Distal renal tubular acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236463002", - "Display": "Hyperkalemic renal tubular acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236464008", - "Display": "Hyporeninemic hypoaldosteronism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236467001", - "Display": "Acquired Fanconi syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236468006", - "Display": "Adult Fanconi syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236532003", - "Display": "Renal tubular acidosis with progressive nerve deafness (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236541008", - "Display": "Hyperchloremic acidosis associated with dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237847005", - "Display": "Hyperkalemic acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24790002", - "Display": "Proximal renal tubular acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25966003", - "Display": "Metabolic acidosis caused by methanol (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25998009", - "Display": "Metabolic acidosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26298008", - "Display": "Ketoacidotic coma due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276586004", - "Display": "Transient neonatal renal tubular acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29914000", - "Display": "Dihydrolipoamide dehydrogenase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35528000", - "Display": "Metabolic acidosis caused by salicylate (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3591006", - "Display": "Metabolic acidosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "370491005", - "Display": "Metabolic acidosis due to grain overload (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420270002", - "Display": "Ketoacidosis due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420422005", - "Display": "Ketoacidosis due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421075007", - "Display": "Ketoacidotic coma due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421750000", - "Display": "Ketoacidosis due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421847006", - "Display": "Ketoacidotic coma due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43253002", - "Display": "Metabolic acidosis caused by ingestion of drugs AND/OR chemicals (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46166004", - "Display": "Compensated metabolic acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46683007", - "Display": "Pyruvate dehydrogenase complex deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4690009", - "Display": "Metabolic acidosis caused by paraldehyde (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51294009", - "Display": "Metabolic acidosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53254000", - "Display": "Metabolic acidosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55178001", - "Display": "Starvation ketoacidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55571001", - "Display": "Alcoholic ketoacidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56051008", - "Display": "Ketoacidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58067006", - "Display": "Metabolic acidosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59455009", - "Display": "Metabolic acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59686008", - "Display": "Metabolic acidosis caused by ethylene glycol (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "718713000", - "Display": "Hypertrophic cardiomyopathy with hypotonia and lactic acidosis syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721283000", - "Display": "Acidosis due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721284006", - "Display": "Acidosis due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722468005", - "Display": "Distal renal tubular acidosis co-occurrent with sensorineural deafness (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722937002", - "Display": "Birth asphyxia co-occurrent with metabolic acidemia of cord blood (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724099000", - "Display": "Acquired monoclonal immunoglobulin light chain-associated Fanconi syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "732951005", - "Display": "Mitochondrial myopathy" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735538002", - "Display": "Lactic acidosis due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735539005", - "Display": "Metabolic acidosis due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76938004", - "Display": "Infantile encephalopathy AND lactic acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "771509001", - "Display": "Hypertrophic cardiomyopathy and renal tubular disease due to mitochondrial deoxyribonucleic acid mutation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "773423007", - "Display": "Severe neonatal lactic acidosis due to NFS1-ISD11 complex deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91273001", - "Display": "Lactic acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9635004", - "Display": "Late metabolic acidosis of newborn (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E87.2", - "Display": "Acidosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "P19.9", - "Display": "Metabolic acidemia" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.73.json b/build/main/resources/2.16.840.1.113762.1.4.1222.73.json deleted file mode 100644 index 27986b6..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.73.json +++ /dev/null @@ -1,374 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "114831000119107", - "Display": "Hyperlipidemia caused by steroid (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129589009", - "Display": "Endogenous hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129590000", - "Display": "Exogenous hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129591001", - "Display": "Mixed hypercholesterolemia and hypertriglyceridemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13644009", - "Display": "Hypercholesterolemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "137931000119102", - "Display": "Hyperlipidemia due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "137941000119106", - "Display": "Hyperlipidemia due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1571000119104", - "Display": "Mixed hyperlipidemia due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15771000119109", - "Display": "Familial hyperalphalipoproteinemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190774002", - "Display": "Hyperlipidemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238040008", - "Display": "Familial combined hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238076009", - "Display": "Primary hypercholesterolemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238077000", - "Display": "Polygenic hypercholesterolemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238078005", - "Display": "Familial hypercholesterolemia - homozygous (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238079002", - "Display": "Familial hypercholesterolemia - heterozygous (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238080004", - "Display": "Hyperalphalipoproteinemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238081000", - "Display": "Familial defective apolipoprotein B-100 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238082007", - "Display": "Secondary hypercholesterolemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238083002", - "Display": "Primary hypertriglyceridemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238084008", - "Display": "Very low density lipoprotinemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238085009", - "Display": "Fredrickson type IV hyperlipoproteinemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238087001", - "Display": "Secondary hypertriglyceridemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238088006", - "Display": "Primary combined hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238089003", - "Display": "Secondary combined hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267432004", - "Display": "Pure hypercholesterolemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267433009", - "Display": "Pure hyperglyceridemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267434003", - "Display": "Mixed hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267435002", - "Display": "Familial hyperchylomicronemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "299465007", - "Display": "Familial multiple lipoprotein-type hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "302870006", - "Display": "Hypertriglyceridemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33513003", - "Display": "Familial apolipoprotein C-II deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34349009", - "Display": "Familial type 5 hyperlipoproteinemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34528009", - "Display": "Familial hypertriglyceridemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397915002", - "Display": "Fredrickson type IIa hyperlipoproteinemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398036000", - "Display": "Familial hypercholesterolemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402473001", - "Display": "Sporadic primary hypertriglyceridemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402474007", - "Display": "Primary \"polygenic\" type Iib combined hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402475008", - "Display": "Primary acquired chylomicronemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402725005", - "Display": "Hyperlipidemia with lipid deposition in skin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402726006", - "Display": "Primary chylomicronemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402727002", - "Display": "Secondary hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402785008", - "Display": "Primary genetic hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402786009", - "Display": "Chylomicronemia syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402787000", - "Display": "Primary genetic mixed hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "403827000", - "Display": "Familial lipoprotein lipase deficiency with type I phenotype (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "403828005", - "Display": "Familial lipoprotein lipase deficiency with type V phenotype (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "403829002", - "Display": "Familial hypercholesterolemia due to heterozygous low density lipoprotein receptor mutation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "403830007", - "Display": "Familial hypercholesterolemia due to homozygous low density lipoprotein receptor mutation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "403831006", - "Display": "Familial hypercholesterolemia due to genetic defect of apolipoprotein B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426161002", - "Display": "Chemically induced hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445261005", - "Display": "Posttransplant hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55822004", - "Display": "Hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "701000119103", - "Display": "Mixed hyperlipidemia due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "767133009", - "Display": "Familial hypercholesterolemia co-occurrent and due to combined heterozygous low density lipoprotein receptor and low density lipoprotein receptor adaptor protein 1 mutations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "773649005", - "Display": "Transient infantile hypertriglyceridemia and hepatosteatosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "773726000", - "Display": "Hypercholesterolemia due to cholesterol 7alpha-hydroxylase deficiency (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E78.0", - "Display": "Pure hypercholesterolemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E78.00", - "Display": "Pure hypercholesterolemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E78.01", - "Display": "Familial hypercholesterolemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E78.2", - "Display": "Mixed hyperlipidemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E78.4", - "Display": "Other hyperlipidemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E78.5", - "Display": "Hyperlipidemia" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.76.json b/build/main/resources/2.16.840.1.113762.1.4.1222.76.json deleted file mode 100644 index 44b35cd..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.76.json +++ /dev/null @@ -1,1040 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102481003", - "Display": "Generalized chronic body pains (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102557007", - "Display": "Arm claudication (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109771000119103", - "Display": "Chronic postoperative pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111985007", - "Display": "Chronic abdominal pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1121000119107", - "Display": "Chronic neck pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "113611000119100", - "Display": "Myofascial pain syndrome of lumbar spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11892641000119101", - "Display": "Chronic female pelvic pain syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "121021000119105", - "Display": "New daily persistent headache (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12236951000119108", - "Display": "Intermittent claudication of bilateral lower limbs co-occurrent and due to atherosclerosis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12237071000119100", - "Display": "Intermittent claudication of left lower limb co-occurrent and due to atherosclerosis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12237191000119103", - "Display": "Intermittent claudication of right lower limb co-occurrent and due to atherosclerosis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12400141000119103", - "Display": "Chronic pain following bilateral total hip arthroplasty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12400181000119108", - "Display": "Chronic pain following bilateral total knee arthroplasty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12400221000119100", - "Display": "Chronic pain following left total hip arthroplasty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12400261000119105", - "Display": "Chronic pain following left total knee arthroplasty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12400301000119102", - "Display": "Chronic pain following right total hip arthroplasty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12400341000119100", - "Display": "Chronic pain following right total knee arthroplasty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "124161000119104", - "Display": "Chronic migraine without aura with status migrainosus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "124171000119105", - "Display": "Chronic intractable migraine without aura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "128200000", - "Display": "Complex regional pain syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129501000119107", - "Display": "Chronic sacral pain for greater than three months (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129511000119105", - "Display": "Chronic pain in coccyx for more than three months (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "133731000119108", - "Display": "Chronic pain in male pelvis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "134407002", - "Display": "Chronic back pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "136791000119103", - "Display": "Chronic thoracic back pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14150005", - "Display": "Alteration in comfort: chronic pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15743521000119108", - "Display": "Chronic pain of right upper limb (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15743561000119103", - "Display": "Chronic pain of left upper limb (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15749801000119104", - "Display": "Chronic pain of bilateral feet (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16002671000119106", - "Display": "Chronic pain of bilateral upper limbs (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16002871000119105", - "Display": "Chronic pain of right foot (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16002911000119108", - "Display": "Chronic pain of left foot (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16013431000119104", - "Display": "Intermittent claudication of bilateral lower limbs due to atherosclerosis of nonbiological bypass graft (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16013711000119104", - "Display": "Intermittent claudication of right lower limb co-occurrent and due to atherosclerosis of bypass graft (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16014031000119109", - "Display": "Intermittent claudication of left lower limb co-occurrent and due to atherosclerosis of bypass graft (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16014071000119107", - "Display": "Intermittent claudication of bilateral lower limbs co-occurrent and due to atherosclerosis of bypass graft (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16058471000119101", - "Display": "Complex regional pain syndrome type 2 of bilateral lower limbs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16058511000119105", - "Display": "Complex regional pain syndrome type 2 of bilateral upper limbs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16206661000119108", - "Display": "Reflex sympathetic dystrophy of bilateral upper limbs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16580691000119107", - "Display": "Chronic urinary bladder pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16754391000119100", - "Display": "Stable angina due to coronary arteriosclerosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193184006", - "Display": "Chronic painful neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201311005", - "Display": "Painful operation scar (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203082005", - "Display": "Fibromyalgia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230477005", - "Display": "Chronic post-traumatic headache (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230575000", - "Display": "Chronic painful polyneuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230648001", - "Display": "Abdominal cutaneous nerve entrapment syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233819005", - "Display": "Stable angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235841007", - "Display": "Chronic nonspecific abdominal pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237067000", - "Display": "Chronic pain in female pelvis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271858001", - "Display": "Recurrent acute abdominal pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "274665008", - "Display": "Chronic intractable pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "279030006", - "Display": "Myofascial pain syndrome of neck (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "279032003", - "Display": "Chronic pelvic pain without obvious pathology (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "279036000", - "Display": "Myofascial pain syndrome of thorax (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "279041008", - "Display": "Myofascial pain syndrome of lower back (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "279047007", - "Display": "Persistent pain following procedure (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "279048002", - "Display": "Internal mammary artery syndrome (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "290441000119105", - "Display": "Intractable chronic headache following trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "291761000119107", - "Display": "Complex regional pain syndrome type II of left upper limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "291771000119101", - "Display": "Complex regional pain syndrome type II of right upper limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "291781000119103", - "Display": "Complex regional pain syndrome type II of left lower limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "291791000119100", - "Display": "Complex regional pain syndrome type II of right lower limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "293921000119104", - "Display": "Complex regional pain syndrome type I of bilateral upper limbs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "293931000119101", - "Display": "Complex regional pain syndrome type I of left lower limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "293941000119105", - "Display": "Complex regional pain syndrome type I of left upper limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "293951000119107", - "Display": "Complex regional pain syndrome type I of bilateral lower limbs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "293961000119109", - "Display": "Complex regional pain syndrome type I of right lower limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "293971000119103", - "Display": "Complex regional pain syndrome type I of right upper limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "294031000119103", - "Display": "Episodic paroxysmal hemicrania (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29930001000004103", - "Display": "Intractable low back pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303081002", - "Display": "Neurogenic claudication (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3061000119102", - "Display": "Chronic nonmalignant pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314642004", - "Display": "Intermittent pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35074008", - "Display": "Chronic idiopathic anal pain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371806006", - "Display": "Progressive angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371808007", - "Display": "Recurrent angina status post percutaneous transluminal coronary angioplasty (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371809004", - "Display": "Recurrent angina status post coronary stent placement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371810009", - "Display": "Recurrent angina status post coronary artery bypass graft (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371811008", - "Display": "Recurrent angina status post rotational atherectomy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371812001", - "Display": "Recurrent angina status post directional coronary atherectomy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373621006", - "Display": "Chronic pain syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38654001", - "Display": "Recurrent biliary colic (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39402007", - "Display": "Pelvic congestion syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "408749000", - "Display": "Complex regional pain syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "408750000", - "Display": "Complex regional pain syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "408751001", - "Display": "Complex regional pain syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41321000119101", - "Display": "Myofascial pain syndrome of thoracic spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426135001", - "Display": "Chronic prostatitis - chronic pelvic pain syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426206001", - "Display": "Constant pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426628005", - "Display": "Chronic vaginal pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427419006", - "Display": "Transformed migraine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431237007", - "Display": "Chronic headache disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431481001", - "Display": "Chronic pain due to injury (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431601000124105", - "Display": "Chronic migraine without aura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432615008", - "Display": "Chronic pain in face (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434011000124101", - "Display": "Chronic chest pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "437931000124100", - "Display": "Chronic migraine without aura" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43922008", - "Display": "Jaw claudication (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "439469002", - "Display": "Recurrent abdominal pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441711008", - "Display": "Chronic psychogenic pain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443095000", - "Display": "Hemicrania continua (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444746004", - "Display": "Acute exacerbation of chronic abdominal pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "458241000124102", - "Display": "Chronic daily headache (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51881000119109", - "Display": "Chronic ankle pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "571000119103", - "Display": "Daily headache (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "631000119102", - "Display": "Chronic back pain greater than three months duration (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63491006", - "Display": "Intermittent claudication (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "674051000119103", - "Display": "Chronic neck pain for greater than 3 months (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699694000", - "Display": "Chronic post-concussion headache (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712537009", - "Display": "Complex regional pain syndrome of upper limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712826000", - "Display": "Intermittent headache (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714252004", - "Display": "Post-mastectomy chronic pain syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722982003", - "Display": "Frequent episodic tension-type headache (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "726531007", - "Display": "Myofascial pain syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "734947007", - "Display": "Complex regional pain syndrome type I (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "734986006", - "Display": "Complex regional pain syndrome of lower limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "734987002", - "Display": "Complex regional pain syndrome of foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "734988007", - "Display": "Complex regional pain syndrome of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "734989004", - "Display": "Complex regional pain syndrome of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735644008", - "Display": "Chronic nociceptive pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735935009", - "Display": "Chronic pain due to malignant neoplastic disease (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735936005", - "Display": "Chronic neuropathic pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "736428003", - "Display": "Chronic arthralgia of temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "736464002", - "Display": "Chronic idiopathic pain syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "737305006", - "Display": "Primary chronic pain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "737306007", - "Display": "Chronic visceral pain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762354003", - "Display": "Persistent headache due to and following injury of head (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762451005", - "Display": "Chronic pain following trauma (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762452003", - "Display": "Chronic musculoskeletal pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762454002", - "Display": "Chronic orofacial pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762589002", - "Display": "Chronic primary visceral pain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762590006", - "Display": "Chronic primary generalized pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762591005", - "Display": "Chronic primary musculoskeletal pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762592003", - "Display": "Chronic primary headache (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762593008", - "Display": "Chronic primary orofacial pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762594002", - "Display": "Chronic pain following surgical procedure for cancer (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762595001", - "Display": "Chronic painful polyneuropathy following chemotherapy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762596000", - "Display": "Chronic pain following radiotherapy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762597009", - "Display": "Chronic musculoskeletal pain due to persistent inflammation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762598004", - "Display": "Chronic musculoskeletal pain due to disease of nervous system (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762599007", - "Display": "Chronic mechanical visceral pain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762600005", - "Display": "Chronic visceral pain due to vascular disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762601009", - "Display": "Chronic visceral pain due to persistent inflammation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762602002", - "Display": "Chronic central neuropathic pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762603007", - "Display": "Chronic peripheral neuropathic pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762604001", - "Display": "Chronic secondary facial pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762605000", - "Display": "Chronic secondary oral pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "782661001", - "Display": "Chronic sacroiliac joint pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "785723001", - "Display": "Persistent idiopathic facial pain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "788891004", - "Display": "Chronic pain after cancer treatment (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789494008", - "Display": "Central sensitization (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "792845002", - "Display": "Intermittent claudication due to atherosclerosis of artery of limb (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82423001", - "Display": "Chronic pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "95417003", - "Display": "Primary fibromyalgia syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "95443002", - "Display": "Venous intermittent claudication (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "95654002", - "Display": "Chronic paroxysmal hemicrania (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "95657009", - "Display": "Chronic mixed headache syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "98611000119104", - "Display": "Chronic post-thoracotomy pain syndrome (finding)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G89.0", - "Display": "Central pain syndrome" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G89.21", - "Display": "Chronic pain due to trauma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G89.28", - "Display": "Other chronic postprocedural pain" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G89.29", - "Display": "Other chronic pain" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G89.4", - "Display": "Chronic pain syndrome" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G90.511", - "Display": "Complex regional pain syndrome I of right upper limb" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G90.512", - "Display": "Complex regional pain syndrome I of left upper limb" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G90.513", - "Display": "Complex regional pain syndrome I of upper limb" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G90.521", - "Display": "Complex regional pain syndrome I of right lower limb" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G90.522", - "Display": "Complex regional pain syndrome I of left lower limb" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G90.523", - "Display": "Complex regional pain syndrome I of lower limb" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G90.529", - "Display": "Complex regional pain syndrome I of unspecified lower limb" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G90.59", - "Display": "Complex regional pain syndrome I of other specified site" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R52", - "Display": "Pain" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.81.json b/build/main/resources/2.16.840.1.113762.1.4.1222.81.json deleted file mode 100644 index 8733bd0..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.81.json +++ /dev/null @@ -1,7406 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "100451000119108", - "Display": "Pyogenic bacterial arthritis of shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "100461000119105", - "Display": "Pyogenic bacterial arthritis of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1010664005", - "Display": "Stickler syndrome type 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1010666007", - "Display": "Stickler syndrome type 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1010668008", - "Display": "Stickler syndrome type 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10193001", - "Display": "Arthritis caused by Pseudomonas (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10196009", - "Display": "Juvenile osteochondrosis of acetabulum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1033009", - "Display": "Thoracic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "104681000119106", - "Display": "Reactive arthritis of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1055297002", - "Display": "Gonarthrosis of left knee due to and following trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1055298007", - "Display": "Gonarthrosis of right knee due to and following trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10624571000119106", - "Display": "Ossification of anterior longitudinal ligament of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10629311000119107", - "Display": "Psoriatic arthritis mutilans (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073061000119105", - "Display": "Arthritis of right shoulder caused by Streptococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073071000119104", - "Display": "Arthritis of left shoulder caused by Streptococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073141000119105", - "Display": "Arthritis of right hip caused by genus Streptococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073151000119107", - "Display": "Arthritis of left hip caused by genus Streptococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073161000119109", - "Display": "Arthritis of right knee caused by Streptococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073171000119103", - "Display": "Arthritis of left knee caused by Streptococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073181000119100", - "Display": "Arthritis of right ankle caused by genus Streptococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073201000119104", - "Display": "Arthritis of left ankle caused by genus Streptococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073221000119108", - "Display": "Arthritis of right shoulder caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073231000119106", - "Display": "Arthritis of left shoulder caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073241000119102", - "Display": "Arthritis of right elbow caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073251000119100", - "Display": "Arthritis of left elbow caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073261000119103", - "Display": "Arthritis of right wrist caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073271000119109", - "Display": "Arthritis of left wrist caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073281000119107", - "Display": "Arthritis of right hand caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073291000119105", - "Display": "Arthritis of left hand caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073301000119106", - "Display": "Arthritis of right hip caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073311000119109", - "Display": "Arthritis of left hip caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073321000119102", - "Display": "Arthritis of right knee caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073331000119104", - "Display": "Arthritis of left knee caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073341000119108", - "Display": "Arthritis of right ankle caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073351000119105", - "Display": "Arthritis of right foot caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073361000119107", - "Display": "Arthritis of left foot caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073371000119101", - "Display": "Arthritis of left ankle caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073381000119103", - "Display": "Arthritis of left sacroiliac joint caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073391000119100", - "Display": "Arthritis of right sacroiliac joint caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073401000119103", - "Display": "Infective arthritis of left shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073411000119100", - "Display": "Infective arthritis of right shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073421000119107", - "Display": "Infective arthritis of left elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073431000119105", - "Display": "Infective arthritis of right elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073441000119101", - "Display": "Infective arthritis of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073451000119104", - "Display": "Infective arthritis of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073461000119102", - "Display": "Infective arthritis of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073471000119108", - "Display": "Infective arthritis of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073481000119106", - "Display": "Infective arthritis of left hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073491000119109", - "Display": "Infective arthritis of right hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073501000119102", - "Display": "Infective arthritis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073511000119104", - "Display": "Infective arthritis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073521000119106", - "Display": "Infective arthritis of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073531000119109", - "Display": "Infective arthritis of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073541000119100", - "Display": "Infective arthritis of right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073551000119103", - "Display": "Infective arthritis of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073681000119109", - "Display": "Rheumatoid arthritis of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073691000119107", - "Display": "Rheumatoid arthritis of left elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073701000119107", - "Display": "Rheumatoid arthritis of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073711000119105", - "Display": "Rheumatoid arthritis of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073721000119103", - "Display": "Rheumatoid arthritis of left hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073731000119100", - "Display": "Rheumatoid arthritis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073741000119109", - "Display": "Rheumatoid arthritis of left shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073751000119106", - "Display": "Rheumatoid arthritis of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073761000119108", - "Display": "Rheumatoid arthritis of right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073771000119102", - "Display": "Rheumatoid arthritis of right elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073781000119104", - "Display": "Rheumatoid arthritis of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073791000119101", - "Display": "Rheumatoid arthritis of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073801000119100", - "Display": "Rheumatoid arthritis of right hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073811000119102", - "Display": "Rheumatoid arthritis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073821000119109", - "Display": "Rheumatoid arthritis of right shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073831000119107", - "Display": "Rheumatoid arthritis of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073861000119104", - "Display": "Deformity of right hand co-occurrent and due to rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073871000119105", - "Display": "Deformity of left hand co-occurrent and due to rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073881000119108", - "Display": "Deformity of right foot co-occurrent and due to rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073891000119106", - "Display": "Deformity of left foot co-occurrent and due to rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074001000119107", - "Display": "Arthritis of right foot due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074011000119105", - "Display": "Arthritis of right great toe due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074021000119103", - "Display": "Arthritis of left foot due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074031000119100", - "Display": "Arthritis of left great toe due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074061000119108", - "Display": "Chondrocalcinosis of right shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074071000119102", - "Display": "Chondrocalcinosis of left shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074081000119104", - "Display": "Chondrocalcinosis of right elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074091000119101", - "Display": "Chondrocalcinosis of left elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074101000119106", - "Display": "Chondrocalcinosis of joint of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074111000119109", - "Display": "Chondrocalcinosis of joint of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074121000119102", - "Display": "Chondrocalcinosis of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074131000119104", - "Display": "Chondrocalcinosis of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074141000119108", - "Display": "Chondrocalcinosis of right hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074151000119105", - "Display": "Chondrocalcinosis of left hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074161000119107", - "Display": "Chondrocalcinosis of joint of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074171000119101", - "Display": "Chondrocalcinosis of joint of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074181000119103", - "Display": "Chondrocalcinosis of right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074191000119100", - "Display": "Chondrocalcinosis of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074201000119102", - "Display": "Chondrocalcinosis of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074211000119104", - "Display": "Chondrocalcinosis of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074301000119109", - "Display": "Arthritis of right foot due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074311000119107", - "Display": "Arthritis of left foot due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074371000119104", - "Display": "Osteoarthritis of right acromioclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074381000119101", - "Display": "Osteoarthritis of right glenohumeral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074391000119103", - "Display": "Osteoarthritis of right sternoclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074401000119101", - "Display": "Osteoarthritis of bilateral acromioclavicular joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074411000119103", - "Display": "Osteoarthritis of bilateral sternoclavicular joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074421000119105", - "Display": "Osteoarthritis of bilateral glenohumeral joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074431000119108", - "Display": "Osteoarthritis of left acromioclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074441000119104", - "Display": "Osteoarthritis of left glenohumeral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074451000119102", - "Display": "Osteoarthritis of left sternoclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074461000119100", - "Display": "Osteoarthritis of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074471000119106", - "Display": "Osteoarthritis of midtarsal joint of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074481000119109", - "Display": "Osteoarthritis of first metatarsophalangeal joint of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074491000119107", - "Display": "Osteoarthritis of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074501000119100", - "Display": "Osteoarthritis of midtarsal joint of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074511000119102", - "Display": "Osteoarthritis of first metatarsophalangeal joint of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074521000119109", - "Display": "Osteoarthritis of right foot due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074531000119107", - "Display": "Osteoarthritis of left foot due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074561000119104", - "Display": "Osteoarthritis of right sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074571000119105", - "Display": "Osteoarthritis of left sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074581000119108", - "Display": "Arthritis of left acromioclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074591000119106", - "Display": "Inflammation of joint of left shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074601000119104", - "Display": "Arthritis of right acromioclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074611000119101", - "Display": "Inflammation of joint of right shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074621000119108", - "Display": "Arthritis of bilateral acromioclavicular joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074631000119106", - "Display": "Arthritis of bilateral glenohumeral joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074641000119102", - "Display": "Inflammation of joints of bilateral shoulder regions (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074651000119100", - "Display": "Arthritis of left glenohumeral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074661000119103", - "Display": "Arthritis of left sternoclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074671000119109", - "Display": "Arthritis of right glenohumeral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074681000119107", - "Display": "Arthritis of right sternoclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074691000119105", - "Display": "Arthritis of left elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074701000119105", - "Display": "Arthritis of right elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074711000119108", - "Display": "Arthritis of bilateral elbows (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074721000119101", - "Display": "Arthritis of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074731000119103", - "Display": "Arthritis of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074741000119107", - "Display": "Arthritis of bilateral wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074751000119109", - "Display": "Inflammation of joint of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074761000119106", - "Display": "Inflammation of joint of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074771000119100", - "Display": "Arthritis of finger of bilateral hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074781000119102", - "Display": "Arthritis of bilateral first carpometacarpal joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074791000119104", - "Display": "Inflammation of joint of both hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074801000119103", - "Display": "Arthritis of first carpometacarpal joint of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074811000119100", - "Display": "Arthritis of first carpometacarpal joint of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074821000119107", - "Display": "Bilateral arthritis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074831000119105", - "Display": "Arthritis of left hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074841000119101", - "Display": "Arthritis of right hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074851000119104", - "Display": "Arthritis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074861000119102", - "Display": "Arthritis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074871000119108", - "Display": "Bilateral arthritis of knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074881000119106", - "Display": "Arthritis of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074891000119109", - "Display": "Arthritis of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074901000119108", - "Display": "Arthritis of left midtarsal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074911000119106", - "Display": "Arthritis of right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074921000119104", - "Display": "Arthritis of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074931000119101", - "Display": "Arthritis of right midtarsal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074941000119105", - "Display": "Arthritis of bilateral ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074951000119107", - "Display": "Arthritis of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074961000119109", - "Display": "Arthritis of bilateral sternoclavicular joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074971000119103", - "Display": "Arthritis of left sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074981000119100", - "Display": "Arthritis of right sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1075001000119108", - "Display": "Chronic tophaceous gout of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1075021000119104", - "Display": "Chronic tophaceous gout of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1075891000119105", - "Display": "Synovitis of left ankle joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1075901000119109", - "Display": "Synovitis of right ankle joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1075911000119107", - "Display": "Synovitis of joint of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1075921000119100", - "Display": "Synovitis of joint of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076171000119108", - "Display": "Patellar bursitis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076181000119106", - "Display": "Bursitis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076191000119109", - "Display": "Pes anserinus bursitis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076211000119105", - "Display": "Suprapatellar bursitis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076221000119103", - "Display": "Subpatellar bursitis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076231000119100", - "Display": "Patellar bursitis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076241000119109", - "Display": "Bursitis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076251000119106", - "Display": "Pes anserinus bursitis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076271000119102", - "Display": "Suprapatellar bursitis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076281000119104", - "Display": "Subpatellar bursitis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076371000119105", - "Display": "Infection of prepatellar bursa of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076381000119108", - "Display": "Infection of prepatellar bursa of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "107881000119100", - "Display": "Advanced collapse of scapholunate joint due to osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1092661000119102", - "Display": "Sporotrichosis arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10948005", - "Display": "Thoracic spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109663009", - "Display": "Arthritis of temporomandibular joint as part of polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109664003", - "Display": "Arthritis of temporomandibular joint caused by internal joint prosthesis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109666001", - "Display": "Infectious arthritis of temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109667005", - "Display": "Infectious arthritis of temporomandibular joint caused by internal joint prosthesis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109668000", - "Display": "Degenerative arthritis of temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109669008", - "Display": "Traumatic arthritis of the temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "110041000119104", - "Display": "Reactive arthritis co-occurrent and due to nonspecific urethritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11023001", - "Display": "Acute calcific periarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11055151000119108", - "Display": "Seropositive rheumatoid arthritis of multiple joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111211002", - "Display": "Migratory polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111242007", - "Display": "Periarthritis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111243002", - "Display": "Bursitis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111820003", - "Display": "Staphylococcal arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "112961000119103", - "Display": "Osteoarthritis of joint of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "112971000119109", - "Display": "Osteoarthritis of joint of bilateral ankles (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "112981000119107", - "Display": "Osteoarthritis of bilateral knee joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "112991000119105", - "Display": "Osteoarthritis of bilateral hip joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "113001000119106", - "Display": "Osteoarthritis of joint of finger of bilateral hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "113011000119109", - "Display": "Osteoarthritis of joint of bilateral hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "113021000119102", - "Display": "Osteoarthritis of bilateral wrists (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "113031000119104", - "Display": "Osteoarthritis of bilateral elbows (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "113041000119108", - "Display": "Osteoarthritis of bilateral shoulders (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "116431000119103", - "Display": "Infective polyarthritis caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "116441000119107", - "Display": "Bacterial arthritis of vertebral column (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11939005", - "Display": "Acute arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "120401000119101", - "Display": "Chondrocalcinosis of hand due to disorder of calcium metabolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12236561000119100", - "Display": "Arthritis of finger of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12236601000119100", - "Display": "Arthritis of finger of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12241631000119102", - "Display": "Osteoarthritis of finger joint of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12241671000119104", - "Display": "Osteoarthritis of finger joint of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "122691000119106", - "Display": "Chondrocalcinosis of hip joint due to disorder of calcium metabolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12367361000119109", - "Display": "Osteoarthritis of right patellofemoral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12367411000119102", - "Display": "Osteoarthritis of left patellofemoral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12367461000119104", - "Display": "Osteoarthritis of bilateral patellofemoral joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123798002", - "Display": "Lumbosacral spondylosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123949001", - "Display": "Post-streptococcal reactive arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "128701000119108", - "Display": "Capsulitis of tarsus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "128751000119107", - "Display": "Capsulitis of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "137791000119100", - "Display": "Chondrocalcinosis of elbow due to disorder of calcium metabolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14175009", - "Display": "Rheumatic joint disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14188007", - "Display": "Tuberculosis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "143441000119108", - "Display": "Rheumatoid arthritis in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14380001000004102", - "Display": "Degenerative joint disease of thumb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15630971000119102", - "Display": "Bilateral inflammation of sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15635921000119105", - "Display": "Pes anserinus bursitis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15635961000119100", - "Display": "Bilateral adhesive capsulitis of shoulders (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15636001000119108", - "Display": "Lateral epicondylitis of bilateral humerus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15636041000119105", - "Display": "Bilateral medial epicondylitis of elbows (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15636211000119100", - "Display": "Chondromalacia of bilateral patellas (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "156370009", - "Display": "Psoriatic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15637231000119107", - "Display": "Bilateral tendonitis of patellar tendon (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15637471000119109", - "Display": "Degenerative rupture of medial meniscus of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15637511000119100", - "Display": "Degenerative rupture of medial meniscus of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15637551000119104", - "Display": "Degenerative rupture of medial meniscus of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15638571000119107", - "Display": "Prepatellar bursitis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15675201000119109", - "Display": "Tendinitis of metatarsophalangeal joint of second toe of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15675281000119101", - "Display": "Tendinitis of metatarsophalangeal joint of second toe of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15681801000119103", - "Display": "Juvenile osteochondritis of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15683241000119104", - "Display": "Infrapatellar bursitis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15683281000119109", - "Display": "Patellar bursitis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15683321000119104", - "Display": "Bursitis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15685921000119102", - "Display": "Rheumatoid arthritis of bilateral temporomandibular joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15685961000119107", - "Display": "Rheumatoid arthritis of right temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686001000119104", - "Display": "Rheumatoid arthritis of left temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686041000119102", - "Display": "Osteoarthritis of right temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686081000119107", - "Display": "Osteoarthritis of bilateral temporomandibular joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686121000119109", - "Display": "Osteoarthritis of left temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686281000119101", - "Display": "Rheumatoid arthritis of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686321000119106", - "Display": "Rheumatoid arthritis of bilateral elbows (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686521000119102", - "Display": "Transient synovitis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686601000119107", - "Display": "Transient synovitis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686961000119102", - "Display": "Synovitis of joint of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15687001000119102", - "Display": "Synovitis of joint of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15687041000119100", - "Display": "Synovitis of joint of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15687201000119107", - "Display": "Rheumatoid arthritis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15687321000119109", - "Display": "Rheumatoid arthritis of bilateral hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15687841000119108", - "Display": "Rheumatoid arthritis of bilateral hips (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15687881000119103", - "Display": "Arthritis of bilateral hips caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15687921000119105", - "Display": "Capsulitis of metatarsophalangeal joint of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15688041000119101", - "Display": "Capsulitis of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15688081000119106", - "Display": "Capsulitis of metatarsophalangeal joint of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15688201000119108", - "Display": "Capsulitis of metatarsophalangeal joint of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15688241000119105", - "Display": "Capsulitis of right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15689921000119100", - "Display": "Arthritis of bilateral knees caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15690121000119107", - "Display": "Arthritis of bilateral knee joints caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15690201000119107", - "Display": "Arthritis of bilateral feet caused by domain Bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15690281000119104", - "Display": "Arthritis of bilateral shoulders caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15690321000119109", - "Display": "Arthritis of bilateral wrists caused by Bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15690361000119104", - "Display": "Arthritis of bilateral sacroiliac joints caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15690521000119100", - "Display": "Infective arthritis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15691161000119108", - "Display": "Seronegative rheumatoid arthritis of bilateral hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15691241000119101", - "Display": "Seronegative rheumatoid arthritis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15691321000119101", - "Display": "Seronegative rheumatoid arthritis of bilateral wrists (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15691721000119102", - "Display": "Rheumatoid arthritis of bilateral ankles (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15691761000119107", - "Display": "Rheumatoid arthritis of bilateral wrists (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15691801000119104", - "Display": "Seropositive rheumatoid arthritis of bilateral hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15691881000119107", - "Display": "Seropositive rheumatoid arthritis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15692241000119108", - "Display": "Arthritis of first metatarsophalangeal joint of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15692321000119108", - "Display": "Arthritis of bilateral first metatarsophalangeal joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15705201000119109", - "Display": "Chondrocalcinosis of bilateral hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15705241000119106", - "Display": "Chondrocalcinosis of bilateral shoulders (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15705281000119101", - "Display": "Chondrocalcinosis of bilateral knee joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15705361000119101", - "Display": "Chondrocalcinosis of bilateral hips (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15720481000119102", - "Display": "Chondromalacia of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15722441000119106", - "Display": "Osteoarthritis of left subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15722521000119101", - "Display": "Osteoarthritis of right subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15722561000119106", - "Display": "Osteoarthritis of first metatarsophalangeal joint of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15722961000119101", - "Display": "Osteoarthritis of bilateral sacroiliac joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15742441000119108", - "Display": "Medial epicondyle apophysitis of left elbow due to overuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15742481000119103", - "Display": "Medial epicondyle apophysitis of right elbow due to overuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15749161000119108", - "Display": "Chondromalacia of right patella (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15972981000119101", - "Display": "Arthritis of bilateral sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15980551000119106", - "Display": "Capsulitis of right temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15980591000119101", - "Display": "Capsulitis of left temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15980631000119101", - "Display": "Capsulitis of bilateral temporomandibular joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15980671000119103", - "Display": "Arthritis of right temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15980711000119104", - "Display": "Arthritis of left temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15980751000119103", - "Display": "Arthritis of bilateral temporomandibular joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16005991000119109", - "Display": "Tophus of bilateral elbows co-occurrent and due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16008111000119108", - "Display": "Degenerative rupture of triangular fibrocartilage of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16008191000119104", - "Display": "Degenerative rupture of triangular fibrocartilage of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16008271000119106", - "Display": "Chondrocalcinosis of bilateral wrists (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16008551000119100", - "Display": "Arthritis of finger of left hand due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16008751000119108", - "Display": "Arthritis of right finger due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16010751000119107", - "Display": "Gouty arthritis of bilateral great toes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16010951000119105", - "Display": "Osteoarthritis of bilateral feet due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16015391000119105", - "Display": "Osteoarthritis of midtarsal joints of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16015791000119109", - "Display": "Arthritis of left subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16015911000119102", - "Display": "Gouty arthritis of bilateral ankles (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16015951000119101", - "Display": "Gouty arthritis of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16015991000119106", - "Display": "Arthritis of right subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016111000119109", - "Display": "Arthritis of bilateral subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016151000119105", - "Display": "Chondrocalcinosis of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016191000119100", - "Display": "Chondrocalcinosis of bilateral ankles (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016231000119109", - "Display": "Tuberculosis of right knee joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016311000119107", - "Display": "Tuberculosis of left knee joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016511000119102", - "Display": "Degenerative rupture of lateral meniscus of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016551000119101", - "Display": "Degenerative rupture of lateral meniscus of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016631000119106", - "Display": "Degenerative rupture of lateral meniscus of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16021231000119107", - "Display": "Suprapatellar bursitis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16024431000119108", - "Display": "Acute polyarticular juvenile idiopathic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039071000119104", - "Display": "Chondromalacia of joint of left elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039111000119106", - "Display": "Chondromalacia of joint of right elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039151000119107", - "Display": "Chondromalacia of joint of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039191000119102", - "Display": "Chondromalacia of left shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039231000119106", - "Display": "Chondromalacia of joint of right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039311000119109", - "Display": "Chondromalacia of joint of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039391000119100", - "Display": "Chondromalacia of right shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039431000119105", - "Display": "Chondromalacia of left hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039631000119108", - "Display": "Chondromalacia of right hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039791000119101", - "Display": "Chondromalacia of joint of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039831000119107", - "Display": "Chondromalacia of bilateral ankles (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16040031000119108", - "Display": "Chronic tophaceous gout of bilateral elbows (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16040071000119106", - "Display": "Chronic tophaceous gout of bilateral hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16041671000119109", - "Display": "Juvenile rheumatoid arthritis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16044751000119106", - "Display": "Polyarticular juvenile idiopathic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16046631000119100", - "Display": "Hydroxyapatite deposition disease of left shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16046951000119104", - "Display": "Hydroxyapatite deposition disease of right shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16050071000119108", - "Display": "Seropositive rheumatoid arthritis of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16068491000119107", - "Display": "Arthritis of bilateral knees due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16076051000119104", - "Display": "Tophus of left elbow co-occurrent and due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16076131000119106", - "Display": "Tophus of right elbow co-occurrent and due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16208561000119106", - "Display": "Juvenile rheumatoid arthritis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16208721000119109", - "Display": "Juvenile rheumatoid arthritis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16426601000119103", - "Display": "Arthritis of facet joint of thoracic spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16426641000119101", - "Display": "Arthritis of facet joint of lumbar spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16426681000119106", - "Display": "Arthritis of facet joint of cervical spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16582921000119102", - "Display": "Arthritis of left ankle due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16582961000119107", - "Display": "Arthritis of right ankle due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16583281000119101", - "Display": "Osteoarthritis of left ankle due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16583321000119106", - "Display": "Osteoarthritis of right ankle due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16583361000119101", - "Display": "Osteoarthritis of joint right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16606721000119107", - "Display": "Seropositive rheumatoid arthritis in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1679003", - "Display": "Arthritis associated with another disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16935003", - "Display": "Allergic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17059001", - "Display": "Prepatellar bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17136009", - "Display": "Tuberculosis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17231000119107", - "Display": "Pyogenic bacterial arthritis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1771000119109", - "Display": "Arthritis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18834007", - "Display": "Crystal arthropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18920006", - "Display": "Acute bacterial arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190710003", - "Display": "Tuberculous arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190828008", - "Display": "Gouty arthropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190842000", - "Display": "Tophus of hand co-occurrent and due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19181003", - "Display": "Lymphocytic plasmacytic synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19192002", - "Display": "Yaws of joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193120004", - "Display": "Nerve root and plexus compressions in spondylosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19375000", - "Display": "Pyogenic arthritis of pelvic region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19431000", - "Display": "Arthritis co-occurrent and due to rubella (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19514005", - "Display": "Arthritis mutilans (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19579005", - "Display": "Juvenile osteochondritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1961000", - "Display": "Chronic polyarticular juvenile rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20075001", - "Display": "Crystal arthropathy of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "200956002", - "Display": "Psoriatic arthritis with spine involvement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201466005", - "Display": "Staphylococcal arthritis and polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201467001", - "Display": "Pneumococcal arthritis and polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201474006", - "Display": "Sexually acquired reactive arthropathy of the shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201477004", - "Display": "Sexually acquired reactive arthropathy of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201478009", - "Display": "Sexually acquired reactive arthropathy of the pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201480003", - "Display": "Sexually acquired reactive arthropathy of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201485008", - "Display": "Arthropathy in Behcet's syndrome of the shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201488005", - "Display": "Arthropathy in Behcet's syndrome of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201489002", - "Display": "Arthropathy in Behcet's syndrome of the pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201491005", - "Display": "Arthropathy in Behcet's syndrome of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201497009", - "Display": "Post-dysenteric reactive arthropathy of the shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201500003", - "Display": "Post-dysenteric reactive arthropathy of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201501004", - "Display": "Post-dysenteric reactive arthropathy of the pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201503001", - "Display": "Post-dysenteric reactive arthropathy of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201504007", - "Display": "Post-dysenteric reactive arthropathy of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201517005", - "Display": "Seronegative arthritis secondary to Whipple's disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201546003", - "Display": "Arthropathy of the shoulder region associated with helminthiasis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201549005", - "Display": "Arthropathy of the hand associated with helminthiasis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201550005", - "Display": "Arthropathy of the pelvic region and thigh associated with helminthiasis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201552002", - "Display": "Arthropathy of the ankle and/or foot associated with helminthiasis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201558003", - "Display": "Reactive arthropathy of shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201559006", - "Display": "Reactive arthropathy of sternoclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201560001", - "Display": "Reactive arthropathy of acromioclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201561002", - "Display": "Reactive arthropathy of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201562009", - "Display": "Reactive arthropathy of distal radioulnar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201563004", - "Display": "Reactive arthropathy of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201564005", - "Display": "Reactive arthropathy of metacarpophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201565006", - "Display": "Reactive arthropathy of proximal interphalangeal joint of finger (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201566007", - "Display": "Reactive arthropathy of distal interphalangeal joint of finger (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201567003", - "Display": "Reactive arthropathy of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201568008", - "Display": "Reactive arthropathy of sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201569000", - "Display": "Reactive arthropathy of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201570004", - "Display": "Reactive arthropathy of tibiofibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201571000", - "Display": "Reactive arthropathy of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201572007", - "Display": "Reactive arthropathy of subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201573002", - "Display": "Reactive arthropathy of talonavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201575009", - "Display": "Reactive arthropathy of first metatarsophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201576005", - "Display": "Reactive arthropathy of lesser metatarsophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201577001", - "Display": "Reactive arthropathy of interphalangeal joint of toe (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201625003", - "Display": "Chondrocalcinosis due to dicalcium phosphate crystals (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201627006", - "Display": "Chondrocalcinosis due to dicalcium phosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201630004", - "Display": "Chondrocalcinosis due to dicalcium phosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201631000", - "Display": "Chondrocalcinosis due to dicalcium phosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201633002", - "Display": "Chondrocalcinosis due to dicalcium phosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201634008", - "Display": "Chondrocalcinosis due to dicalcium phosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201637001", - "Display": "Chondrocalcinosis due to pyrophosphate crystals (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201639003", - "Display": "Chondrocalcinosis due to pyrophosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201642009", - "Display": "Chondrocalcinosis-pyrophosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201643004", - "Display": "Chondrocalcinosis due to pyrophosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201645006", - "Display": "Chondrocalcinosis due to pyrophosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201646007", - "Display": "Chondrocalcinosis due to pyrophosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201663006", - "Display": "Gouty arthritis of the shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201666003", - "Display": "Gouty arthritis of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201667007", - "Display": "Gouty arthritis of the pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201669005", - "Display": "Gouty arthritis of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201670006", - "Display": "Gouty arthritis of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201728006", - "Display": "Arthropathy in Crohn's disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201732000", - "Display": "Arthropathy associated with dermatological disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201733005", - "Display": "Arthropathy associated with respiratory disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201736002", - "Display": "Reactive arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201738001", - "Display": "Post-infective arthropathy in syphilis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201764007", - "Display": "Rheumatoid arthritis of cervical spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201766009", - "Display": "Rheumatoid arthritis of shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201767000", - "Display": "Rheumatoid arthritis of sternoclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201768005", - "Display": "Rheumatoid arthritis of acromioclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201769002", - "Display": "Rheumatoid arthritis of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201770001", - "Display": "Rheumatoid arthritis of distal radioulnar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201771002", - "Display": "Rheumatoid arthritis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201772009", - "Display": "Rheumatoid arthritis of metacarpophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201773004", - "Display": "Rheumatoid arthritis of proximal interphalangeal joint of finger (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201774005", - "Display": "Rheumatoid arthritis of distal interphalangeal joint of finger (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201775006", - "Display": "Rheumatoid arthritis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201776007", - "Display": "Rheumatoid arthritis of sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201777003", - "Display": "Rheumatoid arthritis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201778008", - "Display": "Rheumatoid arthritis of tibiofibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201779000", - "Display": "Rheumatoid arthritis of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201780002", - "Display": "Rheumatoid arthritis of subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201781003", - "Display": "Rheumatoid arthritis of talonavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201783000", - "Display": "Rheumatoid arthritis of first metatarsophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201784006", - "Display": "Rheumatoid arthritis of lesser metatarsophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201785007", - "Display": "Rheumatoid arthritis of interphalangeal joint of toe (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201791009", - "Display": "Flare of rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201796004", - "Display": "Systemic onset juvenile chronic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201799006", - "Display": "Monarticular juvenile rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201805000", - "Display": "Juvenile arthritis in Crohn's disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201807008", - "Display": "Juvenile arthritis in ulcerative colitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201819000", - "Display": "Generalized osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201825001", - "Display": "Secondary multiple arthrosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201826000", - "Display": "Erosive osteoarthrosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201829007", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201831003", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201834006", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201835007", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201837004", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201847001", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201849003", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201852006", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201855008", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201857000", - "Display": "Post-traumatic coxarthrosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201858005", - "Display": "Post-traumatic gonarthrosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201921009", - "Display": "Kashin-Beck disease of the shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201924001", - "Display": "Kashin-Beck disease of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201925000", - "Display": "Kashin-Beck disease of the pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201927008", - "Display": "Kashin-Beck disease of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201929006", - "Display": "Kashin-Beck disease of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201964002", - "Display": "Allergic arthritis of the shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201967009", - "Display": "Allergic arthritis of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201968004", - "Display": "Allergic arthritis of the pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201970008", - "Display": "Allergic arthritis of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201972000", - "Display": "Allergic arthritis of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201977006", - "Display": "Climacteric arthritis of the shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201980007", - "Display": "Climacteric arthritis of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201981006", - "Display": "Climacteric arthritis of the pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201983009", - "Display": "Climacteric arthritis of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201985002", - "Display": "Climacteric arthritis of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202031002", - "Display": "Generalized arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202046009", - "Display": "Arthritis secondary to malignancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202457009", - "Display": "Palindromic rheumatism of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202460002", - "Display": "Palindromic rheumatism of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202461003", - "Display": "Palindromic rheumatism of pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202463000", - "Display": "Palindromic rheumatism of ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202465007", - "Display": "Palindromic rheumatism of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202657000", - "Display": "Single-level cervical spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202658005", - "Display": "Two-level cervical spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202659002", - "Display": "Multiple-level cervical spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202666001", - "Display": "Single-level thoracic spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202667005", - "Display": "Two-level thoracic spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202668000", - "Display": "Multiple-level thoracic spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202670009", - "Display": "Single-level thoracic spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202671008", - "Display": "Two-level thoracic spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202672001", - "Display": "Multiple-level thoracic spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202674000", - "Display": "Single-level lumbosacral spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202675004", - "Display": "Two-level lumbosacral spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202676003", - "Display": "Multiple-level lumbosacral spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202677007", - "Display": "Lumbosacral spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202678002", - "Display": "Single-level lumbosacral spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202679005", - "Display": "Two-level lumbosacral spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202680008", - "Display": "Multiple-level lumbosacral spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202687006", - "Display": "Cervical spondylosis with vascular compression (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202688001", - "Display": "Thoracic spondylosis with radiculopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202689009", - "Display": "Single-level thoracic spondylosis with radiculopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202690000", - "Display": "Two-level thoracic spondylosis with radiculopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202692008", - "Display": "Multiple-level thoracic spondylosis with radiculopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202693003", - "Display": "Lumbosacral spondylosis with radiculopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202694009", - "Display": "Single-level lumbosacral spondylosis with radiculopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202695005", - "Display": "Two-level lumbosacral spondylosis with radiculopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202696006", - "Display": "Multiple-level lumbosacral spondylosis with radiculopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202700003", - "Display": "Neuropathic spondylopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202744000", - "Display": "Cervical discitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202747007", - "Display": "Calcification of cervical disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202748002", - "Display": "Thoracic discitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202751009", - "Display": "Calcification of thoracic disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202752002", - "Display": "Lumbar discitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202755000", - "Display": "Calcification of lumbar disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202756004", - "Display": "Infection of intervertebral disc - pyogenic (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202771000", - "Display": "Cervical posterior longitudinal ligament ossification (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202855006", - "Display": "Lateral epicondylitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202868003", - "Display": "Pes anserinus tendinitis and bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202900007", - "Display": "Synovitis and tenosynovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202910003", - "Display": "Plant thorn synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202924004", - "Display": "Transient synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202925003", - "Display": "Chronic crepitant synovitis of hand and wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202926002", - "Display": "Synovitis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203382004", - "Display": "Juvenile osteochondrosis of head of humerus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203395009", - "Display": "Osteochondrosis of fifth metatarsal (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20358003", - "Display": "Pyogenic arthritis of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "21534009", - "Display": "Arthritis caused by Escherichia coli (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22193007", - "Display": "Degenerative joint disease of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225655006", - "Display": "Degenerative polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22821000119104", - "Display": "Pyogenic bacterial arthritis of foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22841000119105", - "Display": "Pyogenic bacterial polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22851000119107", - "Display": "Pyogenic bacterial arthritis of pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23008004", - "Display": "Subacute infective arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2304001", - "Display": "Discitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "232439007", - "Display": "Relapsing polychondritis of larynx (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234524009", - "Display": "Sarcoid dactylitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235066005", - "Display": "Oral lesion co-occurrent with reactive arthritis triad (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236543006", - "Display": "Beta-2 microglobulin arthropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236744002", - "Display": "Circinate balanitis co-occurrent with reactive arthritis triad (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237876008", - "Display": "Arthritis secondary to amyloidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237898004", - "Display": "Periarticular calcification (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238850005", - "Display": "Mouth and genital ulcers with inflamed cartilage syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23950002", - "Display": "Acute infective polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239777004", - "Display": "Knee pyogenic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239778009", - "Display": "Wrist pyogenic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239779001", - "Display": "Elbow pyogenic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239780003", - "Display": "Arthritis caused by viral infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239781004", - "Display": "Arthritis caused by spirochaetale infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239782006", - "Display": "Arthritis due to parasitic infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239783001", - "Display": "Post-infective arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239785008", - "Display": "Post-dysenteric reactive arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239787000", - "Display": "Post-tuberculous reactive arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239789002", - "Display": "Post-immunization arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239790006", - "Display": "Arthritis following intestinal bypass (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239791005", - "Display": "Seropositive rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239792003", - "Display": "Seronegative rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239795001", - "Display": "Rheumatoid arthritis with multisystem involvement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239796000", - "Display": "Juvenile chronic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239797009", - "Display": "Early onset pauciarticular chronic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239798004", - "Display": "Late onset pauciarticular chronic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239799007", - "Display": "Early onset polyarticular juvenile chronic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239800006", - "Display": "Late onset polyarticular juvenile chronic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239802003", - "Display": "Juvenile psoriatic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239803008", - "Display": "Juvenile psoriatic arthritis with psoriasis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239804002", - "Display": "Juvenile psoriatic arthritis without psoriasis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239805001", - "Display": "Juvenile ankylosing spondylitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239806000", - "Display": "Juvenile spondyloarthropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239807009", - "Display": "Juvenile reactive arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239808004", - "Display": "Juvenile reactive arthritis triad (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239809007", - "Display": "Juvenile arthritis of inflammatory bowel disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239810002", - "Display": "Ankylosing spondylitis with organ / system involvement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239811003", - "Display": "Ankylosing spondylitis with multisystem involvement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239812005", - "Display": "Psoriatic arthritis with distal interphalangeal joint involvement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239814006", - "Display": "Seronegative arthritis secondary to inflammatory bowel disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239815007", - "Display": "Solitary sacroiliitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239816008", - "Display": "Synovitis of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239817004", - "Display": "Synovitis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239818009", - "Display": "Shoulder synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239819001", - "Display": "Undifferentiated inflammatory oligoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239820007", - "Display": "Undifferentiated inflammatory monoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239821006", - "Display": "Secondary inflammatory arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239822004", - "Display": "Arthritis secondary to non-hematological malignancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239826001", - "Display": "Chronic infantile neurological" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239828000", - "Display": "Apatite-associated destructive arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239832006", - "Display": "Calcium pyrophosphate deposition disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239833001", - "Display": "Chondrocalcinosis due to pyrophosphate crystals of the knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239834007", - "Display": "Pyrophosphate arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239835008", - "Display": "Idiopathic pyrophosphate arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239836009", - "Display": "Secondary pyrophosphate arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239837000", - "Display": "Pyrophosphate tophus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239842008", - "Display": "Monosodium urate arthritis and periarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239849004", - "Display": "Intra-articular steroid-induced arthritis and periarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239862000", - "Display": "Idiopathic osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239863005", - "Display": "Osteoarthritis of spinal facet joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239865003", - "Display": "Osteoarthritis of acromioclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239866002", - "Display": "Osteoarthritis of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239867006", - "Display": "Osteoarthritis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239868001", - "Display": "Osteoarthritis of finger joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239869009", - "Display": "Osteoarthritis of distal interphalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239870005", - "Display": "Osteoarthritis of proximal interphalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239871009", - "Display": "Osteoarthritis of metacarpophalangeal joint of finger (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239872002", - "Display": "Osteoarthritis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239873007", - "Display": "Osteoarthritis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239874001", - "Display": "Osteoarthritis of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239876004", - "Display": "Osteoarthritis of subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239877008", - "Display": "Osteoarthritis of first metatarsophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239878003", - "Display": "Osteoarthritis of toe joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239880009", - "Display": "Lumbar spondylosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239881008", - "Display": "Otto's pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239883006", - "Display": "Endemic osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239884000", - "Display": "Malemud disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239920006", - "Display": "Adult onset Still's disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240002009", - "Display": "Popliteal bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240003004", - "Display": "Suprapatellar bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240004005", - "Display": "Semimembranosus bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240177002", - "Display": "Juvenile osteochondritis of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240178007", - "Display": "Juvenile osteochondritis of the arm (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240179004", - "Display": "Pelvis juvenile osteochondropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240180001", - "Display": "Hip juvenile osteochondropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240181002", - "Display": "Osteochondritis of the distal ulna (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240182009", - "Display": "Osteochondritis of the femoral head (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240211000", - "Display": "Intervertebral disk calcification (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240270007", - "Display": "Silicone synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240428000", - "Display": "Postmeningococcal arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240582004", - "Display": "Gonococcal synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240671002", - "Display": "Lyme erosive synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24761000119107", - "Display": "Pyogenic bacterial arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250126000", - "Display": "Symmetrical arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250127009", - "Display": "Asymmetrical arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250128004", - "Display": "Small joint arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250129007", - "Display": "Large joint arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250130002", - "Display": "Small and large joint arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250131003", - "Display": "Lower limb joint arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250536002", - "Display": "Starch synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25343008", - "Display": "Secondary localized osteoarthrosis of pelvic region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "254779008", - "Display": "Osteoarthritis deformans (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25738004", - "Display": "Tuberculous synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26071001", - "Display": "Acute infective arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26171000119109", - "Display": "Pyogenic bacterial arthritis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26241001", - "Display": "Crystal arthropathy of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26538006", - "Display": "Degeneration of lumbar intervertebral disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267439008", - "Display": "Liposynovitis prepatellaris (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267880006", - "Display": "Pyogenic arthritis of the pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267882003", - "Display": "Pyogenic arthritis of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267889007", - "Display": "Generalized osteoarthritis of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267890003", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267970006", - "Display": "Cervical spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267971005", - "Display": "Thoracic spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268022000", - "Display": "Juvenile osteochondritis of the hip and pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268023005", - "Display": "Osteochondritis of pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268024004", - "Display": "Juvenile osteochondritis of the arm and hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268025003", - "Display": "Juvenile osteochondrosis of capitulum of humerus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268054009", - "Display": "Osteoarthritis of multiple joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "270505009", - "Display": "Kashin-Beck disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "272006008", - "Display": "Gonococcal arthritis dermatitis syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "274135002", - "Display": "Arthritis/arthrosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "275324008", - "Display": "Osteoarthritis of metacarpophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276480007", - "Display": "Osteochondritis of metatarsal (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276481006", - "Display": "Osteochondritis of metacarpal (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276653007", - "Display": "Parvo virus arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281350007", - "Display": "Arthritis secondary to hematological malignancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281351006", - "Display": "Arthritis due to bleeding disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281359008", - "Display": "Traumatic synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281365008", - "Display": "Tophus of prepatellar bursa co-occurrent and due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281371002", - "Display": "Inflammatory discitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287006005", - "Display": "Rheumatoid arthritis of multiple joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287007001", - "Display": "Rheumatoid arthritis of hand joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287008006", - "Display": "Rheumatoid arthritis of ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287016002", - "Display": "Synovitis/tenosynovitis - multiple joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287017006", - "Display": "Synovitis/tenosynovitis - shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287019009", - "Display": "Synovitis/tenosynovitis - wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287020003", - "Display": "Synovitis/tenosynovitis - hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287021004", - "Display": "Synovitis/tenosynovitis - knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287062005", - "Display": "Juvenile osteochondritis - leg/foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28729000", - "Display": "Proliferative synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28736004", - "Display": "Primary localized osteoarthrosis of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "288213002", - "Display": "Synovitis/tenosynovitis - hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28880005", - "Display": "Rheumatoid carditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "298941000119101", - "Display": "Gout of shoulder due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "298951000119104", - "Display": "Gout of vertebra due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "298961000119102", - "Display": "Gout of wrist due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "300961000119108", - "Display": "Juvenile idiopathic arthritis of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301051000119101", - "Display": "Juvenile idiopathic arthritis of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301864002", - "Display": "Transient synovitis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301971000119109", - "Display": "Adhesive capsulitis of right shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301981000119107", - "Display": "Adhesive capsulitis of left shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "302935008", - "Display": "Infective discitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303001000119101", - "Display": "Osteoarthritis of hip co-occurrent and due to dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303041000119104", - "Display": "Osteoarthritis of bilateral first carpometacarpal joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303481000119104", - "Display": "Calcium deposit in bursa of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303551000119107", - "Display": "Calcium deposit in bursa of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303861000119106", - "Display": "Chondromalacia of left patella (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303881000119102", - "Display": "Chronic tophaceous gout of ankle due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303891000119104", - "Display": "Chronic gout of ankle without tophus due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303901000119100", - "Display": "Chronic tophaceous gout of elbow due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303911000119102", - "Display": "Chronic gout of elbow without tophus due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303921000119109", - "Display": "Chronic tophaceous gout of hand due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303931000119107", - "Display": "Chronic gout of hand without tophus due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303941000119103", - "Display": "Chronic tophaceous gout of hip due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303951000119101", - "Display": "Chronic gout of hip without tophus due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303961000119104", - "Display": "Chronic tophaceous gout of knee due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303971000119105", - "Display": "Chronic gout of knee without tophus due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304121000119108", - "Display": "Chronic tophaceous gout of multiple sites due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304261000119109", - "Display": "Chronic tophaceous gout of right wrist due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304281000119100", - "Display": "Chronic tophaceous gout of shoulder due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304291000119102", - "Display": "Chronic gout of shoulder without tophus due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304301000119101", - "Display": "Chronic tophaceous gout of vertebra due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304311000119103", - "Display": "Chronic gout of vertebra without tophus due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304321000119105", - "Display": "Chronic tophaceous gout due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304341000119104", - "Display": "Chronic tophaceous gout of wrist due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304351000119102", - "Display": "Chronic gout of wrist without tophus due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306131000119100", - "Display": "Chronic tophaceous gout of ankle and/or foot caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306141000119109", - "Display": "Chronic gout of ankle and/or foot without tophus caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306151000119106", - "Display": "Chronic tophaceous gout of elbow caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306161000119108", - "Display": "Chronic gout of elbow without tophus caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306171000119102", - "Display": "Chronic tophaceous gout of hand caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306181000119104", - "Display": "Chronic gout of hand without tophus caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306191000119101", - "Display": "Chronic tophaceous gout of hip caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306201000119103", - "Display": "Chronic gout of hip without tophus caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306211000119100", - "Display": "Chronic tophaceous gout of knee caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306221000119107", - "Display": "Chronic gout of knee without tophus caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306371000119100", - "Display": "Chronic tophaceous gout of multiple sites caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306531000119108", - "Display": "Chronic tophaceous gout of shoulder caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306541000119104", - "Display": "Chronic gout of shoulder without tophus caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306551000119102", - "Display": "Chronic tophaceous gout of vertebra caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306561000119100", - "Display": "Chronic gout of vertebra without tophus caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306571000119106", - "Display": "Chronic tophaceous gout caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306591000119107", - "Display": "Chronic tophaceous gout of wrist caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306601000119100", - "Display": "Chronic gout of wrist without tophus caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306611000119102", - "Display": "Gout of ankle and/or foot caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306621000119109", - "Display": "Gout of elbow caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306631000119107", - "Display": "Gout of hand caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306641000119103", - "Display": "Gout of hip caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306651000119101", - "Display": "Gout of knee caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306811000119101", - "Display": "Gout of shoulder caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306821000119108", - "Display": "Gout of vertebra caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306831000119106", - "Display": "Gout of wrist caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307371000119102", - "Display": "Familial calcium pyrophosphate deposition of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307391000119101", - "Display": "Familial calcium pyrophosphate deposition of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307451000119100", - "Display": "Familial calcium pyrophosphate deposition of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307471000119109", - "Display": "Familial calcium pyrophosphate deposition of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307500008", - "Display": "Cricoarytenoid joint arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "308143008", - "Display": "Seropositive erosive rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "308791000119101", - "Display": "Gout of elbow due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "308801000119100", - "Display": "Gout of hand due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "308811000119102", - "Display": "Gout of hip due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "308821000119109", - "Display": "Gout of knee due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309246000", - "Display": "Osteoarthritis of foot joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309255002", - "Display": "Charcot's joint of foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309661000119108", - "Display": "Primary chronic gout without tophus of ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309681000119104", - "Display": "Primary chronic gout without tophus of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309701000119101", - "Display": "Primary chronic gout without tophus of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309721000119105", - "Display": "Primary chronic gout without tophus of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309741000119104", - "Display": "Primary chronic gout without tophus of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310061000119109", - "Display": "Primary chronic gout without tophus of shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310081000119100", - "Display": "Primary chronic gout without tophus of vertebra (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310121000119103", - "Display": "Primary chronic gout without tophus of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310181000119104", - "Display": "Gouty arthritis of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310191000119101", - "Display": "Arthritis of left elbow due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310201000119103", - "Display": "Gouty arthritis of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310221000119107", - "Display": "Gouty arthritis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310241000119101", - "Display": "Arthritis of left wrist due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310261000119102", - "Display": "Gouty arthritis of right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310271000119108", - "Display": "Arthritis of right elbow due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310281000119106", - "Display": "Gouty arthritis of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310301000119105", - "Display": "Gouty arthritis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310321000119101", - "Display": "Arthritis of right wrist due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310640003", - "Display": "Degenerative lesion of articular cartilage of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312411000119100", - "Display": "Lateral epicondylitis of left humerus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312421000119107", - "Display": "Lateral epicondylitis of right humerus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313257005", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313258000", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313259008", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313541000119107", - "Display": "Medial epicondylitis of left humerus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313551000119109", - "Display": "Medial epicondylitis of right humerus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313591000119104", - "Display": "Monoarthritis of joint of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313611000119109", - "Display": "Monoarthritis of joint of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313631000119104", - "Display": "Monoarthritis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313661000119107", - "Display": "Monoarthritis of joint of right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313681000119103", - "Display": "Monoarthritis of joint of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313701000119100", - "Display": "Monoarthritis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "317511000119102", - "Display": "Tendonitis of left patellar tendon (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "317521000119109", - "Display": "Tendonitis of right patellar tendon (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "317821000119107", - "Display": "Arthritis of left knee caused by Streptococcus pneumoniae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "317891000119109", - "Display": "Arthritis of right knee caused by Streptococcus pneumoniae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318601000119103", - "Display": "Prepatellar bursitis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318611000119100", - "Display": "Prepatellar bursitis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318641000119101", - "Display": "Osteoarthritis of joint of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318651000119104", - "Display": "Osteoarthritis of joint of left elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318661000119102", - "Display": "Osteoarthritis of joint of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318671000119108", - "Display": "Osteoarthritis of joint of left shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318681000119106", - "Display": "Osteoarthritis of joint of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318691000119109", - "Display": "Osteoarthritis of joint of right ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318701000119109", - "Display": "Osteoarthritis of joint of right elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318711000119107", - "Display": "Osteoarthritis of joint of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318721000119100", - "Display": "Osteoarthritis of joint of right shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318731000119102", - "Display": "Osteoarthritis of joint of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318861000119101", - "Display": "Seropositive rheumatoid arthritis of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318871000119107", - "Display": "Seropositive rheumatoid arthritis of left hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318881000119105", - "Display": "Seropositive rheumatoid arthritis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318931000119100", - "Display": "Seropositive rheumatoid arthritis of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318941000119109", - "Display": "Seropositive rheumatoid arthritis of right hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318951000119106", - "Display": "Seropositive rheumatoid arthritis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "319031000119108", - "Display": "Seronegative rheumatoid arthritis of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "319081000119109", - "Display": "Seronegative rheumatoid arthritis of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "319111000119104", - "Display": "Seronegative rheumatoid arthritis of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "319841000119107", - "Display": "Rheumatoid lung disease with rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321311000119108", - "Display": "Spondylosis of cervicothoracic spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321341000119107", - "Display": "Spondylosis of thoracolumbar spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321651000119101", - "Display": "Arthritis of left ankle caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321661000119104", - "Display": "Arthritis of left elbow caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321681000119108", - "Display": "Arthritis of left hip caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321691000119106", - "Display": "Arthritis of left knee caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321701000119106", - "Display": "Arthritis of left shoulder caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321711000119109", - "Display": "Arthritis of left wrist caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321721000119102", - "Display": "Arthritis of right ankle caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321731000119104", - "Display": "Arthritis of right elbow caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321751000119105", - "Display": "Arthritis of right hip caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321761000119107", - "Display": "Arthritis of right knee caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321771000119101", - "Display": "Arthritis of right shoulder caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321781000119103", - "Display": "Arthritis of right wrist caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322521000119104", - "Display": "Transient synovitis of left elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322531000119101", - "Display": "Transient synovitis of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322541000119105", - "Display": "Transient synovitis of left hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322571000119103", - "Display": "Transient synovitis of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322601000119109", - "Display": "Transient synovitis of right elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322611000119107", - "Display": "Transient synovitis of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322621000119100", - "Display": "Transient synovitis of right hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322651000119108", - "Display": "Transient synovitis of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323161000119107", - "Display": "Osteoarthritis of left hip joint due to dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323171000119101", - "Display": "Osteoarthritis of right hip joint due to dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323251000119103", - "Display": "Osteoarthritis of first carpometacarpal joint of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323261000119101", - "Display": "Osteoarthritis of first carpometacarpal joint of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323291000119108", - "Display": "Osteoarthritis of left hip joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323301000119109", - "Display": "Osteoarthritis of left knee joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323311000119107", - "Display": "Osteoarthritis of right hip joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323321000119100", - "Display": "Osteoarthritis of right knee joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "324171000119104", - "Display": "Monoarthritis of joint of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33262002", - "Display": "Osteoarthrosis involving multiple sites but not designated as generalized (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33420007", - "Display": "Diffuse cervicobrachial syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33937009", - "Display": "Lyme arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33952002", - "Display": "Localized osteoarthrosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34427002", - "Display": "Crystal arthropathy of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34934005", - "Display": "Pyogenic arthritis of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35908007", - "Display": "Chronic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36071006", - "Display": "Chondromalacia of patella (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "361197009", - "Display": "Sarcoid arthropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "361198004", - "Display": "Sarcoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36309003", - "Display": "Pneumococcal arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36540006", - "Display": "Calcification of joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36678001", - "Display": "Pyogenic arthritis of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "367356000", - "Display": "Osteochondritis of carpal lunate (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371081002", - "Display": "Arthritis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371082009", - "Display": "Arthritis of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "372247004", - "Display": "Fungal arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "372248009", - "Display": "Suppurative arthritis caused by fungus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3723001", - "Display": "Arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "372937009", - "Display": "Suppurative arthritis caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "372938004", - "Display": "Acute suppurative arthritis caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "372939007", - "Display": "Suppurative arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "372940009", - "Display": "Acute suppurative arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "372941008", - "Display": "Pyogenic arthritis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373623009", - "Display": "Osteoarthritis of glenohumeral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "37785001", - "Display": "Patellar tendonitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "37895003", - "Display": "Osteoarthrosis of the carpometacarpal joint of the thumb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "386032009", - "Display": "Osteochondritis of the talus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "387800004", - "Display": "Cervical spondylosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "387801000", - "Display": "Cervical arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "387802007", - "Display": "Thoracic spondylosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38800000", - "Display": "Acute serous synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "394991004", - "Display": "Exacerbation of osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3951000119103", - "Display": "Medial epicondyle apophysitis due to overuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "396234004", - "Display": "Infective arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "396275006", - "Display": "Osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39838007", - "Display": "Ochronotic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398640008", - "Display": "Rheumatoid pneumoconiosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399112009", - "Display": "Seronegative arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399923009", - "Display": "Rheumatoid arteritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399964004", - "Display": "Fibroblastic rheumatism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402338004", - "Display": "Circinate vulvovaginitis co-occurrent with reactive arthritis triad (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402339007", - "Display": "Nail dystrophy co-occurrent with reactive arthritis triad (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410020008", - "Display": "Polyarthritis caused by Erysipelothrix rhusiopathiae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410502007", - "Display": "Juvenile idiopathic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410793008", - "Display": "Chronic arthritis of juvenile onset (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410794002", - "Display": "Still's disease with juvenile onset and/or adult onset (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410795001", - "Display": "Juvenile rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410796000", - "Display": "Juvenile seropositive polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410797009", - "Display": "Juvenile seronegative polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410798004", - "Display": "Juvenile idiopathic arthritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410799007", - "Display": "Juvenile idiopathic arthritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410800006", - "Display": "Juvenile idiopathic arthritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410801005", - "Display": "Juvenile idiopathic arthritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410802003", - "Display": "Juvenile idiopathic arthritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41271000119108", - "Display": "Viral arthritis co-occurrent with hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416209007", - "Display": "Synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4168008", - "Display": "Tibial plateau chondromalacia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416956002", - "Display": "Undifferentiated inflammatory polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417180005", - "Display": "Undifferentiated inflammatory arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417373000", - "Display": "Inflammatory polyarthropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4211000119108", - "Display": "Localized osteoarthritis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421708000", - "Display": "Infective arthritis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422565003", - "Display": "Post-infective polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423310007", - "Display": "Post-infective arthritis of joint of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423515003", - "Display": "Post-infective arthritis of joint of foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4248008", - "Display": "Synovitis AND/OR tenosynovitis associated with another disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42545001", - "Display": "Subacute arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426845002", - "Display": "Bursitis of finger (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427770001", - "Display": "Rheumatoid arthritis of temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427947000", - "Display": "Monoarthritis of hip joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427967009", - "Display": "Arthropathy in Behcet's syndrome of the spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428027008", - "Display": "Crystal arthropathy of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428104002", - "Display": "Arthritis of midtarsal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428143003", - "Display": "Arthritis of joint of toe (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428169009", - "Display": "Arthropathy in Behcet's syndrome of the ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428218004", - "Display": "Allergic arthritis of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428361004", - "Display": "Arthritis of hand caused by viral infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428385007", - "Display": "Infective arthritis of joint of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428437005", - "Display": "Infective arthritis of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428705008", - "Display": "Degenerative tear of triangular fibrocartilage complex of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428768008", - "Display": "Crystal arthropathy of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428839004", - "Display": "Arthritis of toe due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428857003", - "Display": "Kashin-Beck disease of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42898009", - "Display": "Acute polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429192004", - "Display": "Rheumatoid arthritis of foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429298008", - "Display": "Climacteric arthritis of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429419004", - "Display": "Crystal arthropathy of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429420005", - "Display": "Crystal arthropathy of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429422002", - "Display": "Rheumatic arthritis of temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42944009", - "Display": "Degeneration of internal semilunar cartilage (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429459001", - "Display": "Arthritis of acromioclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429555005", - "Display": "Sacral arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429669000", - "Display": "Arthritis of knee caused by viral infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429670004", - "Display": "Infection of prepatellar bursa (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "430505004", - "Display": "Osteochondritis of proximal tibia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "430506003", - "Display": "Osteochondritis of tibial tubercle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "430741000124108", - "Display": "Polyarthritis associated with hemochromatosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431011000124103", - "Display": "Arthritis due to alkaptonuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431236003", - "Display": "Bacterial arthritis of sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431263002", - "Display": "Bacterial arthritis of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43132002", - "Display": "Degeneration of cervicothoracic intervertebral disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431606003", - "Display": "Bacterial arthritis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431631000124102", - "Display": "Granulomatous synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431731000124106", - "Display": "Intervertebral disc desiccation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431901000124100", - "Display": "Infectious synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432418003", - "Display": "Bacterial arthritis of patellofemoral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432733005", - "Display": "Acute degenerative joint disease of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433711000124101", - "Display": "Calcium oxalate deposition disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43829003", - "Display": "Chronic osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "439656005", - "Display": "Arthritis of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44221002", - "Display": "Idiopathic polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44245003", - "Display": "Tibial collateral ligament bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442884002", - "Display": "Chondrocalcinosis of joint of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442925003", - "Display": "Chondrocalcinosis of wrist joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442928001", - "Display": "Chondrocalcinosis of joint of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442941002", - "Display": "Chondrocalcinosis of joint of ankle AND/OR foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442942009", - "Display": "Chondrocalcinosis of knee joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443001001", - "Display": "Chondrocalcinosis of elbow joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443002008", - "Display": "Chondrocalcinosis of hip joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443524000", - "Display": "Secondary osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443798008", - "Display": "Inflammation of joint of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444556003", - "Display": "Seronegative arthritis of joint of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444765007", - "Display": "Inflammation of joint caused by Streptococcus suis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444972004", - "Display": "Inflammation of tendon of metatarsophalangeal joint of second toe (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444998005", - "Display": "Infective arthritis of pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444999002", - "Display": "Infective arthritis of ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445247000", - "Display": "Inflammation of bursa of patella (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445271007", - "Display": "Villous arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445345005", - "Display": "Remitting seronegative symmetrical synovitis with pitting edema (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445473008", - "Display": "Inflammation of pubic symphysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445477009", - "Display": "Crystal arthropathy of pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445478004", - "Display": "Degenerative joint disease of pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445495007", - "Display": "Infective arthritis of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445496008", - "Display": "Chondrocalcinosis of joint of pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445525001", - "Display": "Infective arthritis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446496001", - "Display": "Heterotopic ossification of joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44743006", - "Display": "Gonococcal infection of joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448393000", - "Display": "Inflammation of interphalangeal joint of toe due to infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448394006", - "Display": "Inflammation of joint of foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448453004", - "Display": "Inflammation of distal interphalangeal joint of finger due to infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448454005", - "Display": "Inflammation of first metatarsophalangeal joint due to infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448589005", - "Display": "Inflammation of joint of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449070007", - "Display": "Inflammation of metatarsophalangeal joint of lesser toe due to infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449250008", - "Display": "Inflammation of proximal interphalangeal joint of finger due to infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "450481000124109", - "Display": "Villous arthritis of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "450521003", - "Display": "Osteoarthritis of patellofemoral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "45214008", - "Display": "Chronic infective arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "45231001", - "Display": "Infrapatellar bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "453351000124100", - "Display": "Arthritis of first metatarsophalangeal joint of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "459911000124100", - "Display": "Rheumatoid factor positive rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "459921000124108", - "Display": "Rheumatoid factor positive rheumatoid arthritis of the shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46527004", - "Display": "Haemophilus influenzae arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48210000", - "Display": "Lumbosacral spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48245008", - "Display": "Bacterial arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48440001", - "Display": "Arthritis due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49761000", - "Display": "Chronic infective polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50442003", - "Display": "Palindromic rheumatism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50921008", - "Display": "Periarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51646002", - "Display": "Streptococcal arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52334005", - "Display": "Miner's knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52661003", - "Display": "Extra-articular rheumatoid process (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53332000", - "Display": "Spinal arthritis deformans (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53338001", - "Display": "Arthropathy associated with a hypersensitivity reaction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54615002", - "Display": "Martin du Pan-Rutishauer disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55146009", - "Display": "Inflammation of sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56528004", - "Display": "Post-dysenteric arthropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "57160007", - "Display": "Felty's syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58392004", - "Display": "Congenital syphilitic osteochondritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58769002", - "Display": "Subacute rheumatic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59484000", - "Display": "Chlamydial polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6011000119108", - "Display": "Transient arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60140004", - "Display": "Subacute infective polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60644007", - "Display": "Pellegrini-Stieda syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60684003", - "Display": "Synovitis acne pustulosis hyperostosis osteomyelitis syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60937000", - "Display": "Degeneration of lumbosacral intervertebral disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61112000", - "Display": "Pyogenic arthritis of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61126009", - "Display": "Infective polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61176006", - "Display": "Mycoplasma arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6211002", - "Display": "Polyarthritis associated with another disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63198006", - "Display": "Chondromalacia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "64166009", - "Display": "Subpatellar bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67148009", - "Display": "Arthritis of great toe due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67224007", - "Display": "Reactive arthritis triad (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67315001", - "Display": "Degenerative joint disease of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67437007", - "Display": "Lumbar spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68449006", - "Display": "Coxitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68451005", - "Display": "Chronic arthritis due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6861003", - "Display": "Pyogenic arthritis of foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68675004", - "Display": "Degeneration of thoracic intervertebral disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68859000", - "Display": "Spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69195002", - "Display": "Degeneration of cervical intervertebral disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69521007", - "Display": "Chronic crepitant synovitis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698474005", - "Display": "Monoarthritis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698475006", - "Display": "Monoarthritis of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698476007", - "Display": "Monoarthritis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698477003", - "Display": "Monoarthritis of joint of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698478008", - "Display": "Monoarthritis of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698479000", - "Display": "Monoarthritis of ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69896004", - "Display": "Rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699207005", - "Display": "Arthritis of pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699261008", - "Display": "Post infectious osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699262001", - "Display": "Post traumatic osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699302001", - "Display": "Lumbar arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699419000", - "Display": "Inflammation of stylomandibular ligament (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699462004", - "Display": "Monoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699655001", - "Display": "Calcification of stylohyoid ligament (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699681002", - "Display": "Gouty arthritis of temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699861000", - "Display": "Familial granulomatous inflammatory arthritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699942000", - "Display": "Apatite-associated destructive arthritis of shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700077008", - "Display": "Charcot arthropathy of joint of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700293006", - "Display": "Primary osteoarthritis of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700294000", - "Display": "Secondary osteoarthritis of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700295004", - "Display": "Osteoarthritis of ankle secondary to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700304006", - "Display": "Primary osteoarthritis of calcaneocuboid joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700305007", - "Display": "Osteoarthritis of calcaneocuboid joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700307004", - "Display": "Secondary osteoarthritis of calcaneocuboid joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700312003", - "Display": "Osteoarthritis of calcaneocuboid joint secondary to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700313008", - "Display": "Primary osteoarthritis of subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700314002", - "Display": "Secondary osteoarthritis of subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700315001", - "Display": "Osteoarthritis of subtalar joint secondary to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700316000", - "Display": "Osteoarthritis of subtalar joint secondary to inflammatory arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700317009", - "Display": "Osteoarthritis of calcaneocuboid joint secondary to inflammatory arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700318004", - "Display": "Osteoarthritis of ankle secondary to inflammatory arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700324005", - "Display": "Osteoarthritis of talonavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700325006", - "Display": "Primary osteoarthritis of talonavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700326007", - "Display": "Secondary osteoarthritis of talonavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700328008", - "Display": "Osteoarthritis of talonavicular joint secondary to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700331009", - "Display": "Osteoarthritis of talonavicular joint secondary to inflammatory arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700332002", - "Display": "Secondary osteoarthritis of first metatarsophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700333007", - "Display": "Primary osteoarthritis of first metatarsophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700335000", - "Display": "Osteoarthritis of first metatarsophalangeal joint secondary to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700336004", - "Display": "Osteoarthritis of first metatarsophalangeal joint secondary to inflammatory arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700437007", - "Display": "Charcot arthropathy of midfoot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700438002", - "Display": "Charcot arthropathy of hindfoot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "701003", - "Display": "Adult osteochondritis of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "702604009", - "Display": "Osteochondrosis of head of second metatarsal (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "702976005", - "Display": "Retrodiscitis of temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703050003", - "Display": "Secondary osteoarthritis of midfoot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703051004", - "Display": "Osteoarthritis of midfoot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703052006", - "Display": "Primary osteoarthritis of midfoot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703053001", - "Display": "Osteoarthritis of midfoot secondary to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703054007", - "Display": "Osteoarthritis of midfoot secondary to inflammatory arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703627005", - "Display": "Asymptomatic calcium pyrophosphate deposition disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704174008", - "Display": "Chronic synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "705058008", - "Display": "Charcot arthropathy of forefoot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70736000", - "Display": "Osteochondritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "709200009", - "Display": "Bacterial arthritis of costotransverse joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712504007", - "Display": "Osteoarthritis of hip due to dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712520002", - "Display": "Arthritis of lower limb due to parasitic infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712521003", - "Display": "Bacterial arthritis caused by Haemophilus influenzae type b (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712524006", - "Display": "Bacterial arthritis of atlantoaxial joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712530006", - "Display": "Bacterial arthritis of costovertebral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712547007", - "Display": "Bacterial arthritis of facet joint of thoracic spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712548002", - "Display": "Bacterial arthritis of facet joint of lumbar spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712549005", - "Display": "Bacterial arthritis of facet joint of cervical spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7126001", - "Display": "Secondary localized osteoarthrosis of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71299003", - "Display": "Salmonella arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713482002", - "Display": "Osteoarthritis of facet joint of thoracic spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713532005", - "Display": "Infective arthritis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713777005", - "Display": "Non-radiographic axial spondyloarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713826008", - "Display": "Osteoarthritis of lumbar spinal facet joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713869000", - "Display": "Congenital calcium pyrophosphate dihydrate crystal deposition disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713911007", - "Display": "Lumbosacral spondylosis co-occurrent with root compression (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "718602007", - "Display": "Hereditary arterial and articular multiple calcification syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "720363008", - "Display": "Arthritis of lumbosacral spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721090002", - "Display": "Dermatoosteolysis Kirghizian type (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721272009", - "Display": "Infection causing spondyloarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721285007", - "Display": "Chronic primary gouty arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72275000", - "Display": "Relapsing polychondritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "723116002", - "Display": "Axial spondyloarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724015007", - "Display": "Pyogenic arthritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724604003", - "Display": "Intervertebral disc degeneration of cervical spine without prolapsed disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724605002", - "Display": "Ossification of spinal ligament (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724606001", - "Display": "Peripheral spondyloarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "726078000", - "Display": "Sporadic Blau syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "726628003", - "Display": "Familial chondromalacia patellae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73105000", - "Display": "Pes anserinus bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "733177005", - "Display": "Arthropathy caused by fungus following fungal infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "733179008", - "Display": "Arthropathy caused by and following parasitic infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "733180006", - "Display": "Arthropathy caused by virus due to and following virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735598004", - "Display": "Oligoosteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735599007", - "Display": "Erosion of joint surface co-occurrent and due to rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735600005", - "Display": "Rheumatoid arthritis without erosion (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735602002", - "Display": "Wear of articular bearing surface of joint prosthesis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735603007", - "Display": "Wear of articular bearing surface of joint prosthesis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735604001", - "Display": "Prolapse of cervical intervertebral disc co-occurrent and due to degeneration (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735605000", - "Display": "Degeneration of cervical intervertebral disc co-occurrent with osteophyte of cervical vertebra (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735606004", - "Display": "Degeneration of thoracic intervertebral disc without prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735607008", - "Display": "Prolapse of thoracic intervertebral disc co-occurrent and due to degeneration (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735608003", - "Display": "Degeneration of thoracic intervertebral disc co-occurrent with osteophyte (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735609006", - "Display": "Degeneration of lumbar intervertebral disc without prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735610001", - "Display": "Prolapse of lumbar intervertebral disc co-occurrent and due to degeneration (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735611002", - "Display": "Degeneration of lumbar intervertebral disc co-occurrent with osteophyte of lumbar vertebra (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735914007", - "Display": "Wear of cartilage of joint caused by hemiarthroplasty (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "737057000", - "Display": "Osteoarthritis of joint of left ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "737607009", - "Display": "Infrapatellar bursitis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "737608004", - "Display": "Infrapatellar bursitis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73877009", - "Display": "Chronic tophaceous gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74391003", - "Display": "Pauciarticular juvenile rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74885006", - "Display": "Interphalangeal osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75468006", - "Display": "Crystal arthropathy of ankle AND/OR foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75822003", - "Display": "Acute polyarticular juvenile rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7607008", - "Display": "Pericarditis co-occurrent with extraarticular rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "771333006", - "Display": "Immune dysregulation" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77323000", - "Display": "Fibular collateral ligament bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "773732005", - "Display": "Interstitial granulomatous dermatitis with arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77547008", - "Display": "Degeneration of intervertebral disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77888002", - "Display": "Climacteric arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77994009", - "Display": "Primary localized osteoarthrosis of pelvic region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "781206002", - "Display": "Rheumatoid arthritis of joint of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "784332006", - "Display": "Spondyloarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "784545009", - "Display": "Synovitis of ankle joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "784546005", - "Display": "Synovitis of joint of foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "785808002", - "Display": "Aneurysm osteoarthritis syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "786077003", - "Display": "Ankylosing spondylitis co-occurrent with anterior uveitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78675000", - "Display": "Stickler syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789000004", - "Display": "Osteoarthritis of hip due to and following trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789001000", - "Display": "Osteoarthritis of knee due to and following trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789002007", - "Display": "Osteoarthritis of wrist and hand due to and following trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79721000119102", - "Display": "Pyogenic bacterial arthritis of patella (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80574002", - "Display": "Opera glass deformity of hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81077008", - "Display": "Acute rheumatic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8161000119106", - "Display": "Arthritis co-occurrent and due to Crohn's disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "818950005", - "Display": "Blau syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82300000", - "Display": "Degenerative joint disease of ankle AND/OR foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83831000119100", - "Display": "Pyogenic bacterial arthritis of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "838360003", - "Display": "Arthritis caused by Mycobacterium leprae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83841000119109", - "Display": "Pyogenic bacterial arthritis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84241008", - "Display": "Lipoid dermatoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86219005", - "Display": "Uveitis-rheumatoid arthritis syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86261000119104", - "Display": "Spondylosis due to another disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86787000", - "Display": "Chondrocalcinosis due to calcium hydroxyapatite crystals (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86901000119106", - "Display": "Villous arthropathy of multiple joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870272002", - "Display": "Reactive arthropathy following infection caused by Mycobacterium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870274001", - "Display": "Postinfective arthropathy following infection caused by Mycobacterium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870281008", - "Display": "Spondyloarthritis caused by parasite (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8847002", - "Display": "Spondylosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89764009", - "Display": "Mumps arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89807005", - "Display": "Juvenile osteochondrosis of head of metacarpals (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90448008", - "Display": "Ossification of posterior longitudinal ligament (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90860001", - "Display": "Localized osteoarthrosis uncertain if primary OR secondary (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91240008", - "Display": "Degeneration of thoracolumbar intervertebral disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91944005", - "Display": "Arthritis of temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9350004", - "Display": "Arthritis due to inflammatory bowel disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9467007", - "Display": "Meningococcal arthropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9631008", - "Display": "Ankylosing spondylitis (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A01.04", - "Display": "Typhoid arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A02.23", - "Display": "Salmonella arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.02", - "Display": "Tuberculous arthritis of other joints" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A39.83", - "Display": "Meningococcal arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A39.84", - "Display": "Postmeningococcal arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A54.42", - "Display": "Gonococcal arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A69.23", - "Display": "Arthritis due to Lyme disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B06.82", - "Display": "Rubella arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B26.85", - "Display": "Mumps arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B42.82", - "Display": "Sporotrichosis arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E79.0", - "Display": "Hyperuricemia without signs of inflammatory arthritis and tophaceous disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G98.0", - "Display": "Neurogenic arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L40.5", - "Display": "Arthropathic psoriasis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L40.50", - "Display": "Arthropathic psoriasis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L40.51", - "Display": "Distal interphalangeal psoriatic arthropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L40.52", - "Display": "Psoriatic arthritis mutilans" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L40.53", - "Display": "Psoriatic spondylitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L40.54", - "Display": "Psoriatic juvenile arthropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L40.59", - "Display": "Other psoriatic arthropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M00", - "Display": "Pyogenic arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M05", - "Display": "Rheumatoid arthritis with rheumatoid factor" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M06", - "Display": "Other rheumatoid arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M08", - "Display": "Juvenile arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M13", - "Display": "Other arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M15", - "Display": "Polyosteoarthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M16", - "Display": "Osteoarthritis of hip" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M17", - "Display": "Osteoarthritis of knee" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M18", - "Display": "Osteoarthritis of first carpometacarpal joint" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M19", - "Display": "Other and unspecified osteoarthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M32.1", - "Display": "Systemic lupus erythematosus with organ or system involvement" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M32.10", - "Display": "Systemic lupus erythematosus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M32.11", - "Display": "Endocarditis in systemic lupus erythematosus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M32.12", - "Display": "Pericarditis in systemic lupus erythematosus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M32.13", - "Display": "Lung involvement in systemic lupus erythematosus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M32.14", - "Display": "Glomerular disease in systemic lupus erythematosus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M32.15", - "Display": "Tubulo-interstitial nephropathy in systemic lupus erythematosus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M32.19", - "Display": "Other organ or system involvement in systemic lupus erythematosus" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.84.json b/build/main/resources/2.16.840.1.113762.1.4.1222.84.json deleted file mode 100644 index fa2b68c..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.84.json +++ /dev/null @@ -1,92 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "161807003", - "Display": "History of severe pre-eclampsia (situation)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "198983002", - "Display": "Severe pre-eclampsia - delivered (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "198984008", - "Display": "Severe pre-eclampsia - delivered with postnatal complication (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "198985009", - "Display": "Severe pre-eclampsia - not delivered (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "198986005", - "Display": "Severe pre-eclampsia with postnatal complication (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398254007", - "Display": "Pre-eclampsia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41114007", - "Display": "Mild pre-eclampsia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46764007", - "Display": "Severe pre-eclampsia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67359005", - "Display": "Pre-eclampsia added to pre-existing hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "765182005", - "Display": "Pre-eclampsia in puerperium (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O11", - "Display": "Pre-existing hypertension with pre-eclampsia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O14", - "Display": "Pre-eclampsia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O14.0", - "Display": "Mild to moderate pre-eclampsia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O14.1", - "Display": "Severe pre-eclampsia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O14.9", - "Display": "Unspecified pre-eclampsia" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.85.json b/build/main/resources/2.16.840.1.113762.1.4.1222.85.json deleted file mode 100644 index 50d9ac3..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.85.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190920002", - "Display": "Hyperuricemia without signs of inflammatory arthritis and tophaceous disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35885006", - "Display": "Hyperuricemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721840000", - "Display": "Hyperuricemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E79.0", - "Display": "Hyperuricemia without signs of inflammatory arthritis and tophaceous disease" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.90.json b/build/main/resources/2.16.840.1.113762.1.4.1222.90.json deleted file mode 100644 index 5976729..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.90.json +++ /dev/null @@ -1,32 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34713006", - "Display": "Vitamin D deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "386070008", - "Display": "Deficiency of vitamin D2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "386072000", - "Display": "Deficiency of vitamin D3 (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E55", - "Display": "Vitamin D deficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E55.9", - "Display": "Vitamin D deficiency" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.93.json b/build/main/resources/2.16.840.1.113762.1.4.1222.93.json deleted file mode 100644 index 5ffbb49..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.93.json +++ /dev/null @@ -1,74 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190859005", - "Display": "Hypophosphatasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20756002", - "Display": "Adult hypophosphatasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30174008", - "Display": "Childhood hypophosphatasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "360792001", - "Display": "Deficiency of alkaline phosphatase (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55236002", - "Display": "Infantile hypophosphatasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "708672004", - "Display": "Odontohypophosphatasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "709556009", - "Display": "Periodontitis co-occurrent with hypophosphatasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721183009", - "Display": "Low alkaline phosphatase due to chronic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85487008", - "Display": "Renal phosphaturia (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E83.3", - "Display": "Disorders of phosphorus metabolism and phosphatases" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E83.30", - "Display": "Disorder of phosphorus metabolism" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R74.8", - "Display": "Abnormal levels of other serum enzymes" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.96.json b/build/main/resources/2.16.840.1.113762.1.4.1222.96.json deleted file mode 100644 index 5655c9c..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.96.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "403733004", - "Display": "Hemodialysis-associated pruritus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "707151000", - "Display": "Uremic pruritus (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L29.8", - "Display": "Other pruritus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L29.9", - "Display": "Pruritus" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113762.1.4.1222.97.json b/build/main/resources/2.16.840.1.113762.1.4.1222.97.json deleted file mode 100644 index c74a200..0000000 --- a/build/main/resources/2.16.840.1.113762.1.4.1222.97.json +++ /dev/null @@ -1,164 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "162204000", - "Display": "Late insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191997003", - "Display": "Persistent insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "192454004", - "Display": "Nonorganic insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24121004", - "Display": "Insomnia disorder related to another mental disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "27971000119105", - "Display": "Insomnia co-occurrent and due to medical condition (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3972004", - "Display": "Primary insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "401236004", - "Display": "Early morning waking (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41975002", - "Display": "Insomnia with sleep apnea (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425832009", - "Display": "Psychophysiologic insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "436001000124105", - "Display": "Insomnia due to anxiety and fear (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "472819006", - "Display": "Adjustment insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54230003", - "Display": "Mixed insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59050008", - "Display": "Initial insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67062000", - "Display": "Terminal insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67233009", - "Display": "Middle insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724748004", - "Display": "Chronic insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81608000", - "Display": "Insomnia disorder related to known organic factor (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88982005", - "Display": "Rebound insomnia (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F51.01", - "Display": "Primary insomnia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F51.02", - "Display": "Adjustment insomnia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F51.03", - "Display": "Paradoxical insomnia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F51.04", - "Display": "Psychophysiologic insomnia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F51.05", - "Display": "Insomnia due to other mental disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F51.09", - "Display": "Other insomnia not due to a substance or known physiological condition" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G47.00", - "Display": "Insomnia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G47.01", - "Display": "Insomnia due to medical condition" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G47.09", - "Display": "Other insomnia" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.117.1.7.1.215.json b/build/main/resources/2.16.840.1.113883.3.117.1.7.1.215.json deleted file mode 100644 index fee0751..0000000 --- a/build/main/resources/2.16.840.1.113883.3.117.1.7.1.215.json +++ /dev/null @@ -1,116 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "13457-7", - "Display": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "18261-8", - "Display": "Cholesterol in LDL [Mass/volume] in Serum or Plasma ultracentrifugate" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "18262-6", - "Display": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by Direct assay" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2089-1", - "Display": "Cholesterol in LDL [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "43394-6", - "Display": "Cholesterol in LDL acylated [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "49132-4", - "Display": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "50193-2", - "Display": "Cholesterol in LDL.narrow density [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "55440-2", - "Display": "Cholesterol.in LDL (real) [Mass/volume] in Serum or Plasma by VAP" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "86911-5", - "Display": "Cholesterol in LDL goal [Mass/volume] Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "90364-1", - "Display": "Cholesterol.in LDL.small dense [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "91105-7", - "Display": "Cholesterol in LDL 1 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "91106-5", - "Display": "Cholesterol in LDL 2 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "91107-3", - "Display": "Cholesterol in LDL 3 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "91108-1", - "Display": "Cholesterol in LDL 4 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "91109-9", - "Display": "Cholesterol in LDL 5 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "91110-7", - "Display": "Cholesterol in LDL 6 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "91111-5", - "Display": "Cholesterol in LDL 7 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "96259-7", - "Display": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by Calculated by Martin-Hopkins" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "96597-0", - "Display": "Cholesterol in LDL [Mass/volume] in DBS by Direct assay" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.464.1003.103.12.1020.json b/build/main/resources/2.16.840.1.113883.3.464.1003.103.12.1020.json deleted file mode 100644 index 187c3ba..0000000 --- a/build/main/resources/2.16.840.1.113883.3.464.1003.103.12.1020.json +++ /dev/null @@ -1,968 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102781000119107", - "Display": "Sensory neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "104941000119109", - "Display": "Ischemia of retina due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109171000119104", - "Display": "Retinal edema due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "138881000119106", - "Display": "Mild nonproliferative retinopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "138891000119109", - "Display": "Moderate nonproliferative retinopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "138901000119108", - "Display": "Severe nonproliferative retinopathy due to diabetes mellitus type 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190330002", - "Display": "Hyperosmolar coma due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190368000", - "Display": "Type I diabetes mellitus with ulcer (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190372001", - "Display": "Type I diabetes mellitus maturity onset (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199229001", - "Display": "Pre-existing type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23045005", - "Display": "Insulin dependent diabetes mellitus type IA (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.01", - "Display": "Diabetes mellitus without mention of complication" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.03", - "Display": "Diabetes mellitus without mention of complication" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.11", - "Display": "Diabetes with ketoacidosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.13", - "Display": "Diabetes with ketoacidosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.21", - "Display": "Diabetes with hyperosmolarity" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.23", - "Display": "Diabetes with hyperosmolarity" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.31", - "Display": "Diabetes with other coma" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.33", - "Display": "Diabetes with other coma" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.41", - "Display": "Diabetes with renal manifestations" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.43", - "Display": "Diabetes with renal manifestations" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.51", - "Display": "Diabetes with ophthalmic manifestations" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.53", - "Display": "Diabetes with ophthalmic manifestations" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.61", - "Display": "Diabetes with neurological manifestations" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.63", - "Display": "Diabetes with neurological manifestations" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.71", - "Display": "Diabetes with peripheral circulatory disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.73", - "Display": "Diabetes with peripheral circulatory disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.81", - "Display": "Diabetes with other specified manifestations" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.83", - "Display": "Diabetes with other specified manifestations" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.91", - "Display": "Diabetes with unspecified complication" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.93", - "Display": "Diabetes with unspecified complication" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28032008", - "Display": "Insulin dependent diabetes mellitus type IB (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31211000119101", - "Display": "Peripheral angiopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31321000119102", - "Display": "Diabetes mellitus type 1 without retinopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313435000", - "Display": "Type I diabetes mellitus without complication (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314893005", - "Display": "Arthropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368521000119107", - "Display": "Disorder of nerve co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420486006", - "Display": "Exudative maculopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420789003", - "Display": "Retinopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420918009", - "Display": "Mononeuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421075007", - "Display": "Ketoacidotic coma due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421365002", - "Display": "Peripheral circulatory disorder due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421437000", - "Display": "Hypoglycemic coma due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421468001", - "Display": "Disorder of nervous system due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421893009", - "Display": "Renal disorder due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427571000", - "Display": "Lumbosacral radiculoplexus neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46635009", - "Display": "Diabetes mellitus type 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "609562003", - "Display": "Maturity onset diabetes of the young" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "609564002", - "Display": "Pre-existing type 1 diabetes mellitus in pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "609566000", - "Display": "Pregnancy and type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60961000119107", - "Display": "Nonproliferative diabetic retinopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60971000119101", - "Display": "Proliferative retinopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60991000119100", - "Display": "Blindness due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "691000119103", - "Display": "Erectile dysfunction due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712882000", - "Display": "Autonomic neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713702000", - "Display": "Gastroparesis due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713705003", - "Display": "Polyneuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71721000119101", - "Display": "Nephrotic syndrome due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71791000119104", - "Display": "Peripheral neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "739681000", - "Display": "Disorder of eye due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "770098001", - "Display": "Cranial nerve palsy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82571000119107", - "Display": "Traction detachment of retina due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82581000119105", - "Display": "Rubeosis iridis due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.10", - "Display": "Type 1 diabetes mellitus with ketoacidosis without coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.11", - "Display": "Type 1 diabetes mellitus with ketoacidosis with coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.21", - "Display": "Type 1 diabetes mellitus with diabetic nephropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.22", - "Display": "Type 1 diabetes mellitus with diabetic chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.29", - "Display": "Type 1 diabetes mellitus with other diabetic kidney complication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.311", - "Display": "Type 1 diabetes mellitus with unspecified diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.319", - "Display": "Type 1 diabetes mellitus with unspecified diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.321", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3211", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3212", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3213", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3219", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.329", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3291", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3292", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3293", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3299", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.331", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3311", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3312", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3313", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3319", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.339", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3391", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3392", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3393", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3399", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.341", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3411", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3412", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3413", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3419", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.349", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3491", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3492", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3493", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3499", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.351", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3511", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3512", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3513", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3519", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3521", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3522", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3523", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3529", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3531", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3532", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3533", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3539", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3541", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3542", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3543", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3549", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3551", - "Display": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3552", - "Display": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3553", - "Display": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3559", - "Display": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.359", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3591", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3592", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3593", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3599", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.36", - "Display": "Type 1 diabetes mellitus with diabetic cataract" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.37X1", - "Display": "Type 1 diabetes mellitus with diabetic macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.37X2", - "Display": "Type 1 diabetes mellitus with diabetic macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.37X3", - "Display": "Type 1 diabetes mellitus with diabetic macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.37X9", - "Display": "Type 1 diabetes mellitus with diabetic macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.39", - "Display": "Type 1 diabetes mellitus with other diabetic ophthalmic complication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.40", - "Display": "Type 1 diabetes mellitus with diabetic neuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.41", - "Display": "Type 1 diabetes mellitus with diabetic mononeuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.42", - "Display": "Type 1 diabetes mellitus with diabetic polyneuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.43", - "Display": "Type 1 diabetes mellitus with diabetic autonomic (poly)neuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.44", - "Display": "Type 1 diabetes mellitus with diabetic amyotrophy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.49", - "Display": "Type 1 diabetes mellitus with other diabetic neurological complication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.51", - "Display": "Type 1 diabetes mellitus with diabetic peripheral angiopathy without gangrene" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.52", - "Display": "Type 1 diabetes mellitus with diabetic peripheral angiopathy with gangrene" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.59", - "Display": "Type 1 diabetes mellitus with other circulatory complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.610", - "Display": "Type 1 diabetes mellitus with diabetic neuropathic arthropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.618", - "Display": "Type 1 diabetes mellitus with other diabetic arthropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.620", - "Display": "Type 1 diabetes mellitus with diabetic dermatitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.621", - "Display": "Type 1 diabetes mellitus with foot ulcer" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.622", - "Display": "Type 1 diabetes mellitus with other skin ulcer" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.628", - "Display": "Type 1 diabetes mellitus with other skin complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.630", - "Display": "Type 1 diabetes mellitus with periodontal disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.638", - "Display": "Type 1 diabetes mellitus with other oral complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.641", - "Display": "Type 1 diabetes mellitus with hypoglycemia with coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.649", - "Display": "Type 1 diabetes mellitus with hypoglycemia without coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.65", - "Display": "Type 1 diabetes mellitus with hyperglycemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.69", - "Display": "Type 1 diabetes mellitus with other specified complication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.8", - "Display": "Type 1 diabetes mellitus with unspecified complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.9", - "Display": "Type 1 diabetes mellitus without complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.011", - "Display": "Pre-existing type 1 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.012", - "Display": "Pre-existing type 1 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.013", - "Display": "Pre-existing type 1 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.019", - "Display": "Pre-existing type 1 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.02", - "Display": "Pre-existing type 1 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.03", - "Display": "Pre-existing type 1 diabetes mellitus" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.464.1003.103.12.1021.json b/build/main/resources/2.16.840.1.113883.3.464.1003.103.12.1021.json deleted file mode 100644 index 008875b..0000000 --- a/build/main/resources/2.16.840.1.113883.3.464.1003.103.12.1021.json +++ /dev/null @@ -1,878 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "104961000119108", - "Display": "Ischemia of retina due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "110181000119105", - "Display": "Peripheral sensory neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "138911000119106", - "Display": "Mild nonproliferative retinopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "138921000119104", - "Display": "Moderate nonproliferative retinopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "138941000119105", - "Display": "Severe nonproliferative retinopathy due to diabetes mellitus type 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1481000119100", - "Display": "Diabetes mellitus type 2 without retinopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1501000119109", - "Display": "Proliferative retinopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1511000119107", - "Display": "Peripheral neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1551000119108", - "Display": "Nonproliferative retinopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190331003", - "Display": "Hyperosmolar coma due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190389009", - "Display": "Type II diabetes mellitus with ulcer (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199230006", - "Display": "Pre-existing type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237599002", - "Display": "Insulin treated type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237604008", - "Display": "Maturity onset diabetes of the young" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28331000119107", - "Display": "Retinal edema due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313436004", - "Display": "Type II diabetes mellitus without complication (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314902007", - "Display": "Peripheral angiopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314903002", - "Display": "Arthropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "359642000", - "Display": "Diabetes mellitus type 2 in nonobese (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368101000119109", - "Display": "Periodontal disease co-occurrent and due to diabetes mellitus type 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368581000119106", - "Display": "Neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41911000119107", - "Display": "Glaucoma due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420279001", - "Display": "Renal disorder due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420436000", - "Display": "Mononeuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421326000", - "Display": "Disorder of nervous system due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421779007", - "Display": "Exudative maculopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421847006", - "Display": "Ketoacidotic coma due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422034002", - "Display": "Retinopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422099009", - "Display": "Disorder of eye due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422166005", - "Display": "Peripheral circulatory disorder due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427027005", - "Display": "Lumbosacral radiculoplexus neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428007007", - "Display": "Erectile dysfunction due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44054006", - "Display": "Diabetes mellitus type 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60951000119105", - "Display": "Blindness due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "609567009", - "Display": "Pre-existing type 2 diabetes mellitus in pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712883005", - "Display": "Autonomic neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713703005", - "Display": "Gastroparesis due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713706002", - "Display": "Polyneuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71441000119104", - "Display": "Nephrotic syndrome due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719216001", - "Display": "Hypoglycemic coma due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81531005", - "Display": "Diabetes mellitus type 2 in obese (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82541000119100", - "Display": "Traction detachment of retina due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82551000119103", - "Display": "Rubeosis iridis due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87921000119104", - "Display": "Cranial nerve palsy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "97331000119101", - "Display": "Macular edema and retinopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9859006", - "Display": "Acanthosis nigricans due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.00", - "Display": "Type 2 diabetes mellitus with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.01", - "Display": "Type 2 diabetes mellitus with hyperosmolarity with coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.10", - "Display": "Type 2 diabetes mellitus with ketoacidosis without coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.11", - "Display": "Type 2 diabetes mellitus with ketoacidosis with coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.21", - "Display": "Type 2 diabetes mellitus with diabetic nephropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.22", - "Display": "Type 2 diabetes mellitus with diabetic chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.29", - "Display": "Type 2 diabetes mellitus with other diabetic kidney complication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.311", - "Display": "Type 2 diabetes mellitus with unspecified diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.319", - "Display": "Type 2 diabetes mellitus with unspecified diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.321", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3211", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3212", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3213", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3219", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.329", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3291", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3292", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3293", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3299", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.331", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3311", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3312", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3313", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3319", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.339", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3391", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3392", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3393", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3399", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.341", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3411", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3412", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3413", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3419", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.349", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3491", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3492", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3493", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3499", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.351", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3511", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3512", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3513", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3519", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3521", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3522", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3523", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3529", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3531", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3532", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3533", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3539", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3541", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3542", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3543", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3549", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3551", - "Display": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3552", - "Display": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3553", - "Display": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3559", - "Display": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.359", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3591", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3592", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3593", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3599", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.36", - "Display": "Type 2 diabetes mellitus with diabetic cataract" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.37X1", - "Display": "Type 2 diabetes mellitus with diabetic macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.37X2", - "Display": "Type 2 diabetes mellitus with diabetic macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.37X3", - "Display": "Type 2 diabetes mellitus with diabetic macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.37X9", - "Display": "Type 2 diabetes mellitus with diabetic macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.39", - "Display": "Type 2 diabetes mellitus with other diabetic ophthalmic complication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.40", - "Display": "Type 2 diabetes mellitus with diabetic neuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.41", - "Display": "Type 2 diabetes mellitus with diabetic mononeuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.42", - "Display": "Type 2 diabetes mellitus with diabetic polyneuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.43", - "Display": "Type 2 diabetes mellitus with diabetic autonomic (poly)neuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.44", - "Display": "Type 2 diabetes mellitus with diabetic amyotrophy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.49", - "Display": "Type 2 diabetes mellitus with other diabetic neurological complication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.51", - "Display": "Type 2 diabetes mellitus with diabetic peripheral angiopathy without gangrene" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.52", - "Display": "Type 2 diabetes mellitus with diabetic peripheral angiopathy with gangrene" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.59", - "Display": "Type 2 diabetes mellitus with other circulatory complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.610", - "Display": "Type 2 diabetes mellitus with diabetic neuropathic arthropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.618", - "Display": "Type 2 diabetes mellitus with other diabetic arthropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.620", - "Display": "Type 2 diabetes mellitus with diabetic dermatitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.621", - "Display": "Type 2 diabetes mellitus with foot ulcer" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.622", - "Display": "Type 2 diabetes mellitus with other skin ulcer" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.628", - "Display": "Type 2 diabetes mellitus with other skin complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.630", - "Display": "Type 2 diabetes mellitus with periodontal disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.638", - "Display": "Type 2 diabetes mellitus with other oral complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.641", - "Display": "Type 2 diabetes mellitus with hypoglycemia with coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.649", - "Display": "Type 2 diabetes mellitus with hypoglycemia without coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.65", - "Display": "Type 2 diabetes mellitus with hyperglycemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.69", - "Display": "Type 2 diabetes mellitus with other specified complication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.8", - "Display": "Type 2 diabetes mellitus with unspecified complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.9", - "Display": "Type 2 diabetes mellitus without complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.111", - "Display": "Pre-existing type 2 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.112", - "Display": "Pre-existing type 2 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.113", - "Display": "Pre-existing type 2 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.119", - "Display": "Pre-existing type 2 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.12", - "Display": "Pre-existing type 2 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.13", - "Display": "Pre-existing type 2 diabetes mellitus" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.464.1003.104.12.1017.json b/build/main/resources/2.16.840.1.113883.3.464.1003.104.12.1017.json deleted file mode 100644 index 7cd4ed2..0000000 --- a/build/main/resources/2.16.840.1.113883.3.464.1003.104.12.1017.json +++ /dev/null @@ -1,4388 +0,0 @@ -[ - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "093.20", - "Display": "Syphilitic endocarditis of valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "093.21", - "Display": "Syphilitic endocarditis of mitral valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "093.22", - "Display": "Syphilitic endocarditis of aortic valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "093.23", - "Display": "Syphilitic endocarditis of tricuspid valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "093.24", - "Display": "Syphilitic endocarditis of pulmonary valve" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10273003", - "Display": "Acute infarction of papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111287006", - "Display": "Tricuspid valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1131009", - "Display": "Congenital valvular insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11851006", - "Display": "Mitral valve disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12023003", - "Display": "Rheumatic disease of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123643003", - "Display": "Acquired atresia of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123656005", - "Display": "Congenital atresia of cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123657001", - "Display": "Congenital stenosis of cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123658006", - "Display": "Congenital cleft of cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123801008", - "Display": "Heart valve stenosis and regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "128599005", - "Display": "Structural disorder of heart (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13689005", - "Display": "Congenital anomaly of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15096009", - "Display": "Congenital insufficiency of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16063004", - "Display": "Rheumatic disease of heart valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16440002", - "Display": "Rheumatic disease of mitral AND aortic valves (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16855001", - "Display": "Rheumatic tricuspid valve failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17394001", - "Display": "Ebstein's anomaly with atrial septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17759006", - "Display": "Rheumatic aortic stenosis with regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18192007", - "Display": "Acute rheumatic endocarditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18546004", - "Display": "Congenital stenosis of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18687009", - "Display": "Rheumatic disease of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186875004", - "Display": "Syphilitic endocarditis of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186877007", - "Display": "Syphilitic endocarditis of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186878002", - "Display": "Syphilitic endocarditis of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19036004", - "Display": "Rheumatic heart valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194726006", - "Display": "Mitral stenosis with insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194727002", - "Display": "Non-rheumatic mitral valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194732001", - "Display": "Diseases of mitral and aortic valves (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194733006", - "Display": "Mitral and aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194734000", - "Display": "Mitral stenosis and aortic insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194735004", - "Display": "Mitral insufficiency and aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194736003", - "Display": "Mitral and aortic incompetence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194741006", - "Display": "Rheumatic tricuspid stenosis and insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194866002", - "Display": "Rupture of chordae tendinae due to and following acute myocardial infarction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194867006", - "Display": "Rupture of papillary muscle as current complication following acute myocardial infarction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194978002", - "Display": "Non-rheumatic mitral regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194983005", - "Display": "Aortic incompetence" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194984004", - "Display": "Aortic stenosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194987006", - "Display": "Aortic valve stenosis with insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194989009", - "Display": "Tricuspid valve disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194990000", - "Display": "Tricuspid incompetence" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194991001", - "Display": "Tricuspid stenosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194992008", - "Display": "Non-rheumatic tricuspid valve stenosis with insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194995005", - "Display": "Pulmonary incompetence" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194997002", - "Display": "Pulmonary stenosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195000004", - "Display": "Pulmonary valve stenosis with insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195002007", - "Display": "Multiple valve disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195003002", - "Display": "Disorders of both aortic and tricuspid valves (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195004008", - "Display": "Disorders of both mitral and tricuspid valves (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195005009", - "Display": "Combined disorders of mitral" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195141007", - "Display": "Papillary muscle atrophy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195142000", - "Display": "Papillary muscle degeneration (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19833008", - "Display": "Nodular calcific aortic valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204306007", - "Display": "Pentalogy of Fallot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204319006", - "Display": "Lutembacher's syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204339005", - "Display": "Congenital pulmonary valve abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204342004", - "Display": "Congenital atresia of the pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204343009", - "Display": "Hypoplasia of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204345002", - "Display": "Congenital fusion of pulmonic cusps (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204346001", - "Display": "Congenital fusion of pulmonary valve segment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204351007", - "Display": "Fallot's trilogy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204352000", - "Display": "Supernumerary pulmonary valve cusps (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204354004", - "Display": "Congenital tricuspid atresia and stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204357006", - "Display": "Ebstein's anomaly of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204362007", - "Display": "Parachute malformation of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204363002", - "Display": "Supernumerary cusps of the mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204402008", - "Display": "Fusion of mitral valve cusps (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20721001", - "Display": "Tricuspid valve disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "213036006", - "Display": "Mechanical complication of heart valve prosthesis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "21379009", - "Display": "Ruptured sinus of Valsalva (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23063005", - "Display": "Congenital atresia of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233848004", - "Display": "Disorder of endocardium and heart valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233849007", - "Display": "Syphilitic valve disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233853009", - "Display": "Prosthetic valve endocarditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233856001", - "Display": "Mitral restenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233858000", - "Display": "Familial mitral valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233860003", - "Display": "Post-infarction mitral papillary muscle rupture (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233861004", - "Display": "Functional mitral regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233862006", - "Display": "Calcific aortic stenosis - bicuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233863001", - "Display": "Senile aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233864007", - "Display": "Aortic regurgitation due to cystic medial necrosis of aorta (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233865008", - "Display": "Functional tricuspid regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233866009", - "Display": "Functional pulmonary regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234181008", - "Display": "Prosthetic cardiac valve dehiscence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234182001", - "Display": "Prosthetic cardiac valve component embolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234183006", - "Display": "Prosthetic cardiac valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234184000", - "Display": "Prosthetic cardiac paravalvular leak (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234185004", - "Display": "Prosthetic cardiac valve thrombosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234186003", - "Display": "Prosthetic cardiac valve obstruction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234187007", - "Display": "Prosthetic cardiac valve vegetation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234188002", - "Display": "Prosthetic cardiac valve calcification (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234189005", - "Display": "Prosthetic cardiac valve displacement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248675005", - "Display": "Aortic ejection murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248678007", - "Display": "Mitral late systolic murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248679004", - "Display": "Mitral pansystolic murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248680001", - "Display": "Tricuspid inspiratory pansystolic murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248682009", - "Display": "Aortic diastolic murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248684005", - "Display": "Mid-diastolic mitral murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248685006", - "Display": "Mid-diastolic tricuspid murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248686007", - "Display": "Diastolic tricuspid flow murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248687003", - "Display": "Presystolic mitral murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248688008", - "Display": "Presystolic tricuspid murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248691008", - "Display": "Early opening snap (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250973007", - "Display": "Aortic stenosis with doming (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250974001", - "Display": "Prosthetic aortic valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250975000", - "Display": "Paraprosthetic aortic regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250976004", - "Display": "Aortic cusp regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250978003", - "Display": "Aortic valve calcification (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250979006", - "Display": "Aortic valve fibrosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250982001", - "Display": "Commissural fusion of aortic cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250983006", - "Display": "Bicuspid doming of aortic cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250984000", - "Display": "Torn aortic cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250985004", - "Display": "Perforated aortic cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250987007", - "Display": "Prosthetic mitral valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250988002", - "Display": "Paraprosthetic mitral regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250989005", - "Display": "Mitral cusp prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250990001", - "Display": "Ischemic mitral valve dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250993004", - "Display": "Circular mitral valve orifice (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250994005", - "Display": "Slit-like mitral valve orifice (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250995006", - "Display": "Irregular mitral valve orifice (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250996007", - "Display": "Complex mitral valve orifice (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250997003", - "Display": "Multiple mitral valve orifice (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250999000", - "Display": "Rheumatic mitral valve leaflet changes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251001002", - "Display": "Mitral sub-valve apparatus calcification (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251002009", - "Display": "Mitral valve annular calcification (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251003004", - "Display": "Torn mitral leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251004005", - "Display": "Masses on mitral apparatus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251006007", - "Display": "Pulmonary valve stenosis with doming (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251007003", - "Display": "Pulmonary valve stenosis with narrow jet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251036003", - "Display": "Aortic root dilatation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251038002", - "Display": "Aortic root congenital abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253374008", - "Display": "Congenital abnormality of atrioventricular valves in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253375009", - "Display": "Tricuspid leaflet dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253376005", - "Display": "Tricuspid annulus hypoplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253377001", - "Display": "Dilatation of tricuspid annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253378006", - "Display": "Overriding tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253379003", - "Display": "Straddling tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253380000", - "Display": "Tricuspid leaflet abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253381001", - "Display": "Absent tricuspid leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253382008", - "Display": "Double orifice of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253383003", - "Display": "Tricuspid valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253384009", - "Display": "Accessory tissue on tricuspid leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253385005", - "Display": "Abnormality of tricuspid chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253386006", - "Display": "Arcade abnormality of tricuspid chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253387002", - "Display": "Tricuspid chordae tendinae too short (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253388007", - "Display": "Tricuspid chordae tendinae too long (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253389004", - "Display": "Tricuspid chordae tendinae to outlet septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253390008", - "Display": "Tricuspid papillary muscle abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253391007", - "Display": "Parachute malformation of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253392000", - "Display": "Absent tricuspid papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253393005", - "Display": "Fused tricuspid papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253394004", - "Display": "Hypoplastic tricuspid papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253395003", - "Display": "Mitral valve dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253396002", - "Display": "Mitral leaflet dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253397006", - "Display": "Overriding mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253398001", - "Display": "Dilatation of mitral annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253399009", - "Display": "Straddling mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253400002", - "Display": "Mitral leaflet abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253401003", - "Display": "Absent mitral leaflets (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253402005", - "Display": "Double orifice of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253403000", - "Display": "Ebstein-like downward displacement of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253404006", - "Display": "Anterior leaflet of mitral valve attached to septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253405007", - "Display": "Accessory tissue on mitral leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253406008", - "Display": "Abnormality of mitral chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253407004", - "Display": "Arcade abnormality of mitral chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253408009", - "Display": "Mitral chordae tendinae too short (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253409001", - "Display": "Mitral chordae tendinae too long (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253410006", - "Display": "Mitral papillary muscle abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253411005", - "Display": "Absent mitral papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253412003", - "Display": "Fused mitral papillary muscles (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253413008", - "Display": "Hypoplastic mitral papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253427003", - "Display": "Abnormality of atrioventricular (non-mitral" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253428008", - "Display": "Abnormality of common atrioventricular valve in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253429000", - "Display": "Atresia of common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253430005", - "Display": "Imperforate common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253431009", - "Display": "Hypoplasia of common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253432002", - "Display": "Dysplasia of common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253433007", - "Display": "Regurgitation of common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253434001", - "Display": "Common atrioventricular valve limited to one ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253435000", - "Display": "Dilatation of common atrioventricular valve annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253436004", - "Display": "Common atrioventricular valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253437008", - "Display": "Common atrioventricular valve leaflet abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253438003", - "Display": "Common atrioventricular valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253439006", - "Display": "True cleft of common atrioventricular valve leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253440008", - "Display": "Accessory tissue on common atrioventricular valve leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253441007", - "Display": "Double orifice of common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253442000", - "Display": "Triple orifice of left ventricular component of common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253443005", - "Display": "Ebstein's anomaly of common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253444004", - "Display": "Abnormality of common atrioventricular valve chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253445003", - "Display": "Common atrioventricular valve chordae too short (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253446002", - "Display": "Common atrioventricular valve chordae too long (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253447006", - "Display": "Common atrioventricular valve chordae to outlet septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253448001", - "Display": "Arcade abnormality of common atrioventricular valve chordae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253449009", - "Display": "Abnormality of common atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253450009", - "Display": "Parachute malformation of common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253451008", - "Display": "Absent common atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253452001", - "Display": "Fused common atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253453006", - "Display": "Hypoplastic common atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253454000", - "Display": "Abnormality of right atrioventricular valve in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253455004", - "Display": "Right atrioventricular valve atresia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253456003", - "Display": "Imperforate right atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253457007", - "Display": "Right atrioventricular valve dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253458002", - "Display": "Right atrioventricular valve hypoplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253459005", - "Display": "Right atrioventricular valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253460000", - "Display": "Overriding right atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253461001", - "Display": "Dilatation of right atrioventricular valve annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253462008", - "Display": "Right atrioventricular valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253463003", - "Display": "Straddling right atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253464009", - "Display": "Right atrioventricular valve leaflet abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253465005", - "Display": "Absent right atrioventricular valve leaflets (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253467002", - "Display": "Double orifice of right atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253468007", - "Display": "Ebstein's anomaly of right atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253469004", - "Display": "Right atrioventricular valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253470003", - "Display": "True cleft of right atrioventricular valve leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253471004", - "Display": "Accessory tissue on right atrioventricular valve leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253472006", - "Display": "Right atrioventricular valve leaflet dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253473001", - "Display": "Abnormality of right atrioventricular valve chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253474007", - "Display": "Right atrioventricular valve chordae too short (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253475008", - "Display": "Right atrioventricular valve chordae too long (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253476009", - "Display": "Right atrioventricular valve chordae to outlet septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253477000", - "Display": "Arcade abnormality of right atrioventricular valve chordae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253478005", - "Display": "Abnormality of right atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253479002", - "Display": "Parachute malformation of right atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253480004", - "Display": "Absent right atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253481000", - "Display": "Fused right atrioventricular valve papillary muscles (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253482007", - "Display": "Hypoplastic right atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253483002", - "Display": "Abnormality of left atrioventricular valve in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253484008", - "Display": "Left atrioventricular valve atresia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253485009", - "Display": "Imperforate left atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253486005", - "Display": "Left atrioventricular valve dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253487001", - "Display": "Left atrioventricular valve hypoplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253488006", - "Display": "Left atrioventricular valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253489003", - "Display": "Overriding left atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253490007", - "Display": "Dilatation of left atrioventricular valve annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253491006", - "Display": "Left atrioventricular valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253492004", - "Display": "Straddling left atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253493009", - "Display": "Left atrioventricular valve leaflet abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253494003", - "Display": "Absent left atrioventricular valve leaflets (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253495002", - "Display": "Double orifice of left atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253496001", - "Display": "Ebstein's anomaly of left atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253497005", - "Display": "Left atrioventricular valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253498000", - "Display": "True cleft of left atrioventricular valve leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253499008", - "Display": "Accessory tissue on left atrioventricular valve leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253500004", - "Display": "Left atrioventricular valve leaflet dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253501000", - "Display": "Abnormality of left atrioventricular valve chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253502007", - "Display": "Left atrioventricular valve chordae too short (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253503002", - "Display": "Left atrioventricular valve chordae too long (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253504008", - "Display": "Left atrioventricular valve chordae to outlet septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253505009", - "Display": "Arcade abnormality of left atrioventricular valve chordae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253506005", - "Display": "Abnormality of left atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253507001", - "Display": "Parachute malformation of left atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253508006", - "Display": "Absent left atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253509003", - "Display": "Fused left atrioventricular valve papillary muscles (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253510008", - "Display": "Hypoplastic left atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253512000", - "Display": "Tetralogy of Fallot with pulmonary stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253513005", - "Display": "Tetralogy of Fallot with pulmonary atresia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253514004", - "Display": "Dextraposition of aorta in Fallot's tetralogy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253515003", - "Display": "Ventricular septal defect in Fallot's tetralogy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253543007", - "Display": "Primary left ventricular endocardial fibroelastosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253562005", - "Display": "Ventricular septal defect with absent outlet septum and overriding truncal valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253578007", - "Display": "Congenital abnormality of arterial valves (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253579004", - "Display": "Truncal valve abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253580001", - "Display": "Truncal valve dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253581002", - "Display": "Truncal valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253582009", - "Display": "Truncal valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253583004", - "Display": "Truncal valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253584005", - "Display": "Accessory tissue on truncal valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253585006", - "Display": "Pulmonary valve cusp hypoplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253586007", - "Display": "Pulmonary valve ring hypoplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253587003", - "Display": "Commissural fusion of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253588008", - "Display": "Pulmonary valve dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253593006", - "Display": "Imperforate pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253595004", - "Display": "Pulmonary valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253596003", - "Display": "Absent pulmonary valve syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253597007", - "Display": "Accessory tissue on pulmonary valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253598002", - "Display": "Unicuspid pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253599005", - "Display": "Bicuspid pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253600008", - "Display": "Quadricuspid pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253601007", - "Display": "Aortic valve ring hypoplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253602000", - "Display": "Commissural fusion of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253603005", - "Display": "Eccentric opening of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253604004", - "Display": "Aortic valve dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253606002", - "Display": "Aortic valve cusp abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253607006", - "Display": "Hypoplasia of aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253608001", - "Display": "Accessory tissue on aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253609009", - "Display": "Abnormal number of aortic valve cusps (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253610004", - "Display": "Unicuspid aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253611000", - "Display": "Quadricuspid aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253612007", - "Display": "Aortic valve cusp prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253641003", - "Display": "Localized supravalvar aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253642005", - "Display": "Diffuse supravalvar aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253647004", - "Display": "Sinus of Valsalva abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253648009", - "Display": "Sinus of Valsalva aneurysm with rupture (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "266250003", - "Display": "Mitral papillary muscle rupture (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "266252006", - "Display": "Mitral papillary muscle dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268185002", - "Display": "Supravalvar aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "27007008", - "Display": "Scarring of papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "270906004", - "Display": "Mitral chordae rupture (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271984008", - "Display": "Disorder of prosthetic cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "274097009", - "Display": "Non-rheumatic heart valve disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "274098004", - "Display": "Rupture of chordae tendineae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276518005", - "Display": "Transient tricuspid regurgitation of newborn (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276790000", - "Display": "Isolated aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276795005", - "Display": "Mitral valve anterior leaflet prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "278480000", - "Display": "Syphilitic endocarditis of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "278928000", - "Display": "Transient mitral regurgitation of newborn (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28284007", - "Display": "Rheumatic heart valve stenosis with insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28656008", - "Display": "Congenital insufficiency of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "286947004", - "Display": "Chronic rheumatic mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "286950001", - "Display": "Chronic rheumatic aortic valve disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29375001", - "Display": "Abnormal number of cusps (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "297197008", - "Display": "Ruptured tricuspid chordae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "297285002", - "Display": "Paraprosthetic pulmonary regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "297286001", - "Display": "Paraprosthetic tricuspid regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29928006", - "Display": "Congenital insufficiency of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301105002", - "Display": "Pulmonary valve lesion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301106001", - "Display": "Pulmonary valve vegetations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301109008", - "Display": "Tricuspid valve lesion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301110003", - "Display": "Tricuspid valve vegetations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301184001", - "Display": "Aortic valve vegetations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301185000", - "Display": "Mitral valve vegetations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "302943003", - "Display": "Abnormal number of pulmonary valve cusps (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "308687000", - "Display": "Aortic murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31085000", - "Display": "Rheumatic mitral regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "315615007", - "Display": "Non-rheumatic aortic sclerosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32615007", - "Display": "Austin Flint murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33700007", - "Display": "Ruptured sinus of Valsalva into right atrium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34126003", - "Display": "Rheumatic pulmonary valve insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35162007", - "Display": "Ruptured sinus of Valsalva into right ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36079008", - "Display": "Double cardiac valve orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36133000", - "Display": "Abnormal position of cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36222008", - "Display": "Carcinoid heart disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36233006", - "Display": "Congenital stenosis of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368009", - "Display": "Heart valve disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "370141003", - "Display": "Rheumatic mitral AND aortic valve obstruction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371813006", - "Display": "Acute mitral regurgitation from chordal rupture (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371814000", - "Display": "Acute mitral regurgitation from chordal dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371815004", - "Display": "Acute mitral regurgitation from papillary muscle dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371816003", - "Display": "Acute mitral regurgitation from papillary muscle rupture (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373116009", - "Display": "Acute mitral regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373133002", - "Display": "Enlarged aortic root (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373134008", - "Display": "Aneurysm of aortic root (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373135009", - "Display": "Annular abscess of aortic root (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373136005", - "Display": "Heart valve calcification (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373137001", - "Display": "Immobile heart valve (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38230003", - "Display": "Ruptured sinus of Valsalva into left ventricle (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "391.1", - "Display": "Acute rheumatic endocarditis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "394.0", - "Display": "Mitral stenosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "394.1", - "Display": "Rheumatic mitral insufficiency" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "394.2", - "Display": "Mitral stenosis with insufficiency" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "394.9", - "Display": "Other and unspecified mitral valve diseases" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "395.0", - "Display": "Rheumatic aortic stenosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "395.1", - "Display": "Rheumatic aortic insufficiency" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "395.2", - "Display": "Rheumatic aortic stenosis with insufficiency" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "395.9", - "Display": "Other and unspecified rheumatic aortic diseases" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "396.0", - "Display": "Mitral valve stenosis and aortic valve stenosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "396.1", - "Display": "Mitral valve stenosis and aortic valve insufficiency" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "396.2", - "Display": "Mitral valve insufficiency and aortic valve stenosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "396.3", - "Display": "Mitral valve insufficiency and aortic valve insufficiency" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "396.8", - "Display": "Multiple involvement of mitral and aortic valves" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "396.9", - "Display": "Mitral and aortic valve diseases" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "397.0", - "Display": "Diseases of tricuspid valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "397.1", - "Display": "Rheumatic diseases of pulmonary valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "397.9", - "Display": "Rheumatic diseases of endocardium" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398995000", - "Display": "Cardiac valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399228007", - "Display": "Tetralogy of Fallot with absent pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40023000", - "Display": "Rheumatic mitral valve failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40445007", - "Display": "Heart valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "405550001", - "Display": "Trauma to aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "405551002", - "Display": "Trauma to mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "405552009", - "Display": "Trauma to pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "405553004", - "Display": "Trauma to tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "405554005", - "Display": "Abscess of aortic root (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40964007", - "Display": "Chronic cardiac valvulitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "409712001", - "Display": "Mitral valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417081007", - "Display": "Systolic anterior movement of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417094009", - "Display": "Valvular sclerosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417191003", - "Display": "Mitral valve sclerosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42069006", - "Display": "Myxoid transformation of mitral valve (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "424.0", - "Display": "Mitral valve disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "424.1", - "Display": "Aortic valve disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "424.2", - "Display": "Tricuspid valve disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "424.3", - "Display": "Pulmonary valve disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "424.90", - "Display": "Endocarditis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "424.99", - "Display": "Other endocarditis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "425.3", - "Display": "Endocardial fibroelastosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427515002", - "Display": "Critical stenosis of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42770003", - "Display": "Syphilis of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428164004", - "Display": "Mitral valve disorder in pregnancy (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "429.5", - "Display": "Rupture of chordae tendineae" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "429.6", - "Display": "Rupture of papillary muscle" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "429.81", - "Display": "Other disorders of papillary muscle" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429347004", - "Display": "Rheumatic aortic valve sclerosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "430065009", - "Display": "Abscess of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "430402003", - "Display": "Abscess of tricuspid valve caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "430616003", - "Display": "Abscess of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431189009", - "Display": "Abscess of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43121002", - "Display": "Rheumatic heart valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431238002", - "Display": "Abscess of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431261000", - "Display": "Bacterial abscess of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431262007", - "Display": "Bacterial abscess of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43176009", - "Display": "Congenital hypoplasia of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432992007", - "Display": "Bacterial abscess of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4374004", - "Display": "Congenital anomaly of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43873004", - "Display": "Mechanical complication due to heart valve prosthesis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44241007", - "Display": "Heart valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445270008", - "Display": "Aortic orifice left side by side with respect to pulmonary orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445284003", - "Display": "Aortic sinus of Valsalva aneurysm from noncoronary sinus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445285002", - "Display": "Aortic sinus of Valsalva aneurysm from left coronary sinus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445286001", - "Display": "Aortic sinus of Valsalva aneurysm from right coronary sinus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445298006", - "Display": "Aortic orifice anterior with respect to pulmonary orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445330003", - "Display": "Right atrioventricular valve leaflets absent in double inlet ventricle (unguarded orifice) (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445373007", - "Display": "Aortic orifice posterior with respect to pulmonary orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445607003", - "Display": "Aortic orifice posterior left with respect to pulmonary orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445636003", - "Display": "Aortic orifice anterior right with respect to pulmonary orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445650008", - "Display": "Aortic orifice anterior left with respect to pulmonary orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446628002", - "Display": "Tricuspid leaflet gelatinous (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446630000", - "Display": "Tricuspid leaflet noncoapting (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446633003", - "Display": "Tricuspid leaflet thickened (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446670007", - "Display": "Aortic orifice right side by side with respect to pulmonary orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446699002", - "Display": "Tricuspid leaflet deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446781004", - "Display": "Tricuspid leaflet flail (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446786009", - "Display": "Tricuspid leaflet fenestration (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447670001", - "Display": "Ventricular septal defect with anterior malaligned outlet septum with overriding pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447671002", - "Display": "Ventricular septal defect with posterior malaligned outlet septum with overriding aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447672009", - "Display": "Ventricular septal defect with posterior malaligned outlet septum with overriding pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447681003", - "Display": "Continuity between mitral valve and pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447682005", - "Display": "Discontinuity between mitral valve and aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447683000", - "Display": "Discontinuity between mitral valve and pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447695000", - "Display": "Tricuspid truncal valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447696004", - "Display": "Unicommissural unicuspid aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447697008", - "Display": "Unicommissural unicuspid pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447698003", - "Display": "Ventricular septal defect with anterior malaligned outlet septum with overriding aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447774002", - "Display": "Congenital midvalvar ring of mitral leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447779007", - "Display": "Trifoliate left atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447822009", - "Display": "Congenital prolapse of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447829000", - "Display": "Congenital abnormality of tricuspid chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447830005", - "Display": "Congenital abnormality of tricuspid leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447847006", - "Display": "Prolapse of right coronary aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447875008", - "Display": "Congenital mass of mitral leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447915002", - "Display": "Ebstein's anomaly of left sided tricuspid valve with discordant atrioventricular connections (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447937009", - "Display": "Congenital abnormality of aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448004007", - "Display": "Acommissural unicuspid pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448026008", - "Display": "Left atrioventricular valve bifoliate with fused left sided superior and inferior bridging leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448061002", - "Display": "Shelf-like supravalvar aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448073002", - "Display": "Congenital abnormality of tricuspid papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448074008", - "Display": "Ebstein's anomaly with functional tricuspid stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448085005", - "Display": "Acommissural unicuspid aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448098001", - "Display": "Aneurysm of aortic sinus of Valsalva with protrusion into pulmonary artery (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448099009", - "Display": "Aneurysm of aortic sinus of Valsalva with protrusion into right atrium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448100001", - "Display": "Aneurysm of aortic sinus of Valsalva with protrusion into right ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448102009", - "Display": "Quadricuspid truncal valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448104005", - "Display": "Localized supravalvar aortic stenosis at sinutubular junction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448115000", - "Display": "Aneurysm of aortic sinus of Valsalva with protrusion into left atrium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448116004", - "Display": "Aneurysm of aortic sinus of Valsalva with protrusion into left ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448117008", - "Display": "Aneurysm of aortic sinus of Valsalva with protrusion into pericardial cavity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448161000", - "Display": "Aortic valve overriding ventricular septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448280008", - "Display": "Malalignment of aortic sinus in relation to pulmonary sinus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448328001", - "Display": "Aneurysm of aortic sinus of Valsalva without rupture (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448413002", - "Display": "Pulmonary valve overriding ventricular septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448475002", - "Display": "Absent pulmonary valve syndrome with ventricular septal defect of non Fallot type (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448497000", - "Display": "Congenital deformity of mitral valve annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448528000", - "Display": "Aneurysm of aortic sinus of Valsalva with rupture to pericardial cavity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448576004", - "Display": "Fenestration of aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448604006", - "Display": "Congenital abnormality of pulmonary valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448618004", - "Display": "Abnormality of mitral valve annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448626007", - "Display": "Gelatinous atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448634001", - "Display": "Absent aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448643005", - "Display": "Abnormality of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448684008", - "Display": "Prolapse of left coronary aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448723007", - "Display": "Aneurysm of aortic sinus of Valsalva with rupture to left atrium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448724001", - "Display": "Aneurysm of aortic sinus of Valsalva with rupture to left ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448729006", - "Display": "Common atrioventricular valve in functionally univentricular heart (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448743001", - "Display": "Abnormality of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448744007", - "Display": "Aneurysm of aortic sinus of Valsalva with rupture to pulmonary artery (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448745008", - "Display": "Aneurysm of aortic sinus of Valsalva with rupture to right atrium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448746009", - "Display": "Aneurysm of aortic sinus of Valsalva with rupture to right ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448777006", - "Display": "Noncoapting atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448780007", - "Display": "Ventricular septal defect with absent outlet septum and overriding truncal valve with extension of membranous septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448790004", - "Display": "Anterior-posterior orientation of bicuspid aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448793002", - "Display": "Bicuspid truncal valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448819009", - "Display": "Right-left orientation of bicuspid aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448820003", - "Display": "Thickened mitral leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448821004", - "Display": "Abnormality of truncal valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448822006", - "Display": "Deficiency of atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448827000", - "Display": "Ventricular septal defect with absent outlet septum and overriding truncal valve with inferior muscular rim (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448828005", - "Display": "Deficiency of mitral leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448836001", - "Display": "Thickened atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448844001", - "Display": "Multiple mitral papillary muscles with hammock valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448903003", - "Display": "Dilatation of annulus of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448905005", - "Display": "Dilatation of aortic sinus of Valsalva (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448946000", - "Display": "Anterior-posterior orientation of bicuspid pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448947009", - "Display": "Congenital abnormality of left atrioventricular valve in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448948004", - "Display": "Overriding ventriculoarterial valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449005003", - "Display": "Absence of mitral chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449008001", - "Display": "Flail atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449011000", - "Display": "Fenestration of atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449029005", - "Display": "Imperforate ventriculoarterial valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449031001", - "Display": "Congenital abnormality of right atrioventricular valve leaflet in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449032008", - "Display": "Congenital abnormality of right atrioventricular valve papillary muscle in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449037002", - "Display": "Truncal valve overriding ventricular septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449040002", - "Display": "Hypoplasia of right atrioventricular valve annulus in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449086000", - "Display": "Ebstein's anomaly of left atrioventricular valve in functionally univentricular heart (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449087009", - "Display": "Ebstein's anomaly of right atrioventricular valve in functionally univentricular heart (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449098005", - "Display": "Congenital abnormality of left atrioventricular valve chordae tendinae in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449099002", - "Display": "Left atrioventricular valve stenosis in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449110001", - "Display": "Congenital billowing of mitral valve leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449111002", - "Display": "Double orifice of right atrioventricular valve in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449112009", - "Display": "Prolapse of noncoronary aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449116007", - "Display": "Tricuspid but functionally bicuspid aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449123008", - "Display": "Eccentric opening of tricuspid aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449124002", - "Display": "Eccentric opening of tricuspid pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449133000", - "Display": "Absence of pulmonary valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449136008", - "Display": "Fenestration of mitral leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449139001", - "Display": "Commissural fusion of truncal valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449140004", - "Display": "Right-left orientation of bicuspid pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449149003", - "Display": "Deficiency of aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449158005", - "Display": "Ebstein's anomaly of tricuspid valve with atrialization of right ventricular chamber (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449186002", - "Display": "Dilatation of pulmonary valve annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449189009", - "Display": "Mass associated with atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449228007", - "Display": "Hypoplasia of left atrioventricular valve annulus in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449270002", - "Display": "Hypoplasia of mitral valve annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449315003", - "Display": "Congenital abnormality of right atrioventricular valve chordae tendinae in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449316002", - "Display": "Congenital abnormality of right atrioventricular valve in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449354002", - "Display": "Hypoplasia of pulmonary cusps of absent pulmonary valve type (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449382009", - "Display": "Congenital abnormality of atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449383004", - "Display": "Congenital abnormality of atrioventricular valve papillary muscle in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449388008", - "Display": "Abnormality of atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449455000", - "Display": "Abnormal attachment of tricuspid chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449511008", - "Display": "Imperforate left ventriculoarterial valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449512001", - "Display": "Imperforate right ventriculoarterial valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449529003", - "Display": "Abnormality of pulmonary valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449534004", - "Display": "Obstructed interchordal space of tricuspid chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449544002", - "Display": "Deficiency of truncal valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449555002", - "Display": "Aortic valve commissural abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449563001", - "Display": "Absence of primary mitral chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449564007", - "Display": "Fenestration of truncal valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449567000", - "Display": "Overriding left ventriculoarterial valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449568005", - "Display": "Overriding right ventriculoarterial valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449601008", - "Display": "Fenestration of pulmonary valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449605004", - "Display": "Deficiency of pulmonary valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44993000", - "Display": "Rheumatic mitral valve and aortic valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "45058001", - "Display": "Syphilis of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46165000", - "Display": "Chronic rheumatic endocarditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48724000", - "Display": "Mitral valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48872007", - "Display": "Rheumatic endocarditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49699002", - "Display": "Rheumatic disease of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49915006", - "Display": "Tricuspid valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50608004", - "Display": "Incompetence of papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51442005", - "Display": "Congenital atresia of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52048004", - "Display": "Rheumatic pulmonary valve failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52757001", - "Display": "Congenital supravalvular pulmonary stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54073003", - "Display": "Monocuspid cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54160000", - "Display": "Congenital aneurysm of sinus of Valsalva (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55836009", - "Display": "Incoordination of papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56786000", - "Display": "Pulmonic valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "57373003", - "Display": "Myxoid transformation of cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58056005", - "Display": "Syphilis of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5919001", - "Display": "Rupture of papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59464004", - "Display": "Rheumatic mitral AND aortic valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60232001", - "Display": "Cleft leaflet of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60234000", - "Display": "Aortic valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60573004", - "Display": "Aortic valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61612001", - "Display": "Syphilitic aortic incompetence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63042009", - "Display": "Congenital atresia of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "65457005", - "Display": "Endocardial fibroelastosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67278007", - "Display": "Congenital stenosis of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67696008", - "Display": "Rheumatic tricuspid valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67754003", - "Display": "Aortic valve sclerosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6996004", - "Display": "Congenital absence of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70320004", - "Display": "Congenital anomaly of heart valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7169009", - "Display": "Congenital supravalvular aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71799002", - "Display": "Rheumatic mitral valve stenosis AND aortic valve insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72011007", - "Display": "Rheumatic aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72352009", - "Display": "Bicuspid aortic valve (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "745.2", - "Display": "Tetralogy of fallot" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.00", - "Display": "Congenital pulmonary valve anomaly" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.01", - "Display": "Atresia of pulmonary valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.02", - "Display": "Stenosis of pulmonary valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.09", - "Display": "Other congenital anomalies of pulmonary valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.1", - "Display": "Tricuspid atresia and stenosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.2", - "Display": "Ebstein's anomaly" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.3", - "Display": "Congenital stenosis of aortic valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.4", - "Display": "Congenital insufficiency of aortic valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.5", - "Display": "Congenital mitral stenosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.6", - "Display": "Congenital mitral insufficiency" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.89", - "Display": "Other specified congenital anomalies of heart" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "747.22", - "Display": "Atresia and stenosis of aorta" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75372006", - "Display": "Congenital anomaly of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76257003", - "Display": "Bicuspid cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76267008", - "Display": "Pulmonary valve disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77696009", - "Display": "Double aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78031003", - "Display": "Rheumatic aortic regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78196008", - "Display": "Double mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78320000", - "Display": "Quadricuspid cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78495000", - "Display": "Cleft leaflet of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "787001", - "Display": "Rheumatic mitral stenosis with regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79619009", - "Display": "Mitral valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8074002", - "Display": "Mitral valve prolapse syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81552002", - "Display": "Rheumatic mitral valve insufficiency and aortic valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82355002", - "Display": "Syphilitic aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8239009", - "Display": "Primary endocardial fibroelastosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82458004", - "Display": "Congenital stenosis of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83119008", - "Display": "Congenital insufficiency of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83898004", - "Display": "Rheumatic disease of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84871007", - "Display": "Acute rheumatic fever with valvulitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85971001", - "Display": "Rheumatic pulmonary valve stenosis with insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86299006", - "Display": "Tetralogy of Fallot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86466006", - "Display": "Rheumatic mitral stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86856005", - "Display": "Dysfunction of papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8722008", - "Display": "Aortic valve disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88318005", - "Display": "Rheumatic tricuspid valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89456004", - "Display": "Chronic rheumatic valvulitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89736004", - "Display": "Valvular endocarditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90154003", - "Display": "Papillary muscle disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91434003", - "Display": "Pulmonic valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91442002", - "Display": "Rheumatic pulmonary valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91529004", - "Display": "Rheumatic heart valve failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91634006", - "Display": "Fused commissures of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92808004", - "Display": "Chronic degenerative aortic valve disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92830003", - "Display": "Combined valvular-subvalvular pulmonic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92888002", - "Display": "Congenital abnormal shape of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92923008", - "Display": "Congenital abnormal shape of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92941000", - "Display": "Congenital abnormal shape of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92944008", - "Display": "Congenital abnormal shape of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92960007", - "Display": "Congenital absence of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92963009", - "Display": "Congenital absence of chordae tendineae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92969008", - "Display": "Congenital absence of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92974000", - "Display": "Congenital absence of papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92976003", - "Display": "Congenital absence of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "93069000", - "Display": "Congenital hypertrophy of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "93075009", - "Display": "Congenital hypertrophy of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "93076005", - "Display": "Congenital hypertrophy of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "93234006", - "Display": "Congenital hypertrophy of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "93237004", - "Display": "Congenital hypoplasia of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "93271008", - "Display": "Congenital hypoplasia of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "93287006", - "Display": "Congenital hypoplasia of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "94720001", - "Display": "Myxoid transformation of tricuspid valve (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "996.02", - "Display": "Mechanical complication due to heart valve prosthesis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "996.61", - "Display": "Infection and inflammatory reaction due to cardiac device" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A52.03", - "Display": "Syphilitic endocarditis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I01.1", - "Display": "Acute rheumatic endocarditis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I02.0", - "Display": "Rheumatic chorea with heart involvement" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I05.0", - "Display": "Rheumatic mitral stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I05.1", - "Display": "Rheumatic mitral insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I05.2", - "Display": "Rheumatic mitral stenosis with insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I05.8", - "Display": "Other rheumatic mitral valve diseases" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I05.9", - "Display": "Rheumatic mitral valve disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I06.0", - "Display": "Rheumatic aortic stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I06.1", - "Display": "Rheumatic aortic insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I06.2", - "Display": "Rheumatic aortic stenosis with insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I06.8", - "Display": "Other rheumatic aortic valve diseases" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I06.9", - "Display": "Rheumatic aortic valve disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I07.0", - "Display": "Rheumatic tricuspid stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I07.1", - "Display": "Rheumatic tricuspid insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I07.2", - "Display": "Rheumatic tricuspid stenosis and insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I07.8", - "Display": "Other rheumatic tricuspid valve diseases" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I07.9", - "Display": "Rheumatic tricuspid valve disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I08.0", - "Display": "Rheumatic disorders of both mitral and aortic valves" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I08.1", - "Display": "Rheumatic disorders of both mitral and tricuspid valves" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I08.2", - "Display": "Rheumatic disorders of both aortic and tricuspid valves" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I08.3", - "Display": "Combined rheumatic disorders of mitral" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I08.8", - "Display": "Other rheumatic multiple valve diseases" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I08.9", - "Display": "Rheumatic multiple valve disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I09.1", - "Display": "Rheumatic diseases of endocardium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I09.89", - "Display": "Other specified rheumatic heart diseases" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I23.4", - "Display": "Rupture of chordae tendineae as current complication following acute myocardial infarction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I23.5", - "Display": "Rupture of papillary muscle as current complication following acute myocardial infarction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I34.0", - "Display": "Nonrheumatic mitral (valve) insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I34.1", - "Display": "Nonrheumatic mitral (valve) prolapse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I34.2", - "Display": "Nonrheumatic mitral (valve) stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I34.8", - "Display": "Other nonrheumatic mitral valve disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I34.9", - "Display": "Nonrheumatic mitral valve disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I35.0", - "Display": "Nonrheumatic aortic (valve) stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I35.1", - "Display": "Nonrheumatic aortic (valve) insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I35.2", - "Display": "Nonrheumatic aortic (valve) stenosis with insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I35.8", - "Display": "Other nonrheumatic aortic valve disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I35.9", - "Display": "Nonrheumatic aortic valve disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I36.0", - "Display": "Nonrheumatic tricuspid (valve) stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I36.1", - "Display": "Nonrheumatic tricuspid (valve) insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I36.2", - "Display": "Nonrheumatic tricuspid (valve) stenosis with insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I36.8", - "Display": "Other nonrheumatic tricuspid valve disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I36.9", - "Display": "Nonrheumatic tricuspid valve disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I37.0", - "Display": "Nonrheumatic pulmonary valve stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I37.1", - "Display": "Nonrheumatic pulmonary valve insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I37.2", - "Display": "Nonrheumatic pulmonary valve stenosis with insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I37.8", - "Display": "Other nonrheumatic pulmonary valve disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I37.9", - "Display": "Nonrheumatic pulmonary valve disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I38", - "Display": "Endocarditis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I39", - "Display": "Endocarditis and heart valve disorders in diseases classified elsewhere" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I51.1", - "Display": "Rupture of chordae tendineae" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I51.2", - "Display": "Rupture of papillary muscle" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q21.3", - "Display": "Tetralogy of Fallot" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.0", - "Display": "Pulmonary valve atresia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.1", - "Display": "Congenital pulmonary valve stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.2", - "Display": "Congenital pulmonary valve insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.3", - "Display": "Other congenital malformations of pulmonary valve" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.4", - "Display": "Congenital tricuspid stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.5", - "Display": "Ebstein's anomaly" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.6", - "Display": "Hypoplastic right heart syndrome" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.8", - "Display": "Other congenital malformations of tricuspid valve" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.9", - "Display": "Congenital malformation of tricuspid valve" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q23.0", - "Display": "Congenital stenosis of aortic valve" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q23.1", - "Display": "Congenital insufficiency of aortic valve" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q23.2", - "Display": "Congenital mitral stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q23.3", - "Display": "Congenital mitral insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q23.4", - "Display": "Hypoplastic left heart syndrome" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q23.8", - "Display": "Other congenital malformations of aortic and mitral valves" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q23.9", - "Display": "Congenital malformation of aortic and mitral valves" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q24.8", - "Display": "Other specified congenital malformations of heart" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q25.3", - "Display": "Supravalvular aortic stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.01XA", - "Display": "Breakdown (mechanical) of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.01XD", - "Display": "Breakdown (mechanical) of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.01XS", - "Display": "Breakdown (mechanical) of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.02XA", - "Display": "Displacement of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.02XD", - "Display": "Displacement of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.02XS", - "Display": "Displacement of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.03XA", - "Display": "Leakage of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.03XD", - "Display": "Leakage of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.03XS", - "Display": "Leakage of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.09XA", - "Display": "Other mechanical complication of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.09XD", - "Display": "Other mechanical complication of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.09XS", - "Display": "Other mechanical complication of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.6XXA", - "Display": "Infection and inflammatory reaction due to cardiac valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.6XXD", - "Display": "Infection and inflammatory reaction due to cardiac valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.6XXS", - "Display": "Infection and inflammatory reaction due to cardiac valve prosthesis" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.464.1003.105.12.1104.json b/build/main/resources/2.16.840.1.113883.3.464.1003.105.12.1104.json deleted file mode 100644 index 6d21b98..0000000 --- a/build/main/resources/2.16.840.1.113883.3.464.1003.105.12.1104.json +++ /dev/null @@ -1,914 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111482003", - "Display": "Subchronic schizophrenia with acute exacerbations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111483008", - "Display": "Catatonic schizophrenia in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111484002", - "Display": "Undifferentiated schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12939007", - "Display": "Chronic disorganized schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14291003", - "Display": "Subchronic disorganized schizophrenia with acute exacerbations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16990005", - "Display": "Subchronic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191526005", - "Display": "Schizophrenic disorders (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191527001", - "Display": "Simple schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191531007", - "Display": "Acute exacerbation of chronic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191542003", - "Display": "Catatonic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191547009", - "Display": "Acute exacerbation of subchronic catatonic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191548004", - "Display": "Acute exacerbation of chronic catatonic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191554003", - "Display": "Acute exacerbation of subchronic paranoid schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191555002", - "Display": "Acute exacerbation of chronic paranoid schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191559008", - "Display": "Latent schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191561004", - "Display": "Subchronic latent schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191562006", - "Display": "Chronic latent schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191563001", - "Display": "Acute exacerbation of subchronic latent schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191564007", - "Display": "Acute exacerbation of chronic latent schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191567000", - "Display": "Schizoaffective schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191569002", - "Display": "Subchronic schizoaffective schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191570001", - "Display": "Chronic schizoaffective schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191571002", - "Display": "Acute exacerbation of subchronic schizoaffective schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191572009", - "Display": "Acute exacerbation of chronic schizoaffective schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191574005", - "Display": "Schizoaffective schizophrenia in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191577003", - "Display": "Cenesthopathic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191680007", - "Display": "Psychogenic paranoid psychosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231437006", - "Display": "Reactive psychoses (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231489001", - "Display": "Acute transient psychotic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247804008", - "Display": "Schizophrenic prodrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26025008", - "Display": "Residual schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268617001", - "Display": "Acute schizophrenic episode (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268624000", - "Display": "Acute paranoid reaction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "270901009", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271428004", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "27387000", - "Display": "Subchronic disorganized schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "274952002", - "Display": "Borderline schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "278853003", - "Display": "Acute schizophrenia-like psychotic disorder (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.00", - "Display": "Simple type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.01", - "Display": "Simple type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.02", - "Display": "Simple type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.03", - "Display": "Simple type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.04", - "Display": "Simple type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.05", - "Display": "Simple type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.10", - "Display": "Disorganized type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.11", - "Display": "Disorganized type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.12", - "Display": "Disorganized type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.13", - "Display": "Disorganized type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.14", - "Display": "Disorganized type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.15", - "Display": "Disorganized type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.20", - "Display": "Catatonic type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.21", - "Display": "Catatonic type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.22", - "Display": "Catatonic type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.23", - "Display": "Catatonic type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.24", - "Display": "Catatonic type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.25", - "Display": "Catatonic type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.30", - "Display": "Paranoid type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.31", - "Display": "Paranoid type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.32", - "Display": "Paranoid type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.33", - "Display": "Paranoid type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.34", - "Display": "Paranoid type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.35", - "Display": "Paranoid type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.40", - "Display": "Schizophreniform disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.41", - "Display": "Schizophreniform disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.42", - "Display": "Schizophreniform disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.43", - "Display": "Schizophreniform disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.44", - "Display": "Schizophreniform disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.45", - "Display": "Schizophreniform disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.50", - "Display": "Latent schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.51", - "Display": "Latent schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.52", - "Display": "Latent schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.53", - "Display": "Latent schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.54", - "Display": "Latent schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.55", - "Display": "Latent schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.60", - "Display": "Schizophrenic disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.61", - "Display": "Schizophrenic disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.62", - "Display": "Schizophrenic disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.63", - "Display": "Schizophrenic disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.64", - "Display": "Schizophrenic disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.65", - "Display": "Schizophrenic disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.70", - "Display": "Schizoaffective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.71", - "Display": "Schizoaffective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.72", - "Display": "Schizoaffective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.73", - "Display": "Schizoaffective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.74", - "Display": "Schizoaffective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.75", - "Display": "Schizoaffective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.80", - "Display": "Other specified types of schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.81", - "Display": "Other specified types of schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.82", - "Display": "Other specified types of schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.83", - "Display": "Other specified types of schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.84", - "Display": "Other specified types of schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.85", - "Display": "Other specified types of schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.90", - "Display": "Unspecified schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.91", - "Display": "Unspecified schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.92", - "Display": "Unspecified schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.93", - "Display": "Unspecified schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.94", - "Display": "Unspecified schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.95", - "Display": "Unspecified schizophrenia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29599000", - "Display": "Chronic undifferentiated schizophrenia (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "298.0", - "Display": "Depressive type psychosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "298.1", - "Display": "Excitative type psychosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "298.4", - "Display": "Psychogenic paranoid psychosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "298.8", - "Display": "Other and unspecified reactive psychosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "298.9", - "Display": "Unspecified psychosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30336007", - "Display": "Chronic residual schizophrenia with acute exacerbations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31027006", - "Display": "Schizotypal personality disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31373002", - "Display": "Disorganized schizophrenia in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31658008", - "Display": "Chronic paranoid schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35218008", - "Display": "Chronic disorganized schizophrenia with acute exacerbation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35252006", - "Display": "Disorganized schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36158005", - "Display": "Schizophreniform disorder with good prognostic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38368003", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39610001", - "Display": "Undifferentiated schizophrenia in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416340002", - "Display": "Late onset schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42868002", - "Display": "Subchronic catatonic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441704009", - "Display": "Affective psychosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441833000", - "Display": "Lethal catatonia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4926007", - "Display": "Schizophrenia in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51133006", - "Display": "Residual schizophrenia in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5464005", - "Display": "Brief reactive psychosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55736003", - "Display": "Schizophreniform disorder without good prognostic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58214004", - "Display": "Schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63181006", - "Display": "Paranoid schizophrenia in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "64905009", - "Display": "Paranoid schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68890003", - "Display": "Schizoaffective disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68995007", - "Display": "Chronic catatonic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7025000", - "Display": "Subchronic undifferentiated schizophrenia with acute exacerbations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70814008", - "Display": "Subchronic residual schizophrenia with acute exacerbations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71103003", - "Display": "Chronic residual schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76566000", - "Display": "Subchronic residual schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79204003", - "Display": "Chronic undifferentiated schizophrenia with acute exacerbations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79866005", - "Display": "Subchronic paranoid schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83746006", - "Display": "Chronic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84760002", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85861002", - "Display": "Subchronic undifferentiated schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88975006", - "Display": "Schizophreniform disorder (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F20.0", - "Display": "Paranoid schizophrenia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F20.1", - "Display": "Disorganized schizophrenia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F20.2", - "Display": "Catatonic schizophrenia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F20.3", - "Display": "Undifferentiated schizophrenia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F20.5", - "Display": "Residual schizophrenia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F20.81", - "Display": "Schizophreniform disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F20.89", - "Display": "Other schizophrenia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F20.9", - "Display": "Schizophrenia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F21", - "Display": "Schizotypal disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F23", - "Display": "Brief psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F25.0", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F25.1", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F25.8", - "Display": "Other schizoaffective disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F25.9", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F28", - "Display": "Other psychotic disorder not due to a substance or known physiological condition" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F29", - "Display": "Unspecified psychosis not due to a substance or known physiological condition" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.464.1003.106.12.1004.json b/build/main/resources/2.16.840.1.113883.3.464.1003.106.12.1004.json deleted file mode 100644 index 5aedc7f..0000000 --- a/build/main/resources/2.16.840.1.113883.3.464.1003.106.12.1004.json +++ /dev/null @@ -1,3050 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1081000119105", - "Display": "Opioid dependence" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "110281001", - "Display": "Chronic drug abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11047881000119101", - "Display": "Cannabis hyperemesis syndrome co-occurrent and due to cannabis abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "144981000119109", - "Display": "Nondependent intraveous amphetamine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "145101000119102", - "Display": "Intravenous cocaine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "145841000119107", - "Display": "Episodic phencyclidine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1461000119109", - "Display": "Drug dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1471000119103", - "Display": "Drug abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15167005", - "Display": "Alcohol abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "153501000119105", - "Display": "Drug dependence" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191813001", - "Display": "Chronic alcoholism in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191821007", - "Display": "Opioid dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191827006", - "Display": "Hypnotic or anxiolytic dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191833002", - "Display": "Cocaine dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191839003", - "Display": "Cannabis dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191851001", - "Display": "Hallucinogen dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191857002", - "Display": "Glue sniffing dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191869005", - "Display": "Combined opioid with non-opioid drug dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191875001", - "Display": "Combined drug dependence" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191882002", - "Display": "Nondependent alcohol abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191883007", - "Display": "Nondependent alcohol abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191884001", - "Display": "Nondependent alcohol abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191889006", - "Display": "Tobacco dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191891003", - "Display": "Nondependent cannabis abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191893000", - "Display": "Nondependent cannabis abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191894006", - "Display": "Nondependent cannabis abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191895007", - "Display": "Nondependent cannabis abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191899001", - "Display": "Nondependent hallucinogen abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191900006", - "Display": "Nondependent hallucinogen abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191901005", - "Display": "Nondependent hallucinogen abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191905001", - "Display": "Nondependent hypnotic or anxiolytic abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191906000", - "Display": "Nondependent hypnotic or anxiolytic abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191907009", - "Display": "Nondependent hypnotic or anxiolytic abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191909007", - "Display": "Nondependent opioid abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191912005", - "Display": "Nondependent opioid abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191913000", - "Display": "Nondependent opioid abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191914006", - "Display": "Nondependent opioid abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191916008", - "Display": "Nondependent cocaine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191918009", - "Display": "Nondependent cocaine abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191919001", - "Display": "Nondependent cocaine abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191920007", - "Display": "Nondependent cocaine abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191924003", - "Display": "Nondependent amphetamine or psychostimulant abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191925002", - "Display": "Nondependent amphetamine or psychostimulant abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191928000", - "Display": "Abuse of antidepressant drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191930003", - "Display": "Nondependent antidepressant type drug abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191931004", - "Display": "Nondependent antidepressant type drug abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191932006", - "Display": "Nondependent antidepressant type drug abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191934007", - "Display": "Nondependent mixed drug abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191936009", - "Display": "Nondependent mixed drug abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191937000", - "Display": "Nondependent mixed drug abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191938005", - "Display": "Nondependent mixed drug abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231458000", - "Display": "Abuse of steroids (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231459008", - "Display": "Abuse of nonpsychotropic analgesic drugs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231461004", - "Display": "Hypnotic or anxiolytic abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231462006", - "Display": "Barbiturate abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248119008", - "Display": "Abuse of drugs to lose weight (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26416006", - "Display": "Drug abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268645007", - "Display": "Nondependent alcohol abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268646008", - "Display": "Nondependent hallucinogen abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268647004", - "Display": "Nondependent hypnotic or anxiolytic abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268648009", - "Display": "Nondependent amphetamine or other psychostimulant abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "280982009", - "Display": "Abuse of laxatives (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "280983004", - "Display": "Abuse of vitamins (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "280984005", - "Display": "Abuse of herbal medicine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "280985006", - "Display": "Abuse of diuretics (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "280986007", - "Display": "Abuse of antacids (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284591009", - "Display": "Persistent alcohol abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "288281000119100", - "Display": "Abuse of herbal medicine or folk remedy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304605000", - "Display": "Methanol abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34111000119108", - "Display": "Nondependent amphetamine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "37344009", - "Display": "Cannabis abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414874007", - "Display": "Nondependent amphetamine or psychostimulant abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425533007", - "Display": "Episodic drug abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425841004", - "Display": "Phencyclidine dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425885002", - "Display": "Continuous phencyclidine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426095000", - "Display": "Continuous inhalant abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426590003", - "Display": "Drug abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427205009", - "Display": "Amphetamine abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427229002", - "Display": "Episodic inhalant abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428561000124100", - "Display": "Maternal substance abuse (situation)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429001000124103", - "Display": "Catha edulis abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429692000", - "Display": "Amphetamine abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441527004", - "Display": "Stimulant abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445273005", - "Display": "Polysubstance abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49540005", - "Display": "Non dependent drug abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5602001", - "Display": "Opioid abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "64386003", - "Display": "Sedative abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6525002", - "Display": "Dependent drug abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66214007", - "Display": "Substance abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70340006", - "Display": "Inhalant abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7071007", - "Display": "Phencyclidine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713775002", - "Display": "Novel psychoactive substance misuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724694006", - "Display": "Harmful pattern of use of caffeine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724697004", - "Display": "Harmful pattern of use of nicotine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724712001", - "Display": "Harmful use of dissociative drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724713006", - "Display": "Harmful use of ketamine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "737336003", - "Display": "Synthetic cannabinoid abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74851005", - "Display": "Hallucinogen abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762504005", - "Display": "Abuse of synthetic cathinone (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78267003", - "Display": "Cocaine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84758004", - "Display": "Amphetamine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91388009", - "Display": "Psychoactive substance abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9769006", - "Display": "Drug habituation (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.10", - "Display": "Alcohol abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.11", - "Display": "Alcohol abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.120", - "Display": "Alcohol abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.121", - "Display": "Alcohol abuse with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.129", - "Display": "Alcohol abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.14", - "Display": "Alcohol abuse with alcohol-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.150", - "Display": "Alcohol abuse with alcohol-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.151", - "Display": "Alcohol abuse with alcohol-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.159", - "Display": "Alcohol abuse with alcohol-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.180", - "Display": "Alcohol abuse with alcohol-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.181", - "Display": "Alcohol abuse with alcohol-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.182", - "Display": "Alcohol abuse with alcohol-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.188", - "Display": "Alcohol abuse with other alcohol-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.19", - "Display": "Alcohol abuse with unspecified alcohol-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.20", - "Display": "Alcohol dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.21", - "Display": "Alcohol dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.220", - "Display": "Alcohol dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.221", - "Display": "Alcohol dependence with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.229", - "Display": "Alcohol dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.230", - "Display": "Alcohol dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.231", - "Display": "Alcohol dependence with withdrawal delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.232", - "Display": "Alcohol dependence with withdrawal with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.239", - "Display": "Alcohol dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.24", - "Display": "Alcohol dependence with alcohol-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.250", - "Display": "Alcohol dependence with alcohol-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.251", - "Display": "Alcohol dependence with alcohol-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.259", - "Display": "Alcohol dependence with alcohol-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.26", - "Display": "Alcohol dependence with alcohol-induced persisting amnestic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.27", - "Display": "Alcohol dependence with alcohol-induced persisting dementia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.280", - "Display": "Alcohol dependence with alcohol-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.281", - "Display": "Alcohol dependence with alcohol-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.282", - "Display": "Alcohol dependence with alcohol-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.288", - "Display": "Alcohol dependence with other alcohol-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.29", - "Display": "Alcohol dependence with unspecified alcohol-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.920", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.921", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.929", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.94", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.950", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.951", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.959", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.96", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.97", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.980", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.981", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.982", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.988", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.99", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.10", - "Display": "Opioid abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.11", - "Display": "Opioid abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.120", - "Display": "Opioid abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.121", - "Display": "Opioid abuse with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.122", - "Display": "Opioid abuse with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.129", - "Display": "Opioid abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.14", - "Display": "Opioid abuse with opioid-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.150", - "Display": "Opioid abuse with opioid-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.151", - "Display": "Opioid abuse with opioid-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.159", - "Display": "Opioid abuse with opioid-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.181", - "Display": "Opioid abuse with opioid-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.182", - "Display": "Opioid abuse with opioid-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.188", - "Display": "Opioid abuse with other opioid-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.19", - "Display": "Opioid abuse with unspecified opioid-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.20", - "Display": "Opioid dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.21", - "Display": "Opioid dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.220", - "Display": "Opioid dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.221", - "Display": "Opioid dependence with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.222", - "Display": "Opioid dependence with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.229", - "Display": "Opioid dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.23", - "Display": "Opioid dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.24", - "Display": "Opioid dependence with opioid-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.250", - "Display": "Opioid dependence with opioid-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.251", - "Display": "Opioid dependence with opioid-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.259", - "Display": "Opioid dependence with opioid-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.281", - "Display": "Opioid dependence with opioid-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.282", - "Display": "Opioid dependence with opioid-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.288", - "Display": "Opioid dependence with other opioid-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.29", - "Display": "Opioid dependence with unspecified opioid-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.90", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.920", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.921", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.922", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.929", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.93", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.94", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.950", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.951", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.959", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.981", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.982", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.988", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.99", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.10", - "Display": "Cannabis abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.11", - "Display": "Cannabis abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.120", - "Display": "Cannabis abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.121", - "Display": "Cannabis abuse with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.122", - "Display": "Cannabis abuse with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.129", - "Display": "Cannabis abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.150", - "Display": "Cannabis abuse with psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.151", - "Display": "Cannabis abuse with psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.159", - "Display": "Cannabis abuse with psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.180", - "Display": "Cannabis abuse with cannabis-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.188", - "Display": "Cannabis abuse with other cannabis-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.19", - "Display": "Cannabis abuse with unspecified cannabis-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.20", - "Display": "Cannabis dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.21", - "Display": "Cannabis dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.220", - "Display": "Cannabis dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.221", - "Display": "Cannabis dependence with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.222", - "Display": "Cannabis dependence with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.229", - "Display": "Cannabis dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.250", - "Display": "Cannabis dependence with psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.251", - "Display": "Cannabis dependence with psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.259", - "Display": "Cannabis dependence with psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.280", - "Display": "Cannabis dependence with cannabis-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.288", - "Display": "Cannabis dependence with other cannabis-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.29", - "Display": "Cannabis dependence with unspecified cannabis-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.90", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.920", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.921", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.922", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.929", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.950", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.951", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.959", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.980", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.988", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.99", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.10", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.11", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.120", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.121", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.129", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.14", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.150", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.151", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.159", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.180", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.181", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.182", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.188", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.19", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.20", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.21", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.220", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.221", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.229", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.230", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.231", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.232", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.239", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.24", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.250", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.251", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.259", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.26", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.27", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.280", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.281", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.282", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.288", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.29", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.90", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.920", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.921", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.929", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.930", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.931", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.932", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.939", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.94", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.950", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.951", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.959", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.96", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.97", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.980", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.981", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.982", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.988", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.99", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.10", - "Display": "Cocaine abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.11", - "Display": "Cocaine abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.120", - "Display": "Cocaine abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.121", - "Display": "Cocaine abuse with intoxication with delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.122", - "Display": "Cocaine abuse with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.129", - "Display": "Cocaine abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.14", - "Display": "Cocaine abuse with cocaine-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.150", - "Display": "Cocaine abuse with cocaine-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.151", - "Display": "Cocaine abuse with cocaine-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.159", - "Display": "Cocaine abuse with cocaine-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.180", - "Display": "Cocaine abuse with cocaine-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.181", - "Display": "Cocaine abuse with cocaine-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.182", - "Display": "Cocaine abuse with cocaine-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.188", - "Display": "Cocaine abuse with other cocaine-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.19", - "Display": "Cocaine abuse with unspecified cocaine-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.20", - "Display": "Cocaine dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.21", - "Display": "Cocaine dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.220", - "Display": "Cocaine dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.221", - "Display": "Cocaine dependence with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.222", - "Display": "Cocaine dependence with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.229", - "Display": "Cocaine dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.23", - "Display": "Cocaine dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.24", - "Display": "Cocaine dependence with cocaine-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.250", - "Display": "Cocaine dependence with cocaine-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.251", - "Display": "Cocaine dependence with cocaine-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.259", - "Display": "Cocaine dependence with cocaine-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.280", - "Display": "Cocaine dependence with cocaine-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.281", - "Display": "Cocaine dependence with cocaine-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.282", - "Display": "Cocaine dependence with cocaine-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.288", - "Display": "Cocaine dependence with other cocaine-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.29", - "Display": "Cocaine dependence with unspecified cocaine-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.90", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.920", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.921", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.922", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.929", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.94", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.950", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.951", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.959", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.980", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.981", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.982", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.988", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.99", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.10", - "Display": "Other stimulant abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.11", - "Display": "Other stimulant abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.120", - "Display": "Other stimulant abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.121", - "Display": "Other stimulant abuse with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.122", - "Display": "Other stimulant abuse with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.129", - "Display": "Other stimulant abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.14", - "Display": "Other stimulant abuse with stimulant-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.150", - "Display": "Other stimulant abuse with stimulant-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.151", - "Display": "Other stimulant abuse with stimulant-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.159", - "Display": "Other stimulant abuse with stimulant-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.180", - "Display": "Other stimulant abuse with stimulant-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.181", - "Display": "Other stimulant abuse with stimulant-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.182", - "Display": "Other stimulant abuse with stimulant-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.188", - "Display": "Other stimulant abuse with other stimulant-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.19", - "Display": "Other stimulant abuse with unspecified stimulant-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.20", - "Display": "Other stimulant dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.21", - "Display": "Other stimulant dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.220", - "Display": "Other stimulant dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.221", - "Display": "Other stimulant dependence with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.222", - "Display": "Other stimulant dependence with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.229", - "Display": "Other stimulant dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.23", - "Display": "Other stimulant dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.24", - "Display": "Other stimulant dependence with stimulant-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.250", - "Display": "Other stimulant dependence with stimulant-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.251", - "Display": "Other stimulant dependence with stimulant-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.259", - "Display": "Other stimulant dependence with stimulant-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.280", - "Display": "Other stimulant dependence with stimulant-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.281", - "Display": "Other stimulant dependence with stimulant-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.282", - "Display": "Other stimulant dependence with stimulant-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.288", - "Display": "Other stimulant dependence with other stimulant-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.29", - "Display": "Other stimulant dependence with unspecified stimulant-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.90", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.920", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.921", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.922", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.929", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.93", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.94", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.950", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.951", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.959", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.980", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.981", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.982", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.988", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.99", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.10", - "Display": "Hallucinogen abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.11", - "Display": "Hallucinogen abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.120", - "Display": "Hallucinogen abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.121", - "Display": "Hallucinogen abuse with intoxication with delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.122", - "Display": "Hallucinogen abuse with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.129", - "Display": "Hallucinogen abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.14", - "Display": "Hallucinogen abuse with hallucinogen-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.150", - "Display": "Hallucinogen abuse with hallucinogen-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.151", - "Display": "Hallucinogen abuse with hallucinogen-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.159", - "Display": "Hallucinogen abuse with hallucinogen-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.180", - "Display": "Hallucinogen abuse with hallucinogen-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.183", - "Display": "Hallucinogen abuse with hallucinogen persisting perception disorder (flashbacks)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.188", - "Display": "Hallucinogen abuse with other hallucinogen-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.19", - "Display": "Hallucinogen abuse with unspecified hallucinogen-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.20", - "Display": "Hallucinogen dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.21", - "Display": "Hallucinogen dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.220", - "Display": "Hallucinogen dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.221", - "Display": "Hallucinogen dependence with intoxication with delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.229", - "Display": "Hallucinogen dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.24", - "Display": "Hallucinogen dependence with hallucinogen-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.250", - "Display": "Hallucinogen dependence with hallucinogen-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.251", - "Display": "Hallucinogen dependence with hallucinogen-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.259", - "Display": "Hallucinogen dependence with hallucinogen-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.280", - "Display": "Hallucinogen dependence with hallucinogen-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.283", - "Display": "Hallucinogen dependence with hallucinogen persisting perception disorder (flashbacks)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.288", - "Display": "Hallucinogen dependence with other hallucinogen-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.29", - "Display": "Hallucinogen dependence with unspecified hallucinogen-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.90", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.920", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.921", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.929", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.94", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.950", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.951", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.959", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.980", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.983", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.988", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.99", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.10", - "Display": "Inhalant abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.11", - "Display": "Inhalant abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.120", - "Display": "Inhalant abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.121", - "Display": "Inhalant abuse with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.129", - "Display": "Inhalant abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.14", - "Display": "Inhalant abuse with inhalant-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.150", - "Display": "Inhalant abuse with inhalant-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.151", - "Display": "Inhalant abuse with inhalant-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.159", - "Display": "Inhalant abuse with inhalant-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.17", - "Display": "Inhalant abuse with inhalant-induced dementia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.180", - "Display": "Inhalant abuse with inhalant-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.188", - "Display": "Inhalant abuse with other inhalant-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.19", - "Display": "Inhalant abuse with unspecified inhalant-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.20", - "Display": "Inhalant dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.21", - "Display": "Inhalant dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.220", - "Display": "Inhalant dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.221", - "Display": "Inhalant dependence with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.229", - "Display": "Inhalant dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.24", - "Display": "Inhalant dependence with inhalant-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.250", - "Display": "Inhalant dependence with inhalant-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.251", - "Display": "Inhalant dependence with inhalant-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.259", - "Display": "Inhalant dependence with inhalant-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.27", - "Display": "Inhalant dependence with inhalant-induced dementia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.280", - "Display": "Inhalant dependence with inhalant-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.288", - "Display": "Inhalant dependence with other inhalant-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.29", - "Display": "Inhalant dependence with unspecified inhalant-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.90", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.920", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.921", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.929", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.94", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.950", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.951", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.959", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.97", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.980", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.988", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.99", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.10", - "Display": "Other psychoactive substance abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.11", - "Display": "Other psychoactive substance abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.120", - "Display": "Other psychoactive substance abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.121", - "Display": "Other psychoactive substance abuse with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.122", - "Display": "Other psychoactive substance abuse with intoxication with perceptual disturbances" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.129", - "Display": "Other psychoactive substance abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.14", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.150", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.151", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.159", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.16", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced persisting amnestic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.17", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced persisting dementia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.180", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.181", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.182", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.188", - "Display": "Other psychoactive substance abuse with other psychoactive substance-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.19", - "Display": "Other psychoactive substance abuse with unspecified psychoactive substance-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.20", - "Display": "Other psychoactive substance dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.21", - "Display": "Other psychoactive substance dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.220", - "Display": "Other psychoactive substance dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.221", - "Display": "Other psychoactive substance dependence with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.222", - "Display": "Other psychoactive substance dependence with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.229", - "Display": "Other psychoactive substance dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.230", - "Display": "Other psychoactive substance dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.231", - "Display": "Other psychoactive substance dependence with withdrawal delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.232", - "Display": "Other psychoactive substance dependence with withdrawal with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.239", - "Display": "Other psychoactive substance dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.24", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.250", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.251", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.259", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.26", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced persisting amnestic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.27", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced persisting dementia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.280", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.281", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.282", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.288", - "Display": "Other psychoactive substance dependence with other psychoactive substance-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.29", - "Display": "Other psychoactive substance dependence with unspecified psychoactive substance-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.90", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.920", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.921", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.922", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.929", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.930", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.931", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.932", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.939", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.94", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.950", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.951", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.959", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.96", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.97", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.980", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.981", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.982", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.988", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.99", - "Display": "Other psychoactive substance use" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.464.1003.109.12.1011.json b/build/main/resources/2.16.840.1.113883.3.464.1003.109.12.1011.json deleted file mode 100644 index b421cfc..0000000 --- a/build/main/resources/2.16.840.1.113883.3.464.1003.109.12.1011.json +++ /dev/null @@ -1,314 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "180272001", - "Display": "Insertion of chronic ambulatory peritoneal dialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "180277007", - "Display": "Insertion of temporary peritoneal dialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225892009", - "Display": "Revision of arteriovenous shunt for renal dialysis (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22800003", - "Display": "Removal of thrombus from arteriovenous shunt or cannula (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233468004", - "Display": "Creation of Cimino fistula (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233471007", - "Display": "Creation of external arteriovenous shunt (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233472000", - "Display": "Creation of Scribner shunt (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233547003", - "Display": "Cannulation of arteriovenous dialysis fistula (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238314006", - "Display": "Renewal of chronic ambulatory peritoneal dialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238315007", - "Display": "Adjustment of chronic ambulatory peritoneal dialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271418008", - "Display": "Chronic ambulatory peritoneal dialysis catheter procedure (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34163007", - "Display": "Revision of arteriovenous fistula with thrombectomy with nonautogenous graft (procedure)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36800", - "Display": "Insertion of cannula for hemodialysis" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36810", - "Display": "Insertion of cannula for hemodialysis" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36815", - "Display": "Insertion of cannula for hemodialysis" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36818", - "Display": "Arteriovenous anastomosis" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36819", - "Display": "Arteriovenous anastomosis" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36820", - "Display": "Arteriovenous anastomosis" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36821", - "Display": "Arteriovenous anastomosis" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36831", - "Display": "Thrombectomy" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36832", - "Display": "Revision" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36833", - "Display": "Revision" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426340003", - "Display": "Creation of graft fistula for dialysis (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427992007", - "Display": "Removal of thrombus of arteriovenous fistula (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428118009", - "Display": "Procedure involving peritoneal dialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431418000", - "Display": "Fluoroscopic percutaneous angiography of dialysis fistula with insertion of drug eluting stent (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431440009", - "Display": "Fluoroscopic angiography of dialysis fistula using contrast with insertion of stent (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431781000", - "Display": "Insertion of tunneled dialysis catheter using fluoroscopic guidance (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432509002", - "Display": "Insertion of dialysis catheter using doppler ultrasound guidance (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432654009", - "Display": "Insertion of peritoneal dialysis catheter using fluoroscopy guidance (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434435000", - "Display": "Fluoroscopic angiography of dialysis fistula using contrast with insertion of stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "438341004", - "Display": "Laparoscopic insertion of peritoneal dialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "438342006", - "Display": "Replacement of peritoneal dialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "439241008", - "Display": "Open arteriovenous anastomosis by transposition of forearm vein (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "439322008", - "Display": "Open arteriovenous anastomosis by transposition of basilic vein of upper arm (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "439349008", - "Display": "Open arteriovenous anastomosis by transposition of cephalic vein of upper arm (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "439534001", - "Display": "Shaving of peritoneal dialysis catheter cuff (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443683004", - "Display": "Open revision of arteriovenous fistula using graft with removal of thrombus (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448591002", - "Display": "Repositioning of Tenckhoff catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449400003", - "Display": "Removal of blood clot from arteriovenous fistula (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "450865002", - "Display": "Insertion of nontunneled hemodialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54817007", - "Display": "Arteriovenous shunt for renal dialysis by external cannula (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61160002", - "Display": "Direct arteriovenous anastomosis (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61740001", - "Display": "Insertion of cannula for hemodialysis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63421002", - "Display": "Insertion of cannula for hemodialysis (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "676002", - "Display": "Peritoneal dialysis including cannulation (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69380006", - "Display": "Venous catheterization for renal dialysis (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "736919006", - "Display": "Insertion of hemodialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "736922008", - "Display": "Insertion of tunneled hemodialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7459007", - "Display": "Revision of arteriovenous fistula with thrombectomy with autogenous graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79827002", - "Display": "Arteriovenous anastomosis for renal dialysis (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80634002", - "Display": "Revision of vessel-to-vessel arteriovenous cannula (procedure)" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.464.1003.117.12.1016.json b/build/main/resources/2.16.840.1.113883.3.464.1003.117.12.1016.json deleted file mode 100644 index 8b31a5f..0000000 --- a/build/main/resources/2.16.840.1.113883.3.464.1003.117.12.1016.json +++ /dev/null @@ -1,116 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19034001", - "Display": "Hyperparathyroidism due to renal insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237653008", - "Display": "Familial primary hyperparathyroidism (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "252.00", - "Display": "Hyperparathyroidism" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "252.01", - "Display": "Primary hyperparathyroidism" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "252.02", - "Display": "Secondary hyperparathyroidism" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "252.08", - "Display": "Other hyperparathyroidism" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "361128007", - "Display": "Hyperparathyroidism caused by lithium therapy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36348003", - "Display": "Primary hyperparathyroidism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "363627009", - "Display": "Parathyromatosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47445009", - "Display": "Hyperparathyroidism due to vitamin D deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66999008", - "Display": "Hyperparathyroidism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78200003", - "Display": "Tertiary hyperparathyroidism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78625002", - "Display": "Hyperparathyroidism due to intestinal malabsorption (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9092004", - "Display": "Parathyroid hyperplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91478007", - "Display": "Secondary hyperparathyroidism (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E21.0", - "Display": "Primary hyperparathyroidism" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E21.1", - "Display": "Secondary hyperparathyroidism" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E21.2", - "Display": "Other hyperparathyroidism" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E21.3", - "Display": "Hyperparathyroidism" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.464.1003.120.12.1003.json b/build/main/resources/2.16.840.1.113883.3.464.1003.120.12.1003.json deleted file mode 100644 index a554b92..0000000 --- a/build/main/resources/2.16.840.1.113883.3.464.1003.120.12.1003.json +++ /dev/null @@ -1,1286 +0,0 @@ -[ - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "042", - "Display": "Human immunodeficiency virus [HIV] disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "079.53", - "Display": "Human immunodeficiency virus" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10746341000119109", - "Display": "Acquired immune deficiency syndrome complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10755671000119100", - "Display": "Human immunodeficiency virus in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111880001", - "Display": "Acute human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15928141000119107", - "Display": "Cognitive impairment co-occurrent and due to human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165816005", - "Display": "Human immunodeficiency virus positive (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186706006", - "Display": "Human immunodeficiency virus infection constitutional disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186707002", - "Display": "Human immunodeficiency virus infection with neurological disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186708007", - "Display": "Human immunodeficiency virus infection with secondary clinical infectious disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230180003", - "Display": "Human immunodeficiency virus leukoencephalopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230202002", - "Display": "Vacuolar myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230598008", - "Display": "Neuropathy caused by human immunodeficiency virus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235009000", - "Display": "Human immunodeficiency virus-associated periodontitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235726002", - "Display": "Human immunodeficiency virus enteropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236406007", - "Display": "Acquired immune deficiency syndrome-related nephropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240103002", - "Display": "Human immunodeficiency virus myopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276665006", - "Display": "Congenital acquired immune deficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276666007", - "Display": "Congenital human immunodeficiency virus positive status syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "315019000", - "Display": "Human immunodeficiency virus infection with aseptic meningitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397763006", - "Display": "Human immunodeficiency virus encephalopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398329009", - "Display": "Human immunodeficiency virus encephalitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402901009", - "Display": "Oral hairy leukoplakia associated with human immunodeficiency virus disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "405631006", - "Display": "Pediatric human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "406109008", - "Display": "Human immunodeficiency virus enzyme-linked immunosorbent assay test positive (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40780007", - "Display": "Human immunodeficiency virus I infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414604009", - "Display": "Leukoplakia of tongue associated with human immunodeficiency virus disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416729007", - "Display": "Neutropenia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420244003", - "Display": "Encephalitis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420281004", - "Display": "Skin rash associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420302007", - "Display": "Reticulosarcoma associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420308006", - "Display": "Retinal vascular changes associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420321004", - "Display": "Intestinal malabsorption associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420384005", - "Display": "Hematopoietic system disease associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420395004", - "Display": "Acute endocarditis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420403001", - "Display": "Pneumocystosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420452002", - "Display": "Myelopathy associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420524008", - "Display": "Kaposi's sarcoma associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420543008", - "Display": "Anemia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420544002", - "Display": "Bacterial pneumonia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420549007", - "Display": "Salivary gland disease associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420554003", - "Display": "Progressive multifocal leukoencephalopathy associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420614009", - "Display": "Organic dementia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420658009", - "Display": "Radiculitis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420687005", - "Display": "Ill-defined intestinal infection associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420691000", - "Display": "Nutritional deficiency associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420718004", - "Display": "Central nervous system demyelinating disease associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420721002", - "Display": "Acquired immunodeficiency syndrome-associated disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420764009", - "Display": "Salmonella infection associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420774007", - "Display": "Organic brain syndrome associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420787001", - "Display": "Pneumococcal pneumonia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420801006", - "Display": "Malaise associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420818005", - "Display": "Mycobacteriosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420877009", - "Display": "Dermatomycosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420900006", - "Display": "Fatigue associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420938005", - "Display": "Subacute endocarditis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420945005", - "Display": "Histoplasmosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421020000", - "Display": "Microsporidiosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421023003", - "Display": "Presenile dementia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421047005", - "Display": "Candidiasis of lung associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421077004", - "Display": "Disseminated candidiasis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421102007", - "Display": "Aplastic anemia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421230000", - "Display": "Hepatomegaly associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421272004", - "Display": "Subacute myocarditis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421283008", - "Display": "Primary lymphoma of brain associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421312009", - "Display": "Agranulocytosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421315006", - "Display": "Myelitis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421394009", - "Display": "Skin disorder associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421403008", - "Display": "Cryptococcosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421415007", - "Display": "Subacute adenoviral encephalitis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421431004", - "Display": "Nocardiosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421454008", - "Display": "Infectious gastroenteritis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421460008", - "Display": "Retinopathy associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421508002", - "Display": "Viral pneumonia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421529006", - "Display": "Dementia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421571007", - "Display": "Tuberculosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421597001", - "Display": "Polyneuropathy associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421660003", - "Display": "Failure to thrive in infant associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421671002", - "Display": "Pneumonia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421695000", - "Display": "Abnormal weight loss associated with acquired immunodeficiency syndrome (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421706001", - "Display": "Blindness associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421708000", - "Display": "Infective arthritis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421710003", - "Display": "Candidiasis of mouth associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421766003", - "Display": "Thrombocytopenia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421827003", - "Display": "Encephalopathy associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421851008", - "Display": "Acquired hemolytic anemia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421874007", - "Display": "Respiratory disorder associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421883002", - "Display": "Strongyloidiasis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421929001", - "Display": "Myocarditis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421983003", - "Display": "Noninfectious gastroenteritis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421998001", - "Display": "Central nervous disorder associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422003001", - "Display": "Cachexia associated with acquired immunodeficiency syndrome (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422012004", - "Display": "Neuritis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422089004", - "Display": "Encephalomyelitis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422127002", - "Display": "Herpes zoster associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422136003", - "Display": "Neuralgia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422177004", - "Display": "Dyspnea associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422189002", - "Display": "Low vision associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422194002", - "Display": "Hyperhidrosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422282000", - "Display": "Malignant neoplasm associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422337001", - "Display": "Coccidioidomycosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432218001", - "Display": "History of asymptomatic human immunodeficiency virus infection (situation)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442537007", - "Display": "Non-Hodgkin lymphoma associated with Human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442662004", - "Display": "Copies of human immunodeficiency virus ribonucleic acid above reference range (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445945000", - "Display": "Infectious disease associated with acquired immune deficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48794007", - "Display": "Human immunodeficiency virus infection with infectious mononucleosis-like syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52079000", - "Display": "Congenital human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62479008", - "Display": "Acquired immune deficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "697904001", - "Display": "Pulmonary arterial hypertension associated with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "697965002", - "Display": "Cholangitis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699433000", - "Display": "Human immunodeficiency virus carrier (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700053002", - "Display": "Sepsis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713260006", - "Display": "Subacute adenoviral encephalitis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713275003", - "Display": "Splenomegaly co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713278001", - "Display": "Neuralgia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713297001", - "Display": "Candidiasis of esophagus co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713298006", - "Display": "Heart disease co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713299003", - "Display": "Disorder of eye proper co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713300006", - "Display": "Disorder of gastrointestinal tract co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713316008", - "Display": "Eruption of skin co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713318009", - "Display": "Myocarditis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713320007", - "Display": "Radiculitis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713325002", - "Display": "Primary cerebral lymphoma co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713339002", - "Display": "Infection caused by Strongyloides co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713340000", - "Display": "Disorder of skin co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713341001", - "Display": "Myelitis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713342008", - "Display": "Infection caused by Salmonella co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713349004", - "Display": "Anemia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713444005", - "Display": "Hemophagocytic syndrome co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713445006", - "Display": "Disseminated infection caused by Strongyloides co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713446007", - "Display": "Chronic infection caused by herpes simplex virus co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713483007", - "Display": "Reticulosarcoma co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713484001", - "Display": "Disorder of respiratory system co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713487008", - "Display": "Progressive multifocal leukoencephalopathy co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713488003", - "Display": "Presenile dementia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713489006", - "Display": "Polyneuropathy co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713490002", - "Display": "Infection caused by Pneumocystis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713491003", - "Display": "Organic brain syndrome co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713497004", - "Display": "Candidiasis of mouth co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713503007", - "Display": "Disorder of spinal cord co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713504001", - "Display": "Disorder of kidney co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713505000", - "Display": "Gastrointestinal malabsorption syndrome co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713506004", - "Display": "Neuritis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713507008", - "Display": "Lymphadenopathy co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713508003", - "Display": "Aplastic anemia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713510001", - "Display": "Enlargement of liver co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713511002", - "Display": "Acute endocarditis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713523008", - "Display": "Cardiomyopathy co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713526000", - "Display": "Recurrent bacterial pneumonia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713527009", - "Display": "Disorder of peripheral nervous system co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713530002", - "Display": "Agranulocytosis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713531003", - "Display": "Visual impairment co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713532005", - "Display": "Infective arthritis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713533000", - "Display": "Acquired hemolytic anemia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713543002", - "Display": "Demyelinating disease of central nervous system co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713544008", - "Display": "Bacterial pneumonia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713545009", - "Display": "Infection caused by Nocardia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713546005", - "Display": "Isosporiasis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713570009", - "Display": "Infectious gastroenteritis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713571008", - "Display": "Disorder of central nervous system co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713572001", - "Display": "Malignant neoplastic disease co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713695001", - "Display": "Nephrotic syndrome co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713696000", - "Display": "Renal failure syndrome co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713718006", - "Display": "Diffuse non-Hodgkin immunoblastic lymphoma co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713722001", - "Display": "Infection caused by Cytomegalovirus co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713729005", - "Display": "Infection caused by Coccidia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713730000", - "Display": "Infection caused by herpes simplex virus co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713731001", - "Display": "Pyrexia of unknown origin co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713732008", - "Display": "Infection caused by Aspergillus co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713733003", - "Display": "Infection caused by herpes zoster virus co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713734009", - "Display": "Infection caused by Dermatophyte co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713742005", - "Display": "Human immunodeficiency virus antibody positive (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713844000", - "Display": "Dementia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713845004", - "Display": "Infection caused by Cryptosporidium co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713880000", - "Display": "Opportunistic mycosis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713881001", - "Display": "Infection caused by Microsporidia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713887002", - "Display": "Focal segmental glomerulosclerosis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713897006", - "Display": "Burkitt lymphoma co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713964006", - "Display": "Multidermatomal infection caused by Herpes zoster co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713967004", - "Display": "Disseminated atypical infection caused by Mycobacterium co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714083007", - "Display": "Recurrent salmonella sepsis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714464009", - "Display": "Immune reconstitution inflammatory syndrome caused by human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719522009", - "Display": "Infection of upper respiratory tract caused by Candida co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721166000", - "Display": "Human immunodeficiency virus complicating pregnancy childbirth and the puerperium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722557007", - "Display": "Parkinsonism due to human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "733834006", - "Display": "Invasive carcinoma of uterine cervix co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "733835007", - "Display": "Extrapulmonary tuberculosis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735521001", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 1 co-occurrent with tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735522008", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 1 co-occurrent with malaria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735523003", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 2 co-occurrent with tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735524009", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 2 co-occurrent with malaria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735525005", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 3 co-occurrent with tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735526006", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 3 co-occurrent with malaria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735527002", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 4 co-occurrent with tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735528007", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 4 co-occurrent with malaria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "771119002", - "Display": "Infection caused by Coccidia co-occurrent with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "771126002", - "Display": "Infection caused by Toxoplasma gondii co-occurrent with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "771127006", - "Display": "Infection caused by Isospora co-occurrent with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79019005", - "Display": "Human immunodeficiency virus II infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80191000119101", - "Display": "Symptomatic human immunodeficiency virus I infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81000119104", - "Display": "Symptomatic human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "838377003", - "Display": "Chronic hepatitis C co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "840442003", - "Display": "Encephalitis caused by human immunodeficiency virus type 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "840498003", - "Display": "Encephalitis caused by human immunodeficiency virus type 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86406008", - "Display": "Human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87117006", - "Display": "Human immunodeficiency virus infection with acute lymphadenitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90681000119107", - "Display": "Asymptomatic human immunodeficiency virus A1 infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90691000119105", - "Display": "Asymptomatic human immunodeficiency virus A2 infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91947003", - "Display": "Asymptomatic human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91948008", - "Display": "Asymptomatic human immunodeficiency virus infection in pregnancy (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B20", - "Display": "Human immunodeficiency virus [HIV] disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B97.35", - "Display": "Human immunodeficiency virus" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "V08", - "Display": "Asymptomatic human immunodeficiency virus [HIV] infection status" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Z21", - "Display": "Asymptomatic human immunodeficiency virus [HIV] infection status" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.526.3.327.json b/build/main/resources/2.16.840.1.113883.3.526.3.327.json deleted file mode 100644 index 7d2a9d8..0000000 --- a/build/main/resources/2.16.840.1.113883.3.526.3.327.json +++ /dev/null @@ -1,1400 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193349004", - "Display": "Preproliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193350004", - "Display": "Advanced maculopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "232020009", - "Display": "Disorder of macula due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "232021008", - "Display": "Proliferative retinopathy with optic disc neovascularization due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "232022001", - "Display": "Proliferative retinopathy with neovascularization elsewhere than the optic disc due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "232023006", - "Display": "Traction detachment of retina due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25412000", - "Display": "Microaneurysm of retinal artery due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311782002", - "Display": "Advanced retinal disease due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312903003", - "Display": "Mild nonproliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312904009", - "Display": "Moderate nonproliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312905005", - "Display": "Severe nonproliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312906006", - "Display": "Non-high-risk proliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312907002", - "Display": "High risk proliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312908007", - "Display": "Quiescent proliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312909004", - "Display": "Proliferative retinopathy with iris neovascularization due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312912001", - "Display": "Macular edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314010006", - "Display": "Diffuse exudative maculopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314011005", - "Display": "Focal exudative maculopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314014002", - "Display": "Ischemic maculopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314015001", - "Display": "Mixed maculopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "390834004", - "Display": "Nonproliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399862001", - "Display": "High risk proliferative retinopathy without macular edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399863006", - "Display": "Very severe nonproliferative retinopathy without macular edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399864000", - "Display": "Macular edema not clinically significant due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399865004", - "Display": "Very severe proliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399866003", - "Display": "Venous beading of retina due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399868002", - "Display": "Intraretinal microvascular anomaly due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399869005", - "Display": "High risk proliferative retinopathy not amenable to photocoagulation due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399870006", - "Display": "Non-high-risk proliferative retinopathy with no macular edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399871005", - "Display": "Visually threatening retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399872003", - "Display": "Severe nonproliferative retinopathy with clinically significant macular edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399873008", - "Display": "Severe nonproliferative retinopathy without macular edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399874002", - "Display": "High risk proliferative retinopathy with clinically significant macula edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399875001", - "Display": "Non-high-risk proliferative retinopathy with clinically significant macular edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399876000", - "Display": "Very severe nonproliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399877009", - "Display": "Very severe nonproliferative retinopathy with clinically significant macular edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420486006", - "Display": "Exudative maculopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420789003", - "Display": "Retinopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421779007", - "Display": "Exudative maculopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422034002", - "Display": "Retinopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4855003", - "Display": "Retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59276001", - "Display": "Proliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870420005", - "Display": "Severe nonproliferative retinopathy with venous beading of retina due to diabetes mellitus (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.311", - "Display": "Diabetes mellitus due to underlying condition with unspecified diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.319", - "Display": "Diabetes mellitus due to underlying condition with unspecified diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3211", - "Display": "Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3212", - "Display": "Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3213", - "Display": "Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3291", - "Display": "Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3292", - "Display": "Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3293", - "Display": "Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3311", - "Display": "Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3312", - "Display": "Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3313", - "Display": "Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3391", - "Display": "Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3392", - "Display": "Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3393", - "Display": "Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3411", - "Display": "Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3412", - "Display": "Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3413", - "Display": "Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3491", - "Display": "Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3492", - "Display": "Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3493", - "Display": "Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3511", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3512", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3513", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3521", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3522", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3523", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3531", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3532", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3533", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3541", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3542", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3543", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3551", - "Display": "Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3552", - "Display": "Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3553", - "Display": "Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3591", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3592", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3593", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.311", - "Display": "Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.319", - "Display": "Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3211", - "Display": "Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3212", - "Display": "Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3213", - "Display": "Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3291", - "Display": "Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3292", - "Display": "Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3293", - "Display": "Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3311", - "Display": "Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3312", - "Display": "Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3313", - "Display": "Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3391", - "Display": "Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3392", - "Display": "Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3393", - "Display": "Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3411", - "Display": "Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3412", - "Display": "Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3413", - "Display": "Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3491", - "Display": "Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3492", - "Display": "Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3493", - "Display": "Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3511", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3512", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3513", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3521", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3522", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3523", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3531", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3532", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3533", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3541", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3542", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3543", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3551", - "Display": "Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3552", - "Display": "Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3553", - "Display": "Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3591", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3592", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3593", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.311", - "Display": "Type 1 diabetes mellitus with unspecified diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.319", - "Display": "Type 1 diabetes mellitus with unspecified diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3211", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3212", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3213", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3291", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3292", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3293", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3311", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3312", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3313", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3391", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3392", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3393", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3411", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3412", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3413", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3491", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3492", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3493", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3511", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3512", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3513", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3521", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3522", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3523", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3531", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3532", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3533", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3541", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3542", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3543", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3551", - "Display": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3552", - "Display": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3553", - "Display": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3591", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3592", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3593", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.311", - "Display": "Type 2 diabetes mellitus with unspecified diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.319", - "Display": "Type 2 diabetes mellitus with unspecified diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3211", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3212", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3213", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3291", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3292", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3293", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3311", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3312", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3313", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3391", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3392", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3393", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3411", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3412", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3413", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3491", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3492", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3493", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3511", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3512", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3513", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3521", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3522", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3523", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3531", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3532", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3533", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3541", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3542", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3543", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3551", - "Display": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3552", - "Display": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3553", - "Display": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3591", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3592", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3593", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.311", - "Display": "Other specified diabetes mellitus with unspecified diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.319", - "Display": "Other specified diabetes mellitus with unspecified diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3211", - "Display": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3212", - "Display": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3213", - "Display": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3291", - "Display": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3292", - "Display": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3293", - "Display": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3311", - "Display": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3312", - "Display": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3313", - "Display": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3391", - "Display": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3392", - "Display": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3393", - "Display": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3411", - "Display": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3412", - "Display": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3413", - "Display": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3491", - "Display": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3492", - "Display": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3493", - "Display": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3511", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3512", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3513", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3521", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3522", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3523", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3531", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3532", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3533", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3541", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3542", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3543", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3551", - "Display": "Other specified diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3552", - "Display": "Other specified diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3553", - "Display": "Other specified diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3591", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3592", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3593", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.526.3.369.json b/build/main/resources/2.16.840.1.113883.3.526.3.369.json deleted file mode 100644 index a0cf76d..0000000 --- a/build/main/resources/2.16.840.1.113883.3.526.3.369.json +++ /dev/null @@ -1,632 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10365005", - "Display": "Right main coronary artery thrombosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123641001", - "Display": "Left coronary artery occlusion (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123642008", - "Display": "Right coronary artery occlusion (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19057007", - "Display": "Status anginosus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194823009", - "Display": "Acute coronary insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194828000", - "Display": "Angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194842008", - "Display": "Single coronary vessel disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194843003", - "Display": "Double coronary vessel disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "21470009", - "Display": "Syncope anginosa (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233817007", - "Display": "Triple vessel disease of the heart (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233819005", - "Display": "Stable angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233821000", - "Display": "New onset angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233970002", - "Display": "Coronary artery stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28248000", - "Display": "Left anterior descending coronary artery thrombosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29899005", - "Display": "Coronary artery embolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "300995000", - "Display": "Exercise-induced angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314116003", - "Display": "Post infarct angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "315025001", - "Display": "Refractory angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "315348000", - "Display": "Asymptomatic coronary heart disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35928006", - "Display": "Nocturnal angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371803003", - "Display": "Multi vessel coronary artery disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371804009", - "Display": "Left main coronary artery disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371805005", - "Display": "Significant coronary bypass graft disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371806006", - "Display": "Progressive angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371807002", - "Display": "Atypical angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371808007", - "Display": "Recurrent angina status post percutaneous transluminal coronary angioplasty (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371809004", - "Display": "Recurrent angina status post coronary stent placement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371810009", - "Display": "Recurrent angina status post coronary artery bypass graft (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371811008", - "Display": "Recurrent angina status post rotational atherectomy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371812001", - "Display": "Recurrent angina status post directional coronary atherectomy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398274000", - "Display": "Coronary artery thrombosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "408546009", - "Display": "Coronary artery bypass graft occlusion (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41334000", - "Display": "Angina" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420006002", - "Display": "Obliterative coronary artery disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421327009", - "Display": "Coronary artery stent thrombosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427919004", - "Display": "Coronary arteriosclerosis caused by radiation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429245005", - "Display": "Recurrent coronary arteriosclerosis after percutaneous transluminal coronary angioplasty (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429559004", - "Display": "Typical angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443502000", - "Display": "Atherosclerosis of coronary artery (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4557003", - "Display": "Preinfarction syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50570003", - "Display": "Aneurysm of coronary vessels (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53741008", - "Display": "Coronary arteriosclerosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59021001", - "Display": "Angina decubitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61490001", - "Display": "Angina" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62207008", - "Display": "Syphilitic ostial coronary disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63739005", - "Display": "Coronary occlusion (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67682002", - "Display": "Coronary artery atheroma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74218008", - "Display": "Coronary artery arising from main pulmonary artery (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75398000", - "Display": "Anomalous origin of coronary artery (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85284003", - "Display": "Angina" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87343002", - "Display": "Prinzmetal angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89323001", - "Display": "Angina" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92517006", - "Display": "Calcific coronary arteriosclerosis (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I20.0", - "Display": "Unstable angina" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I20.1", - "Display": "Angina pectoris with documented spasm" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I20.8", - "Display": "Other forms of angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I20.9", - "Display": "Angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I24.0", - "Display": "Acute coronary thrombosis not resulting in myocardial infarction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I24.8", - "Display": "Other forms of acute ischemic heart disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I24.9", - "Display": "Acute ischemic heart disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.10", - "Display": "Atherosclerotic heart disease of native coronary artery without angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.110", - "Display": "Atherosclerotic heart disease of native coronary artery with unstable angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.111", - "Display": "Atherosclerotic heart disease of native coronary artery with angina pectoris with documented spasm" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.118", - "Display": "Atherosclerotic heart disease of native coronary artery with other forms of angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.119", - "Display": "Atherosclerotic heart disease of native coronary artery with unspecified angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.5", - "Display": "Ischemic cardiomyopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.6", - "Display": "Silent myocardial ischemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.700", - "Display": "Atherosclerosis of coronary artery bypass graft(s)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.701", - "Display": "Atherosclerosis of coronary artery bypass graft(s)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.708", - "Display": "Atherosclerosis of coronary artery bypass graft(s)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.709", - "Display": "Atherosclerosis of coronary artery bypass graft(s)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.710", - "Display": "Atherosclerosis of autologous vein coronary artery bypass graft(s) with unstable angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.711", - "Display": "Atherosclerosis of autologous vein coronary artery bypass graft(s) with angina pectoris with documented spasm" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.718", - "Display": "Atherosclerosis of autologous vein coronary artery bypass graft(s) with other forms of angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.719", - "Display": "Atherosclerosis of autologous vein coronary artery bypass graft(s) with unspecified angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.720", - "Display": "Atherosclerosis of autologous artery coronary artery bypass graft(s) with unstable angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.721", - "Display": "Atherosclerosis of autologous artery coronary artery bypass graft(s) with angina pectoris with documented spasm" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.728", - "Display": "Atherosclerosis of autologous artery coronary artery bypass graft(s) with other forms of angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.729", - "Display": "Atherosclerosis of autologous artery coronary artery bypass graft(s) with unspecified angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.730", - "Display": "Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with unstable angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.731", - "Display": "Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with angina pectoris with documented spasm" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.738", - "Display": "Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with other forms of angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.739", - "Display": "Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with unspecified angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.750", - "Display": "Atherosclerosis of native coronary artery of transplanted heart with unstable angina" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.751", - "Display": "Atherosclerosis of native coronary artery of transplanted heart with angina pectoris with documented spasm" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.758", - "Display": "Atherosclerosis of native coronary artery of transplanted heart with other forms of angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.759", - "Display": "Atherosclerosis of native coronary artery of transplanted heart with unspecified angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.760", - "Display": "Atherosclerosis of bypass graft of coronary artery of transplanted heart with unstable angina" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.761", - "Display": "Atherosclerosis of bypass graft of coronary artery of transplanted heart with angina pectoris with documented spasm" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.768", - "Display": "Atherosclerosis of bypass graft of coronary artery of transplanted heart with other forms of angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.769", - "Display": "Atherosclerosis of bypass graft of coronary artery of transplanted heart with unspecified angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.790", - "Display": "Atherosclerosis of other coronary artery bypass graft(s) with unstable angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.791", - "Display": "Atherosclerosis of other coronary artery bypass graft(s) with angina pectoris with documented spasm" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.798", - "Display": "Atherosclerosis of other coronary artery bypass graft(s) with other forms of angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.799", - "Display": "Atherosclerosis of other coronary artery bypass graft(s) with unspecified angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.810", - "Display": "Atherosclerosis of coronary artery bypass graft(s) without angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.811", - "Display": "Atherosclerosis of native coronary artery of transplanted heart without angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.812", - "Display": "Atherosclerosis of bypass graft of coronary artery of transplanted heart without angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.82", - "Display": "Chronic total occlusion of coronary artery" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.83", - "Display": "Coronary atherosclerosis due to lipid rich plaque" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.89", - "Display": "Other forms of chronic ischemic heart disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.9", - "Display": "Chronic ischemic heart disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Z95.1", - "Display": "Presence of aortocoronary bypass graft" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Z95.5", - "Display": "Presence of coronary angioplasty implant and graft" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Z98.61", - "Display": "Coronary angioplasty status" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.526.3.376.json b/build/main/resources/2.16.840.1.113883.3.526.3.376.json deleted file mode 100644 index 5b9a84a..0000000 --- a/build/main/resources/2.16.840.1.113883.3.526.3.376.json +++ /dev/null @@ -1,566 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10091002", - "Display": "High output heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "101281000119107", - "Display": "Congestive heart failure due to cardiomyopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10633002", - "Display": "Acute congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111283005", - "Display": "Chronic left-sided heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "120851000119104", - "Display": "Systolic heart failure stage D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "120861000119102", - "Display": "Systolic heart failure stage C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "120871000119108", - "Display": "Systolic heart failure stage B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "120881000119106", - "Display": "Diastolic heart failure stage D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "120891000119109", - "Display": "Diastolic heart failure stage C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "120901000119108", - "Display": "Diastolic heart failure stage B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "153931000119109", - "Display": "Acute combined systolic and diastolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "153941000119100", - "Display": "Chronic combined systolic and diastolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "153951000119103", - "Display": "Acute on chronic combined systolic and diastolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15629541000119106", - "Display": "Congestive heart failure stage C due to ischemic cardiomyopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15629591000119103", - "Display": "Congestive heart failure stage B due to ischemic cardiomyopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15629641000119107", - "Display": "Systolic heart failure stage B due to ischemic cardiomyopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15629741000119102", - "Display": "Systolic heart failure stage C due to ischemic cardiomyopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15781000119107", - "Display": "Hypertensive heart AND chronic kidney disease with congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15964701000119109", - "Display": "Acute cor pulmonale co-occurrent and due to saddle embolus of pulmonary artery (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194767001", - "Display": "Benign hypertensive heart disease with congestive cardiac failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194779001", - "Display": "Hypertensive heart and renal disease with (congestive) heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194781004", - "Display": "Hypertensive heart and renal disease with both (congestive) heart failure and renal failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195111005", - "Display": "Decompensated cardiac failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195112003", - "Display": "Compensated cardiac failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195114002", - "Display": "Acute left ventricular failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "206586007", - "Display": "Congenital cardiac failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23341000119109", - "Display": "Congestive heart failure with right heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233924009", - "Display": "Heart failure as a complication of care (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25544003", - "Display": "Low output heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314206003", - "Display": "Refractory heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "364006", - "Display": "Acute left-sided heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410431009", - "Display": "Cardiorespiratory failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417996009", - "Display": "Systolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "418304008", - "Display": "Diastolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42343007", - "Display": "Congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424404003", - "Display": "Decompensated chronic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426263006", - "Display": "Congestive heart failure due to left ventricular systolic dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426611007", - "Display": "Congestive heart failure due to valvular disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43736008", - "Display": "Rheumatic left ventricular failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44088000", - "Display": "Low cardiac output syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441481004", - "Display": "Chronic systolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441530006", - "Display": "Chronic diastolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44313006", - "Display": "Right heart failure secondary to left heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443253003", - "Display": "Acute on chronic systolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443254009", - "Display": "Acute systolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443343001", - "Display": "Acute diastolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443344007", - "Display": "Acute on chronic diastolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46113002", - "Display": "Hypertensive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "471880001", - "Display": "Heart failure due to end stage congenital heart disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48447003", - "Display": "Chronic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5148006", - "Display": "Hypertensive heart disease with congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5375005", - "Display": "Chronic left-sided congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56675007", - "Display": "Acute heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67431000119105", - "Display": "Congestive heart failure stage D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67441000119101", - "Display": "Congestive heart failure stage C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698594003", - "Display": "Symptomatic congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703272007", - "Display": "Heart failure with reduced ejection fraction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703273002", - "Display": "Heart failure with reduced ejection fraction due to coronary artery disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703274008", - "Display": "Heart failure with reduced ejection fraction due to myocarditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703275009", - "Display": "Heart failure with reduced ejection fraction due to cardiomyopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703276005", - "Display": "Heart failure with reduced ejection fraction due to heart valve disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717840005", - "Display": "Congestive heart failure stage B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72481000119103", - "Display": "Congestive heart failure as early postoperative complication (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74960003", - "Display": "Acute left-sided congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82523003", - "Display": "Congestive rheumatic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83105008", - "Display": "Malignant hypertensive heart disease with congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84114007", - "Display": "Heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85232009", - "Display": "Left heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "871617000", - "Display": "Low output heart failure due to and following Fontan operation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88805009", - "Display": "Chronic congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90727007", - "Display": "Pleural effusion due to congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92506005", - "Display": "Biventricular congestive heart failure (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I11.0", - "Display": "Hypertensive heart disease with heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.0", - "Display": "Hypertensive heart and chronic kidney disease with heart failure and stage 1 through stage 4 chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.2", - "Display": "Hypertensive heart and chronic kidney disease with heart failure and with stage 5 chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.1", - "Display": "Left ventricular failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.20", - "Display": "Unspecified systolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.21", - "Display": "Acute systolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.22", - "Display": "Chronic systolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.23", - "Display": "Acute on chronic systolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.30", - "Display": "Unspecified diastolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.31", - "Display": "Acute diastolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.32", - "Display": "Chronic diastolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.33", - "Display": "Acute on chronic diastolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.40", - "Display": "Unspecified combined systolic (congestive) and diastolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.41", - "Display": "Acute combined systolic (congestive) and diastolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.42", - "Display": "Chronic combined systolic (congestive) and diastolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.43", - "Display": "Acute on chronic combined systolic (congestive) and diastolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.814", - "Display": "Right heart failure due to left heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.82", - "Display": "Biventricular heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.83", - "Display": "High output heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.84", - "Display": "End stage heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.89", - "Display": "Other heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.9", - "Display": "Heart failure" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.600.145.json b/build/main/resources/2.16.840.1.113883.3.600.145.json deleted file mode 100644 index 0f03b5d..0000000 --- a/build/main/resources/2.16.840.1.113883.3.600.145.json +++ /dev/null @@ -1,662 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10811121000119102", - "Display": "Major depressive disorder in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "133121000119109", - "Display": "Severe seasonal affective disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14183003", - "Display": "Chronic major depressive disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15193003", - "Display": "Severe recurrent major depression with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15639000", - "Display": "Moderate major depression" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18818009", - "Display": "Moderate recurrent major depression (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191604000", - "Display": "Single major depressive episode" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191610000", - "Display": "Recurrent major depressive episodes" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191611001", - "Display": "Recurrent major depressive episodes" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191613003", - "Display": "Recurrent major depressive episodes" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191616006", - "Display": "Recurrent depression (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191659001", - "Display": "Atypical depressive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "192080009", - "Display": "Chronic depression (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19527009", - "Display": "Single episode of major depression in full remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19694002", - "Display": "Late onset dysthymia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20250007", - "Display": "Severe major depression" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231504006", - "Display": "Mixed anxiety and depressive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231542000", - "Display": "Depressive conduct disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2506003", - "Display": "Early onset dysthymia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25922000", - "Display": "Major depressive disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2618002", - "Display": "Chronic recurrent major depressive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268621008", - "Display": "Recurrent major depressive episodes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28475009", - "Display": "Severe recurrent major depression with psychotic features (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "290.13", - "Display": "Presenile dementia with depressive features" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "290.21", - "Display": "Senile dementia with depressive features" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "290.43", - "Display": "Vascular dementia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.20", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.21", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.22", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.23", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.24", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.25", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.26", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.30", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.31", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.32", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.33", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.34", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.35", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.36", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.82", - "Display": "Atypical depressive disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "298.0", - "Display": "Depressive type psychosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "300.4", - "Display": "Dysthymic disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "301.12", - "Display": "Chronic depressive personality disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "309.0", - "Display": "Adjustment disorder with depressed mood" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "309.1", - "Display": "Prolonged depressive reaction" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "309.28", - "Display": "Adjustment disorder with mixed anxiety and depressed mood" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3109008", - "Display": "Secondary dysthymia early onset (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "311", - "Display": "Depressive disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "319768000", - "Display": "Recurrent major depressive disorder with melancholic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "320751009", - "Display": "Major depression" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33078009", - "Display": "Severe recurrent major depression with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35489007", - "Display": "Depressive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36170009", - "Display": "Secondary dysthymia late onset (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36474008", - "Display": "Severe recurrent major depression without psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36923009", - "Display": "Major depression" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "370143000", - "Display": "Major depressive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38451003", - "Display": "Primary dysthymia early onset (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38694004", - "Display": "Recurrent major depressive disorder with atypical features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39809009", - "Display": "Recurrent major depressive disorder with catatonic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40379007", - "Display": "Mild recurrent major depression (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40568001", - "Display": "Recurrent brief depressive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42925002", - "Display": "Major depressive disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "430852001", - "Display": "Severe major depression" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442057004", - "Display": "Chronic depressive personality disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48589009", - "Display": "Minor depressive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63778009", - "Display": "Major depressive disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66344007", - "Display": "Recurrent major depression (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67711008", - "Display": "Primary dysthymia late onset (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69392006", - "Display": "Major depressive disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71336009", - "Display": "Recurrent major depressive disorder with postpartum onset (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73867007", - "Display": "Severe major depression with psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75084000", - "Display": "Severe major depression without psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75837004", - "Display": "Mood disorder with depressive features due to general medical condition (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76441001", - "Display": "Severe major depression" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77486005", - "Display": "Mood disorder with major depressive-like episode due to general medical condition (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77911002", - "Display": "Severe major depression" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78667006", - "Display": "Dysthymia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79298009", - "Display": "Mild major depression" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81319007", - "Display": "Severe bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83176005", - "Display": "Primary dysthymia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "832007", - "Display": "Moderate major depression (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84760002", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85080004", - "Display": "Secondary dysthymia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87512008", - "Display": "Mild major depression (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F01.51", - "Display": "Vascular dementia with behavioral disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F32.0", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F32.1", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F32.2", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F32.3", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F32.4", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F32.5", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F32.89", - "Display": "Other specified depressive episodes" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F32.9", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.0", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.1", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.2", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.3", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.40", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.41", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.42", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.8", - "Display": "Other recurrent depressive disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.9", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F34.1", - "Display": "Dysthymic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F34.81", - "Display": "Disruptive mood dysregulation disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F34.89", - "Display": "Other specified persistent mood disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.21", - "Display": "Adjustment disorder with depressed mood" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.23", - "Display": "Adjustment disorder with mixed anxiety and depressed mood" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F53.0", - "Display": "Postpartum depression" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F53.1", - "Display": "Puerperal psychosis" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.600.450.json b/build/main/resources/2.16.840.1.113883.3.600.450.json deleted file mode 100644 index 4f5f40a..0000000 --- a/build/main/resources/2.16.840.1.113883.3.600.450.json +++ /dev/null @@ -1,962 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10875004", - "Display": "Severe mixed bipolar I disorder with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10981006", - "Display": "Severe mixed bipolar I disorder with psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111485001", - "Display": "Mixed bipolar I disorder in full remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1196001", - "Display": "Chronic bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "133091000119105", - "Display": "Rapid cycling bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13313007", - "Display": "Mild bipolar disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13581000", - "Display": "Severe bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13746004", - "Display": "Bipolar disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14495005", - "Display": "Severe bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1499003", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "162004", - "Display": "Severe manic bipolar I disorder without psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16295005", - "Display": "Bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16506000", - "Display": "Mixed bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17782008", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191618007", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191620005", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191621009", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191623007", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191625000", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191627008", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191629006", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191630001", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191634005", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191636007", - "Display": "Mixed bipolar affective disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191638008", - "Display": "Mixed bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191639000", - "Display": "Mixed bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191641004", - "Display": "Mixed bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191643001", - "Display": "Mixed bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "192362008", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19300006", - "Display": "Severe bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20960007", - "Display": "Severe bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "21900002", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22121000", - "Display": "Depressed bipolar I disorder in full remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22407005", - "Display": "Bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231444002", - "Display": "Organic bipolar disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23741000119105", - "Display": "Severe manic bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "261000119107", - "Display": "Severe depressed bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26203008", - "Display": "Severe depressed bipolar I disorder with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26530004", - "Display": "Severe bipolar disorder with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271000119101", - "Display": "Severe mixed bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28663008", - "Display": "Severe manic bipolar I disorder with psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28884001", - "Display": "Moderate bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.00", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.01", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.02", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.03", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.04", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.05", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.06", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.40", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.41", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.42", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.43", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.44", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.45", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.46", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.50", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.51", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.52", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.53", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.54", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.55", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.56", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.60", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.61", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.62", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.63", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.64", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.65", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.66", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.7", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.80", - "Display": "Bipolar disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.89", - "Display": "Other bipolar disorders" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29929003", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30520009", - "Display": "Severe bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30687003", - "Display": "Bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30935000", - "Display": "Manic bipolar I disorder in full remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31446002", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33380008", - "Display": "Severe manic bipolar I disorder with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34315001", - "Display": "Bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3530005", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35481005", - "Display": "Mixed bipolar I disorder in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35846004", - "Display": "Moderate bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36583000", - "Display": "Mixed bipolar I disorder in partial remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371596008", - "Display": "Bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371599001", - "Display": "Severe bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371600003", - "Display": "Severe bipolar disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371604007", - "Display": "Severe bipolar II disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38368003", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40926005", - "Display": "Moderate mixed bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41552001", - "Display": "Mild bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41832009", - "Display": "Severe bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41836007", - "Display": "Bipolar disorder in full remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43568002", - "Display": "Bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43769008", - "Display": "Mild mixed bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4441000", - "Display": "Severe bipolar disorder with psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "45479006", - "Display": "Manic bipolar I disorder in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46229002", - "Display": "Severe mixed bipolar I disorder without psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48937005", - "Display": "Bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49468007", - "Display": "Depressed bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49512000", - "Display": "Depressed bipolar I disorder in partial remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51637008", - "Display": "Chronic bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53049002", - "Display": "Severe bipolar disorder without psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53607008", - "Display": "Depressed bipolar I disorder in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54761006", - "Display": "Severe depressed bipolar I disorder with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55516002", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5703000", - "Display": "Bipolar disorder in partial remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59617007", - "Display": "Severe depressed bipolar I disorder with psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61403008", - "Display": "Severe depressed bipolar I disorder without psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63249007", - "Display": "Manic bipolar I disorder in partial remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "64731001", - "Display": "Severe mixed bipolar I disorder with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "65042007", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66631006", - "Display": "Moderate depressed bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68569003", - "Display": "Manic bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70546001", - "Display": "Severe bipolar disorder with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71294008", - "Display": "Mild bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71984005", - "Display": "Mild manic bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73471000", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74686005", - "Display": "Mild depressed bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75360000", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75752004", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78269000", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78640000", - "Display": "Severe manic bipolar I disorder with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79584002", - "Display": "Moderate bipolar disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81319007", - "Display": "Severe bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82998009", - "Display": "Moderate manic bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83225003", - "Display": "Bipolar II disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85248005", - "Display": "Bipolar disorder in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86058007", - "Display": "Severe bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87203005", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87950005", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9340000", - "Display": "Bipolar I disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.0", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.10", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.11", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.12", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.13", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.2", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.30", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.31", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.32", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.4", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.5", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.60", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.61", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.62", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.63", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.64", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.70", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.71", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.72", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.73", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.74", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.75", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.76", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.77", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.78", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.81", - "Display": "Bipolar II disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.89", - "Display": "Other bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.9", - "Display": "Bipolar disorder" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.67.1.101.1.269.json b/build/main/resources/2.16.840.1.113883.3.67.1.101.1.269.json deleted file mode 100644 index 303c0ea..0000000 --- a/build/main/resources/2.16.840.1.113883.3.67.1.101.1.269.json +++ /dev/null @@ -1,188 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1116000", - "Display": "Chronic aggressive type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111891008", - "Display": "Viral hepatitis B without hepatic coma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13265006", - "Display": "Acute fulminating type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186624004", - "Display": "Hepatic coma due to acute hepatitis B with delta agent (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186626002", - "Display": "Acute hepatitis B with delta-agent (coinfection) without hepatic coma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186639003", - "Display": "Chronic viral hepatitis B without delta-agent (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235864009", - "Display": "Acute hepatitis B with hepatitis D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235865005", - "Display": "Hepatitis D superinfection of hepatitis B carrier (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235869004", - "Display": "Chronic viral hepatitis B with hepatitis D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235871004", - "Display": "Hepatitis B carrier (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26206000", - "Display": "Hepatic coma due to viral hepatitis B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38662009", - "Display": "Chronic persistent type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424099008", - "Display": "Hepatic coma due to acute hepatitis B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424340000", - "Display": "Hepatic coma due to chronic hepatitis B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442134007", - "Display": "Hepatitis B associated with Human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442374005", - "Display": "Hepatitis B and hepatitis C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446698005", - "Display": "Reactivation of hepatitis B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50167007", - "Display": "Chronic active type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53425008", - "Display": "Anicteric type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60498001", - "Display": "Congenital viral hepatitis B infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61977001", - "Display": "Chronic type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66071002", - "Display": "Viral hepatitis type B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76795007", - "Display": "Acute type B viral hepatitis (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B16.0", - "Display": "Acute hepatitis B with delta-agent with hepatic coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B16.1", - "Display": "Acute hepatitis B with delta-agent without hepatic coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B16.2", - "Display": "Acute hepatitis B without delta-agent with hepatic coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B16.9", - "Display": "Acute hepatitis B without delta-agent and without hepatic coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B18.0", - "Display": "Chronic viral hepatitis B with delta-agent" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B18.1", - "Display": "Chronic viral hepatitis B without delta-agent" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B19.10", - "Display": "Unspecified viral hepatitis B without hepatic coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B19.11", - "Display": "Unspecified viral hepatitis B with hepatic coma" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.6929.2.1002.json b/build/main/resources/2.16.840.1.113883.3.6929.2.1002.json deleted file mode 100644 index 7367a43..0000000 --- a/build/main/resources/2.16.840.1.113883.3.6929.2.1002.json +++ /dev/null @@ -1,50 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "13705-9", - "Display": "Albumin/Creatinine [Mass Ratio] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14585-4", - "Display": "Albumin/Creatinine [Molar ratio] in Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14958-3", - "Display": "Microalbumin/Creatinine [Mass Ratio] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14959-1", - "Display": "Microalbumin/Creatinine [Mass Ratio] in Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "32294-1", - "Display": "Albumin/Creatinine [Ratio] in Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "44292-1", - "Display": "Microalbumin/Creatinine [Mass Ratio] in 12 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "76401-9", - "Display": "Albumin/Creatinine [Ratio] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "9318-7", - "Display": "Albumin/Creatinine [Mass Ratio] in Urine" - } -] \ No newline at end of file diff --git a/build/main/resources/2.16.840.1.113883.3.6929.3.1000.json b/build/main/resources/2.16.840.1.113883.3.6929.3.1000.json deleted file mode 100644 index a443516..0000000 --- a/build/main/resources/2.16.840.1.113883.3.6929.3.1000.json +++ /dev/null @@ -1,38 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.68", - "Code": "48642-3", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among non-blacks [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.68", - "Code": "48643-1", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among blacks [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.68", - "Code": "50044-7", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among females [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.68", - "Code": "50210-4", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.68", - "Code": "62238-1", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.68", - "Code": "70969-1", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among males [Volume Rate/Area] in Serum" - } -] \ No newline at end of file diff --git a/build/main/types/index.d.ts b/build/main/types/index.d.ts deleted file mode 100644 index 193fb35..0000000 --- a/build/main/types/index.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -export declare type ObservationMode = 'panel' | 'code' | 'component' | 'combo'; -export declare type ValueAsset = { - System: string; - Version: string; - Code: string; - Display: string; -}; diff --git a/build/main/types/index.js b/build/main/types/index.js deleted file mode 100644 index c9aadf1..0000000 --- a/build/main/types/index.js +++ /dev/null @@ -1,3 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zb3VyY2UvdHlwZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9 \ No newline at end of file diff --git a/build/main/types/mcc-observations.d.ts b/build/main/types/mcc-observations.d.ts deleted file mode 100644 index 6d78423..0000000 --- a/build/main/types/mcc-observations.d.ts +++ /dev/null @@ -1,171 +0,0 @@ -export declare type MccTime = { - value?: string; -}; -export declare type MccDateTime = { - rawDate: string; - date: string; -}; -export declare type MccInstant = { - value: string; -}; -export declare type MccDate = { - rawDate: string; - date: string; -}; -export declare type MccPeriod = { - start?: MccDate; - end?: MccDate; -}; -export declare type MccCoding = { - system?: string; - version?: string; - code: string; - display?: string; -}; -export declare type Repeat = { - bounds?: Bounds; - count?: number; - countMax?: number; - duration?: string; - durationMax?: string; - durationUnit?: string; - frequency?: number; - frequencyMax?: number; - period?: string; - periodMax?: string; - periodUnit?: string; - dayOfWeek?: Array; - timeOfDay?: Array; - when?: Array; - offset?: number; - readable?: string; -}; -export declare type MccQuantity = { - unit?: string; - comparator?: string; - value?: number; - system?: string; - code?: string; - display?: string; -}; -export declare type MccRange = { - high?: MccQuantity; - low?: MccQuantity; -}; -export declare type MccDuration = { - unit?: string; - comparator?: string; - value?: number; - system?: string; - code?: string; - display?: string; -}; -export declare type Bounds = { - type?: string; - range?: MccRange; - period?: MccPeriod; - duration?: MccDuration; -}; -export declare type MccCodeableConcept = { - coding?: Array; - text: string; -}; -export declare type MccTiming = { - event?: Array; - code?: MccCodeableConcept; - repeat?: Repeat; - readable: string; -}; -export declare type Effective = { - type?: string; - dateTime?: MccDateTime; - period?: MccPeriod; - timing?: MccTiming; - instant?: MccInstant; -}; -export declare type MccReference = { - reference?: string; - display?: string; - type?: string; -}; -export declare type MccId = { - value: string; -}; -export declare type MccRatio = { - numerator?: MccQuantity; - denominator?: MccQuantity; -}; -export declare type MccSimpleQuantity = { - unit?: string; - value?: number; - system?: string; - code?: string; - display?: string; -}; -export declare type MccSampledData = { - origin?: MccSimpleQuantity; - period?: number; - factor?: number; - lowerlimit?: number; - upperlimit?: number; - dimensions?: number; - data?: string; -}; -export declare type MccIdentifer = { - use?: string; - type?: MccCodeableConcept; - system?: string; - value?: string; - period?: MccPeriod; - assigner?: MccReference; -}; -export declare type GenericType = { - valueType: string; - stringValue?: string; - integerValue?: number; - booleanValue?: boolean; - idValue?: MccId; - codeableConceptValue?: MccCodeableConcept; - quantityValue?: MccQuantity; - rangeValue?: MccRange; - ratioValue?: MccRatio; - periodValue?: MccPeriod; - dateValue?: MccDate; - timeValue?: MccTime; - dateTimeValue?: MccDateTime; - sampledDataValue?: MccSampledData; - durationValue?: MccDuration; - timingValue?: MccTiming; - instantValue?: MccInstant; - identiferValue?: MccIdentifer; - codingValue?: MccCoding; - decimalValue?: number; -}; -export declare type ReferenceRange = { - low?: MccQuantity; - high?: MccQuantity; - type?: MccCodeableConcept; - appliesTo?: Array; - age?: MccRange; - text?: string; -}; -export declare type ObservationComponent = { - code: MccCodeableConcept; - value: GenericType; - interpretation?: Array; - dataAbsentReason?: MccCodeableConcept; - referenceRanges?: Array; -}; -export declare type MccObservation = { - code: MccCodeableConcept; - status: string; - basedOn?: Array; - effective?: Effective; - value?: GenericType; - note?: string; - referenceRanges?: Array; - components?: Array; - category?: Array; - dataAbsentReason?: MccCodeableConcept; - fhirid?: string; -}; diff --git a/build/main/types/mcc-observations.js b/build/main/types/mcc-observations.js deleted file mode 100644 index 12b0011..0000000 --- a/build/main/types/mcc-observations.js +++ /dev/null @@ -1,3 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWNjLW9ic2VydmF0aW9ucy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NvdXJjZS90eXBlcy9tY2Mtb2JzZXJ2YXRpb25zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ== \ No newline at end of file diff --git a/build/main/utils/loglevel.d.ts b/build/main/utils/loglevel.d.ts deleted file mode 100644 index 8e386e1..0000000 --- a/build/main/utils/loglevel.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -declare const logger: { - info: (message: any) => void; - debug: (message: any) => void; - error: (message: any) => void; -}; -export default logger; diff --git a/build/main/utils/loglevel.js b/build/main/utils/loglevel.js deleted file mode 100644 index a05adc4..0000000 --- a/build/main/utils/loglevel.js +++ /dev/null @@ -1,30 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const logger = { - info: (message) => { - if (typeof message === 'object') { - console.info(message); - } - else { - console.info(`EccDS: ${message}`); - } - }, - debug: (message) => { - if (typeof message === 'object') { - console.log(message); - } - else { - console.log(`EccDS: ${message}`); - } - }, - error: (message) => { - if (typeof message === 'object') { - console.warn(message); - } - else { - console.warn(`EccDS: ${message}`); - } - }, -}; -exports.default = logger; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9nbGV2ZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zb3VyY2UvdXRpbHMvbG9nbGV2ZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFBQSxNQUFNLE1BQU0sR0FBRztJQUNiLElBQUksRUFBRSxDQUFDLE9BQU8sRUFBRSxFQUFFO1FBQ2hCLElBQUksT0FBTyxPQUFPLEtBQUssUUFBUSxFQUFFO1lBQy9CLE9BQU8sQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUM7U0FDdkI7YUFBTTtZQUNMLE9BQU8sQ0FBQyxJQUFJLENBQUMsVUFBVSxPQUFPLEVBQUUsQ0FBQyxDQUFDO1NBQ25DO0lBQ0gsQ0FBQztJQUNELEtBQUssRUFBRSxDQUFDLE9BQU8sRUFBRSxFQUFFO1FBQ2pCLElBQUksT0FBTyxPQUFPLEtBQUssUUFBUSxFQUFFO1lBQy9CLE9BQU8sQ0FBQyxHQUFHLENBQUMsT0FBTyxDQUFDLENBQUM7U0FDdEI7YUFBTTtZQUNMLE9BQU8sQ0FBQyxHQUFHLENBQUMsVUFBVSxPQUFPLEVBQUUsQ0FBQyxDQUFDO1NBQ2xDO0lBQ0gsQ0FBQztJQUNELEtBQUssRUFBRSxDQUFDLE9BQU8sRUFBRSxFQUFFO1FBQ2pCLElBQUksT0FBTyxPQUFPLEtBQUssUUFBUSxFQUFFO1lBQy9CLE9BQU8sQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUM7U0FDdkI7YUFBTTtZQUNMLE9BQU8sQ0FBQyxJQUFJLENBQUMsVUFBVSxPQUFPLEVBQUUsQ0FBQyxDQUFDO1NBQ25DO0lBQ0gsQ0FBQztDQUNGLENBQUM7QUFFRixrQkFBZSxNQUFNLENBQUMifQ== \ No newline at end of file diff --git a/build/module/constants/mode.d.ts b/build/module/constants/mode.d.ts deleted file mode 100644 index ba75d93..0000000 --- a/build/module/constants/mode.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -export declare const EccMode: { - panel: string; - code: string; - combo: string; - component: string; -}; diff --git a/build/module/constants/mode.js b/build/module/constants/mode.js deleted file mode 100644 index 56dcf42..0000000 --- a/build/module/constants/mode.js +++ /dev/null @@ -1,7 +0,0 @@ -export const EccMode = { - panel: 'code', - code: 'code', - combo: 'combo-code', - component: 'component-code', -}; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NvdXJjZS9jb25zdGFudHMvbW9kZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsTUFBTSxPQUFPLEdBQUc7SUFDckIsS0FBSyxFQUFFLE1BQU07SUFDYixJQUFJLEVBQUUsTUFBTTtJQUNaLEtBQUssRUFBRSxZQUFZO0lBQ25CLFNBQVMsRUFBRSxnQkFBZ0I7Q0FDNUIsQ0FBQyJ9 \ No newline at end of file diff --git a/build/module/index.d.ts b/build/module/index.d.ts deleted file mode 100644 index c461522..0000000 --- a/build/module/index.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from './lib/observation/observation'; -export * from './lib/authorize/authorize'; -export * from './lib/questionnaire/questionnaire'; diff --git a/build/module/index.js b/build/module/index.js deleted file mode 100644 index 94285ee..0000000 --- a/build/module/index.js +++ /dev/null @@ -1,4 +0,0 @@ -export * from './lib/observation/observation'; -export * from './lib/authorize/authorize'; -export * from './lib/questionnaire/questionnaire'; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zb3VyY2UvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYywrQkFBK0IsQ0FBQztBQUM5QyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMsbUNBQW1DLENBQUMifQ== \ No newline at end of file diff --git a/build/module/lib/authorize.d.ts b/build/module/lib/authorize.d.ts deleted file mode 100644 index b6b2afe..0000000 --- a/build/module/lib/authorize.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -export declare const authorize: () => Promise; -export declare const checkAuthorize: () => Promise; diff --git a/build/module/lib/authorize.js b/build/module/lib/authorize.js deleted file mode 100644 index f3563bd..0000000 --- a/build/module/lib/authorize.js +++ /dev/null @@ -1,141 +0,0 @@ -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -import FHIR from 'fhirclient'; -export const authorize = () => __awaiter(void 0, void 0, void 0, function* () { - yield FHIR.oauth2.authorize({ - // Meld Synthea test data sandbox - redirectUri: '', - clientId: '9ff4f5c4-f07c-464f-8d4b-90b90a76bebf', - scope: 'patient/*.read openid launch', - }); -}); -export const checkAuthorize = () => __awaiter(void 0, void 0, void 0, function* () { - const client = yield FHIR.oauth2.ready(); - return client; -}); -// const mccObj: MccObservation = { -// code: { -// coding: [ -// { -// system: 'http://loinc.org', -// code: '17856-6', -// display: 'Hemoglobin A1c/Hemoglobin.total in Blood by HPLC', -// }, -// ], -// text: 'Hemoglobin A1c/Hemoglobin.total in Blood by HPLC', -// }, -// status: 'final', -// effective: { -// type: 'dateTime', -// dateTime: { -// rawDate: '1646841600000', -// date: '03/10/2022 12:00', -// }, -// }, -// value: { -// valueType: 'Quantity', -// quantityValue: { -// unit: '%', -// value: 9.2, -// system: 'http://unitsofmeasure.org/', -// code: '%', -// }, -// }, -// referenceRanges: [ -// { -// low: { -// unit: '%', -// value: 5.6, -// system: 'http://unitsofmeasure.org', -// code: 'mg/dL', -// }, -// text: '4 to 5.6 %', -// }, -// ], -// category: [ -// { -// coding: [ -// { -// system: 'http://terminology.hl7.org/CodeSystem/observation-category', -// code: 'laboratory', -// }, -// ], -// text: 'Laboratory', -// }, -// ], -// fhirid: 'mcc-obs-pnoelle-lab-hgbA1c', -// }; -// const Obj: Observation = { -// resourceType: 'Observation', -// id: 'mcc-obs-pnoelle-lab-hgbA1c', -// meta: { -// versionId: '1', -// lastUpdated: '2022-05-02T11:40:59.000+00:00', -// source: '#eb35f0f8c939c1e2', -// profile: [ -// 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults', -// ], -// }, -// status: 'final', -// category: [ -// { -// coding: [ -// { -// system: 'http://terminology.hl7.org/CodeSystem/observation-category', -// code: 'laboratory', -// }, -// ], -// text: 'Laboratory', -// }, -// ], -// code: { -// coding: [ -// { -// system: 'http://loinc.org', -// code: '17856-6', -// display: 'Hemoglobin A1c/Hemoglobin.total in Blood by HPLC', -// }, -// ], -// }, -// subject: { -// reference: 'Patient/mcc-pat-pnoelle', -// }, -// effectiveDateTime: '2022-03-10', -// performer: [ -// { -// reference: 'Practitioner/mcc-prac-carlson-john', -// display: 'Dr. John Carlson, MD', -// }, -// ], -// valueQuantity: { -// value: 9.2, -// unit: '%', -// system: 'http://unitsofmeasure.org/', -// code: '%', -// }, -// referenceRange: [ -// { -// low: { -// value: 4, -// unit: '%', -// system: 'http://unitsofmeasure.org', -// code: '%', -// }, -// high: { -// value: 5.6, -// unit: '%', -// system: 'http://unitsofmeasure.org', -// code: 'mg/dL', -// }, -// text: '4 to 5.6 %', -// }, -// ], -// }; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aG9yaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc291cmNlL2xpYi9hdXRob3JpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7O0FBQUEsT0FBTyxJQUFJLE1BQU0sWUFBWSxDQUFDO0FBRTlCLE1BQU0sQ0FBQyxNQUFNLFNBQVMsR0FBRyxHQUFTLEVBQUU7SUFDbEMsTUFBTSxJQUFJLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FBQztRQUMxQixpQ0FBaUM7UUFDakMsV0FBVyxFQUFFLEVBQUU7UUFDZixRQUFRLEVBQUUsc0NBQXNDO1FBQ2hELEtBQUssRUFBRSw4QkFBOEI7S0FDdEMsQ0FBQyxDQUFDO0FBQ0wsQ0FBQyxDQUFBLENBQUM7QUFFRixNQUFNLENBQUMsTUFBTSxjQUFjLEdBQUcsR0FBUyxFQUFFO0lBQ3ZDLE1BQU0sTUFBTSxHQUFHLE1BQU0sSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUV6QyxPQUFPLE1BQU0sQ0FBQztBQUNoQixDQUFDLENBQUEsQ0FBQztBQUVGLG1DQUFtQztBQUNuQyxZQUFZO0FBQ1osZ0JBQWdCO0FBQ2hCLFVBQVU7QUFDVixzQ0FBc0M7QUFDdEMsMkJBQTJCO0FBQzNCLHVFQUF1RTtBQUN2RSxXQUFXO0FBQ1gsU0FBUztBQUNULGdFQUFnRTtBQUNoRSxPQUFPO0FBQ1AscUJBQXFCO0FBQ3JCLGlCQUFpQjtBQUNqQix3QkFBd0I7QUFDeEIsa0JBQWtCO0FBQ2xCLGtDQUFrQztBQUNsQyxrQ0FBa0M7QUFDbEMsU0FBUztBQUNULE9BQU87QUFDUCxhQUFhO0FBQ2IsNkJBQTZCO0FBQzdCLHVCQUF1QjtBQUN2QixtQkFBbUI7QUFDbkIsb0JBQW9CO0FBQ3BCLDhDQUE4QztBQUM5QyxtQkFBbUI7QUFDbkIsU0FBUztBQUNULE9BQU87QUFDUCx1QkFBdUI7QUFDdkIsUUFBUTtBQUNSLGVBQWU7QUFDZixxQkFBcUI7QUFDckIsc0JBQXNCO0FBQ3RCLCtDQUErQztBQUMvQyx5QkFBeUI7QUFDekIsV0FBVztBQUNYLDRCQUE0QjtBQUM1QixTQUFTO0FBQ1QsT0FBTztBQUNQLGdCQUFnQjtBQUNoQixRQUFRO0FBQ1Isa0JBQWtCO0FBQ2xCLFlBQVk7QUFDWixrRkFBa0Y7QUFDbEYsZ0NBQWdDO0FBQ2hDLGFBQWE7QUFDYixXQUFXO0FBQ1gsNEJBQTRCO0FBQzVCLFNBQVM7QUFDVCxPQUFPO0FBQ1AsMENBQTBDO0FBQzFDLEtBQUs7QUFFTCw2QkFBNkI7QUFDN0IsaUNBQWlDO0FBQ2pDLHNDQUFzQztBQUN0QyxZQUFZO0FBQ1osc0JBQXNCO0FBQ3RCLG9EQUFvRDtBQUNwRCxtQ0FBbUM7QUFDbkMsaUJBQWlCO0FBQ2pCLHNGQUFzRjtBQUN0RixTQUFTO0FBQ1QsT0FBTztBQUNQLHFCQUFxQjtBQUNyQixnQkFBZ0I7QUFDaEIsUUFBUTtBQUNSLGtCQUFrQjtBQUNsQixZQUFZO0FBQ1osa0ZBQWtGO0FBQ2xGLGdDQUFnQztBQUNoQyxhQUFhO0FBQ2IsV0FBVztBQUNYLDRCQUE0QjtBQUM1QixTQUFTO0FBQ1QsT0FBTztBQUNQLFlBQVk7QUFDWixnQkFBZ0I7QUFDaEIsVUFBVTtBQUNWLHNDQUFzQztBQUN0QywyQkFBMkI7QUFDM0IsdUVBQXVFO0FBQ3ZFLFdBQVc7QUFDWCxTQUFTO0FBQ1QsT0FBTztBQUNQLGVBQWU7QUFDZiw0Q0FBNEM7QUFDNUMsT0FBTztBQUNQLHFDQUFxQztBQUNyQyxpQkFBaUI7QUFDakIsUUFBUTtBQUNSLHlEQUF5RDtBQUN6RCx5Q0FBeUM7QUFDekMsU0FBUztBQUNULE9BQU87QUFDUCxxQkFBcUI7QUFDckIsa0JBQWtCO0FBQ2xCLGlCQUFpQjtBQUNqQiw0Q0FBNEM7QUFDNUMsaUJBQWlCO0FBQ2pCLE9BQU87QUFDUCxzQkFBc0I7QUFDdEIsUUFBUTtBQUNSLGVBQWU7QUFDZixvQkFBb0I7QUFDcEIscUJBQXFCO0FBQ3JCLCtDQUErQztBQUMvQyxxQkFBcUI7QUFDckIsV0FBVztBQUNYLGdCQUFnQjtBQUNoQixzQkFBc0I7QUFDdEIscUJBQXFCO0FBQ3JCLCtDQUErQztBQUMvQyx5QkFBeUI7QUFDekIsV0FBVztBQUNYLDRCQUE0QjtBQUM1QixTQUFTO0FBQ1QsT0FBTztBQUNQLEtBQUsifQ== \ No newline at end of file diff --git a/build/module/lib/authorize.spec.d.ts b/build/module/lib/authorize.spec.d.ts deleted file mode 100644 index e69de29..0000000 diff --git a/build/module/lib/authorize.spec.js b/build/module/lib/authorize.spec.js deleted file mode 100644 index cdff4d6..0000000 --- a/build/module/lib/authorize.spec.js +++ /dev/null @@ -1 +0,0 @@ -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aG9yaXplLnNwZWMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zb3VyY2UvbGliL2F1dGhvcml6ZS5zcGVjLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ== \ No newline at end of file diff --git a/build/module/lib/authorize/authorize.d.ts b/build/module/lib/authorize/authorize.d.ts deleted file mode 100644 index b134c99..0000000 --- a/build/module/lib/authorize/authorize.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -export declare const authorize: (redirectUri?: string, clientId?: string, scope?: string) => Promise; -export declare const checkAuthorize: () => Promise; diff --git a/build/module/lib/authorize/authorize.js b/build/module/lib/authorize/authorize.js deleted file mode 100644 index 028fb7b..0000000 --- a/build/module/lib/authorize/authorize.js +++ /dev/null @@ -1,26 +0,0 @@ -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -import FHIR from 'fhirclient'; -import log from '../../utils/loglevel'; -export const authorize = (redirectUri, clientId, scope) => __awaiter(void 0, void 0, void 0, function* () { - log.info('Authenticating client'); - yield FHIR.oauth2.authorize({ - // Meld Synthea test data sandbox - redirectUri: redirectUri !== null && redirectUri !== void 0 ? redirectUri : '', - clientId: clientId !== null && clientId !== void 0 ? clientId : '9ff4f5c4-f07c-464f-8d4b-90b90a76bebf', - scope: scope !== null && scope !== void 0 ? scope : 'patient/*.read openid launch', - }); -}); -export const checkAuthorize = () => __awaiter(void 0, void 0, void 0, function* () { - const client = yield FHIR.oauth2.ready(); - log.info('Client authorized'); - return client; -}); -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aG9yaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc291cmNlL2xpYi9hdXRob3JpemUvYXV0aG9yaXplLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7OztBQUFBLE9BQU8sSUFBSSxNQUFNLFlBQVksQ0FBQztBQUU5QixPQUFPLEdBQUcsTUFBTSxzQkFBc0IsQ0FBQztBQUV2QyxNQUFNLENBQUMsTUFBTSxTQUFTLEdBQUcsQ0FDdkIsV0FBb0IsRUFDcEIsUUFBaUIsRUFDakIsS0FBYyxFQUNkLEVBQUU7SUFDRixHQUFHLENBQUMsSUFBSSxDQUFDLHVCQUF1QixDQUFDLENBQUM7SUFFbEMsTUFBTSxJQUFJLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FBQztRQUMxQixpQ0FBaUM7UUFDakMsV0FBVyxFQUFFLFdBQVcsYUFBWCxXQUFXLGNBQVgsV0FBVyxHQUFJLEVBQUU7UUFDOUIsUUFBUSxFQUFFLFFBQVEsYUFBUixRQUFRLGNBQVIsUUFBUSxHQUFJLHNDQUFzQztRQUM1RCxLQUFLLEVBQUUsS0FBSyxhQUFMLEtBQUssY0FBTCxLQUFLLEdBQUksOEJBQThCO0tBQy9DLENBQUMsQ0FBQztBQUNMLENBQUMsQ0FBQSxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0sY0FBYyxHQUFHLEdBQVMsRUFBRTtJQUN2QyxNQUFNLE1BQU0sR0FBRyxNQUFNLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxFQUFFLENBQUM7SUFFekMsR0FBRyxDQUFDLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxDQUFDO0lBRTlCLE9BQU8sTUFBTSxDQUFDO0FBQ2hCLENBQUMsQ0FBQSxDQUFDIn0= \ No newline at end of file diff --git a/build/module/lib/authorize/authorize.spec.d.ts b/build/module/lib/authorize/authorize.spec.d.ts deleted file mode 100644 index e69de29..0000000 diff --git a/build/module/lib/authorize/authorize.spec.js b/build/module/lib/authorize/authorize.spec.js deleted file mode 100644 index 4f22f17..0000000 --- a/build/module/lib/authorize/authorize.spec.js +++ /dev/null @@ -1,2 +0,0 @@ -// noop -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aG9yaXplLnNwZWMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zb3VyY2UvbGliL2F1dGhvcml6ZS9hdXRob3JpemUuc3BlYy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPIn0= \ No newline at end of file diff --git a/build/module/lib/authorize/authorize.util.d.ts b/build/module/lib/authorize/authorize.util.d.ts deleted file mode 100644 index e69de29..0000000 diff --git a/build/module/lib/authorize/authorize.util.js b/build/module/lib/authorize/authorize.util.js deleted file mode 100644 index 25127b4..0000000 --- a/build/module/lib/authorize/authorize.util.js +++ /dev/null @@ -1,2 +0,0 @@ -// noop -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aG9yaXplLnV0aWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zb3VyY2UvbGliL2F1dGhvcml6ZS9hdXRob3JpemUudXRpbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPIn0= \ No newline at end of file diff --git a/build/module/lib/authorize/index.d.ts b/build/module/lib/authorize/index.d.ts deleted file mode 100644 index 7f57cb0..0000000 --- a/build/module/lib/authorize/index.d.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './authorize'; diff --git a/build/module/lib/authorize/index.js b/build/module/lib/authorize/index.js deleted file mode 100644 index c4a53f9..0000000 --- a/build/module/lib/authorize/index.js +++ /dev/null @@ -1,2 +0,0 @@ -export * from './authorize'; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zb3VyY2UvbGliL2F1dGhvcml6ZS9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGFBQWEsQ0FBQyJ9 \ No newline at end of file diff --git a/build/module/lib/observation.d.ts b/build/module/lib/observation.d.ts deleted file mode 100644 index df87f11..0000000 --- a/build/module/lib/observation.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Observation } from 'fhir/r4'; -import type { ObservationMode } from '../types'; -export declare const getObservation: (code: string) => Promise; -export declare const getValue: (obs: Observation) => any; -export declare const getObservations: (code: string, mode: ObservationMode, sort?: string, max?: string) => Promise; -export declare const getObservationsByValueSet: (valueSet: string, sort?: string, max?: string) => Promise; -export declare const getObservationsByCategory: (category: string, sort?: string, max?: string) => Promise; diff --git a/build/module/lib/observation.js b/build/module/lib/observation.js deleted file mode 100644 index a03af25..0000000 --- a/build/module/lib/observation.js +++ /dev/null @@ -1,128 +0,0 @@ -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -import FHIR from 'fhirclient'; -import { EccMode } from '../constants/mode'; -import { getAllCodes } from '../query/json'; -const fhirOptions = { - pageLimit: 0, -}; -const notFoundResponse = (code) => ({ - code, - status: 'notfound', - value: { - stringValue: 'No Data Available', - valueType: 'string', - }, -}); -const resourcesFrom = (response) => { - const firstEntries = response[0]; - const entries = (firstEntries === null || firstEntries === void 0 ? void 0 : firstEntries.entry) - ? firstEntries.entry - : []; - return entries - .map((entry) => entry === null || entry === void 0 ? void 0 : entry.resource) - .filter((resource) => resource.resourceType !== 'OperationOutcome'); -}; -export const getObservation = (code) => __awaiter(void 0, void 0, void 0, function* () { - const client = yield FHIR.oauth2.ready(); - const queryPath = `Observation?${EccMode.code}=http://loinc.org|${code}&_sort=-date&_count=1`; - const observationRequest = yield client.patient.request(queryPath, fhirOptions); - const observationResource = resourcesFrom(observationRequest); - const filteredObservations = observationResource.filter((v) => v !== undefined && v.resourceType === 'Observation'); - if (filteredObservations.length) { - return filteredObservations[0]; - } - else { - return notFoundResponse(code); - } -}); -export const getValue = (obs) => { - if (obs.valueQuantity) { - return { - valueQuantity: obs.valueQuantity, - }; - } - else if (obs.valueBoolean) { - return { - valueBoolean: obs.valueBoolean, - }; - } - else if (obs.valueInteger) { - return { - valueInteger: obs.valueInteger, - }; - } - else if (obs.valueString) { - return { - valueString: obs.valueString, - }; - } - else if (obs.valueRange) { - return { - valueRange: obs.valueRange, - }; - } - else if (obs.valueCodeableConcept) { - return { - valueCodeableConcept: obs.valueCodeableConcept, - }; - } - else { - return { - value: 'Unknown type', - }; - } -}; -export const getObservations = (code, mode, sort, max) => __awaiter(void 0, void 0, void 0, function* () { - var _a; - const client = yield FHIR.oauth2.ready(); - const sortType = sort === 'descending' ? '-date' : 'date'; - const queryPath = `Observation?${(_a = EccMode[mode]) !== null && _a !== void 0 ? _a : EccMode.code}=http://loinc.org|${code}&_sort=${sortType}&_count=${max !== null && max !== void 0 ? max : 100}`; - const observationRequest = yield client.patient.request(queryPath, fhirOptions); - const observationResource = resourcesFrom(observationRequest); - const filteredObservations = observationResource.filter((v) => v !== undefined && v.resourceType === 'Observation'); - if (filteredObservations.length) { - return filteredObservations; - } - else { - return []; - } -}); -export const getObservationsByValueSet = (valueSet, sort, max) => __awaiter(void 0, void 0, void 0, function* () { - const client = yield FHIR.oauth2.ready(); - const codes = yield getAllCodes(valueSet); - const combinedCodes = codes.join(','); - const sortType = sort === 'descending' ? '-date' : 'date'; - const queryPath = `Observation?${EccMode.code}=${combinedCodes}&_sort=${sortType}&_count=${max}`; - const observationRequest = yield client.patient.request(queryPath, fhirOptions); - const observationResource = resourcesFrom(observationRequest); - const filteredObservations = observationResource.filter((v) => v !== undefined && v.resourceType === 'Observation'); - if (filteredObservations.length) { - return filteredObservations; - } - else { - return []; - } -}); -export const getObservationsByCategory = (category, sort, max) => __awaiter(void 0, void 0, void 0, function* () { - const client = yield FHIR.oauth2.ready(); - const sortType = sort === 'descending' ? '-date' : 'date'; - const queryPath = `Observation?category=${category}&_sort=${sortType}&_count=${max !== null && max !== void 0 ? max : 100}`; - const observationRequest = yield client.patient.request(queryPath, fhirOptions); - const observationResource = resourcesFrom(observationRequest); - const filteredObservations = observationResource.filter((v) => v !== undefined && v.resourceType === 'Observation'); - if (filteredObservations.length) { - return filteredObservations; - } - else { - return []; - } -}); -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2JzZXJ2YXRpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zb3VyY2UvbGliL29ic2VydmF0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7OztBQUNBLE9BQU8sSUFBSSxNQUFNLFlBQVksQ0FBQztBQUc5QixPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFDNUMsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUc1QyxNQUFNLFdBQVcsR0FBMkI7SUFDMUMsU0FBUyxFQUFFLENBQUM7Q0FDYixDQUFDO0FBRUYsTUFBTSxnQkFBZ0IsR0FBRyxDQUFDLElBQUksRUFBRSxFQUFFLENBQUMsQ0FBQztJQUNsQyxJQUFJO0lBQ0osTUFBTSxFQUFFLFVBQVU7SUFDbEIsS0FBSyxFQUFFO1FBQ0wsV0FBVyxFQUFFLG1CQUFtQjtRQUNoQyxTQUFTLEVBQUUsUUFBUTtLQUNwQjtDQUNGLENBQUMsQ0FBQztBQUVILE1BQU0sYUFBYSxHQUFHLENBQUMsUUFBOEIsRUFBYyxFQUFFO0lBQ25FLE1BQU0sWUFBWSxHQUFHLFFBQVEsQ0FBQyxDQUFDLENBQTBCLENBQUM7SUFDMUQsTUFBTSxPQUFPLEdBQTRCLENBQUEsWUFBWSxhQUFaLFlBQVksdUJBQVosWUFBWSxDQUFFLEtBQUs7UUFDMUQsQ0FBQyxDQUFFLFlBQVksQ0FBQyxLQUFpQztRQUNqRCxDQUFDLENBQUMsRUFBRSxDQUFDO0lBQ1AsT0FBTyxPQUFPO1NBQ1gsR0FBRyxDQUFDLENBQUMsS0FBNEIsRUFBRSxFQUFFLENBQUMsS0FBSyxhQUFMLEtBQUssdUJBQUwsS0FBSyxDQUFFLFFBQWUsQ0FBQztTQUM3RCxNQUFNLENBQ0wsQ0FBQyxRQUFrQixFQUFFLEVBQUUsQ0FBQyxRQUFRLENBQUMsWUFBWSxLQUFLLGtCQUFrQixDQUNyRSxDQUFDO0FBQ04sQ0FBQyxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0sY0FBYyxHQUFHLENBQU8sSUFBWSxFQUF3QixFQUFFO0lBQ3pFLE1BQU0sTUFBTSxHQUFHLE1BQU0sSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUN6QyxNQUFNLFNBQVMsR0FBRyxlQUFlLE9BQU8sQ0FBQyxJQUFJLHFCQUFxQixJQUFJLHVCQUF1QixDQUFDO0lBQzlGLE1BQU0sa0JBQWtCLEdBQXlCLE1BQU0sTUFBTSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQzNFLFNBQVMsRUFDVCxXQUFXLENBQ1osQ0FBQztJQUVGLE1BQU0sbUJBQW1CLEdBQWtCLGFBQWEsQ0FDdEQsa0JBQWtCLENBQ0YsQ0FBQztJQUVuQixNQUFNLG9CQUFvQixHQUFrQixtQkFBbUIsQ0FBQyxNQUFNLENBQ3BFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEtBQUssU0FBUyxJQUFJLENBQUMsQ0FBQyxZQUFZLEtBQUssYUFBYSxDQUMzRCxDQUFDO0lBRUYsSUFBSSxvQkFBb0IsQ0FBQyxNQUFNLEVBQUU7UUFDL0IsT0FBTyxvQkFBb0IsQ0FBQyxDQUFDLENBQUMsQ0FBQztLQUNoQztTQUFNO1FBQ0wsT0FBTyxnQkFBZ0IsQ0FBQyxJQUFJLENBQTJCLENBQUM7S0FDekQ7QUFDSCxDQUFDLENBQUEsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLFFBQVEsR0FBRyxDQUFDLEdBQWdCLEVBQU8sRUFBRTtJQUNoRCxJQUFJLEdBQUcsQ0FBQyxhQUFhLEVBQUU7UUFDckIsT0FBTztZQUNMLGFBQWEsRUFBRSxHQUFHLENBQUMsYUFBYTtTQUNqQyxDQUFDO0tBQ0g7U0FBTSxJQUFJLEdBQUcsQ0FBQyxZQUFZLEVBQUU7UUFDM0IsT0FBTztZQUNMLFlBQVksRUFBRSxHQUFHLENBQUMsWUFBWTtTQUMvQixDQUFDO0tBQ0g7U0FBTSxJQUFJLEdBQUcsQ0FBQyxZQUFZLEVBQUU7UUFDM0IsT0FBTztZQUNMLFlBQVksRUFBRSxHQUFHLENBQUMsWUFBWTtTQUMvQixDQUFDO0tBQ0g7U0FBTSxJQUFJLEdBQUcsQ0FBQyxXQUFXLEVBQUU7UUFDMUIsT0FBTztZQUNMLFdBQVcsRUFBRSxHQUFHLENBQUMsV0FBVztTQUM3QixDQUFDO0tBQ0g7U0FBTSxJQUFJLEdBQUcsQ0FBQyxVQUFVLEVBQUU7UUFDekIsT0FBTztZQUNMLFVBQVUsRUFBRSxHQUFHLENBQUMsVUFBVTtTQUMzQixDQUFDO0tBQ0g7U0FBTSxJQUFJLEdBQUcsQ0FBQyxvQkFBb0IsRUFBRTtRQUNuQyxPQUFPO1lBQ0wsb0JBQW9CLEVBQUUsR0FBRyxDQUFDLG9CQUFvQjtTQUMvQyxDQUFDO0tBQ0g7U0FBTTtRQUNMLE9BQU87WUFDTCxLQUFLLEVBQUUsY0FBYztTQUN0QixDQUFDO0tBQ0g7QUFDSCxDQUFDLENBQUM7QUFFRixNQUFNLENBQUMsTUFBTSxlQUFlLEdBQUcsQ0FDN0IsSUFBWSxFQUNaLElBQXFCLEVBQ3JCLElBQWEsRUFDYixHQUFZLEVBQ1ksRUFBRTs7SUFDMUIsTUFBTSxNQUFNLEdBQUcsTUFBTSxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDO0lBRXpDLE1BQU0sUUFBUSxHQUFHLElBQUksS0FBSyxZQUFZLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDO0lBRTFELE1BQU0sU0FBUyxHQUFHLGVBQ2hCLE1BQUEsT0FBTyxDQUFDLElBQUksQ0FBQyxtQ0FBSSxPQUFPLENBQUMsSUFDM0IscUJBQXFCLElBQUksVUFBVSxRQUFRLFdBQVcsR0FBRyxhQUFILEdBQUcsY0FBSCxHQUFHLEdBQUksR0FBRyxFQUFFLENBQUM7SUFDbkUsTUFBTSxrQkFBa0IsR0FBeUIsTUFBTSxNQUFNLENBQUMsT0FBTyxDQUFDLE9BQU8sQ0FDM0UsU0FBUyxFQUNULFdBQVcsQ0FDWixDQUFDO0lBRUYsTUFBTSxtQkFBbUIsR0FBa0IsYUFBYSxDQUN0RCxrQkFBa0IsQ0FDRixDQUFDO0lBRW5CLE1BQU0sb0JBQW9CLEdBQWtCLG1CQUFtQixDQUFDLE1BQU0sQ0FDcEUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsS0FBSyxTQUFTLElBQUksQ0FBQyxDQUFDLFlBQVksS0FBSyxhQUFhLENBQzNELENBQUM7SUFFRixJQUFJLG9CQUFvQixDQUFDLE1BQU0sRUFBRTtRQUMvQixPQUFPLG9CQUFvQixDQUFDO0tBQzdCO1NBQU07UUFDTCxPQUFPLEVBQUUsQ0FBQztLQUNYO0FBQ0gsQ0FBQyxDQUFBLENBQUM7QUFFRixNQUFNLENBQUMsTUFBTSx5QkFBeUIsR0FBRyxDQUN2QyxRQUFnQixFQUNoQixJQUFhLEVBQ2IsR0FBWSxFQUNZLEVBQUU7SUFDMUIsTUFBTSxNQUFNLEdBQUcsTUFBTSxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDO0lBRXpDLE1BQU0sS0FBSyxHQUFHLE1BQU0sV0FBVyxDQUFDLFFBQVEsQ0FBQyxDQUFDO0lBQzFDLE1BQU0sYUFBYSxHQUFHLEtBQUssQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7SUFFdEMsTUFBTSxRQUFRLEdBQUcsSUFBSSxLQUFLLFlBQVksQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUM7SUFFMUQsTUFBTSxTQUFTLEdBQUcsZUFBZSxPQUFPLENBQUMsSUFBSSxJQUFJLGFBQWEsVUFBVSxRQUFRLFdBQVcsR0FBRyxFQUFFLENBQUM7SUFDakcsTUFBTSxrQkFBa0IsR0FBeUIsTUFBTSxNQUFNLENBQUMsT0FBTyxDQUFDLE9BQU8sQ0FDM0UsU0FBUyxFQUNULFdBQVcsQ0FDWixDQUFDO0lBRUYsTUFBTSxtQkFBbUIsR0FBa0IsYUFBYSxDQUN0RCxrQkFBa0IsQ0FDRixDQUFDO0lBRW5CLE1BQU0sb0JBQW9CLEdBQWtCLG1CQUFtQixDQUFDLE1BQU0sQ0FDcEUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsS0FBSyxTQUFTLElBQUksQ0FBQyxDQUFDLFlBQVksS0FBSyxhQUFhLENBQzNELENBQUM7SUFFRixJQUFJLG9CQUFvQixDQUFDLE1BQU0sRUFBRTtRQUMvQixPQUFPLG9CQUFvQixDQUFDO0tBQzdCO1NBQU07UUFDTCxPQUFPLEVBQUUsQ0FBQztLQUNYO0FBQ0gsQ0FBQyxDQUFBLENBQUM7QUFFRixNQUFNLENBQUMsTUFBTSx5QkFBeUIsR0FBRyxDQUN2QyxRQUFnQixFQUNoQixJQUFhLEVBQ2IsR0FBWSxFQUNZLEVBQUU7SUFDMUIsTUFBTSxNQUFNLEdBQUcsTUFBTSxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDO0lBRXpDLE1BQU0sUUFBUSxHQUFHLElBQUksS0FBSyxZQUFZLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDO0lBRTFELE1BQU0sU0FBUyxHQUFHLHdCQUF3QixRQUFRLFVBQVUsUUFBUSxXQUNsRSxHQUFHLGFBQUgsR0FBRyxjQUFILEdBQUcsR0FBSSxHQUNULEVBQUUsQ0FBQztJQUNILE1BQU0sa0JBQWtCLEdBQXlCLE1BQU0sTUFBTSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQzNFLFNBQVMsRUFDVCxXQUFXLENBQ1osQ0FBQztJQUVGLE1BQU0sbUJBQW1CLEdBQWtCLGFBQWEsQ0FDdEQsa0JBQWtCLENBQ0YsQ0FBQztJQUVuQixNQUFNLG9CQUFvQixHQUFrQixtQkFBbUIsQ0FBQyxNQUFNLENBQ3BFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEtBQUssU0FBUyxJQUFJLENBQUMsQ0FBQyxZQUFZLEtBQUssYUFBYSxDQUMzRCxDQUFDO0lBRUYsSUFBSSxvQkFBb0IsQ0FBQyxNQUFNLEVBQUU7UUFDL0IsT0FBTyxvQkFBb0IsQ0FBQztLQUM3QjtTQUFNO1FBQ0wsT0FBTyxFQUFFLENBQUM7S0FDWDtBQUNILENBQUMsQ0FBQSxDQUFDIn0= \ No newline at end of file diff --git a/build/module/lib/observation.spec.d.ts b/build/module/lib/observation.spec.d.ts deleted file mode 100644 index e69de29..0000000 diff --git a/build/module/lib/observation.spec.js b/build/module/lib/observation.spec.js deleted file mode 100644 index e18d2bf..0000000 --- a/build/module/lib/observation.spec.js +++ /dev/null @@ -1 +0,0 @@ -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2JzZXJ2YXRpb24uc3BlYy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NvdXJjZS9saWIvb2JzZXJ2YXRpb24uc3BlYy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0= \ No newline at end of file diff --git a/build/module/lib/observation/index.d.ts b/build/module/lib/observation/index.d.ts deleted file mode 100644 index e4db0b8..0000000 --- a/build/module/lib/observation/index.d.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './observation'; diff --git a/build/module/lib/observation/index.js b/build/module/lib/observation/index.js deleted file mode 100644 index 986fd01..0000000 --- a/build/module/lib/observation/index.js +++ /dev/null @@ -1,2 +0,0 @@ -export * from './observation'; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zb3VyY2UvbGliL29ic2VydmF0aW9uL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsZUFBZSxDQUFDIn0= \ No newline at end of file diff --git a/build/module/lib/observation/observation.d.ts b/build/module/lib/observation/observation.d.ts deleted file mode 100644 index 970aa7f..0000000 --- a/build/module/lib/observation/observation.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { Observation } from 'fhir/r4'; -import type { ObservationMode } from '../../types'; -export declare const getObservation: (code: string) => Promise; -export declare const getObservations: (code: string, mode?: ObservationMode, sort?: string, max?: string) => Promise; -export declare const getObservationsByValueSet: (valueSet: string, sort?: string, max?: string) => Promise; -export declare const getObservationsByCategory: (category: string, sort?: string, max?: string) => Promise; diff --git a/build/module/lib/observation/observation.js b/build/module/lib/observation/observation.js deleted file mode 100644 index 3a3ef43..0000000 --- a/build/module/lib/observation/observation.js +++ /dev/null @@ -1,108 +0,0 @@ -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -import FHIR from 'fhirclient'; -import { EccMode } from '../../constants/mode'; -import { getAllCodes } from '../../query/json'; -import log from '../../utils/loglevel'; -import { fhirOptions, notFoundResponse, resourcesFrom, } from './observation.util'; -export const getObservation = (code) => __awaiter(void 0, void 0, void 0, function* () { - if (!code) { - log.error('getObservation - code not found'); - return notFoundResponse(); - } - const client = yield FHIR.oauth2.ready(); - log.info(`getObservation - start with code - ${code}`); - const queryPath = `Observation?${EccMode.code}=http://loinc.org|${code}&_sort=-date&_count=1`; - const observationRequest = yield client.patient.request(queryPath, fhirOptions); - const observationResource = resourcesFrom(observationRequest); - const filteredObservations = observationResource.filter((v) => v !== undefined && v.resourceType === 'Observation'); - if (!filteredObservations.length) { - log.error('getObservation - empty observation'); - return notFoundResponse(code); - } - log.info(`getObservation - successful with code ${code} - with status ${filteredObservations[0].status}`); - log.debug({ serviceName: 'getObservation', result: filteredObservations[0] }); - return filteredObservations[0]; -}); -export const getObservations = (code, mode, sort, max) => __awaiter(void 0, void 0, void 0, function* () { - var _a; - if (!code || !mode) { - log.error('getObservations - required parameters not found - (code, mode)'); - return []; - } - const client = yield FHIR.oauth2.ready(); - const sortType = sort === 'descending' ? '-date' : 'date'; - log.info(`getObservations - start with code - ${code} - ${mode} ${sort} ${max}`); - const queryPath = `Observation?${(_a = EccMode[mode]) !== null && _a !== void 0 ? _a : EccMode.code}=http://loinc.org|${code}&_sort=${sortType}&_count=${max !== null && max !== void 0 ? max : 100}`; - const observationRequest = yield client.patient.request(queryPath, fhirOptions); - const observationResource = resourcesFrom(observationRequest); - const filteredObservations = observationResource.filter((v) => v !== undefined && v.resourceType === 'Observation'); - if (!filteredObservations.length) { - log.error('getObservations - empty observations'); - return []; - } - log.info(`getObservations - successful with code ${code} - with length ${filteredObservations.length}`); - log.debug({ serviceName: 'getObservations', result: filteredObservations }); - return filteredObservations; -}); -export const getObservationsByValueSet = (valueSet, sort, max) => __awaiter(void 0, void 0, void 0, function* () { - if (!valueSet) { - log.error('getObservationsByValueSet - valueSet not found'); - return []; - } - const client = yield FHIR.oauth2.ready(); - log.info('getObservationsByValueSet - getAllCodes'); - const codes = yield getAllCodes(valueSet); - const combinedCodes = codes.join(','); - if (!combinedCodes) { - log.error('getObservationsByValueSet - getAllCodes empty'); - return []; - } - const sortType = sort === 'descending' ? '-date' : 'date'; - log.info(`getObservationsByValueSet - start with valueSet - ${valueSet} - ${sort} ${max}`); - const queryPath = `Observation?${EccMode.code}=${combinedCodes}&_sort=${sortType}&_count=${max}`; - const observationRequest = yield client.patient.request(queryPath, fhirOptions); - const observationResource = resourcesFrom(observationRequest); - const filteredObservations = observationResource.filter((v) => v !== undefined && v.resourceType === 'Observation'); - if (!filteredObservations.length) { - log.error('getObservationsByValueSet - valueSet not found'); - return []; - } - log.info(`getObservationsByValueSet - successful with valueSet ${valueSet} - with length ${filteredObservations.length}`); - log.debug({ - serviceName: 'getObservationsByValueSet', - result: filteredObservations, - }); - return filteredObservations; -}); -export const getObservationsByCategory = (category, sort, max) => __awaiter(void 0, void 0, void 0, function* () { - if (!category) { - log.error('getObservationsByCategory - category not found'); - return []; - } - const client = yield FHIR.oauth2.ready(); - const sortType = sort === 'descending' ? '-date' : 'date'; - log.info(`getObservationsByCategory - start with category - ${category} - ${sort} ${max}`); - const queryPath = `Observation?category=${category}&_sort=${sortType}&_count=${max !== null && max !== void 0 ? max : 100}`; - const observationRequest = yield client.patient.request(queryPath, fhirOptions); - const observationResource = resourcesFrom(observationRequest); - const filteredObservations = observationResource.filter((v) => v !== undefined && v.resourceType === 'Observation'); - if (!filteredObservations.length) { - log.error('getObservationsByCategory - empty observations'); - return []; - } - log.info(`getObservationsByCategory - successful with category ${category} - with length ${filteredObservations.length}`); - log.debug({ - serviceName: 'getObservationsByCategory', - result: filteredObservations, - }); - return filteredObservations; -}); -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2JzZXJ2YXRpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zb3VyY2UvbGliL29ic2VydmF0aW9uL29ic2VydmF0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7OztBQUNBLE9BQU8sSUFBSSxNQUFNLFlBQVksQ0FBQztBQUc5QixPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBRS9DLE9BQU8sR0FBRyxNQUFNLHNCQUFzQixDQUFDO0FBRXZDLE9BQU8sRUFDTCxXQUFXLEVBQ1gsZ0JBQWdCLEVBQ2hCLGFBQWEsR0FDZCxNQUFNLG9CQUFvQixDQUFDO0FBRTVCLE1BQU0sQ0FBQyxNQUFNLGNBQWMsR0FBRyxDQUFPLElBQVksRUFBd0IsRUFBRTtJQUN6RSxJQUFJLENBQUMsSUFBSSxFQUFFO1FBQ1QsR0FBRyxDQUFDLEtBQUssQ0FBQyxpQ0FBaUMsQ0FBQyxDQUFDO1FBQzdDLE9BQU8sZ0JBQWdCLEVBQTRCLENBQUM7S0FDckQ7SUFFRCxNQUFNLE1BQU0sR0FBRyxNQUFNLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxFQUFFLENBQUM7SUFFekMsR0FBRyxDQUFDLElBQUksQ0FBQyxzQ0FBc0MsSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN2RCxNQUFNLFNBQVMsR0FBRyxlQUFlLE9BQU8sQ0FBQyxJQUFJLHFCQUFxQixJQUFJLHVCQUF1QixDQUFDO0lBQzlGLE1BQU0sa0JBQWtCLEdBQXlCLE1BQU0sTUFBTSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQzNFLFNBQVMsRUFDVCxXQUFXLENBQ1osQ0FBQztJQUVGLE1BQU0sbUJBQW1CLEdBQWtCLGFBQWEsQ0FDdEQsa0JBQWtCLENBQ0YsQ0FBQztJQUVuQixNQUFNLG9CQUFvQixHQUFrQixtQkFBbUIsQ0FBQyxNQUFNLENBQ3BFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEtBQUssU0FBUyxJQUFJLENBQUMsQ0FBQyxZQUFZLEtBQUssYUFBYSxDQUMzRCxDQUFDO0lBRUYsSUFBSSxDQUFDLG9CQUFvQixDQUFDLE1BQU0sRUFBRTtRQUNoQyxHQUFHLENBQUMsS0FBSyxDQUFDLG9DQUFvQyxDQUFDLENBQUM7UUFDaEQsT0FBTyxnQkFBZ0IsQ0FBQyxJQUFJLENBQTJCLENBQUM7S0FDekQ7SUFFRCxHQUFHLENBQUMsSUFBSSxDQUNOLHlDQUF5QyxJQUFJLGtCQUFrQixvQkFBb0IsQ0FBQyxDQUFDLENBQUMsQ0FBQyxNQUFNLEVBQUUsQ0FDaEcsQ0FBQztJQUNGLEdBQUcsQ0FBQyxLQUFLLENBQUMsRUFBRSxXQUFXLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxFQUFFLG9CQUFvQixDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQztJQUM5RSxPQUFPLG9CQUFvQixDQUFDLENBQUMsQ0FBQyxDQUFDO0FBQ2pDLENBQUMsQ0FBQSxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0sZUFBZSxHQUFHLENBQzdCLElBQVksRUFDWixJQUFzQixFQUN0QixJQUFhLEVBQ2IsR0FBWSxFQUNZLEVBQUU7O0lBQzFCLElBQUksQ0FBQyxJQUFJLElBQUksQ0FBQyxJQUFJLEVBQUU7UUFDbEIsR0FBRyxDQUFDLEtBQUssQ0FBQyxnRUFBZ0UsQ0FBQyxDQUFDO1FBQzVFLE9BQU8sRUFBRSxDQUFDO0tBQ1g7SUFDRCxNQUFNLE1BQU0sR0FBRyxNQUFNLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxFQUFFLENBQUM7SUFFekMsTUFBTSxRQUFRLEdBQUcsSUFBSSxLQUFLLFlBQVksQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUM7SUFFMUQsR0FBRyxDQUFDLElBQUksQ0FDTix1Q0FBdUMsSUFBSSxNQUFNLElBQUksSUFBSSxJQUFJLElBQUksR0FBRyxFQUFFLENBQ3ZFLENBQUM7SUFDRixNQUFNLFNBQVMsR0FBRyxlQUNoQixNQUFBLE9BQU8sQ0FBQyxJQUFJLENBQUMsbUNBQUksT0FBTyxDQUFDLElBQzNCLHFCQUFxQixJQUFJLFVBQVUsUUFBUSxXQUFXLEdBQUcsYUFBSCxHQUFHLGNBQUgsR0FBRyxHQUFJLEdBQUcsRUFBRSxDQUFDO0lBQ25FLE1BQU0sa0JBQWtCLEdBQXlCLE1BQU0sTUFBTSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQzNFLFNBQVMsRUFDVCxXQUFXLENBQ1osQ0FBQztJQUVGLE1BQU0sbUJBQW1CLEdBQWtCLGFBQWEsQ0FDdEQsa0JBQWtCLENBQ0YsQ0FBQztJQUVuQixNQUFNLG9CQUFvQixHQUFrQixtQkFBbUIsQ0FBQyxNQUFNLENBQ3BFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEtBQUssU0FBUyxJQUFJLENBQUMsQ0FBQyxZQUFZLEtBQUssYUFBYSxDQUMzRCxDQUFDO0lBRUYsSUFBSSxDQUFDLG9CQUFvQixDQUFDLE1BQU0sRUFBRTtRQUNoQyxHQUFHLENBQUMsS0FBSyxDQUFDLHNDQUFzQyxDQUFDLENBQUM7UUFDbEQsT0FBTyxFQUFFLENBQUM7S0FDWDtJQUVELEdBQUcsQ0FBQyxJQUFJLENBQ04sMENBQTBDLElBQUksa0JBQWtCLG9CQUFvQixDQUFDLE1BQU0sRUFBRSxDQUM5RixDQUFDO0lBQ0YsR0FBRyxDQUFDLEtBQUssQ0FBQyxFQUFFLFdBQVcsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLEVBQUUsb0JBQW9CLEVBQUUsQ0FBQyxDQUFDO0lBQzVFLE9BQU8sb0JBQW9CLENBQUM7QUFDOUIsQ0FBQyxDQUFBLENBQUM7QUFFRixNQUFNLENBQUMsTUFBTSx5QkFBeUIsR0FBRyxDQUN2QyxRQUFnQixFQUNoQixJQUFhLEVBQ2IsR0FBWSxFQUNZLEVBQUU7SUFDMUIsSUFBSSxDQUFDLFFBQVEsRUFBRTtRQUNiLEdBQUcsQ0FBQyxLQUFLLENBQUMsZ0RBQWdELENBQUMsQ0FBQztRQUM1RCxPQUFPLEVBQUUsQ0FBQztLQUNYO0lBRUQsTUFBTSxNQUFNLEdBQUcsTUFBTSxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDO0lBRXpDLEdBQUcsQ0FBQyxJQUFJLENBQUMseUNBQXlDLENBQUMsQ0FBQztJQUNwRCxNQUFNLEtBQUssR0FBRyxNQUFNLFdBQVcsQ0FBQyxRQUFRLENBQUMsQ0FBQztJQUMxQyxNQUFNLGFBQWEsR0FBRyxLQUFLLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBRXRDLElBQUksQ0FBQyxhQUFhLEVBQUU7UUFDbEIsR0FBRyxDQUFDLEtBQUssQ0FBQywrQ0FBK0MsQ0FBQyxDQUFDO1FBQzNELE9BQU8sRUFBRSxDQUFDO0tBQ1g7SUFFRCxNQUFNLFFBQVEsR0FBRyxJQUFJLEtBQUssWUFBWSxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQztJQUUxRCxHQUFHLENBQUMsSUFBSSxDQUNOLHFEQUFxRCxRQUFRLE1BQU0sSUFBSSxJQUFJLEdBQUcsRUFBRSxDQUNqRixDQUFDO0lBRUYsTUFBTSxTQUFTLEdBQUcsZUFBZSxPQUFPLENBQUMsSUFBSSxJQUFJLGFBQWEsVUFBVSxRQUFRLFdBQVcsR0FBRyxFQUFFLENBQUM7SUFDakcsTUFBTSxrQkFBa0IsR0FBeUIsTUFBTSxNQUFNLENBQUMsT0FBTyxDQUFDLE9BQU8sQ0FDM0UsU0FBUyxFQUNULFdBQVcsQ0FDWixDQUFDO0lBRUYsTUFBTSxtQkFBbUIsR0FBa0IsYUFBYSxDQUN0RCxrQkFBa0IsQ0FDRixDQUFDO0lBRW5CLE1BQU0sb0JBQW9CLEdBQWtCLG1CQUFtQixDQUFDLE1BQU0sQ0FDcEUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsS0FBSyxTQUFTLElBQUksQ0FBQyxDQUFDLFlBQVksS0FBSyxhQUFhLENBQzNELENBQUM7SUFFRixJQUFJLENBQUMsb0JBQW9CLENBQUMsTUFBTSxFQUFFO1FBQ2hDLEdBQUcsQ0FBQyxLQUFLLENBQUMsZ0RBQWdELENBQUMsQ0FBQztRQUM1RCxPQUFPLEVBQUUsQ0FBQztLQUNYO0lBRUQsR0FBRyxDQUFDLElBQUksQ0FDTix3REFBd0QsUUFBUSxrQkFBa0Isb0JBQW9CLENBQUMsTUFBTSxFQUFFLENBQ2hILENBQUM7SUFDRixHQUFHLENBQUMsS0FBSyxDQUFDO1FBQ1IsV0FBVyxFQUFFLDJCQUEyQjtRQUN4QyxNQUFNLEVBQUUsb0JBQW9CO0tBQzdCLENBQUMsQ0FBQztJQUNILE9BQU8sb0JBQW9CLENBQUM7QUFDOUIsQ0FBQyxDQUFBLENBQUM7QUFFRixNQUFNLENBQUMsTUFBTSx5QkFBeUIsR0FBRyxDQUN2QyxRQUFnQixFQUNoQixJQUFhLEVBQ2IsR0FBWSxFQUNZLEVBQUU7SUFDMUIsSUFBSSxDQUFDLFFBQVEsRUFBRTtRQUNiLEdBQUcsQ0FBQyxLQUFLLENBQUMsZ0RBQWdELENBQUMsQ0FBQztRQUM1RCxPQUFPLEVBQUUsQ0FBQztLQUNYO0lBQ0QsTUFBTSxNQUFNLEdBQUcsTUFBTSxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDO0lBRXpDLE1BQU0sUUFBUSxHQUFHLElBQUksS0FBSyxZQUFZLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDO0lBRTFELEdBQUcsQ0FBQyxJQUFJLENBQ04scURBQXFELFFBQVEsTUFBTSxJQUFJLElBQUksR0FBRyxFQUFFLENBQ2pGLENBQUM7SUFFRixNQUFNLFNBQVMsR0FBRyx3QkFBd0IsUUFBUSxVQUFVLFFBQVEsV0FDbEUsR0FBRyxhQUFILEdBQUcsY0FBSCxHQUFHLEdBQUksR0FDVCxFQUFFLENBQUM7SUFDSCxNQUFNLGtCQUFrQixHQUF5QixNQUFNLE1BQU0sQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUMzRSxTQUFTLEVBQ1QsV0FBVyxDQUNaLENBQUM7SUFFRixNQUFNLG1CQUFtQixHQUFrQixhQUFhLENBQ3RELGtCQUFrQixDQUNGLENBQUM7SUFFbkIsTUFBTSxvQkFBb0IsR0FBa0IsbUJBQW1CLENBQUMsTUFBTSxDQUNwRSxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxLQUFLLFNBQVMsSUFBSSxDQUFDLENBQUMsWUFBWSxLQUFLLGFBQWEsQ0FDM0QsQ0FBQztJQUVGLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxNQUFNLEVBQUU7UUFDaEMsR0FBRyxDQUFDLEtBQUssQ0FBQyxnREFBZ0QsQ0FBQyxDQUFDO1FBQzVELE9BQU8sRUFBRSxDQUFDO0tBQ1g7SUFFRCxHQUFHLENBQUMsSUFBSSxDQUNOLHdEQUF3RCxRQUFRLGtCQUFrQixvQkFBb0IsQ0FBQyxNQUFNLEVBQUUsQ0FDaEgsQ0FBQztJQUNGLEdBQUcsQ0FBQyxLQUFLLENBQUM7UUFDUixXQUFXLEVBQUUsMkJBQTJCO1FBQ3hDLE1BQU0sRUFBRSxvQkFBb0I7S0FDN0IsQ0FBQyxDQUFDO0lBQ0gsT0FBTyxvQkFBb0IsQ0FBQztBQUM5QixDQUFDLENBQUEsQ0FBQyJ9 \ No newline at end of file diff --git a/build/module/lib/observation/observation.spec.d.ts b/build/module/lib/observation/observation.spec.d.ts deleted file mode 100644 index e69de29..0000000 diff --git a/build/module/lib/observation/observation.spec.js b/build/module/lib/observation/observation.spec.js deleted file mode 100644 index 62bf6d4..0000000 --- a/build/module/lib/observation/observation.spec.js +++ /dev/null @@ -1,2 +0,0 @@ -// noop -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2JzZXJ2YXRpb24uc3BlYy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NvdXJjZS9saWIvb2JzZXJ2YXRpb24vb2JzZXJ2YXRpb24uc3BlYy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPIn0= \ No newline at end of file diff --git a/build/module/lib/observation/observation.util.d.ts b/build/module/lib/observation/observation.util.d.ts deleted file mode 100644 index c85ce64..0000000 --- a/build/module/lib/observation/observation.util.d.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { Observation, Resource } from 'fhir/r4'; -import { fhirclient } from 'fhirclient/lib/types'; -export declare const fhirOptions: fhirclient.FhirOptions; -export declare const notFoundResponse: (code?: string) => { - code: string; - status: string; - value: { - stringValue: string; - valueType: string; - }; -}; -export declare const resourcesFrom: (response: fhirclient.JsonArray) => Resource[]; -export declare const getValue: (obs: Observation) => any; diff --git a/build/module/lib/observation/observation.util.js b/build/module/lib/observation/observation.util.js deleted file mode 100644 index 077bb58..0000000 --- a/build/module/lib/observation/observation.util.js +++ /dev/null @@ -1,58 +0,0 @@ -export const fhirOptions = { - pageLimit: 0, -}; -export const notFoundResponse = (code) => ({ - code, - status: 'notfound', - value: { - stringValue: 'No Data Available', - valueType: 'string', - }, -}); -export const resourcesFrom = (response) => { - const firstEntries = response[0]; - const entries = (firstEntries === null || firstEntries === void 0 ? void 0 : firstEntries.entry) - ? firstEntries.entry - : []; - return entries - .map((entry) => entry === null || entry === void 0 ? void 0 : entry.resource) - .filter((resource) => resource.resourceType !== 'OperationOutcome'); -}; -export const getValue = (obs) => { - if (obs.valueQuantity) { - return { - valueQuantity: obs.valueQuantity, - }; - } - else if (obs.valueBoolean) { - return { - valueBoolean: obs.valueBoolean, - }; - } - else if (obs.valueInteger) { - return { - valueInteger: obs.valueInteger, - }; - } - else if (obs.valueString) { - return { - valueString: obs.valueString, - }; - } - else if (obs.valueRange) { - return { - valueRange: obs.valueRange, - }; - } - else if (obs.valueCodeableConcept) { - return { - valueCodeableConcept: obs.valueCodeableConcept, - }; - } - else { - return { - value: 'Unknown type', - }; - } -}; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2JzZXJ2YXRpb24udXRpbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NvdXJjZS9saWIvb2JzZXJ2YXRpb24vb2JzZXJ2YXRpb24udXRpbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFHQSxNQUFNLENBQUMsTUFBTSxXQUFXLEdBQTJCO0lBQ2pELFNBQVMsRUFBRSxDQUFDO0NBQ2IsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLGdCQUFnQixHQUFHLENBQUMsSUFBYSxFQUFFLEVBQUUsQ0FBQyxDQUFDO0lBQ2xELElBQUk7SUFDSixNQUFNLEVBQUUsVUFBVTtJQUNsQixLQUFLLEVBQUU7UUFDTCxXQUFXLEVBQUUsbUJBQW1CO1FBQ2hDLFNBQVMsRUFBRSxRQUFRO0tBQ3BCO0NBQ0YsQ0FBQyxDQUFDO0FBRUgsTUFBTSxDQUFDLE1BQU0sYUFBYSxHQUFHLENBQUMsUUFBOEIsRUFBYyxFQUFFO0lBQzFFLE1BQU0sWUFBWSxHQUFHLFFBQVEsQ0FBQyxDQUFDLENBQTBCLENBQUM7SUFDMUQsTUFBTSxPQUFPLEdBQTRCLENBQUEsWUFBWSxhQUFaLFlBQVksdUJBQVosWUFBWSxDQUFFLEtBQUs7UUFDMUQsQ0FBQyxDQUFFLFlBQVksQ0FBQyxLQUFpQztRQUNqRCxDQUFDLENBQUMsRUFBRSxDQUFDO0lBQ1AsT0FBTyxPQUFPO1NBQ1gsR0FBRyxDQUFDLENBQUMsS0FBNEIsRUFBRSxFQUFFLENBQUMsS0FBSyxhQUFMLEtBQUssdUJBQUwsS0FBSyxDQUFFLFFBQWUsQ0FBQztTQUM3RCxNQUFNLENBQ0wsQ0FBQyxRQUFrQixFQUFFLEVBQUUsQ0FBQyxRQUFRLENBQUMsWUFBWSxLQUFLLGtCQUFrQixDQUNyRSxDQUFDO0FBQ04sQ0FBQyxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0sUUFBUSxHQUFHLENBQUMsR0FBZ0IsRUFBTyxFQUFFO0lBQ2hELElBQUksR0FBRyxDQUFDLGFBQWEsRUFBRTtRQUNyQixPQUFPO1lBQ0wsYUFBYSxFQUFFLEdBQUcsQ0FBQyxhQUFhO1NBQ2pDLENBQUM7S0FDSDtTQUFNLElBQUksR0FBRyxDQUFDLFlBQVksRUFBRTtRQUMzQixPQUFPO1lBQ0wsWUFBWSxFQUFFLEdBQUcsQ0FBQyxZQUFZO1NBQy9CLENBQUM7S0FDSDtTQUFNLElBQUksR0FBRyxDQUFDLFlBQVksRUFBRTtRQUMzQixPQUFPO1lBQ0wsWUFBWSxFQUFFLEdBQUcsQ0FBQyxZQUFZO1NBQy9CLENBQUM7S0FDSDtTQUFNLElBQUksR0FBRyxDQUFDLFdBQVcsRUFBRTtRQUMxQixPQUFPO1lBQ0wsV0FBVyxFQUFFLEdBQUcsQ0FBQyxXQUFXO1NBQzdCLENBQUM7S0FDSDtTQUFNLElBQUksR0FBRyxDQUFDLFVBQVUsRUFBRTtRQUN6QixPQUFPO1lBQ0wsVUFBVSxFQUFFLEdBQUcsQ0FBQyxVQUFVO1NBQzNCLENBQUM7S0FDSDtTQUFNLElBQUksR0FBRyxDQUFDLG9CQUFvQixFQUFFO1FBQ25DLE9BQU87WUFDTCxvQkFBb0IsRUFBRSxHQUFHLENBQUMsb0JBQW9CO1NBQy9DLENBQUM7S0FDSDtTQUFNO1FBQ0wsT0FBTztZQUNMLEtBQUssRUFBRSxjQUFjO1NBQ3RCLENBQUM7S0FDSDtBQUNILENBQUMsQ0FBQyJ9 \ No newline at end of file diff --git a/build/module/lib/questionnaire.d.ts b/build/module/lib/questionnaire.d.ts deleted file mode 100644 index ce98b93..0000000 --- a/build/module/lib/questionnaire.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { QuestionnaireResponse } from 'fhir/r4'; -export declare const getQuestionnaireItem: (code: string) => Promise; -export declare const getQuestionnaireItems: (code: string, count?: string, sort?: string) => Promise; diff --git a/build/module/lib/questionnaire.js b/build/module/lib/questionnaire.js deleted file mode 100644 index 754c1f4..0000000 --- a/build/module/lib/questionnaire.js +++ /dev/null @@ -1,91 +0,0 @@ -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -import FHIR from 'fhirclient'; -import { getObservation, getValue } from './observation'; -const activeQuestionnaireStatus = ['active', 'draft', 'retired']; -const fhirOptions = { - pageLimit: 0, -}; -const notFoundResponse = (code) => ({ - code, - status: 'notfound', - type: 'QuestionnaireResponse', -}); -const resourcesFrom = (response) => { - const firstEntries = response[0]; - const entries = (firstEntries === null || firstEntries === void 0 ? void 0 : firstEntries.entry) - ? firstEntries.entry - : []; - return entries - .map((entry) => entry === null || entry === void 0 ? void 0 : entry.resource) - .filter((resource) => resource.resourceType !== 'OperationOutcome'); -}; -const getQuestionnaireCodes = (code) => __awaiter(void 0, void 0, void 0, function* () { - const client = yield FHIR.oauth2.ready(); - const queryPath = `Questionnaire?code=${code}&_summary=true`; - const questionnaireRequest = yield client.request(queryPath, fhirOptions); - const questionnaireResource = resourcesFrom(questionnaireRequest); - const filteredQuestionnaire = questionnaireResource.filter((v) => v !== undefined && - v.resourceType === 'Questionnaire' && - activeQuestionnaireStatus.includes(v.status)); - const questionnaireCodes = filteredQuestionnaire.map((val) => val.id); - return questionnaireCodes.join(','); -}); -export const getQuestionnaireItem = (code) => __awaiter(void 0, void 0, void 0, function* () { - const client = yield FHIR.oauth2.ready(); - const questionnaireCodes = yield getQuestionnaireCodes(code); - if (questionnaireCodes) { - const queryPath = `QuestionnaireResponse?questionnaire=${questionnaireCodes}&status=completed,amended,in-progress&_sort=-authored&_count=1`; - const questionnaireRequest = yield client.patient.request(queryPath, fhirOptions); - const questionnaireResource = resourcesFrom(questionnaireRequest); - const filteredQuestionnaire = questionnaireResource.filter((v) => v !== undefined && v.resourceType === 'QuestionnaireResponse'); - if (filteredQuestionnaire.length) { - return filteredQuestionnaire[0]; - } - else { - return notFoundResponse(code); - } - } - else { - const observation = yield getObservation(code); - const mappedObservation = { - item: [ - { - answer: [getValue(observation)], - linkId: observation.code.coding[0].code, - }, - ], - resourceType: observation.resourceType, - authored: observation.issued, - }; - return mappedObservation; - } -}); -export const getQuestionnaireItems = (code, count, sort) => __awaiter(void 0, void 0, void 0, function* () { - const client = yield FHIR.oauth2.ready(); - const questionnaireCodes = yield getQuestionnaireCodes(code); - if (questionnaireCodes) { - const sortType = sort === 'ascending' ? 'date' : '-date'; - const queryPath = `QuestionnaireResponse?questionnaire=${questionnaireCodes}&_sort=${sortType}&_count=${count !== null && count !== void 0 ? count : '100'}`; - const questionnaireRequest = yield client.patient.request(queryPath, fhirOptions); - const questionnaireResource = resourcesFrom(questionnaireRequest); - const filteredQuestionnaire = questionnaireResource.filter((v) => v !== undefined && v.resourceType === 'QuestionnaireResponse'); - if (filteredQuestionnaire.length) { - return filteredQuestionnaire; - } - else { - return []; - } - } - else { - return []; - } -}); -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXVlc3Rpb25uYWlyZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NvdXJjZS9saWIvcXVlc3Rpb25uYWlyZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7QUFDQSxPQUFPLElBQUksTUFBTSxZQUFZLENBQUM7QUFHOUIsT0FBTyxFQUFFLGNBQWMsRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFekQsTUFBTSx5QkFBeUIsR0FBRyxDQUFDLFFBQVEsRUFBRSxPQUFPLEVBQUUsU0FBUyxDQUFDLENBQUM7QUFFakUsTUFBTSxXQUFXLEdBQTJCO0lBQzFDLFNBQVMsRUFBRSxDQUFDO0NBQ2IsQ0FBQztBQUVGLE1BQU0sZ0JBQWdCLEdBQUcsQ0FBQyxJQUFJLEVBQUUsRUFBRSxDQUFDLENBQUM7SUFDbEMsSUFBSTtJQUNKLE1BQU0sRUFBRSxVQUFVO0lBQ2xCLElBQUksRUFBRSx1QkFBdUI7Q0FDOUIsQ0FBQyxDQUFDO0FBRUgsTUFBTSxhQUFhLEdBQUcsQ0FBQyxRQUE4QixFQUFjLEVBQUU7SUFDbkUsTUFBTSxZQUFZLEdBQUcsUUFBUSxDQUFDLENBQUMsQ0FBMEIsQ0FBQztJQUMxRCxNQUFNLE9BQU8sR0FBNEIsQ0FBQSxZQUFZLGFBQVosWUFBWSx1QkFBWixZQUFZLENBQUUsS0FBSztRQUMxRCxDQUFDLENBQUUsWUFBWSxDQUFDLEtBQWlDO1FBQ2pELENBQUMsQ0FBQyxFQUFFLENBQUM7SUFDUCxPQUFPLE9BQU87U0FDWCxHQUFHLENBQUMsQ0FBQyxLQUE0QixFQUFFLEVBQUUsQ0FBQyxLQUFLLGFBQUwsS0FBSyx1QkFBTCxLQUFLLENBQUUsUUFBZSxDQUFDO1NBQzdELE1BQU0sQ0FDTCxDQUFDLFFBQWtCLEVBQUUsRUFBRSxDQUFDLFFBQVEsQ0FBQyxZQUFZLEtBQUssa0JBQWtCLENBQ3JFLENBQUM7QUFDTixDQUFDLENBQUM7QUFFRixNQUFNLHFCQUFxQixHQUFHLENBQU8sSUFBWSxFQUFtQixFQUFFO0lBQ3BFLE1BQU0sTUFBTSxHQUFHLE1BQU0sSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUN6QyxNQUFNLFNBQVMsR0FBRyxzQkFBc0IsSUFBSSxnQkFBZ0IsQ0FBQztJQUM3RCxNQUFNLG9CQUFvQixHQUF5QixNQUFNLE1BQU0sQ0FBQyxPQUFPLENBQ3JFLFNBQVMsRUFDVCxXQUFXLENBQ1osQ0FBQztJQUVGLE1BQU0scUJBQXFCLEdBQW9CLGFBQWEsQ0FDMUQsb0JBQW9CLENBQ0YsQ0FBQztJQUVyQixNQUFNLHFCQUFxQixHQUFvQixxQkFBcUIsQ0FBQyxNQUFNLENBQ3pFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FDSixDQUFDLEtBQUssU0FBUztRQUNmLENBQUMsQ0FBQyxZQUFZLEtBQUssZUFBZTtRQUNsQyx5QkFBeUIsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUMvQyxDQUFDO0lBRUYsTUFBTSxrQkFBa0IsR0FBRyxxQkFBcUIsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLEVBQUUsRUFBRSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsQ0FBQztJQUV0RSxPQUFPLGtCQUFrQixDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQztBQUN0QyxDQUFDLENBQUEsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLG9CQUFvQixHQUFHLENBQ2xDLElBQVksRUFDb0IsRUFBRTtJQUNsQyxNQUFNLE1BQU0sR0FBRyxNQUFNLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxFQUFFLENBQUM7SUFDekMsTUFBTSxrQkFBa0IsR0FBRyxNQUFNLHFCQUFxQixDQUFDLElBQUksQ0FBQyxDQUFDO0lBQzdELElBQUksa0JBQWtCLEVBQUU7UUFDdEIsTUFBTSxTQUFTLEdBQUcsdUNBQXVDLGtCQUFrQixnRUFBZ0UsQ0FBQztRQUM1SSxNQUFNLG9CQUFvQixHQUN4QixNQUFNLE1BQU0sQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUFDLFNBQVMsRUFBRSxXQUFXLENBQUMsQ0FBQztRQUV2RCxNQUFNLHFCQUFxQixHQUE0QixhQUFhLENBQ2xFLG9CQUFvQixDQUNNLENBQUM7UUFFN0IsTUFBTSxxQkFBcUIsR0FDekIscUJBQXFCLENBQUMsTUFBTSxDQUMxQixDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxLQUFLLFNBQVMsSUFBSSxDQUFDLENBQUMsWUFBWSxLQUFLLHVCQUF1QixDQUNyRSxDQUFDO1FBRUosSUFBSSxxQkFBcUIsQ0FBQyxNQUFNLEVBQUU7WUFDaEMsT0FBTyxxQkFBcUIsQ0FBQyxDQUFDLENBQUMsQ0FBQztTQUNqQzthQUFNO1lBQ0wsT0FBTyxnQkFBZ0IsQ0FBQyxJQUFJLENBQXFDLENBQUM7U0FDbkU7S0FDRjtTQUFNO1FBQ0wsTUFBTSxXQUFXLEdBQUcsTUFBTSxjQUFjLENBQUMsSUFBSSxDQUFDLENBQUM7UUFFL0MsTUFBTSxpQkFBaUIsR0FBRztZQUN4QixJQUFJLEVBQUU7Z0JBQ0o7b0JBQ0UsTUFBTSxFQUFFLENBQUMsUUFBUSxDQUFDLFdBQVcsQ0FBQyxDQUFDO29CQUMvQixNQUFNLEVBQUUsV0FBVyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSTtpQkFDeEM7YUFDRjtZQUNELFlBQVksRUFBRSxXQUFXLENBQUMsWUFBWTtZQUN0QyxRQUFRLEVBQUUsV0FBVyxDQUFDLE1BQU07U0FDN0IsQ0FBQztRQUVGLE9BQU8saUJBQXFELENBQUM7S0FDOUQ7QUFDSCxDQUFDLENBQUEsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLHFCQUFxQixHQUFHLENBQ25DLElBQVksRUFDWixLQUFjLEVBQ2QsSUFBYSxFQUNxQixFQUFFO0lBQ3BDLE1BQU0sTUFBTSxHQUFHLE1BQU0sSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUN6QyxNQUFNLGtCQUFrQixHQUFHLE1BQU0scUJBQXFCLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDN0QsSUFBSSxrQkFBa0IsRUFBRTtRQUN0QixNQUFNLFFBQVEsR0FBRyxJQUFJLEtBQUssV0FBVyxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQztRQUV6RCxNQUFNLFNBQVMsR0FBRyx1Q0FBdUMsa0JBQWtCLFVBQVUsUUFBUSxXQUMzRixLQUFLLGFBQUwsS0FBSyxjQUFMLEtBQUssR0FBSSxLQUNYLEVBQUUsQ0FBQztRQUNILE1BQU0sb0JBQW9CLEdBQ3hCLE1BQU0sTUFBTSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQUMsU0FBUyxFQUFFLFdBQVcsQ0FBQyxDQUFDO1FBRXZELE1BQU0scUJBQXFCLEdBQTRCLGFBQWEsQ0FDbEUsb0JBQW9CLENBQ00sQ0FBQztRQUU3QixNQUFNLHFCQUFxQixHQUN6QixxQkFBcUIsQ0FBQyxNQUFNLENBQzFCLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEtBQUssU0FBUyxJQUFJLENBQUMsQ0FBQyxZQUFZLEtBQUssdUJBQXVCLENBQ3JFLENBQUM7UUFFSixJQUFJLHFCQUFxQixDQUFDLE1BQU0sRUFBRTtZQUNoQyxPQUFPLHFCQUFxQixDQUFDO1NBQzlCO2FBQU07WUFDTCxPQUFPLEVBQUUsQ0FBQztTQUNYO0tBQ0Y7U0FBTTtRQUNMLE9BQU8sRUFBRSxDQUFDO0tBQ1g7QUFDSCxDQUFDLENBQUEsQ0FBQyJ9 \ No newline at end of file diff --git a/build/module/lib/questionnaire.spec.d.ts b/build/module/lib/questionnaire.spec.d.ts deleted file mode 100644 index e69de29..0000000 diff --git a/build/module/lib/questionnaire.spec.js b/build/module/lib/questionnaire.spec.js deleted file mode 100644 index 4411c4a..0000000 --- a/build/module/lib/questionnaire.spec.js +++ /dev/null @@ -1 +0,0 @@ -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXVlc3Rpb25uYWlyZS5zcGVjLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc291cmNlL2xpYi9xdWVzdGlvbm5haXJlLnNwZWMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9 \ No newline at end of file diff --git a/build/module/lib/questionnaire/index.d.ts b/build/module/lib/questionnaire/index.d.ts deleted file mode 100644 index 20db07b..0000000 --- a/build/module/lib/questionnaire/index.d.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './questionnaire'; diff --git a/build/module/lib/questionnaire/index.js b/build/module/lib/questionnaire/index.js deleted file mode 100644 index 5a7be33..0000000 --- a/build/module/lib/questionnaire/index.js +++ /dev/null @@ -1,2 +0,0 @@ -export * from './questionnaire'; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zb3VyY2UvbGliL3F1ZXN0aW9ubmFpcmUvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxpQkFBaUIsQ0FBQyJ9 \ No newline at end of file diff --git a/build/module/lib/questionnaire/questionnaire.d.ts b/build/module/lib/questionnaire/questionnaire.d.ts deleted file mode 100644 index ce98b93..0000000 --- a/build/module/lib/questionnaire/questionnaire.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { QuestionnaireResponse } from 'fhir/r4'; -export declare const getQuestionnaireItem: (code: string) => Promise; -export declare const getQuestionnaireItems: (code: string, count?: string, sort?: string) => Promise; diff --git a/build/module/lib/questionnaire/questionnaire.js b/build/module/lib/questionnaire/questionnaire.js deleted file mode 100644 index 1e151f6..0000000 --- a/build/module/lib/questionnaire/questionnaire.js +++ /dev/null @@ -1,114 +0,0 @@ -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -import FHIR from 'fhirclient'; -import log from '../../utils/loglevel'; -import { getObservation } from '../observation'; -import { getValue } from '../observation/observation.util'; -import { activeQuestionnaireStatus, fhirOptions, notFoundResponse, resourcesFrom, } from './questionnaire.util'; -const getQuestionnaireCodes = (code) => __awaiter(void 0, void 0, void 0, function* () { - if (!code) { - log.error('getQuestionnaireCodes - code not found'); - return ''; - } - const client = yield FHIR.oauth2.ready(); - log.info(`getQuestionnaireCodes - start with code - ${code}`); - const queryPath = `Questionnaire?code=${code}&_summary=true`; - const questionnaireRequest = yield client.request(queryPath, fhirOptions); - const questionnaireResource = resourcesFrom(questionnaireRequest); - const filteredQuestionnaire = questionnaireResource.filter((v) => v !== undefined && - v.resourceType === 'Questionnaire' && - activeQuestionnaireStatus.includes(v.status)); - const questionnaireCodes = filteredQuestionnaire.map((val) => val.id); - const combinedQuestionnaireCodes = questionnaireCodes.join(','); - log.info(`getQuestionnaireCodes - complete with codes - ${combinedQuestionnaireCodes}`); - return combinedQuestionnaireCodes; -}); -export const getQuestionnaireItem = (code) => __awaiter(void 0, void 0, void 0, function* () { - if (!code) { - log.error('getQuestionnaireItem - code not found'); - return notFoundResponse(); - } - const client = yield FHIR.oauth2.ready(); - log.info(`getQuestionnaireItem - start with code - ${code}`); - const questionnaireCodes = yield getQuestionnaireCodes(code); - if (questionnaireCodes) { - log.info(`getQuestionnaireItem - start after get codes - ${questionnaireCodes}`); - const queryPath = `QuestionnaireResponse?questionnaire=${questionnaireCodes}&status=completed,amended,in-progress&_sort=-authored&_count=1`; - const questionnaireRequest = yield client.patient.request(queryPath, fhirOptions); - const questionnaireResource = resourcesFrom(questionnaireRequest); - const filteredQuestionnaire = questionnaireResource.filter((v) => v !== undefined && v.resourceType === 'QuestionnaireResponse'); - if (!filteredQuestionnaire.length) { - log.error('getQuestionnaireItem - empty questionnaire'); - return notFoundResponse(code); - } - log.info(`getQuestionnaireItem - successful with code ${code} - with length ${filteredQuestionnaire.length}`); - log.debug({ - serviceName: 'getQuestionnaireItem', - result: filteredQuestionnaire[0], - }); - return filteredQuestionnaire[0]; - } - else { - log.info(`getQuestionnaireItem - start with observation code - ${code}`); - const observation = yield getObservation(code); - if (observation.status === 'notfound') { - log.error('getQuestionnaireItem - empty observations'); - return notFoundResponse(code); - } - const mappedObservationToQuestioinnaireResponse = { - item: [ - { - answer: [getValue(observation)], - linkId: observation.code.coding[0].code, - }, - ], - resourceType: observation.resourceType, - authored: observation.issued, - }; - log.info(`getQuestionnaireItem - successful with code ${code} - with answer ${mappedObservationToQuestioinnaireResponse[0].answer}`); - log.debug({ - serviceName: 'getQuestionnaireItem', - result: mappedObservationToQuestioinnaireResponse, - }); - return mappedObservationToQuestioinnaireResponse; - } -}); -export const getQuestionnaireItems = (code, count, sort) => __awaiter(void 0, void 0, void 0, function* () { - if (!code) { - log.error('getQuestionnaireItems - code not found'); - return []; - } - const client = yield FHIR.oauth2.ready(); - log.info(`getQuestionnaireItems - start with code - ${code}`); - const questionnaireCodes = yield getQuestionnaireCodes(code); - if (questionnaireCodes) { - log.info(`getQuestionnaireItems - start after get codes - ${questionnaireCodes}`); - const sortType = sort === 'ascending' ? 'date' : '-date'; - const queryPath = `QuestionnaireResponse?questionnaire=${questionnaireCodes}&_sort=${sortType}&_count=${count !== null && count !== void 0 ? count : '100'}`; - const questionnaireRequest = yield client.patient.request(queryPath, fhirOptions); - const questionnaireResource = resourcesFrom(questionnaireRequest); - const filteredQuestionnaire = questionnaireResource.filter((v) => v !== undefined && v.resourceType === 'QuestionnaireResponse'); - if (!filteredQuestionnaire.length) { - log.error('getQuestionnaireItems - empty questionnaire'); - return []; - } - log.info(`getQuestionnaireItems - successful with code ${code} - with length ${filteredQuestionnaire.length}`); - log.debug({ - serviceName: 'getQuestionnaireItems', - result: filteredQuestionnaire, - }); - return filteredQuestionnaire; - } - else { - log.error('getQuestionnaireItems - empty codes'); - return []; - } -}); -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXVlc3Rpb25uYWlyZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NvdXJjZS9saWIvcXVlc3Rpb25uYWlyZS9xdWVzdGlvbm5haXJlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7OztBQUNBLE9BQU8sSUFBSSxNQUFNLFlBQVksQ0FBQztBQUc5QixPQUFPLEdBQUcsTUFBTSxzQkFBc0IsQ0FBQztBQUN2QyxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDaEQsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBRTNELE9BQU8sRUFDTCx5QkFBeUIsRUFDekIsV0FBVyxFQUNYLGdCQUFnQixFQUNoQixhQUFhLEdBQ2QsTUFBTSxzQkFBc0IsQ0FBQztBQUU5QixNQUFNLHFCQUFxQixHQUFHLENBQU8sSUFBWSxFQUFtQixFQUFFO0lBQ3BFLElBQUksQ0FBQyxJQUFJLEVBQUU7UUFDVCxHQUFHLENBQUMsS0FBSyxDQUFDLHdDQUF3QyxDQUFDLENBQUM7UUFDcEQsT0FBTyxFQUFFLENBQUM7S0FDWDtJQUVELE1BQU0sTUFBTSxHQUFHLE1BQU0sSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUV6QyxHQUFHLENBQUMsSUFBSSxDQUFDLDZDQUE2QyxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQzlELE1BQU0sU0FBUyxHQUFHLHNCQUFzQixJQUFJLGdCQUFnQixDQUFDO0lBQzdELE1BQU0sb0JBQW9CLEdBQXlCLE1BQU0sTUFBTSxDQUFDLE9BQU8sQ0FDckUsU0FBUyxFQUNULFdBQVcsQ0FDWixDQUFDO0lBRUYsTUFBTSxxQkFBcUIsR0FBb0IsYUFBYSxDQUMxRCxvQkFBb0IsQ0FDRixDQUFDO0lBRXJCLE1BQU0scUJBQXFCLEdBQW9CLHFCQUFxQixDQUFDLE1BQU0sQ0FDekUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUNKLENBQUMsS0FBSyxTQUFTO1FBQ2YsQ0FBQyxDQUFDLFlBQVksS0FBSyxlQUFlO1FBQ2xDLHlCQUF5QixDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLENBQy9DLENBQUM7SUFFRixNQUFNLGtCQUFrQixHQUFHLHFCQUFxQixDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsRUFBRSxFQUFFLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxDQUFDO0lBQ3RFLE1BQU0sMEJBQTBCLEdBQUcsa0JBQWtCLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBRWhFLEdBQUcsQ0FBQyxJQUFJLENBQ04saURBQWlELDBCQUEwQixFQUFFLENBQzlFLENBQUM7SUFFRixPQUFPLDBCQUEwQixDQUFDO0FBQ3BDLENBQUMsQ0FBQSxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0sb0JBQW9CLEdBQUcsQ0FDbEMsSUFBWSxFQUNvQixFQUFFO0lBQ2xDLElBQUksQ0FBQyxJQUFJLEVBQUU7UUFDVCxHQUFHLENBQUMsS0FBSyxDQUFDLHVDQUF1QyxDQUFDLENBQUM7UUFDbkQsT0FBTyxnQkFBZ0IsRUFBc0MsQ0FBQztLQUMvRDtJQUNELE1BQU0sTUFBTSxHQUFHLE1BQU0sSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUV6QyxHQUFHLENBQUMsSUFBSSxDQUFDLDRDQUE0QyxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQzdELE1BQU0sa0JBQWtCLEdBQUcsTUFBTSxxQkFBcUIsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUU3RCxJQUFJLGtCQUFrQixFQUFFO1FBQ3RCLEdBQUcsQ0FBQyxJQUFJLENBQ04sa0RBQWtELGtCQUFrQixFQUFFLENBQ3ZFLENBQUM7UUFDRixNQUFNLFNBQVMsR0FBRyx1Q0FBdUMsa0JBQWtCLGdFQUFnRSxDQUFDO1FBQzVJLE1BQU0sb0JBQW9CLEdBQ3hCLE1BQU0sTUFBTSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQUMsU0FBUyxFQUFFLFdBQVcsQ0FBQyxDQUFDO1FBRXZELE1BQU0scUJBQXFCLEdBQTRCLGFBQWEsQ0FDbEUsb0JBQW9CLENBQ00sQ0FBQztRQUU3QixNQUFNLHFCQUFxQixHQUN6QixxQkFBcUIsQ0FBQyxNQUFNLENBQzFCLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEtBQUssU0FBUyxJQUFJLENBQUMsQ0FBQyxZQUFZLEtBQUssdUJBQXVCLENBQ3JFLENBQUM7UUFFSixJQUFJLENBQUMscUJBQXFCLENBQUMsTUFBTSxFQUFFO1lBQ2pDLEdBQUcsQ0FBQyxLQUFLLENBQUMsNENBQTRDLENBQUMsQ0FBQztZQUN4RCxPQUFPLGdCQUFnQixDQUFDLElBQUksQ0FBcUMsQ0FBQztTQUNuRTtRQUVELEdBQUcsQ0FBQyxJQUFJLENBQ04sK0NBQStDLElBQUksa0JBQWtCLHFCQUFxQixDQUFDLE1BQU0sRUFBRSxDQUNwRyxDQUFDO1FBQ0YsR0FBRyxDQUFDLEtBQUssQ0FBQztZQUNSLFdBQVcsRUFBRSxzQkFBc0I7WUFDbkMsTUFBTSxFQUFFLHFCQUFxQixDQUFDLENBQUMsQ0FBQztTQUNqQyxDQUFDLENBQUM7UUFDSCxPQUFPLHFCQUFxQixDQUFDLENBQUMsQ0FBQyxDQUFDO0tBQ2pDO1NBQU07UUFDTCxHQUFHLENBQUMsSUFBSSxDQUFDLHdEQUF3RCxJQUFJLEVBQUUsQ0FBQyxDQUFDO1FBQ3pFLE1BQU0sV0FBVyxHQUFRLE1BQU0sY0FBYyxDQUFDLElBQUksQ0FBQyxDQUFDO1FBRXBELElBQUksV0FBVyxDQUFDLE1BQU0sS0FBSyxVQUFVLEVBQUU7WUFDckMsR0FBRyxDQUFDLEtBQUssQ0FBQywyQ0FBMkMsQ0FBQyxDQUFDO1lBQ3ZELE9BQU8sZ0JBQWdCLENBQUMsSUFBSSxDQUFxQyxDQUFDO1NBQ25FO1FBRUQsTUFBTSx5Q0FBeUMsR0FBRztZQUNoRCxJQUFJLEVBQUU7Z0JBQ0o7b0JBQ0UsTUFBTSxFQUFFLENBQUMsUUFBUSxDQUFDLFdBQVcsQ0FBQyxDQUFDO29CQUMvQixNQUFNLEVBQUUsV0FBVyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSTtpQkFDeEM7YUFDRjtZQUNELFlBQVksRUFBRSxXQUFXLENBQUMsWUFBWTtZQUN0QyxRQUFRLEVBQUUsV0FBVyxDQUFDLE1BQU07U0FDN0IsQ0FBQztRQUVGLEdBQUcsQ0FBQyxJQUFJLENBQ04sK0NBQStDLElBQUksa0JBQWtCLHlDQUF5QyxDQUFDLENBQUMsQ0FBQyxDQUFDLE1BQU0sRUFBRSxDQUMzSCxDQUFDO1FBQ0YsR0FBRyxDQUFDLEtBQUssQ0FBQztZQUNSLFdBQVcsRUFBRSxzQkFBc0I7WUFDbkMsTUFBTSxFQUFFLHlDQUF5QztTQUNsRCxDQUFDLENBQUM7UUFDSCxPQUFPLHlDQUE2RSxDQUFDO0tBQ3RGO0FBQ0gsQ0FBQyxDQUFBLENBQUM7QUFFRixNQUFNLENBQUMsTUFBTSxxQkFBcUIsR0FBRyxDQUNuQyxJQUFZLEVBQ1osS0FBYyxFQUNkLElBQWEsRUFDcUIsRUFBRTtJQUNwQyxJQUFJLENBQUMsSUFBSSxFQUFFO1FBQ1QsR0FBRyxDQUFDLEtBQUssQ0FBQyx3Q0FBd0MsQ0FBQyxDQUFDO1FBQ3BELE9BQU8sRUFBRSxDQUFDO0tBQ1g7SUFDRCxNQUFNLE1BQU0sR0FBRyxNQUFNLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxFQUFFLENBQUM7SUFFekMsR0FBRyxDQUFDLElBQUksQ0FBQyw2Q0FBNkMsSUFBSSxFQUFFLENBQUMsQ0FBQztJQUM5RCxNQUFNLGtCQUFrQixHQUFHLE1BQU0scUJBQXFCLENBQUMsSUFBSSxDQUFDLENBQUM7SUFFN0QsSUFBSSxrQkFBa0IsRUFBRTtRQUN0QixHQUFHLENBQUMsSUFBSSxDQUNOLG1EQUFtRCxrQkFBa0IsRUFBRSxDQUN4RSxDQUFDO1FBQ0YsTUFBTSxRQUFRLEdBQUcsSUFBSSxLQUFLLFdBQVcsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUM7UUFFekQsTUFBTSxTQUFTLEdBQUcsdUNBQXVDLGtCQUFrQixVQUFVLFFBQVEsV0FDM0YsS0FBSyxhQUFMLEtBQUssY0FBTCxLQUFLLEdBQUksS0FDWCxFQUFFLENBQUM7UUFDSCxNQUFNLG9CQUFvQixHQUN4QixNQUFNLE1BQU0sQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUFDLFNBQVMsRUFBRSxXQUFXLENBQUMsQ0FBQztRQUV2RCxNQUFNLHFCQUFxQixHQUE0QixhQUFhLENBQ2xFLG9CQUFvQixDQUNNLENBQUM7UUFFN0IsTUFBTSxxQkFBcUIsR0FDekIscUJBQXFCLENBQUMsTUFBTSxDQUMxQixDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxLQUFLLFNBQVMsSUFBSSxDQUFDLENBQUMsWUFBWSxLQUFLLHVCQUF1QixDQUNyRSxDQUFDO1FBRUosSUFBSSxDQUFDLHFCQUFxQixDQUFDLE1BQU0sRUFBRTtZQUNqQyxHQUFHLENBQUMsS0FBSyxDQUFDLDZDQUE2QyxDQUFDLENBQUM7WUFDekQsT0FBTyxFQUFFLENBQUM7U0FDWDtRQUVELEdBQUcsQ0FBQyxJQUFJLENBQ04sZ0RBQWdELElBQUksa0JBQWtCLHFCQUFxQixDQUFDLE1BQU0sRUFBRSxDQUNyRyxDQUFDO1FBQ0YsR0FBRyxDQUFDLEtBQUssQ0FBQztZQUNSLFdBQVcsRUFBRSx1QkFBdUI7WUFDcEMsTUFBTSxFQUFFLHFCQUFxQjtTQUM5QixDQUFDLENBQUM7UUFDSCxPQUFPLHFCQUFxQixDQUFDO0tBQzlCO1NBQU07UUFDTCxHQUFHLENBQUMsS0FBSyxDQUFDLHFDQUFxQyxDQUFDLENBQUM7UUFDakQsT0FBTyxFQUFFLENBQUM7S0FDWDtBQUNILENBQUMsQ0FBQSxDQUFDIn0= \ No newline at end of file diff --git a/build/module/lib/questionnaire/questionnaire.spec.d.ts b/build/module/lib/questionnaire/questionnaire.spec.d.ts deleted file mode 100644 index e69de29..0000000 diff --git a/build/module/lib/questionnaire/questionnaire.spec.js b/build/module/lib/questionnaire/questionnaire.spec.js deleted file mode 100644 index 9e5d35e..0000000 --- a/build/module/lib/questionnaire/questionnaire.spec.js +++ /dev/null @@ -1,2 +0,0 @@ -// noop -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXVlc3Rpb25uYWlyZS5zcGVjLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc291cmNlL2xpYi9xdWVzdGlvbm5haXJlL3F1ZXN0aW9ubmFpcmUuc3BlYy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPIn0= \ No newline at end of file diff --git a/build/module/lib/questionnaire/questionnaire.util.d.ts b/build/module/lib/questionnaire/questionnaire.util.d.ts deleted file mode 100644 index 113d904..0000000 --- a/build/module/lib/questionnaire/questionnaire.util.d.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { Resource } from 'fhir/r4'; -import { fhirclient } from 'fhirclient/lib/types'; -export declare const activeQuestionnaireStatus: string[]; -export declare const fhirOptions: fhirclient.FhirOptions; -export declare const notFoundResponse: (code?: string) => { - code: string; - status: string; - type: string; -}; -export declare const resourcesFrom: (response: fhirclient.JsonArray) => Resource[]; diff --git a/build/module/lib/questionnaire/questionnaire.util.js b/build/module/lib/questionnaire/questionnaire.util.js deleted file mode 100644 index fff9385..0000000 --- a/build/module/lib/questionnaire/questionnaire.util.js +++ /dev/null @@ -1,19 +0,0 @@ -export const activeQuestionnaireStatus = ['active', 'draft', 'retired']; -export const fhirOptions = { - pageLimit: 0, -}; -export const notFoundResponse = (code) => ({ - code, - status: 'notfound', - type: 'QuestionnaireResponse', -}); -export const resourcesFrom = (response) => { - const firstEntries = response[0]; - const entries = (firstEntries === null || firstEntries === void 0 ? void 0 : firstEntries.entry) - ? firstEntries.entry - : []; - return entries - .map((entry) => entry === null || entry === void 0 ? void 0 : entry.resource) - .filter((resource) => resource.resourceType !== 'OperationOutcome'); -}; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXVlc3Rpb25uYWlyZS51dGlsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc291cmNlL2xpYi9xdWVzdGlvbm5haXJlL3F1ZXN0aW9ubmFpcmUudXRpbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFHQSxNQUFNLENBQUMsTUFBTSx5QkFBeUIsR0FBRyxDQUFDLFFBQVEsRUFBRSxPQUFPLEVBQUUsU0FBUyxDQUFDLENBQUM7QUFFeEUsTUFBTSxDQUFDLE1BQU0sV0FBVyxHQUEyQjtJQUNqRCxTQUFTLEVBQUUsQ0FBQztDQUNiLENBQUM7QUFFRixNQUFNLENBQUMsTUFBTSxnQkFBZ0IsR0FBRyxDQUFDLElBQWEsRUFBRSxFQUFFLENBQUMsQ0FBQztJQUNsRCxJQUFJO0lBQ0osTUFBTSxFQUFFLFVBQVU7SUFDbEIsSUFBSSxFQUFFLHVCQUF1QjtDQUM5QixDQUFDLENBQUM7QUFFSCxNQUFNLENBQUMsTUFBTSxhQUFhLEdBQUcsQ0FBQyxRQUE4QixFQUFjLEVBQUU7SUFDMUUsTUFBTSxZQUFZLEdBQUcsUUFBUSxDQUFDLENBQUMsQ0FBMEIsQ0FBQztJQUMxRCxNQUFNLE9BQU8sR0FBNEIsQ0FBQSxZQUFZLGFBQVosWUFBWSx1QkFBWixZQUFZLENBQUUsS0FBSztRQUMxRCxDQUFDLENBQUUsWUFBWSxDQUFDLEtBQWlDO1FBQ2pELENBQUMsQ0FBQyxFQUFFLENBQUM7SUFDUCxPQUFPLE9BQU87U0FDWCxHQUFHLENBQUMsQ0FBQyxLQUE0QixFQUFFLEVBQUUsQ0FBQyxLQUFLLGFBQUwsS0FBSyx1QkFBTCxLQUFLLENBQUUsUUFBZSxDQUFDO1NBQzdELE1BQU0sQ0FDTCxDQUFDLFFBQWtCLEVBQUUsRUFBRSxDQUFDLFFBQVEsQ0FBQyxZQUFZLEtBQUssa0JBQWtCLENBQ3JFLENBQUM7QUFDTixDQUFDLENBQUMifQ== \ No newline at end of file diff --git a/build/module/query/convertCsvToJson.d.ts b/build/module/query/convertCsvToJson.d.ts deleted file mode 100644 index e69de29..0000000 diff --git a/build/module/query/convertCsvToJson.js b/build/module/query/convertCsvToJson.js deleted file mode 100644 index 2834213..0000000 --- a/build/module/query/convertCsvToJson.js +++ /dev/null @@ -1,11 +0,0 @@ -// README: This is only to convert CSV to JSON, to run this, change it to js and simply run node convertCsvToJson.js -// const fs = require('fs') -// const path = require('path') -// let csvToJson = require('convert-csv-to-json'); -// const dirname = path.resolve('../resources'); -// const files = fs.readdirSync(dirname) -// files.forEach((filename) => { -// const filenameTrim = filename.replace('.csv', ''); -// csvToJson.fieldDelimiter(',').generateJsonFileFromCsv(dirname + '/' + filename, dirname + '/' + filenameTrim + '.json'); -// }) -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udmVydENzdlRvSnNvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NvdXJjZS9xdWVyeS9jb252ZXJ0Q3N2VG9Kc29uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLG9IQUFvSDtBQUVwSCwyQkFBMkI7QUFDM0IsK0JBQStCO0FBQy9CLGtEQUFrRDtBQUVsRCxnREFBZ0Q7QUFFaEQsd0NBQXdDO0FBRXhDLGdDQUFnQztBQUNoQyx1REFBdUQ7QUFDdkQsNkhBQTZIO0FBQzdILEtBQUsifQ== \ No newline at end of file diff --git a/build/module/query/json.d.ts b/build/module/query/json.d.ts deleted file mode 100644 index 1dcb436..0000000 --- a/build/module/query/json.d.ts +++ /dev/null @@ -1 +0,0 @@ -export declare const getAllCodes: (valueName: string) => Promise; diff --git a/build/module/query/json.js b/build/module/query/json.js deleted file mode 100644 index 2d39b1c..0000000 --- a/build/module/query/json.js +++ /dev/null @@ -1,28 +0,0 @@ -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -const internalGetCodeKey = (uuesystem, code) => { - return uuesystem + '%7C' + code; -}; -const getCodeKey = (system, code) => { - return internalGetCodeKey(encodeURIComponent(system), code); -}; -export const getAllCodes = (valueName) => __awaiter(void 0, void 0, void 0, function* () { - var _a; - const valueSets = yield import(`../resources/${valueName}.json`); - const mappedCodes = (_a = Object.values(valueSets)) === null || _a === void 0 ? void 0 : _a.reduce((accumulator, current) => { - if (current && !Array.isArray(current)) { - // eslint-disable-next-line functional/immutable-data - accumulator.push(getCodeKey(current === null || current === void 0 ? void 0 : current.System, current === null || current === void 0 ? void 0 : current.Code)); - } - return accumulator; - }, []); - return mappedCodes; -}); -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoianNvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NvdXJjZS9xdWVyeS9qc29uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7OztBQUVBLE1BQU0sa0JBQWtCLEdBQUcsQ0FBQyxTQUFpQixFQUFFLElBQVksRUFBVSxFQUFFO0lBQ3JFLE9BQU8sU0FBUyxHQUFHLEtBQUssR0FBRyxJQUFJLENBQUM7QUFDbEMsQ0FBQyxDQUFDO0FBRUYsTUFBTSxVQUFVLEdBQUcsQ0FBQyxNQUFjLEVBQUUsSUFBWSxFQUFVLEVBQUU7SUFDMUQsT0FBTyxrQkFBa0IsQ0FBQyxrQkFBa0IsQ0FBQyxNQUFNLENBQUMsRUFBRSxJQUFJLENBQUMsQ0FBQztBQUM5RCxDQUFDLENBQUM7QUFFRixNQUFNLENBQUMsTUFBTSxXQUFXLEdBQUcsQ0FBTyxTQUFpQixFQUFxQixFQUFFOztJQUN4RSxNQUFNLFNBQVMsR0FBaUIsTUFBTSxNQUFNLENBQzFDLGdCQUFnQixTQUFTLE9BQU8sQ0FDakMsQ0FBQztJQUVGLE1BQU0sV0FBVyxHQUFhLE1BQUEsTUFBTSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsMENBQUUsTUFBTSxDQUM1RCxDQUFDLFdBQVcsRUFBRSxPQUFPLEVBQUUsRUFBRTtRQUN2QixJQUFJLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUFDLEVBQUU7WUFDdEMscURBQXFEO1lBQ3JELFdBQVcsQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLE9BQU8sYUFBUCxPQUFPLHVCQUFQLE9BQU8sQ0FBRSxNQUFNLEVBQUUsT0FBTyxhQUFQLE9BQU8sdUJBQVAsT0FBTyxDQUFFLElBQUksQ0FBQyxDQUFDLENBQUM7U0FDOUQ7UUFFRCxPQUFPLFdBQVcsQ0FBQztJQUNyQixDQUFDLEVBQ0QsRUFBRSxDQUNILENBQUM7SUFFRixPQUFPLFdBQVcsQ0FBQztBQUNyQixDQUFDLENBQUEsQ0FBQyJ9 \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1032.52.json b/build/module/resources/2.16.840.1.113762.1.4.1032.52.json deleted file mode 100644 index cb3f963..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1032.52.json +++ /dev/null @@ -1,860 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111490003", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111491004", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11941006", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "126943008", - "Display": "Separation anxiety (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1376001", - "Display": "Obsessive compulsive personality disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1380006", - "Display": "Agoraphobia without history of panic disorder with limited symptom attacks (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15277004", - "Display": "Hallucinogen-induced anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16266831000119100", - "Display": "Moderate major depressive disorder co-occurrent with anxiety single episode (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1686006", - "Display": "Sedative" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17496003", - "Display": "Organic anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1816003", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18193002", - "Display": "Hypochondriasis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191722009", - "Display": "Agoraphobia with panic attacks (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191736004", - "Display": "Obsessive-compulsive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "192037000", - "Display": "Acute panic state due to acute stress reaction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "192039002", - "Display": "Acute stupor state due to acute stress reaction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "192042008", - "Display": "Acute post-trauma stress state (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197480006", - "Display": "Anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19766004", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20876004", - "Display": "Inhalant-induced anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "21897009", - "Display": "Generalized anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22230001", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22621000119103", - "Display": "Anxiety disorder caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231504006", - "Display": "Mixed anxiety and depressive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24781009", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25501002", - "Display": "Social phobia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271952001", - "Display": "Stress and adjustment reaction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30059008", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313182004", - "Display": "Chronic post-traumatic stress disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3158007", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31781004", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318784009", - "Display": "Posttraumatic stress disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32388005", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34116005", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34938008", - "Display": "Alcohol-induced anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35607004", - "Display": "Panic disorder with agoraphobia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371631005", - "Display": "Panic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38328002", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "386810004", - "Display": "Phobic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39951001", - "Display": "Cannabis-induced anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428687006", - "Display": "Nightmares associated with chronic post-traumatic stress disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43150009", - "Display": "Panic disorder without agoraphobia with severe panic attacks (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "436001000124105", - "Display": "Insomnia due to anxiety and fear (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446175003", - "Display": "Acute posttraumatic stress disorder following military combat (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446180007", - "Display": "Delayed posttraumatic stress disorder following military combat (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47372000", - "Display": "Adjustment disorder with anxious mood (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47505003", - "Display": "Posttraumatic stress disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4932002", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49564006", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50026000", - "Display": "Psychoactive substance-induced organic anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50983008", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51493001", - "Display": "Cocaine-induced anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52910006", - "Display": "Anxiety disorder due to a general medical condition (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53956006", - "Display": "Panic disorder without agoraphobia with panic attacks in partial remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54587008", - "Display": "Simple phobia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5509004", - "Display": "Panic disorder with agoraphobia AND severe panic attacks (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55967005", - "Display": "Phencyclidine-induced anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56576003", - "Display": "Panic disorder without agoraphobia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59923000", - "Display": "Panic disorder with agoraphobia AND panic attacks in full remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61212007", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61569007", - "Display": "Agoraphobia without history of panic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62351001", - "Display": "Generalized social phobia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63701002", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63909006", - "Display": "Panic disorder with agoraphobia AND panic attacks in partial remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "64060000", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "65064003", - "Display": "Panic disorder without agoraphobia with moderate panic attacks (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67195008", - "Display": "Acute stress disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69479009", - "Display": "Anxiety hyperventilation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698693004", - "Display": "Adjustment disorder with anxious mood in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699241002", - "Display": "Chronic post-traumatic stress disorder following military combat (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7031000119100", - "Display": "Psychogenic fugue co-occurrent and due to stress reaction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70655008", - "Display": "Caffeine-induced anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70691001", - "Display": "Agoraphobia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724654009", - "Display": "Anxiety disorder caused by opioid (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724693000", - "Display": "Obsessive compulsive disorder caused by cocaine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724708007", - "Display": "Anxiety disorder caused by methylenedioxymethamphetamine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724722007", - "Display": "Anxiety disorder caused by dissociative drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724723002", - "Display": "Anxiety disorder caused by ketamine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724730008", - "Display": "Obsessive compulsive disorder caused by psychoactive substance (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72861004", - "Display": "Panic disorder without agoraphobia with mild panic attacks (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74010007", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76812003", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76868007", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8185002", - "Display": "Panic disorder with agoraphobia AND moderate panic attacks (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82339009", - "Display": "Amphetamine-induced anxiety disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82415003", - "Display": "Agoraphobia without history of panic disorder without limited symptom attacks (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82494000", - "Display": "Panic disorder without agoraphobia with panic attacks in full remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82738004", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83631006", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87798009", - "Display": "Panic disorder with agoraphobia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89948007", - "Display": "Panic disorder with agoraphobia AND mild panic attacks (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F06.4", - "Display": "Anxiety disorder due to known physiological condition" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.180", - "Display": "Alcohol abuse with alcohol-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.280", - "Display": "Alcohol dependence with alcohol-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.980", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.180", - "Display": "Cannabis abuse with cannabis-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.280", - "Display": "Cannabis dependence with cannabis-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.980", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.180", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.280", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.980", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.180", - "Display": "Cocaine abuse with cocaine-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.280", - "Display": "Cocaine dependence with cocaine-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.980", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.180", - "Display": "Other stimulant abuse with stimulant-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.280", - "Display": "Other stimulant dependence with stimulant-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.980", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.180", - "Display": "Hallucinogen abuse with hallucinogen-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.280", - "Display": "Hallucinogen dependence with hallucinogen-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.980", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.180", - "Display": "Inhalant abuse with inhalant-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.280", - "Display": "Inhalant dependence with inhalant-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.980", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.180", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.280", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.980", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F40.00", - "Display": "Agoraphobia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F40.01", - "Display": "Agoraphobia with panic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F40.02", - "Display": "Agoraphobia without panic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F40.10", - "Display": "Social phobia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F40.11", - "Display": "Social phobia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F40.240", - "Display": "Claustrophobia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F40.8", - "Display": "Other phobic anxiety disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F40.9", - "Display": "Phobic anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F41.0", - "Display": "Panic disorder [episodic paroxysmal anxiety]" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F41.1", - "Display": "Generalized anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F41.3", - "Display": "Other mixed anxiety disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F41.8", - "Display": "Other specified anxiety disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F41.9", - "Display": "Anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F42.2", - "Display": "Mixed obsessional thoughts and acts" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F42.4", - "Display": "Excoriation (skin-picking) disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F42.8", - "Display": "Other obsessive-compulsive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F42.9", - "Display": "Obsessive-compulsive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.0", - "Display": "Acute stress reaction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.10", - "Display": "Post-traumatic stress disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.11", - "Display": "Post-traumatic stress disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.12", - "Display": "Post-traumatic stress disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.22", - "Display": "Adjustment disorder with anxiety" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.23", - "Display": "Adjustment disorder with mixed anxiety and depressed mood" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.8", - "Display": "Other reactions to severe stress" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.9", - "Display": "Reaction to severe stress" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F45.21", - "Display": "Hypochondriasis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R46.81", - "Display": "Obsessive-compulsive behavior" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1032.9.json b/build/module/resources/2.16.840.1.113762.1.4.1032.9.json deleted file mode 100644 index 895af70..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1032.9.json +++ /dev/null @@ -1,536 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10725009", - "Display": "Benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1078301000112109", - "Display": "Multiple drug intolerant hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111438007", - "Display": "Hypertension secondary to renal disease in obstetric context (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1201005", - "Display": "Benign essential hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123799005", - "Display": "Renovascular hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123800009", - "Display": "Goldblatt hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14973001", - "Display": "Renal sclerosis with hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "169465000", - "Display": "Hypertension caused by oral contraceptive pill (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194783001", - "Display": "Secondary malignant renovascular hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194785008", - "Display": "Secondary benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194788005", - "Display": "Hypertension secondary to endocrine disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194791005", - "Display": "Hypertension caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199008003", - "Display": "Pre-existing secondary hypertension complicating pregnancy" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26078007", - "Display": "Hypertension secondary to renal disease complicating AND/OR reason for care during childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28119000", - "Display": "Renal hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31992008", - "Display": "Secondary hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371125006", - "Display": "Labile essential hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39018007", - "Display": "Renal arterial hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39727004", - "Display": "Hypertension secondary to renal disease complicating AND/OR reason for care during puerperium (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "401.0", - "Display": "Malignant essential hypertension" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "401.1", - "Display": "Benign essential hypertension" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "401.9", - "Display": "Unspecified essential hypertension" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "402.00", - "Display": "Malignant hypertensive heart disease without heart failure" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "402.01", - "Display": "Malignant hypertensive heart disease with heart failure" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "402.10", - "Display": "Benign hypertensive heart disease without heart failure" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "402.11", - "Display": "Benign hypertensive heart disease with heart failure" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "402.90", - "Display": "Unspecified hypertensive heart disease without heart failure" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "402.91", - "Display": "Unspecified hypertensive heart disease with heart failure" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "403.00", - "Display": "Hypertensive chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "403.01", - "Display": "Hypertensive chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "403.10", - "Display": "Hypertensive chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "403.11", - "Display": "Hypertensive chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "403.90", - "Display": "Hypertensive chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "403.91", - "Display": "Hypertensive chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.00", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.01", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.02", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.03", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.10", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.11", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.12", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.13", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.90", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.91", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.92", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "404.93", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "405.01", - "Display": "Malignant renovascular hypertension" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "405.09", - "Display": "Other malignant secondary hypertension" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "405.11", - "Display": "Benign renovascular hypertension" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "405.19", - "Display": "Other benign secondary hypertension" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "405.91", - "Display": "Unspecified renovascular hypertension" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "405.99", - "Display": "Other unspecified secondary hypertension" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427889009", - "Display": "Hypertension associated with transplantation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428575007", - "Display": "Hypertension secondary to kidney transplant (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429457004", - "Display": "Systolic essential hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "461301000124109", - "Display": "Resistant hypertensive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46481004", - "Display": "Low-renin essential hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48146000", - "Display": "Diastolic hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48552006", - "Display": "Hypertension secondary to renal disease complicating AND/OR reason for care during pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56218007", - "Display": "Systolic hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "57684003", - "Display": "Parenchymal renal hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59621000", - "Display": "Essential hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59720008", - "Display": "Sustained diastolic hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "65518004", - "Display": "Labile diastolic hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73410007", - "Display": "Benign secondary renovascular hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74451002", - "Display": "Secondary diastolic hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762463000", - "Display": "Diastolic hypertension co-occurrent with systolic hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78975002", - "Display": "Malignant essential hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89242004", - "Display": "Malignant secondary hypertension (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I10", - "Display": "Essential (primary) hypertension" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I11.0", - "Display": "Hypertensive heart disease with heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I11.9", - "Display": "Hypertensive heart disease without heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I12.0", - "Display": "Hypertensive chronic kidney disease with stage 5 chronic kidney disease or end stage renal disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I12.9", - "Display": "Hypertensive chronic kidney disease with stage 1 through stage 4 chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.0", - "Display": "Hypertensive heart and chronic kidney disease with heart failure and stage 1 through stage 4 chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.1", - "Display": "Hypertensive heart and chronic kidney disease without heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.10", - "Display": "Hypertensive heart and chronic kidney disease without heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.11", - "Display": "Hypertensive heart and chronic kidney disease without heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.2", - "Display": "Hypertensive heart and chronic kidney disease with heart failure and with stage 5 chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I15", - "Display": "Secondary hypertension" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I15.0", - "Display": "Renovascular hypertension" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I15.1", - "Display": "Hypertension secondary to other renal disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I15.2", - "Display": "Hypertension secondary to endocrine disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I15.8", - "Display": "Other secondary hypertension" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I15.9", - "Display": "Secondary hypertension" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I16", - "Display": "Hypertensive crisis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I16.0", - "Display": "Hypertensive urgency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I16.1", - "Display": "Hypertensive emergency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I16.9", - "Display": "Hypertensive crisis" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.102.json b/build/module/resources/2.16.840.1.113762.1.4.1222.102.json deleted file mode 100644 index 8547e39..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.102.json +++ /dev/null @@ -1,104 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1091000119108", - "Display": "Obstructive sleep apnea of child (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1101000119103", - "Display": "Obstructive sleep apnea of adult (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16275741000119100", - "Display": "Severe pediatric obstructive sleep apnea (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230493001", - "Display": "Mixed sleep apnea (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "361208003", - "Display": "Primary sleep apnea of newborn (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41975002", - "Display": "Insomnia with sleep apnea (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442164004", - "Display": "Organic sleep apnea (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719976001", - "Display": "Glaucoma and sleep apnea syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73430006", - "Display": "Sleep apnea (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "765751002", - "Display": "Autoimmune encephalopathy with parasomnia and obstructive sleep apnea (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "774068004", - "Display": "AT-hook DNA binding motif containing 1-related intellectual disability" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78275009", - "Display": "Obstructive sleep apnea syndrome (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G47.30", - "Display": "Sleep apnea" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G47.31", - "Display": "Primary central sleep apnea" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G47.33", - "Display": "Obstructive sleep apnea (adult) (pediatric)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G47.37", - "Display": "Central sleep apnea in conditions classified elsewhere" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G47.39", - "Display": "Other sleep apnea" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.103.json b/build/module/resources/2.16.840.1.113762.1.4.1222.103.json deleted file mode 100644 index 41a2885..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.103.json +++ /dev/null @@ -1,74 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "192042008", - "Display": "Acute post-trauma stress state (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313182004", - "Display": "Chronic post-traumatic stress disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318784009", - "Display": "Posttraumatic stress disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443919007", - "Display": "Complex posttraumatic stress disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446175003", - "Display": "Acute posttraumatic stress disorder following military combat (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446180007", - "Display": "Delayed posttraumatic stress disorder following military combat (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47505003", - "Display": "Posttraumatic stress disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699241002", - "Display": "Chronic post-traumatic stress disorder following military combat (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.1", - "Display": "Post-traumatic stress disorder (PTSD)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.10", - "Display": "Post-traumatic stress disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.11", - "Display": "Post-traumatic stress disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.12", - "Display": "Post-traumatic stress disorder" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.111.json b/build/module/resources/2.16.840.1.113762.1.4.1222.111.json deleted file mode 100644 index 493d366..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.111.json +++ /dev/null @@ -1,32 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14682-9", - "Display": "Creatinine [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2160-0", - "Display": "Creatinine [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "38483-4", - "Display": "Creatinine [Mass/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "59826-8", - "Display": "Creatinine [Moles/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "77140-2", - "Display": "Creatinine [Moles/volume] in Serum" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.113.json b/build/module/resources/2.16.840.1.113762.1.4.1222.113.json deleted file mode 100644 index a3aaceb..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.113.json +++ /dev/null @@ -1,56 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "11064-3", - "Display": "Urea nitrogen [Mass/volume] in Serum or Plasma --post dialysis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "11065-0", - "Display": "Urea nitrogen [Mass/volume] in Serum or Plasma --pre dialysis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "12961-9", - "Display": "Urea nitrogen [Mass/volume] in Arterial blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "12962-7", - "Display": "Urea nitrogen [Mass/volume] in Venous blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "12963-5", - "Display": "Urea nitrogen [Mass/volume] in Peripheral blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14937-7", - "Display": "Urea nitrogen [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "3094-0", - "Display": "Urea nitrogen [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "59570-2", - "Display": "Urea nitrogen [Moles/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "6299-2", - "Display": "Urea nitrogen [Mass/volume] in Blood" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.114.json b/build/module/resources/2.16.840.1.113762.1.4.1222.114.json deleted file mode 100644 index 200baa9..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.114.json +++ /dev/null @@ -1,56 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "20509-6", - "Display": "Hemoglobin [Mass/volume] in Blood by calculation" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30313-1", - "Display": "Hemoglobin [Mass/volume] in Arterial blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30350-3", - "Display": "Hemoglobin [Mass/volume] in Venous blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30351-1", - "Display": "Hemoglobin [Mass/volume] in Mixed venous blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30352-9", - "Display": "Hemoglobin [Mass/volume] in Capillary blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "59260-0", - "Display": "Hemoglobin [Moles/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "718-7", - "Display": "Hemoglobin [Mass/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "75928-2", - "Display": "Hemoglobin [Moles/volume] in Arterial blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "76768-1", - "Display": "Hemoglobin [Mass/volume] in Mixed venous blood by Oximetry" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.118.json b/build/module/resources/2.16.840.1.113762.1.4.1222.118.json deleted file mode 100644 index fc14135..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.118.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14801-5", - "Display": "Iron saturation [Molar fraction] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2502-3", - "Display": "Iron saturation [Mass Fraction] in Serum or Plasma" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.119.json b/build/module/resources/2.16.840.1.113762.1.4.1222.119.json deleted file mode 100644 index acb2f80..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.119.json +++ /dev/null @@ -1,50 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "17855-8", - "Display": "Hemoglobin A1c/Hemoglobin.total in Blood by calculation" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "17856-6", - "Display": "Hemoglobin A1c/Hemoglobin.total in Blood by HPLC" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "41995-2", - "Display": "Hemoglobin A1c [Mass/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "4548-4", - "Display": "Hemoglobin A1c/Hemoglobin.total in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "4549-2", - "Display": "Hemoglobin A1c/Hemoglobin.total in Blood by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "59261-8", - "Display": "Hemoglobin A1c/Hemoglobin.total in Blood by IFCC protocol" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "62388-4", - "Display": "Hemoglobin A1c/Hemoglobin.total in Blood by JDS/JSCC protocol" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "71875-9", - "Display": "Hemoglobin A1c/Hemoglobin.total [Pure mass fraction] in Blood" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.120.json b/build/module/resources/2.16.840.1.113762.1.4.1222.120.json deleted file mode 100644 index a023c6f..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.120.json +++ /dev/null @@ -1,38 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2823-3", - "Display": "Potassium [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "32713-0", - "Display": "Potassium [Moles/volume] in Arterial blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "39789-3", - "Display": "Potassium [Moles/volume] in Venous blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "41656-0", - "Display": "Potassium [Moles/volume] in Mixed venous blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "6298-4", - "Display": "Potassium [Moles/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "77142-8", - "Display": "Potassium [Moles/volume] in Serum" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.122.json b/build/module/resources/2.16.840.1.113762.1.4.1222.122.json deleted file mode 100644 index 2e7a0c7..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.122.json +++ /dev/null @@ -1,32 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "18281-6", - "Display": "Calcium [Moles/volume] corrected for total protein in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "29265-6", - "Display": "Calcium [Moles/volume] corrected for albumin in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "34907-6", - "Display": "Calcium [Mass/volume] corrected for total protein in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "46099-8", - "Display": "Calcium [Mass/volume] corrected for albumin in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "47597-0", - "Display": "Calcium [Moles/volume] corrected for total protein in Blood" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.123.json b/build/module/resources/2.16.840.1.113762.1.4.1222.123.json deleted file mode 100644 index b23cb46..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.123.json +++ /dev/null @@ -1,38 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14879-1", - "Display": "Phosphate [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2777-1", - "Display": "Phosphate [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35221-1", - "Display": "Phosphate [Mass or Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "48617-5", - "Display": "Phosphate [Mass/volume] in Serum or Plasma --post dialysis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "48641-5", - "Display": "Phosphate [Mass/volume] in Serum or Plasma --pre dialysis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "55972-4", - "Display": "Phosphate [Moles/volume] in Serum or Plasma --post dialysis" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.126.json b/build/module/resources/2.16.840.1.113762.1.4.1222.126.json deleted file mode 100644 index 02a6fed..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.126.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14635-7", - "Display": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "1989-3", - "Display": "25-hydroxyvitamin D3 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35365-6", - "Display": "Vitamin D+Metabolites [Mass/volume] in Serum or Plasma" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.128.json b/build/module/resources/2.16.840.1.113762.1.4.1222.128.json deleted file mode 100644 index 10e6359..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.128.json +++ /dev/null @@ -1,50 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "70960-0", - "Display": "Kt/V.Peritoneal Dialysis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "70961-8", - "Display": "Kt/V.Hemodialysis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "70963-4", - "Display": "Kt/V.Peritoneal Dialysis [Hume]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "70964-2", - "Display": "Kt/V.Peritoneal Dialysis [Watson]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "70965-9", - "Display": "Kt/V.Hemodialysis [Daugirdas II]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "70966-7", - "Display": "Kt/V.Hemodialysis [UKM]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "71341-2", - "Display": "Kt/V.Peritoneal Dialysis [Percent of body weight]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "71342-0", - "Display": "Kt/V.Hemodialysis [Derived]" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.129.json b/build/module/resources/2.16.840.1.113762.1.4.1222.129.json deleted file mode 100644 index 5f8b62b..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.129.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14866-8", - "Display": "Parathyrin.intact [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2731-8", - "Display": "Parathyrin.intact [Mass/volume] in Serum or Plasma" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.130.json b/build/module/resources/2.16.840.1.113762.1.4.1222.130.json deleted file mode 100644 index 8c96eea..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.130.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "1959-6", - "Display": "Bicarbonate [Moles/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "1963-8", - "Display": "Bicarbonate [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "48631-6", - "Display": "Bicarbonate [Moles/volume] in Serum --post dialysis" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.131.json b/build/module/resources/2.16.840.1.113762.1.4.1222.131.json deleted file mode 100644 index 34711d4..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.131.json +++ /dev/null @@ -1,32 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2947-0", - "Display": "Sodium [Moles/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2951-2", - "Display": "Sodium [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "32717-1", - "Display": "Sodium [Moles/volume] in Arterial blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "39791-9", - "Display": "Sodium [Moles/volume] in Venous blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "77139-4", - "Display": "Sodium [Moles/volume] in Serum" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.132.json b/build/module/resources/2.16.840.1.113762.1.4.1222.132.json deleted file mode 100644 index 5424d22..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.132.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2069-3", - "Display": "Chloride [Moles/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2075-0", - "Display": "Chloride [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "41649-5", - "Display": "Chloride [Moles/volume] in Venous blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "41650-3", - "Display": "Chloride [Moles/volume] in Arterial blood" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.135.json b/build/module/resources/2.16.840.1.113762.1.4.1222.135.json deleted file mode 100644 index 6d6ea5c..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.135.json +++ /dev/null @@ -1,146 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "11054-4", - "Display": "Cholesterol in LDL/Cholesterol in HDL [Mass Ratio] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "12771-2", - "Display": "Cholesterol in HDL [Presence] in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "12772-0", - "Display": "Cholesterol in HDL [Units/volume] in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14646-4", - "Display": "Cholesterol in HDL [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "16616-5", - "Display": "Cholesterol in HDL/Cholesterol in LDL [Mass Ratio] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "18263-4", - "Display": "Cholesterol in HDL [Mass/volume] in Serum or Plasma ultracentrifugate" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2085-9", - "Display": "Cholesterol in HDL [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "26015-8", - "Display": "Cholesterol in HDL 2 [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "26016-6", - "Display": "Cholesterol in HDL 2 [Mass/volume] in Serum or Plasma ultracentrifugate" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "26017-4", - "Display": "Cholesterol in HDL 3 [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "27340-9", - "Display": "Cholesterol in HDL [Presence] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35197-3", - "Display": "Cholesterol in HDL [Mass or Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35243-5", - "Display": "Cholesterol in HDL 3 [Mass or Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "43396-1", - "Display": "Cholesterol non HDL [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "44915-7", - "Display": "Cholesterol in LDL/Cholesterol in HDL [Molar ratio] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "47220-9", - "Display": "Cholesterol in HDL 4+5 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "47221-7", - "Display": "Cholesterol in HDL 1+2 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "47228-2", - "Display": "Cholesterol non HDL/Cholesterol.total [Mass Ratio] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "49130-8", - "Display": "Cholesterol in HDL [Mass/volume] in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "54467-6", - "Display": "Cholesterol in HDL 2a/Cholesterol in total HDL in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "54468-4", - "Display": "Cholesterol in HDL 2b/Cholesterol in total HDL in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "54469-2", - "Display": "Cholesterol in HDL 3a/Cholesterol in total HDL in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "54470-0", - "Display": "Cholesterol in HDL 3b/Cholesterol in total HDL in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "54471-8", - "Display": "Cholesterol in HDL 3c/Cholesterol in total HDL in Serum or Plasma by Electrophoresis" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.137.json b/build/module/resources/2.16.840.1.113762.1.4.1222.137.json deleted file mode 100644 index 7a1bd2b..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.137.json +++ /dev/null @@ -1,128 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "12951-0", - "Display": "Triglyceride [Mass/volume] in Serum or Plasma by calculation" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14927-8", - "Display": "Triglyceride [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "1644-4", - "Display": "Triglyceride [Mass/volume] in Serum or Plasma --12 hours fasting" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2571-8", - "Display": "Triglyceride [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "28554-4", - "Display": "Triglyceride [Presence] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "3043-7", - "Display": "Triglyceride [Mass/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "3045-2", - "Display": "Triglyceride+ester in IDL [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "3046-0", - "Display": "Triglyceride+ester in LDL [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "3047-8", - "Display": "Triglyceride+ester in VLDL [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "3048-6", - "Display": "Triglyceride [Mass/volume] in Serum or Plasma --fasting" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30524-3", - "Display": "Triglyceride [Moles/volume] in Serum or Plasma --12 hours fasting" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30570-6", - "Display": "Triglyceride [Percentile]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35360-7", - "Display": "Triglyceride in Lipoprotein a [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35361-5", - "Display": "Triglyceride in Lipoprotein a [Presence] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35362-3", - "Display": "Triglyceride in Chylomicrons [Presence] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35363-1", - "Display": "Triglyceride in Chylomicrons [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "47210-0", - "Display": "Triglyceride [Moles/volume] in Serum or Plasma --fasting" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53526-0", - "Display": "Triglyceride in VLDL [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53527-8", - "Display": "Triglyceride in HDL 2 [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53528-6", - "Display": "Triglyceride in HDL 3 [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "70218-3", - "Display": "Triglyceride [Moles/volume] in Blood" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.138.json b/build/module/resources/2.16.840.1.113762.1.4.1222.138.json deleted file mode 100644 index d6e834e..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.138.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33863-2", - "Display": "Cystatin C [Mass/volume] in Serum or Plasma" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.139.json b/build/module/resources/2.16.840.1.113762.1.4.1222.139.json deleted file mode 100644 index ebe150c..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.139.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14647-2", - "Display": "Cholesterol [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2093-3", - "Display": "Cholesterol [Mass/volume] in Serum or Plasma" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.14.json b/build/module/resources/2.16.840.1.113762.1.4.1222.14.json deleted file mode 100644 index 7095592..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.14.json +++ /dev/null @@ -1,116 +0,0 @@ -[ - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "0TY00Z0", - "Display": "Transplantation of Right Kidney" - }, - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "0TY00Z1", - "Display": "Transplantation of Right Kidney" - }, - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "0TY00Z2", - "Display": "Transplantation of Right Kidney" - }, - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "0TY10Z0", - "Display": "Transplantation of Left Kidney" - }, - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "0TY10Z1", - "Display": "Transplantation of Left Kidney" - }, - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "0TY10Z2", - "Display": "Transplantation of Left Kidney" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "175899003", - "Display": "Autotransplantation of kidney (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "175902000", - "Display": "Cadaveric renal transplant (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398887003", - "Display": "Renal replacement (procedure)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "50360", - "Display": "Renal allotransplantation" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "50365", - "Display": "Renal allotransplantation" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "50380", - "Display": "Renal autotransplantation" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6471000179103", - "Display": "Transplantation of kidney and pancreas (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70536003", - "Display": "Transplant of kidney (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "711411006", - "Display": "Allotransplantation of kidney from beating heart cadaver (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "711413009", - "Display": "Allotransplantation of kidney from non-beating heart cadaver (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "765478004", - "Display": "Allotransplantation of left kidney (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "765479007", - "Display": "Allotransplantation of right kidney (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "782655004", - "Display": "Laparoscopic transplant of kidney using robotic assistance (procedure)" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.140.json b/build/module/resources/2.16.840.1.113762.1.4.1222.140.json deleted file mode 100644 index 7acd910..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.140.json +++ /dev/null @@ -1,38 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14723-1", - "Display": "Ferritin [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14724-9", - "Display": "Ferritin [Interpretation] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "20567-4", - "Display": "Ferritin [Mass/volume] in Serum or Plasma by Immunoassay" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2276-4", - "Display": "Ferritin [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "24373-3", - "Display": "Ferritin [Mass/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35209-6", - "Display": "Ferritin [Mass or Moles/volume] in Serum or Plasma" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.141.json b/build/module/resources/2.16.840.1.113762.1.4.1222.141.json deleted file mode 100644 index a4f8aa0..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.141.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "26453-1", - "Display": "Erythrocytes [#/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "789-8", - "Display": "Erythrocytes [#/volume] in Blood by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "790-6", - "Display": "Erythrocytes [#/volume] in Blood by Manual count" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.142.json b/build/module/resources/2.16.840.1.113762.1.4.1222.142.json deleted file mode 100644 index 9811f77..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.142.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "26464-8", - "Display": "Leukocytes [#/volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "49498-9", - "Display": "Leukocytes [#/volume] in Blood by Estimate" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "6690-2", - "Display": "Leukocytes [#/volume] in Blood by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "804-5", - "Display": "Leukocytes [#/volume] in Blood by Manual count" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.143.json b/build/module/resources/2.16.840.1.113762.1.4.1222.143.json deleted file mode 100644 index 32f0955..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.143.json +++ /dev/null @@ -1,32 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "20570-8", - "Display": "Hematocrit [Volume Fraction] of Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "31100-1", - "Display": "Hematocrit [Volume Fraction] of Blood by Impedance" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "4544-3", - "Display": "Hematocrit [Volume Fraction] of Blood by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "4545-0", - "Display": "Hematocrit [Volume Fraction] of Blood by Centrifugation" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "48703-3", - "Display": "Hematocrit [Volume Fraction] of Blood by Estimated" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.144.json b/build/module/resources/2.16.840.1.113762.1.4.1222.144.json deleted file mode 100644 index 4483859..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.144.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30428-7", - "Display": "MCV [Entitic volume]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "787-2", - "Display": "MCV [Entitic volume] by Automated count" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.145.json b/build/module/resources/2.16.840.1.113762.1.4.1222.145.json deleted file mode 100644 index 2a28274..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.145.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "28540-3", - "Display": "MCHC [Mass/volume]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "786-4", - "Display": "MCHC [Mass/volume] by Automated count" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.147.json b/build/module/resources/2.16.840.1.113762.1.4.1222.147.json deleted file mode 100644 index 97fc9f3..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.147.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "21000-5", - "Display": "Erythrocyte distribution width [Entitic volume] by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30384-2", - "Display": "Erythrocyte distribution width [Entitic volume]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "30385-9", - "Display": "Erythrocyte distribution width [Ratio]" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "788-0", - "Display": "Erythrocyte distribution width [Ratio] by Automated count" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.148.json b/build/module/resources/2.16.840.1.113762.1.4.1222.148.json deleted file mode 100644 index 0cc97cb..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.148.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "32207-3", - "Display": "Platelet distribution width [Entitic volume] in Blood by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "51631-0", - "Display": "Platelet distribution width [Ratio] in Blood" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.149.json b/build/module/resources/2.16.840.1.113762.1.4.1222.149.json deleted file mode 100644 index 32c16b4..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.149.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "28542-9", - "Display": "Platelet mean volume [Entitic volume] in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "32623-1", - "Display": "Platelet mean volume [Entitic volume] in Blood by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "776-5", - "Display": "Platelet mean volume [Entitic volume] in Blood by Rees-Ecker" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.15.json b/build/module/resources/2.16.840.1.113762.1.4.1222.15.json deleted file mode 100644 index 161c6d1..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.15.json +++ /dev/null @@ -1,38 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714152005", - "Display": "Chronic kidney disease stage 5 on dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714153000", - "Display": "Chronic kidney disease stage 5 with transplant (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I12.0", - "Display": "Hypertensive chronic kidney disease with stage 5 chronic kidney disease or end stage renal disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.11", - "Display": "Hypertensive heart and chronic kidney disease without heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.2", - "Display": "Hypertensive heart and chronic kidney disease with heart failure and with stage 5 chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18.6", - "Display": "End stage renal disease" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.150.json b/build/module/resources/2.16.840.1.113762.1.4.1222.150.json deleted file mode 100644 index 6d6e8fa..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.150.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "27353-2", - "Display": "Glucose mean value [Mass/volume] in Blood Estimated from glycated hemoglobin" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53553-4", - "Display": "Glucose mean value [Moles/volume] in Blood Estimated from glycated hemoglobin" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.151.json b/build/module/resources/2.16.840.1.113762.1.4.1222.151.json deleted file mode 100644 index b735856..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.151.json +++ /dev/null @@ -1,50 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "1751-7", - "Display": "Albumin [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2862-1", - "Display": "Albumin [Mass/volume] in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "54347-0", - "Display": "Albumin [Moles/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "61151-7", - "Display": "Albumin [Mass/volume] in Serum or Plasma by Bromocresol green (BCG) dye binding method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "61152-5", - "Display": "Albumin [Mass/volume] in Serum or Plasma by Bromocresol purple (BCP) dye binding method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "62234-0", - "Display": "Albumin [Moles/volume] in Serum or Plasma by Bromocresol purple (BCP) dye binding method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "62235-7", - "Display": "Albumin [Moles/volume] in Serum or Plasma by Bromocresol green (BCG) dye binding method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "77148-5", - "Display": "Albumin [Mass/volume] in Serum" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.153.json b/build/module/resources/2.16.840.1.113762.1.4.1222.153.json deleted file mode 100644 index a307f7e..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.153.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33037-3", - "Display": "Anion gap in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "41276-7", - "Display": "Anion gap in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "42485-3", - "Display": "Anion gap in Vitreous fluid" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "47561-6", - "Display": "Anion gap in Body fluid" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.154.json b/build/module/resources/2.16.840.1.113762.1.4.1222.154.json deleted file mode 100644 index e32a86f..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.154.json +++ /dev/null @@ -1,74 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "12967-6", - "Display": "Urea nitrogen [Mass/volume] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "13506-1", - "Display": "Urea nitrogen renal clearance in Urine and Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "13821-4", - "Display": "Urea nitrogen/Creatinine [Mass Ratio] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14938-5", - "Display": "Urea nitrogen [Moles/volume] in Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14939-3", - "Display": "Urea nitrogen [Moles/time] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "24465-7", - "Display": "Urea nitrogen [Mass/time] in 12 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "3095-7", - "Display": "Urea nitrogen [Mass/volume] in Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "3096-5", - "Display": "Urea nitrogen [Mass/time] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33355-9", - "Display": "Urea nitrogen [Moles/volume] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "35657-6", - "Display": "Urea nitrogen/Body weight [Mass/kg/time] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "44416-6", - "Display": "Urea nitrogen/Creatinine [Mass Ratio] in Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "51735-9", - "Display": "Urea nitrogen renal clearance in 24 hour Urine and Serum or Plasma" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.159.json b/build/module/resources/2.16.840.1.113762.1.4.1222.159.json deleted file mode 100644 index 98d323b..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.159.json +++ /dev/null @@ -1,578 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "117681000119102", - "Display": "Chronic kidney disease stage 1 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "120261000119101", - "Display": "Benign hypertensive heart disease and chronic renal disease stage 5 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123609007", - "Display": "Subacute glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129151000119102", - "Display": "Chronic kidney disease stage 4 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129161000119100", - "Display": "Chronic kidney disease stage 5 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129171000119106", - "Display": "Chronic kidney disease stage 3 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129181000119109", - "Display": "Chronic kidney disease stage 2 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "140101000119109", - "Display": "Hypertension in chronic kidney disease stage 5 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "140111000119107", - "Display": "Hypertension in chronic kidney disease stage 4 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "140121000119100", - "Display": "Hypertension in chronic kidney disease stage 3 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "140131000119102", - "Display": "Hypertension in chronic kidney disease stage 2 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "153851000119106", - "Display": "Malignant hypertensive chronic kidney disease stage 5 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20917003", - "Display": "Chronic glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253878003", - "Display": "Adult type polycystic kidney disease type 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253879006", - "Display": "Adult type polycystic kidney disease type 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284971000119100", - "Display": "Chronic kidney disease stage 1 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284981000119102", - "Display": "Chronic kidney disease stage 2 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284991000119104", - "Display": "Chronic kidney disease stage 3 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285001000119105", - "Display": "Chronic kidney disease stage 4 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285011000119108", - "Display": "Chronic kidney disease stage 5 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285041000119107", - "Display": "Benign hypertensive heart disease and chronic renal disease stage 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285061000119106", - "Display": "Benign hypertensive heart disease and chronic renal disease stage 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285081000119102", - "Display": "Benign hypertensive heart disease and chronic renal disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285101000119109", - "Display": "Benign hypertensive heart disease and chronic renal disease stage 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285851000119102", - "Display": "Malignant hypertensive chronic kidney disease stage 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285861000119100", - "Display": "Malignant hypertensive chronic kidney disease stage 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285871000119106", - "Display": "Malignant hypertensive chronic kidney disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285881000119109", - "Display": "Malignant hypertensive chronic kidney disease stage 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285911000119109", - "Display": "Malignant hypertensive heart disease and chronic renal disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285921000119102", - "Display": "Malignant hypertensive heart disease and chronic renal disease stage 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28770003", - "Display": "Polycystic kidney disease" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368421000119108", - "Display": "Chronic kidney disease stage 1 due to drug induced diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368431000119106", - "Display": "Chronic kidney disease stage 2 due to drug induced diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368441000119102", - "Display": "Chronic kidney disease stage 3 due to drug induced diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368451000119100", - "Display": "Chronic kidney disease stage 4 due to drug induced diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368461000119103", - "Display": "Chronic kidney disease stage 5 due to drug induced diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425455002", - "Display": "Glomerulonephritis due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431855005", - "Display": "Chronic kidney disease stage 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431856006", - "Display": "Chronic kidney disease stage 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431857002", - "Display": "Chronic kidney disease stage 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433144002", - "Display": "Chronic kidney disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433146000", - "Display": "Chronic kidney disease stage 5 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "691421000119108", - "Display": "Anemia co-occurrent and due to chronic kidney disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700378005", - "Display": "Chronic kidney disease stage 3A (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700379002", - "Display": "Chronic kidney disease stage 3B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "709044004", - "Display": "Chronic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71064009", - "Display": "Acquired polycystic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "711000119100", - "Display": "Chronic kidney disease stage 5 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714152005", - "Display": "Chronic kidney disease stage 5 on dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714153000", - "Display": "Chronic kidney disease stage 5 with transplant (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721000119107", - "Display": "Chronic kidney disease stage 4 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "731000119105", - "Display": "Chronic kidney disease stage 3 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "741000119101", - "Display": "Chronic kidney disease stage 2 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "751000119104", - "Display": "Chronic kidney disease stage 1 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82525005", - "Display": "Congenital cystic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90708001", - "Display": "Kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90721000119101", - "Display": "Chronic kidney disease stage 1 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90731000119103", - "Display": "Chronic kidney disease stage 2 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90741000119107", - "Display": "Chronic kidney disease stage 3 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90751000119109", - "Display": "Chronic kidney disease stage 4 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90761000119106", - "Display": "Chronic kidney disease stage 5 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96711000119105", - "Display": "Hypertensive heart AND chronic kidney disease stage 5 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96721000119103", - "Display": "Hypertensive heart AND chronic kidney disease stage 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96731000119100", - "Display": "Hypertensive heart AND chronic kidney disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96741000119109", - "Display": "Hypertensive heart AND chronic kidney disease stage 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96751000119106", - "Display": "Hypertensive heart AND chronic kidney disease stage 1 (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "D63.1", - "Display": "Anemia in chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.22", - "Display": "Diabetes mellitus due to underlying condition with diabetic chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.22", - "Display": "Drug or chemical induced diabetes mellitus with diabetic chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.22", - "Display": "Other specified diabetes mellitus with diabetic chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I12", - "Display": "Hypertensive chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I12.0", - "Display": "Hypertensive chronic kidney disease with stage 5 chronic kidney disease or end stage renal disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I12.9", - "Display": "Hypertensive chronic kidney disease with stage 1 through stage 4 chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.10", - "Display": "Hypertensive heart and chronic kidney disease without heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.11", - "Display": "Hypertensive heart and chronic kidney disease without heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.2", - "Display": "Hypertensive heart and chronic kidney disease with heart failure and with stage 5 chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18", - "Display": "Chronic kidney disease (CKD)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18.1", - "Display": "Chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18.2", - "Display": "Chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18.3", - "Display": "Chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18.4", - "Display": "Chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18.5", - "Display": "Chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18.6", - "Display": "End stage renal disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N18.9", - "Display": "Chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O10.211", - "Display": "Pre-existing hypertensive chronic kidney disease complicating pregnancy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O10.212", - "Display": "Pre-existing hypertensive chronic kidney disease complicating pregnancy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O10.213", - "Display": "Pre-existing hypertensive chronic kidney disease complicating pregnancy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O10.219", - "Display": "Pre-existing hypertensive chronic kidney disease complicating pregnancy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O10.22", - "Display": "Pre-existing hypertensive chronic kidney disease complicating childbirth" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O10.31", - "Display": "Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O10.32", - "Display": "Pre-existing hypertensive heart and chronic kidney disease complicating childbirth" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O10.33", - "Display": "Pre-existing hypertensive heart and chronic kidney disease complicating the puerperium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q61.2", - "Display": "Polycystic kidney" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q61.3", - "Display": "Polycystic kidney" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q61.8", - "Display": "Other cystic kidney diseases" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.161.json b/build/module/resources/2.16.840.1.113762.1.4.1222.161.json deleted file mode 100644 index 7fa5606..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.161.json +++ /dev/null @@ -1,332 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11000731000119102", - "Display": "Dependence on continuous ambulatory peritoneal dialysis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11000771000119104", - "Display": "Dependence on continuous cycling peritoneal dialysis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16320631000119104", - "Display": "Dependence on continuous ambulatory peritoneal dialysis due to end stage renal disease (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236556004", - "Display": "Bloodstained peritoneal dialysis effluent (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251860000", - "Display": "Peritoneal dialysis observable (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251861001", - "Display": "Net solute removal rate (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251862008", - "Display": "Net mean clearance rate (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251863003", - "Display": "Instantaneous clearance (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251864009", - "Display": "Dialysance (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251865005", - "Display": "Dwell time (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "263636009", - "Display": "Type of hemodialysis (attribute)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "331000124109", - "Display": "Hemodialysis finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "341000124104", - "Display": "Peritoneal dialysis finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "401000124105", - "Display": "Hemodialysis blood flow (observable entity)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "4052F", - "Display": "Hemodialysis via functioning arteriovenous (AV) fistula (ESRD)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "4053F", - "Display": "Hemodialysis via functioning arteriovenous (AV) graft (ESRD)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "4054F", - "Display": "Hemodialysis via catheter (ESRD)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "4055F", - "Display": "Patient receiving peritoneal dialysis (ESRD)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "411000124108", - "Display": "Hemodialysis residual renal function (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421000124100", - "Display": "Hemodialysis session time (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428937001", - "Display": "Dependence on peritoneal dialysis due to end stage renal disease (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428982002", - "Display": "Dependence on hemodialysis due to end stage renal disease (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431000124102", - "Display": "Hemodialysis access site non-patent (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441000124107", - "Display": "Hemodialysis access site patent (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442326005", - "Display": "Cloudy peritoneal dialysis effluent (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443143006", - "Display": "Dependence on hemodialysis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443596009", - "Display": "Dependence on peritoneal dialysis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445940005", - "Display": "Duration of hemodialysis session (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "451000124109", - "Display": "Increase in hemodialysis blood flow (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "461000124106", - "Display": "Increase in hemodialysis dialyzer size (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "471000124104", - "Display": "Increase in hemodialysis session time (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473195006", - "Display": "Normal renal function of transplanted kidney (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "481000124101", - "Display": "Hemodialysis observable (observable entity)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "50360", - "Display": "Renal allotransplantation" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "50365", - "Display": "Renal allotransplantation" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "50380", - "Display": "Renal autotransplantation" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "551000124105", - "Display": "Peritoneal dialysate analysis compliance (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "561000124107", - "Display": "Peritoneal dialysate collection compliance (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "571000124100", - "Display": "Requires additional education about peritoneal dialysis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "581000124102", - "Display": "Complies with collection of peritoneal dialysate specimen (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "591000124104", - "Display": "Complies with analysis of peritoneal dialysate (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "601000124107", - "Display": "Inadequate monitoring of dose delivery of peritoneal dialysis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "611000124105", - "Display": "Non-compliance with collection of peritoneal dialysate specimen (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "621000124102", - "Display": "Non-compliance with analysis of peritoneal dialysate (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698306007", - "Display": "Awaiting transplantation of kidney (situation)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704308002", - "Display": "Difficulty managing peritoneal dialysis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "708513005", - "Display": "Substitution flow rate (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "708514004", - "Display": "Substitution volume (observable entity)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714152005", - "Display": "Chronic kidney disease stage 5 on dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "736795005", - "Display": "Hemodialysis needle gauge (observable entity)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "90959", - "Display": "End-stage renal disease (ESRD) related services monthly" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "90960", - "Display": "End-stage renal disease (ESRD) related services monthly" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "90966", - "Display": "End-stage renal disease (ESRD) related services for home dialysis per full month" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "90969", - "Display": "End-stage renal disease (ESRD) related services for dialysis less than a full month of service" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "90970", - "Display": "End-stage renal disease (ESRD) related services for dialysis less than a full month of service" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.166.json b/build/module/resources/2.16.840.1.113762.1.4.1222.166.json deleted file mode 100644 index eb4cdd3..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.166.json +++ /dev/null @@ -1,344 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14531000087108", - "Display": "Doppler ultrasonography of vein of right upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14541000087102", - "Display": "Doppler ultrasonography of vein of left upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17281000087103", - "Display": "Fluoroscopic venography of right upper limb with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17291000087101", - "Display": "Fluoroscopic venography of left upper limb with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17691000087103", - "Display": "Fluoroscopic venography of bilateral upper limbs with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312499002", - "Display": "Axillary venography (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312727008", - "Display": "Duplex scan veins of upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312814004", - "Display": "Ultrasound scan of upper limb veins (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38356007", - "Display": "Venography of upper extremity (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "411981000119101", - "Display": "Fluoroscopic venography of bilateral extremities with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419453004", - "Display": "Ultrasound scan venography of upper limbs (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419461009", - "Display": "Magnetic resonance imaging venography of upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419870000", - "Display": "Fluoroscopic venography of upper limb with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420154007", - "Display": "Radionuclide venography of upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431303002", - "Display": "Percutaneous mechanical thrombectomy of vein of upper limb using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431394000", - "Display": "Ultrasound doppler flow mapping of vein of upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431529003", - "Display": "Percutaneous transluminal cutting balloon angioplasty of axillary vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431594001", - "Display": "Percutaneous transluminal cutting balloon angioplasty of cephalic vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431818005", - "Display": "Doppler ultrasonography of vein of upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431951000", - "Display": "Percutaneous transluminal cutting balloon angioplasty of brachial vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431961007", - "Display": "Percutaneous embolization of superficial forearm vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432038005", - "Display": "Percutaneous transluminal cutting balloon angioplasty of basilic vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432643004", - "Display": "Fluoroscopic venography of axillary vein using contrast with insertion of stent (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432688003", - "Display": "Percutaneous transluminal cutting balloon angioplasty of superficial forearm vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432692005", - "Display": "Compression ultrasonography of vein of upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432765008", - "Display": "Percutaneous embolization of axillary vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432780002", - "Display": "Fluoroscopic venography of superficial forearm vein using contrast with insertion of stent (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433692003", - "Display": "Fluoroscopic venography of superficial forearm vein using contrast with insertion of stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433763007", - "Display": "Fluoroscopic venography of axillary vein using contrast with insertion of stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433764001", - "Display": "Fluoroscopic venography of basilic vein using contrast with insertion of stent (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433778000", - "Display": "Fluoroscopic venography of cephalic vein using contrast with insertion of stent (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433975005", - "Display": "Percutaneous embolization of basilic vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434009008", - "Display": "Percutaneous embolization of brachial vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434225009", - "Display": "Percutaneous embolization of cephalic vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434308005", - "Display": "Fluoroscopic venography of brachial vein using contrast with insertion of stent (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434566008", - "Display": "Fluoroscopic venography of cephalic vein using contrast with insertion of stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434569001", - "Display": "Fluoroscopic venography of brachial vein using contrast with insertion of stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434642005", - "Display": "Fluoroscopic venography of basilic vein using contrast with insertion of stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441542001", - "Display": "Percutaneous transluminal insertion of stent into axillary vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441544000", - "Display": "Percutaneous thrombolysis of axillary vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441577001", - "Display": "Percutaneous transluminal angioplasty of axillary vein using fluoroscopic guidance with contrast (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4711000087109", - "Display": "Venography of left upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4721000087101", - "Display": "Venography of right upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5211000087102", - "Display": "Venography of bilateral upper limbs (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6301000087102", - "Display": "Doppler ultrasonography flow mapping of vein of right upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6311000087100", - "Display": "Doppler ultrasonography flow mapping of vein of left upper limb (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6781000087105", - "Display": "Doppler ultrasonography flow mapping of veins of bilateral upper limbs (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "763459002", - "Display": "Fluoroscopic venography of axillary vein using contrast with insertion of metallic stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "763461006", - "Display": "Fluoroscopic venography of basilic vein using contrast with insertion of metallic stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "763463009", - "Display": "Fluoroscopic venography of brachial vein using contrast with insertion of metallic stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "763464003", - "Display": "Fluoroscopic venography of cephalic vein using contrast with insertion of metallic stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "763466001", - "Display": "Fluoroscopic venography of superficial forearm vein using contrast with insertion of metallic stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "765168005", - "Display": "Doppler ultrasonography compression venography of upper limb (procedure)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "93970", - "Display": "Duplex scan of extremity veins including responses to compression and other maneuvers; complete bilateral study" - }, - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "B54MZZZ", - "Display": "Ultrasonography of Right Upper Extremity Veins" - }, - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "B54NZZZ", - "Display": "Ultrasonography of Left Upper Extremity Veins" - }, - { - "System": "2.16.840.1.113883.6.4", - "Version": "2022", - "Code": "B54PZZZ", - "Display": "Ultrasonography of Bilateral Upper Extremity Veins" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.176.json b/build/module/resources/2.16.840.1.113762.1.4.1222.176.json deleted file mode 100644 index 6593279..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.176.json +++ /dev/null @@ -1,212 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "11276-3", - "Display": "Tubular cells [Presence] in Urine sediment by Light microscopy" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "11279-7", - "Display": "Urine sediment comments by Light microscopy Narrative" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "25158-7", - "Display": "Oval fat bodies (globules) [Presence] in Urine sediment by Light microscopy" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "25159-5", - "Display": "Fatty casts [Presence] in Urine sediment by Light microscopy" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33221-3", - "Display": "Epithelial cells.renal [#/area] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33222-1", - "Display": "Oval fat bodies (globules) [#/area] in Urine sediment by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33228-8", - "Display": "WBC casts [#/area] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33229-6", - "Display": "RBC casts [#/area] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33231-2", - "Display": "Fatty casts [#/area] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33342-7", - "Display": "Epithelial cells [#/area] in Urine sediment by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33804-6", - "Display": "RBC casts [Presence] in Urine sediment by Light microscopy" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33825-1", - "Display": "WBC casts [Presence] in Urine sediment by Light microscopy" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "34173-5", - "Display": "Mixed cellular casts [Presence] in Urine sediment by Light microscopy" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "38995-7", - "Display": "Mixed cellular casts [#/area] in Urine sediment by Microscopy low power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "43755-8", - "Display": "Casts [#/area] in Urine sediment by Automated count" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "49103-5", - "Display": "WBC casts [#/area] in Urine sediment by Microscopy high power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "50228-6", - "Display": "Oval fat bodies (globules) [Presence] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "50229-4", - "Display": "Fatty casts [Presence] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "50234-4", - "Display": "Mixed cellular casts [Presence] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "51790-4", - "Display": "RBC casts [#/area] in Urine sediment by Microscopy high power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53278-8", - "Display": "RBC casts [Presence] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53279-6", - "Display": "WBC casts [Presence] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53283-8", - "Display": "Mixed cellular casts [#/volume] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53285-3", - "Display": "RBC casts [#/volume] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53286-1", - "Display": "WBC casts [#/volume] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53288-7", - "Display": "Fatty casts [#/volume] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53289-5", - "Display": "Mixed cellular casts [#/area] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53352-1", - "Display": "Oval fat bodies (globules) [#/volume] in Urine by Computer assisted method" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "53848-8", - "Display": "Mixed cellular casts [#/area] in Urine sediment by Microscopy high power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "5788-5", - "Display": "Oval fat bodies (globules) [#/area] in Urine sediment by Microscopy high power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "5789-3", - "Display": "Fatty casts [#/area] in Urine sediment by Microscopy low power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "5807-3", - "Display": "RBC casts [#/area] in Urine sediment by Microscopy low power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "5820-6", - "Display": "WBC casts [#/area] in Urine sediment by Microscopy low power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "67813-6", - "Display": "Fatty casts [#/area] in Urine sediment by Microscopy high power field" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "8246-1", - "Display": "Amorphous sediment [Presence] in Urine sediment by Light microscopy" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.179.json b/build/module/resources/2.16.840.1.113762.1.4.1222.179.json deleted file mode 100644 index 8d5885d..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.179.json +++ /dev/null @@ -1,92 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "33914-3", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum or Plasma by Creatinine-based formula (MDRD)" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "45066-8", - "Display": "Creatinine and Glomerular filtration rate.predicted panel - Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "48642-3", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among non-blacks [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "48643-1", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among blacks [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "50044-7", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among females [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "50210-4", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "50384-7", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "62238-1", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "69405-9", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "70969-1", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among males [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "76633-7", - "Display": "Glomerular filtration rate/1.73 sq M.predicted by Creatinine-based formula (MDRD) in Blood" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "77147-7", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "88293-6", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among blacks [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "88294-4", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among non-blacks [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "94677-2", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.24.json b/build/module/resources/2.16.840.1.113762.1.4.1222.24.json deleted file mode 100644 index 6dbdf99..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.24.json +++ /dev/null @@ -1,464 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10741871000119101", - "Display": "Alcohol dependence in pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10755041000119100", - "Display": "Alcohol dependence in childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15167005", - "Display": "Alcohol abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191811004", - "Display": "Continuous chronic alcoholism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191812006", - "Display": "Episodic chronic alcoholism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191813001", - "Display": "Chronic alcoholism in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191882002", - "Display": "Nondependent alcohol abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191883007", - "Display": "Nondependent alcohol abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191884001", - "Display": "Nondependent alcohol abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268645007", - "Display": "Nondependent alcohol abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284591009", - "Display": "Persistent alcohol abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "288031000119105", - "Display": "Alcohol induced disorder co-occurrent and due to alcohol dependence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66590003", - "Display": "Alcohol dependence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713583005", - "Display": "Mild alcohol dependence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713862009", - "Display": "Severe alcohol dependence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714829008", - "Display": "Moderate alcohol dependence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7200002", - "Display": "Alcoholism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "97571000119109", - "Display": "Thrombocytopenia co-occurrent and due to alcoholism (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.1", - "Display": "Alcohol abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.10", - "Display": "Alcohol abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.12", - "Display": "Alcohol abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.120", - "Display": "Alcohol abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.121", - "Display": "Alcohol abuse with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.129", - "Display": "Alcohol abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.14", - "Display": "Alcohol abuse with alcohol-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.15", - "Display": "Alcohol abuse with alcohol-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.150", - "Display": "Alcohol abuse with alcohol-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.151", - "Display": "Alcohol abuse with alcohol-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.159", - "Display": "Alcohol abuse with alcohol-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.18", - "Display": "Alcohol abuse with other alcohol-induced disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.180", - "Display": "Alcohol abuse with alcohol-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.181", - "Display": "Alcohol abuse with alcohol-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.182", - "Display": "Alcohol abuse with alcohol-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.188", - "Display": "Alcohol abuse with other alcohol-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.19", - "Display": "Alcohol abuse with unspecified alcohol-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.2", - "Display": "Alcohol dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.20", - "Display": "Alcohol dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.21", - "Display": "Alcohol dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.22", - "Display": "Alcohol dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.220", - "Display": "Alcohol dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.221", - "Display": "Alcohol dependence with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.229", - "Display": "Alcohol dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.23", - "Display": "Alcohol dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.230", - "Display": "Alcohol dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.231", - "Display": "Alcohol dependence with withdrawal delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.232", - "Display": "Alcohol dependence with withdrawal with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.239", - "Display": "Alcohol dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.24", - "Display": "Alcohol dependence with alcohol-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.25", - "Display": "Alcohol dependence with alcohol-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.250", - "Display": "Alcohol dependence with alcohol-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.251", - "Display": "Alcohol dependence with alcohol-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.259", - "Display": "Alcohol dependence with alcohol-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.26", - "Display": "Alcohol dependence with alcohol-induced persisting amnestic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.27", - "Display": "Alcohol dependence with alcohol-induced persisting dementia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.28", - "Display": "Alcohol dependence with other alcohol-induced disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.280", - "Display": "Alcohol dependence with alcohol-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.281", - "Display": "Alcohol dependence with alcohol-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.282", - "Display": "Alcohol dependence with alcohol-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.288", - "Display": "Alcohol dependence with other alcohol-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.29", - "Display": "Alcohol dependence with unspecified alcohol-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.9", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.92", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.920", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.921", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.929", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.94", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.95", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.950", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.951", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.959", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.96", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.97", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.98", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.980", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.982", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.988", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.99", - "Display": "Alcohol use" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.27.json b/build/module/resources/2.16.840.1.113762.1.4.1222.27.json deleted file mode 100644 index c1668ce..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.27.json +++ /dev/null @@ -1,44 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10596002", - "Display": "Peripheral vascular complication (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "27550009", - "Display": "Disorder of blood vessel (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "400047006", - "Display": "Peripheral vascular disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473109007", - "Display": "History of peripheral vascular disease (situation)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473449006", - "Display": "Disease of non-coronary systemic artery (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I73.89", - "Display": "Other specified peripheral vascular diseases" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I73.9", - "Display": "Peripheral vascular disease" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.30.json b/build/module/resources/2.16.840.1.113762.1.4.1222.30.json deleted file mode 100644 index 756afe6..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.30.json +++ /dev/null @@ -1,284 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10295004", - "Display": "Chronic viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1092801000119102", - "Display": "Hepatic ascites co-occurrent with chronic active hepatitis due to toxic liver disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1116000", - "Display": "Chronic aggressive type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "128302006", - "Display": "Chronic hepatitis C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16098491000119109", - "Display": "Chronic autoimmune hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197284004", - "Display": "Chronic active hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235866006", - "Display": "Acute hepatitis C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235869004", - "Display": "Chronic viral hepatitis B with hepatitis D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235889003", - "Display": "Drug-induced chronic hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307757001", - "Display": "Chronic alcoholic hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "347891000119103", - "Display": "Chronic hepatitis C with stage 3 fibrosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38662009", - "Display": "Chronic persistent type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41889008", - "Display": "Chronic persistent hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "435101000124104", - "Display": "Chronic viral hepatitis C with hepatic coma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442374005", - "Display": "Hepatitis B and hepatitis C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "450880008", - "Display": "Chronic hepatitis E (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50167007", - "Display": "Chronic active type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50711007", - "Display": "Viral hepatitis type C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "57339008", - "Display": "Chronic lobular hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60037002", - "Display": "Chronic persistent viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61977001", - "Display": "Chronic type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66870002", - "Display": "Chronic active viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "702969000", - "Display": "Reactivation of hepatitis C viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703866000", - "Display": "Chronic hepatitis C with stage 2 fibrosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "708198006", - "Display": "Chronic active hepatitis C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713966008", - "Display": "Occult chronic type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "767809001", - "Display": "Chronic hepatitis C caused by hepatitis C virus genotype 6 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "767810006", - "Display": "Chronic hepatitis C caused by hepatitis C virus genotype 5 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76783007", - "Display": "Chronic hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "768006009", - "Display": "Chronic hepatitis C caused by Hepatitis C virus genotype 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "768125005", - "Display": "Chronic hepatitis C caused by Hepatitis C virus genotype 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "768126006", - "Display": "Chronic hepatitis C caused by Hepatitis C virus genotype 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "768127002", - "Display": "Chronic hepatitis C caused by Hepatitis C virus genotype 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "768288001", - "Display": "Chronic hepatitis C caused by Hepatitis C virus genotype 1b (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "768289009", - "Display": "Chronic hepatitis C caused by Hepatitis C virus genotype 1a (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "774204006", - "Display": "Growth retardation" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "838377003", - "Display": "Chronic hepatitis C co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "838380002", - "Display": "Chronic hepatitis B co-occurrent with hepatitis C and hepatitis D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89789003", - "Display": "Chronic aggressive viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9843006", - "Display": "Chronic lymphocytic cholangitis-cholangiohepatitis (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B17.1", - "Display": "Acute hepatitis C" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B17.10", - "Display": "Acute hepatitis C without hepatic coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B17.11", - "Display": "Acute hepatitis C with hepatic coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B18.2", - "Display": "Chronic viral hepatitis C" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B19.2", - "Display": "Unspecified viral hepatitis C" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B19.20", - "Display": "Unspecified viral hepatitis C without hepatic coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B19.21", - "Display": "Unspecified viral hepatitis C with hepatic coma" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.33.json b/build/module/resources/2.16.840.1.113762.1.4.1222.33.json deleted file mode 100644 index 5887eff..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.33.json +++ /dev/null @@ -1,350 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102781000119107", - "Display": "Sensory neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "110181000119105", - "Display": "Peripheral sensory neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "126534007", - "Display": "Mixed sensorimotor polyneuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "126535008", - "Display": "Motor polyneuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127011001", - "Display": "Sensory neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1511000119107", - "Display": "Peripheral neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193141005", - "Display": "Mononeuritis multiplex due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193183000", - "Display": "Acute painful neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193184006", - "Display": "Chronic painful neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193185007", - "Display": "Asymptomatic neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19378003", - "Display": "Pseudotabes due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201724008", - "Display": "Neuropathic arthropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230572002", - "Display": "Neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230574001", - "Display": "Acute painful polyneuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230575000", - "Display": "Chronic painful polyneuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230576004", - "Display": "Asymmetric polyneuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230577008", - "Display": "Mononeuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230579006", - "Display": "Thoracic radiculopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "232021008", - "Display": "Proliferative retinopathy with optic disc neovascularization due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267604001", - "Display": "Myasthenic syndrome due to diabetic mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314537004", - "Display": "Optic papillopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35777006", - "Display": "Mononeuropathy multiplex due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "359611005", - "Display": "Neuropathy with neurologic complication due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "361216007", - "Display": "Femoral mononeuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368141000119106", - "Display": "Autonomic neuropathy due to drug induced diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368251000119101", - "Display": "Polyneuropathy due to drug induced diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368581000119106", - "Display": "Neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38205001", - "Display": "Diarrhea due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39058009", - "Display": "Lumbosacral radiculoplexus neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39127005", - "Display": "Symmetric proximal motor neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420436000", - "Display": "Mononeuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420918009", - "Display": "Mononeuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424736006", - "Display": "Peripheral neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427027005", - "Display": "Lumbosacral radiculoplexus neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427571000", - "Display": "Lumbosacral radiculoplexus neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427943001", - "Display": "Ophthalmoplegia due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49455004", - "Display": "Polyneuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50620007", - "Display": "Autonomic neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712882000", - "Display": "Autonomic neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712883005", - "Display": "Autonomic neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713702000", - "Display": "Gastroparesis due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713703005", - "Display": "Gastroparesis due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713704004", - "Display": "Gastroparesis due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713705003", - "Display": "Polyneuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713706002", - "Display": "Polyneuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71771000119100", - "Display": "Neuropathic arthropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71791000119104", - "Display": "Peripheral neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "770094004", - "Display": "Cervical radiculoplexus neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "770095003", - "Display": "Cranial nerve palsy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "770098001", - "Display": "Cranial nerve palsy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "781000119106", - "Display": "Neuropathic arthropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789542009", - "Display": "Neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789585000", - "Display": "Sensory polyneuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79554005", - "Display": "Asymmetric proximal motor neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81830002", - "Display": "Mononeuropathy simplex due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87921000119104", - "Display": "Cranial nerve palsy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.40", - "Display": "Type 2 diabetes mellitus with diabetic neuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.40", - "Display": "Other specified diabetes mellitus with diabetic neuropathy" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.36.json b/build/module/resources/2.16.840.1.113762.1.4.1222.36.json deleted file mode 100644 index 8a7d99e..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.36.json +++ /dev/null @@ -1,452 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1003380001", - "Display": "6q16 microdeletion syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10750551000119100", - "Display": "Obesity in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076701000119104", - "Display": "Hypertrophy of fat pad of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076711000119101", - "Display": "Hypertrophy of fat pad of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111036000", - "Display": "Hyperinsulinar obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15750121000119108", - "Display": "Pre-existing severe obesity in mother complicating pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "171000119107", - "Display": "Maternal obesity complicating pregnancy" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190965006", - "Display": "Drug-induced obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190966007", - "Display": "Extreme obesity with alveolar hypoventilation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238132000", - "Display": "Android obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238133005", - "Display": "Gynecoid obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238134004", - "Display": "Generalized obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238135003", - "Display": "Fat pad syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238136002", - "Display": "Morbid obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248311001", - "Display": "Central obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248312008", - "Display": "Peripheral obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "270486005", - "Display": "Localized obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "290439001", - "Display": "Familial obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "292464007", - "Display": "Constitutional obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "293481008", - "Display": "Hyperplastic-hypertrophic obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "294493008", - "Display": "Lifelong obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "295509007", - "Display": "Hypertrophic obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "296526005", - "Display": "Adult-onset obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "297500005", - "Display": "Endogenous obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "298464002", - "Display": "Obesity of endocrine origin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "360566006", - "Display": "Buffalo obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414438005", - "Display": "Hyperplastic obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414916001", - "Display": "Obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414917005", - "Display": "Obesity by adipocyte growth pattern (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414918000", - "Display": "Obesity by age of onset (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414919008", - "Display": "Obesity by contributing factors (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414920002", - "Display": "Obesity by fat distribution pattern (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "415530009", - "Display": "Simple obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444862003", - "Display": "Childhood obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44772007", - "Display": "Maternal obesity syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "461341000124106", - "Display": "Gluteal-femoral obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5036006", - "Display": "Hypogonadal obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53146006", - "Display": "Hypothyroid obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "57337005", - "Display": "Steatopygia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62999006", - "Display": "Adiposogenital dystrophy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63702009", - "Display": "Alstrom syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "702949005", - "Display": "Proopiomelanocortin deficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "715628009", - "Display": "Intellectual disability" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717269008", - "Display": "Obesity due to melanocortin 4 receptor deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717761005", - "Display": "Choroideremia with deafness and obesity syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719160009", - "Display": "Syndromic X-linked intellectual disability type 7 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719834005", - "Display": "Wilson Turner syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721231007", - "Display": "Hydrocephalus with obesity and hypogonadism syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722037004", - "Display": "Intellectual disability" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722051004", - "Display": "Obesity" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722053001", - "Display": "Obesity due to prohormone convertase I deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722596001", - "Display": "Obesity caused by energy imbalance (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724137002", - "Display": "Macrocephaly" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72894001", - "Display": "Hypertrophy of fat pad of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "763350002", - "Display": "Intellectual disability" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "770680004", - "Display": "Prader-Willi-like syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "770750002", - "Display": "Intellectual disability" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "773663004", - "Display": "Rapid-onset childhood obesity" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "774102003", - "Display": "Intellectual disability" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "776204008", - "Display": "Colobomatous microphthalmia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "783549006", - "Display": "Obesity due to centrosomal protein 19 deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "783556000", - "Display": "Severe early-onset obesity insulin resistance syndrome due to SH2B adaptor protein 1 deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "783719006", - "Display": "Obesity due to SIM bHLH transcription factor 1 deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "785722006", - "Display": "Obesity due to leptin receptor gene deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "788996008", - "Display": "Obesity in adolescence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80660001", - "Display": "Mauriac's syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82793005", - "Display": "Hypothalamic obesity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83911000119104", - "Display": "Severe obesity (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E66.0", - "Display": "Obesity due to excess calories" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E66.01", - "Display": "Morbid (severe) obesity due to excess calories" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E66.09", - "Display": "Other obesity due to excess calories" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E66.1", - "Display": "Drug-induced obesity" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E66.2", - "Display": "Morbid (severe) obesity with alveolar hypoventilation" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E66.8", - "Display": "Other obesity" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E66.9", - "Display": "Obesity" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.40.json b/build/module/resources/2.16.840.1.113762.1.4.1222.40.json deleted file mode 100644 index 27b7d97..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.40.json +++ /dev/null @@ -1,4778 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102891000", - "Display": "Age-related cognitive decline (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102910004", - "Display": "Prelogical thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102911000", - "Display": "Thoughts of self harm (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102941003", - "Display": "Alethia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102942005", - "Display": "Intelligence quotient low (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "105421000119105", - "Display": "Early onset Alzheimer's disease with behavioral disturbance (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "106136008", - "Display": "Memory finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "106138009", - "Display": "Learning finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "110352000", - "Display": "Minimal cognitive impairment (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "110355003", - "Display": "Lack of thinking ability (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "112088009", - "Display": "Egomania (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "112090005", - "Display": "Eidetic images (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "116340000", - "Display": "Disturbance of cognitive learning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12332005", - "Display": "Pseudologia fantastica (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129686009", - "Display": "Finding related to communication with community resources (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129862009", - "Display": "Deficient knowledge of diagnostic testing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129863004", - "Display": "Deficient knowledge of dietary regimen (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129864005", - "Display": "Deficient knowledge of disease process (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129865006", - "Display": "Deficient knowledge of fluid volume management (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129866007", - "Display": "Deficient knowledge of medication regimen (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129867003", - "Display": "Deficient knowledge of safety precautions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129868008", - "Display": "Deficient knowledge of therapeutic regimen (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "130964008", - "Display": "Impaired environmental interpretation syndrome (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14003003", - "Display": "Monomania (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "141601000119107", - "Display": "Cognitive changes due to organic disorder (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "141991000119109", - "Display": "Delusions in Alzheimer's disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "142001000119106", - "Display": "Depressed mood in Alzheimer's disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "142261000119100", - "Display": "Cognitive deficit in attention (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15928141000119107", - "Display": "Cognitive impairment co-occurrent and due to human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "161129001", - "Display": "Learning difficulties (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16219201000119101", - "Display": "Behavioral disturbance co-occurrent and due to late onset Alzheimer dementia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "162200009", - "Display": "Temporary loss of memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "162314006", - "Display": "Harmful thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "162315007", - "Display": "Morbid thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "162327005", - "Display": "Loss of judgement (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165179006", - "Display": "Intelligence quotient normal (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165280004", - "Display": "Memory: own age not known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165281000", - "Display": "Memory: own age known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165283002", - "Display": "Memory: present time not known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165284008", - "Display": "Memory: present time known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165286005", - "Display": "Memory: present place not known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165287001", - "Display": "Memory: present place known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165289003", - "Display": "Memory: present year not known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165290007", - "Display": "Memory: present year known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165292004", - "Display": "Memory: own date of birth not known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165293009", - "Display": "Memory: own date of birth known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165295002", - "Display": "Memory: present month not known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165296001", - "Display": "Memory: present month known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165298000", - "Display": "Memory: important event not known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165299008", - "Display": "Memory: important event known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165301001", - "Display": "Memory: important person not known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165302008", - "Display": "Memory: important person known (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165304009", - "Display": "Memory: count down successful (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165305005", - "Display": "Memory: count down unsuccessful (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165307002", - "Display": "Memory: address recall success (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165308007", - "Display": "Memory: address recall unsuccessful (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16703491000119101", - "Display": "Memory deficit due to and following spontaneous intracerebral hemorrhage (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16703551000119107", - "Display": "Memory deficit due to and following cerebrovascular disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16703601000119109", - "Display": "Memory deficit due to and following spontaneous subarachnoid hemorrhage (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16703661000119105", - "Display": "Memory deficit due to and following cerebrovascular accident (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16703711000119100", - "Display": "Memory deficit due to and following embolic cerebrovascular accident (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16703761000119102", - "Display": "Memory deficit due to and following ischemic cerebrovascular accident (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16703821000119101", - "Display": "Memory deficit due to and following hemorrhagic cerebrovascular accident (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17842005", - "Display": "Confabulation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "182891003", - "Display": "Patient misunderstood treatment instructions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18343006", - "Display": "Circumstantiality (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18541000119100", - "Display": "Borderline cognitive developmental delay (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191992009", - "Display": "Repetitive routines (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "192071009", - "Display": "Mild memory disturbance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20517006", - "Display": "Mental condensation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2073000", - "Display": "Delusions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "21001001", - "Display": "Déjà pensé (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "216004", - "Display": "Delusion of persecution (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22058002", - "Display": "Inattention (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "224998004", - "Display": "Slow learner (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225001006", - "Display": "Preoccupied with emotional problems (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225033002", - "Display": "Memory recall finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225034008", - "Display": "Unpleasant memories (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225036005", - "Display": "Distortion of memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225037001", - "Display": "Minor memory lapses (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225038006", - "Display": "Memory lapses (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225039003", - "Display": "Mixes past with present (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225041002", - "Display": "Talks about the past (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225042009", - "Display": "Finding relating to reminiscing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225434001", - "Display": "Does not recognize self (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225435000", - "Display": "Does not recognize self in mirror (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225436004", - "Display": "Reflecting (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225437008", - "Display": "Thinks realistically (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225439006", - "Display": "Not confused (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225440008", - "Display": "Onset of confusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225441007", - "Display": "Not wanting to think about something (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225442000", - "Display": "Not wanting to think (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225443005", - "Display": "Recovery of memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225445003", - "Display": "Intrusive thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225446002", - "Display": "Positive self thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225447006", - "Display": "Reappearance of old thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225448001", - "Display": "Has imaginary friend (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225449009", - "Display": "Bizarre thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225450009", - "Display": "Homicidal thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225451008", - "Display": "Believes television is bugged (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225452001", - "Display": "Paranoid delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225635005", - "Display": "Anxiety about treatment (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225636006", - "Display": "Anxiety about forced dependence (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225637002", - "Display": "Anxiety about loss of control (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225638007", - "Display": "Anxiety about resuming sexual relations (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225639004", - "Display": "Worried about not coping with baby (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225640002", - "Display": "Worried about being a bad father (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225641003", - "Display": "Worried about being a bad mother (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225642005", - "Display": "Anxiety about not coping with parenthood (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225643000", - "Display": "Anxiety about making mistakes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225644006", - "Display": "Anxiety about altered body image (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225660005", - "Display": "Believes phones are bugged (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225661009", - "Display": "Positive thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225662002", - "Display": "Able to think clearly (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225664001", - "Display": "Does not recognize photographs of self (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225665000", - "Display": "Recognizes self (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225666004", - "Display": "Mistakes people's identity (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "229676007", - "Display": "Language-related cognitive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230736007", - "Display": "Transient global amnesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231448004", - "Display": "Age-associated memory impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23766009", - "Display": "Basic learning problem in reading (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2421000119107", - "Display": "Hallucinations co-occurrent and due to late onset dementia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247575000", - "Display": "Below average intellect (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247578003", - "Display": "Low intelligence (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247579006", - "Display": "Underestimates intellectual ability (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247582001", - "Display": "Difficulty solving problems (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247584000", - "Display": "Difficulty making plans (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247585004", - "Display": "Difficulty making decisions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247587007", - "Display": "Long-term memory within normal limits (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247588002", - "Display": "Poor long-term memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247590001", - "Display": "Short-term memory within normal limits (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247592009", - "Display": "Poor short-term memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247593004", - "Display": "Forgets what was going to do (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247594005", - "Display": "Forgets what was going to say (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247595006", - "Display": "Forgets recent activities (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247596007", - "Display": "Forgets what has just done (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247597003", - "Display": "Forgets what has just said (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247598008", - "Display": "Forgets what has just read (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247599000", - "Display": "Forgets what has just seen (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247600002", - "Display": "Forgets what has just heard (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247602005", - "Display": "Memory function normal (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247603000", - "Display": "Extremely efficient use of mnemonics (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247605007", - "Display": "Sharpened memory for remote events (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247607004", - "Display": "Amnesia for day to day facts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247608009", - "Display": "Unable to remember today's date (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247609001", - "Display": "Unable to remember name of reigning monarch (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247610006", - "Display": "Unable to remember name of current prime minister (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247611005", - "Display": "Amnesia for important personal information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247612003", - "Display": "Cannot remember names of intimates (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247613008", - "Display": "Unable to remember own age (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247614002", - "Display": "Cannot remember wedding anniversary (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247615001", - "Display": "Cannot remember birth dates of children (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247616000", - "Display": "Cannot remember name of school (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247617009", - "Display": "Impaired ability to learn new material (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247618004", - "Display": "Memory assessment finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247619007", - "Display": "Thought finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247620001", - "Display": "Increased thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247621002", - "Display": "Expansive ideation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247622009", - "Display": "Sharpened thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247623004", - "Display": "Exciting ideas (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247624005", - "Display": "Unusually creative thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247627003", - "Display": "Slow flow of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247630005", - "Display": "Pressure of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247631009", - "Display": "Persistent thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247632002", - "Display": "Preoccupation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247633007", - "Display": "Preoccupation with compensation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247634001", - "Display": "Preoccupation with litigation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247635000", - "Display": "Sexual preoccupation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247636004", - "Display": "Preoccupation with appearance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247637008", - "Display": "Preoccupation with body size (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247638003", - "Display": "Preoccupation with specific bodily feature (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247640008", - "Display": "Unable to think clearly (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247641007", - "Display": "Puzzled (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247643005", - "Display": "Loud thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247646002", - "Display": "Direction of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247647006", - "Display": "Maintained direction of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247648001", - "Display": "Loss of direction of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247650009", - "Display": "Planning suicide (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247651008", - "Display": "Obscene thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247652001", - "Display": "Sexually obscene thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247653006", - "Display": "Negative automatic thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247654000", - "Display": "Fatuous thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247655004", - "Display": "Disinhibited thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247657007", - "Display": "Poor grasp of abstract concepts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247658002", - "Display": "Creative thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247661001", - "Display": "Gullible (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247662008", - "Display": "Suggestible (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247667002", - "Display": "Grandiose delusions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247668007", - "Display": "Delusion of grandiose ability (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247669004", - "Display": "Delusion of grandiose identity (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247670003", - "Display": "Delusion of special mission (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247671004", - "Display": "Religious delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247675008", - "Display": "Delusion associated with smell (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247676009", - "Display": "Delusion associated with sexual hallucinations (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247677000", - "Display": "Bizarre delusion associated with bodily sensation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247678005", - "Display": "Delusion of depersonalization (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247679002", - "Display": "Nihilistic delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247680004", - "Display": "Delusion concerning appearance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247683002", - "Display": "Delusion of being loved (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247684008", - "Display": "Delusion of catastrophe (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247686005", - "Display": "Depressive delusion of catastrophe (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247687001", - "Display": "Depressive delusion of poverty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247688006", - "Display": "Hypochondriacal delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247689003", - "Display": "Depressive hypochondriacal delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247691006", - "Display": "Delusion of replacement of will by external force (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247692004", - "Display": "Delusion of control of voice (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247693009", - "Display": "Delusion of control of handwriting (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247695002", - "Display": "Thought alienation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247696001", - "Display": "Delusion of own appearance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247776002", - "Display": "Depressive preoccupation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247788000", - "Display": "Lack of judgement (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247808006", - "Display": "Anxiety about body function or health (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247825008", - "Display": "Anxiety about behavior or performance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247872008", - "Display": "Obsessional thoughts of harm occurring to property (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247873003", - "Display": "Obsessional thoughts of being robbed (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247874009", - "Display": "Obsessional thoughts of fire (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247875005", - "Display": "Obsessional thoughts of explosions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247876006", - "Display": "Obsessional thoughts of causing accidents (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247877002", - "Display": "Obsessional thoughts of poisoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247878007", - "Display": "Obsessional thoughts of giving others illness (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247879004", - "Display": "Obsessional thoughts of contamination (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247880001", - "Display": "Obsessional thoughts of disease (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247881002", - "Display": "Obsessional thoughts of dirt (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247882009", - "Display": "Obsessional thoughts of germs (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247883004", - "Display": "Obsessional doubts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247884005", - "Display": "Obsessional thoughts of incompletion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247885006", - "Display": "Obsessional thoughts of throwing things away (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247887003", - "Display": "Unable to resist obsessional thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247922007", - "Display": "Flapping movements of hands (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247923002", - "Display": "Flapping movements of arms (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247924008", - "Display": "Repetitive spinning of whole body (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247925009", - "Display": "Repetitive spinning of objects (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247926005", - "Display": "Repetitive touching of objects (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247927001", - "Display": "Repetitive complex twisting movements (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247928006", - "Display": "Repetitive complex twisting movements of fingers (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247929003", - "Display": "Repetitive complex twisting movements of limbs (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247930008", - "Display": "Repetitive complex twisting movements of whole body (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247931007", - "Display": "Repetitive complex twisting of objects near eyes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247932000", - "Display": "Repititive complex twisting of hands near eyes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247933005", - "Display": "Flicking objects near eyes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247934004", - "Display": "Flicking hands near eyes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247936002", - "Display": "Repetitive pressing on eyes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247937006", - "Display": "Repetitive chin tapping (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247939009", - "Display": "Repetitive rubbing of body parts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247940006", - "Display": "Repetitive tiptoe walking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2496007", - "Display": "Acalculia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25107009", - "Display": "Verbal repetition (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25462005", - "Display": "Palinopsia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25470001000004105", - "Display": "Cognitive impairment due to multiple sclerosis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25772007", - "Display": "Multi-infarct dementia with delusions (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26243003", - "Display": "Palinacousia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26439000", - "Display": "Basic learning problem in arithmetic (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26581009", - "Display": "Retrospective falsification (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26628009", - "Display": "Disturbance in thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267073005", - "Display": "Suicidal (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26941006", - "Display": "Average intellect (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271559000", - "Display": "Obsessional thoughts of causing harm to others (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271953006", - "Display": "Obsessional thoughts of causing harm to self (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "275277000", - "Display": "Post-traumatic amnesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "275278005", - "Display": "Difficulty in remembering dates (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276236009", - "Display": "Comments on own thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276237000", - "Display": "Comments on own reading (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276238005", - "Display": "Comments on own writing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276240000", - "Display": "Comments on own actions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276243003", - "Display": "Primary delusions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276244009", - "Display": "Delusional memories (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276294005", - "Display": "Isolated memory skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276303005", - "Display": "Preoccupation with death (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276304004", - "Display": "Preoccupation with disaster (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276305003", - "Display": "Preoccupation with ruin (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276360005", - "Display": "Preoccupation with body weight (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277818007", - "Display": "Anxiety about losing control of bowels (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277819004", - "Display": "Anxiety about wetting self (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277820005", - "Display": "Anxiety about vomiting in public (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277821009", - "Display": "Anxiety about having a fit (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277822002", - "Display": "Anxiety about choking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277823007", - "Display": "Anxiety about swallowing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277824001", - "Display": "Anxiety about collapsing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277825000", - "Display": "Anxiety about shaking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277826004", - "Display": "Anxiety about sweating (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277827008", - "Display": "Anxiety about dying (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277828003", - "Display": "Anxiety about going crazy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277829006", - "Display": "Anxiety about losing emotional control (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277831002", - "Display": "Anxiety about becoming fat (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277833004", - "Display": "Anxiety about fainting (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277834005", - "Display": "Anxiety about having a heart attack (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277838008", - "Display": "Anxiety about appearing ridiculous (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277839000", - "Display": "Anxiety about saying the wrong thing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28051002", - "Display": "Repetition of words (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281136009", - "Display": "Able to think abstractly (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28116007", - "Display": "Passivity of drive (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28249008", - "Display": "Jamais vu (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283878007", - "Display": "Impairment of registration (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283880001", - "Display": "Momentary confabulation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283881002", - "Display": "Fantastical confabulation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283882009", - "Display": "Finding of memory performance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283883004", - "Display": "Finding relating to immediate recall (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283902008", - "Display": "Has delayed recall (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283989001", - "Display": "Intrusive memories (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283990005", - "Display": "Pleasant memories (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283995000", - "Display": "Verbal memory for events (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "283997008", - "Display": "False memories (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284515004", - "Display": "Repetitive flapping movements (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284516003", - "Display": "Repetitive spinning movements (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284517007", - "Display": "Repetitive flicking movements (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284518002", - "Display": "Repetitive tapping movements (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284519005", - "Display": "Repetitive finger tapping (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285156004", - "Display": "Able to recognize objects (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285157008", - "Display": "Unable to recognize objects (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285159006", - "Display": "Able to recognize objects by touch (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285161002", - "Display": "Unable to recognize objects by touch (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285163004", - "Display": "Able to recognize objects by sight (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285164005", - "Display": "Unable to recognize objects by sight (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285168008", - "Display": "Able to recognize faces by sight (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285169000", - "Display": "Unable to recognize faces by sight (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285170004", - "Display": "Able to recognize faces (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285171000", - "Display": "Unable to recognize faces (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285173002", - "Display": "Able to recognize sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285174008", - "Display": "Unable to recognize sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285176005", - "Display": "Able to recognize surroundings (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285177001", - "Display": "Unable to recognize surroundings (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285182008", - "Display": "Able to recognize warning sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285183003", - "Display": "Unable to recognize warning sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285185005", - "Display": "Able to recognize odors (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285186006", - "Display": "Unable to recognize odors (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285187002", - "Display": "Able to remember own date of birth (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285188007", - "Display": "Unable to remember own date of birth (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285189004", - "Display": "Able to remember own age (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285190008", - "Display": "Able to remember day of the week (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285191007", - "Display": "Unable to remember day of the week (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285193005", - "Display": "Able to remember month of year (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285194004", - "Display": "Unable to remember month of year (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285196002", - "Display": "Able to remember current year (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285197006", - "Display": "Unable to remember current year (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285198001", - "Display": "Able to remember name of reigning monarch (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285199009", - "Display": "Able to remember name of current prime minister (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285205002", - "Display": "Able to remember today's date (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285207005", - "Display": "Able to recall random address at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285208000", - "Display": "Unable to recall random address at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285209008", - "Display": "Able to reproduce geometric figure at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285210003", - "Display": "Unable to reproduce geometric figure at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285211004", - "Display": "Able to recall five digit number at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285212006", - "Display": "Unable to recall five digit number at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285213001", - "Display": "Memory aided by use of lists (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285214007", - "Display": "Memory aided by use of labels (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285215008", - "Display": "Memory aided by use of diary (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285216009", - "Display": "Reliving traumatic memories (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285218005", - "Display": "Able to remember motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285219002", - "Display": "Unable to remember motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285220008", - "Display": "Able to remember new motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285221007", - "Display": "Unable to remember new motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285222000", - "Display": "Able to remember old motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285223005", - "Display": "Unable to remember old motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285224004", - "Display": "Able to remember objects (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285225003", - "Display": "Unable to remember objects (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285227006", - "Display": "Able to remember faces (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285228001", - "Display": "Unable to remember faces (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285229009", - "Display": "Able to remember sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285230004", - "Display": "Unable to remember sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285241002", - "Display": "Lucid (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285242009", - "Display": "Bradyphrenia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285243004", - "Display": "Sluggish thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285245006", - "Display": "Arbitrary inference (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285246007", - "Display": "Selective abstraction (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285247003", - "Display": "Catastrophization (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285248008", - "Display": "Overgeneralization (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285249000", - "Display": "Black and white thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285251001", - "Display": "Able to resist dangerous thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285252008", - "Display": "Unable to resist dangerous thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285253003", - "Display": "Able to resist dangerous thoughts with ease (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285254009", - "Display": "Able to resist dangerous thoughts with difficulty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285255005", - "Display": "Compulsion to act on dangerous thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285256006", - "Display": "Able to think independently (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285257002", - "Display": "Difficulty in thinking independently (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285260009", - "Display": "Able to resist obsessional thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285261008", - "Display": "Dangerous and harmful thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285262001", - "Display": "Thoughts of revenge (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285263006", - "Display": "Thoughts of violence (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285264000", - "Display": "Thoughts of arson (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285265004", - "Display": "Dangerous plans (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285266003", - "Display": "Dangerous fantasy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285267007", - "Display": "Thoughts of physical assault (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285268002", - "Display": "Thoughts of sexual violence (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285269005", - "Display": "Thoughts of raping (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285270006", - "Display": "Plans to kill (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285271005", - "Display": "Plans to assault (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285272003", - "Display": "Plans to commit sexual crime (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285273008", - "Display": "Plans to rape (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285274002", - "Display": "Plans to set fire (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285275001", - "Display": "Rape fantasy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285276000", - "Display": "Optimistic thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285277009", - "Display": "Delusion of unworthiness (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285286004", - "Display": "Compulsion to act on thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285294006", - "Display": "Pleasant fantasy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285295007", - "Display": "Pornographic fantasy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285303006", - "Display": "Racing thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285628005", - "Display": "Difficulty telling the time (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285629002", - "Display": "Unable to tell the time (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285630007", - "Display": "Able to tell the time (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285773007", - "Display": "Able to recognize familiar people (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285774001", - "Display": "Unable to recognize familiar people (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285779006", - "Display": "Able to recognize parts of own body (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285780009", - "Display": "Unable to recognize parts of own body (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285790001", - "Display": "Able to recognize own fingers (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285791002", - "Display": "Unable to recognize own fingers (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "286666002", - "Display": "Delusional projection - mental defense mechanism (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28810003", - "Display": "Flight of ideas (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2899008", - "Display": "Thought block (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "290621000119101", - "Display": "Cognitive deficit due to and following cerebrovascular disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "291621000119109", - "Display": "Cognitive deficit due to and following nontraumatic subarachnoid hemorrhage (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "291711000119109", - "Display": "Cognitive deficit due to and following nontraumatic intracerebral hemorrhage (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30189004", - "Display": "Repetitive rocking movements (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30199009", - "Display": "Glossolalia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "302759005", - "Display": "Guilty ideas of reference (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "302760000", - "Display": "Fast flow of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304594002", - "Display": "Suicidal intent (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304642007", - "Display": "Able to reason (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304643002", - "Display": "Unable to reason (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304644008", - "Display": "Difficulty reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304646005", - "Display": "Able to perform logical sequencing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304647001", - "Display": "Difficulty performing logical sequencing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304648006", - "Display": "Unable to perform logical sequencing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304650003", - "Display": "Able to use decision making strategies (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304651004", - "Display": "Unable to use decision making strategies (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304652006", - "Display": "Difficulty using decision making strategies (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304655008", - "Display": "Able to use visuospatial reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304656009", - "Display": "Unable to use visuospatial reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304657000", - "Display": "Difficulty using visuospatial reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304660007", - "Display": "Able to use arithmetic reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304661006", - "Display": "Unable to use arithmetic reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304662004", - "Display": "Difficulty using arithmetic reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304664003", - "Display": "Able to use verbal reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304665002", - "Display": "Unable to use verbal reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304666001", - "Display": "Difficulty using verbal reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304687006", - "Display": "Able to make considered choices (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304688001", - "Display": "Unable to make considered choices (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304689009", - "Display": "Difficulty making considered choices (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307078008", - "Display": "Thought commentary (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307083000", - "Display": "Able to process information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307084006", - "Display": "Unable to process information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307085007", - "Display": "Difficulty processing information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307087004", - "Display": "Able to analyze information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307088009", - "Display": "Unable to analyze information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307089001", - "Display": "Difficulty analyzing information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307413004", - "Display": "Transient memory loss (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309251006", - "Display": "Able to read (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309252004", - "Display": "Unable to read (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309253009", - "Display": "Difficulty reading (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311407009", - "Display": "Digit span forwards (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311476004", - "Display": "Digit span reverse (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311533004", - "Display": "Delayed verbal memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311535006", - "Display": "Rigidity of thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311538008", - "Display": "Able to process information accurately (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311539000", - "Display": "Unable to process information accurately (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311540003", - "Display": "Difficulty processing information accurately (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311541004", - "Display": "Able to process information at normal speed (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311542006", - "Display": "Unable to process information at normal speed (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311543001", - "Display": "Difficulty processing information at normal speed (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313005", - "Display": "Déjà vu (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3185000", - "Display": "Mood-congruent delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32541007", - "Display": "Paramnesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33254005", - "Display": "Uncompensated short term memory deficit (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34883005", - "Display": "Autistic thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "357705009", - "Display": "Cotard's syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365252004", - "Display": "Finding of thought process (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365264007", - "Display": "Finding of flow of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365276007", - "Display": "Finding of speed of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365287004", - "Display": "Finding of amount of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365298003", - "Display": "Finding of clarity of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365309002", - "Display": "Finding of use of imagination (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365320002", - "Display": "Finding of independence of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365331005", - "Display": "Finding related to ability to think abstractly (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365342001", - "Display": "Finding of cognitive style (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365353007", - "Display": "Finding related to ability to resist thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365364005", - "Display": "Finding related to ability to resist dangerous thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365375009", - "Display": "Finding related to ability to resist obsessional thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365518001", - "Display": "Finding related to ability to recognize objects (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365529002", - "Display": "Finding related to ability to recognize objects by touch (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365540005", - "Display": "Finding related to ability to recognize objects by sight (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365551005", - "Display": "Finding related to ability to recognize sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365562005", - "Display": "Finding related to ability to recognize warning sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365572008", - "Display": "Finding related to ability to recognize odors (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365583004", - "Display": "Finding related to ability to recognize surroundings (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365594000", - "Display": "Finding related to ability to recognize other persons (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365606002", - "Display": "Finding related to ability to recognize faces (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365617001", - "Display": "Finding related to ability to recognize faces by sight (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365628002", - "Display": "Finding related to ability to recognize familiar people (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365639004", - "Display": "Finding related to ability to recognize self (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365650001", - "Display": "Finding related to ability to recognize parts of own body (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365661009", - "Display": "Finding related to ability to recognize own fingers (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365672004", - "Display": "Finding related to ability to reason (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365682003", - "Display": "Finding related to ability to use verbal reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365693001", - "Display": "Finding related to ability to use arithmetic reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365704005", - "Display": "Finding related to ability to use visuospatial reasoning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365715000", - "Display": "Finding related to ability to process information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365726006", - "Display": "Finding related to ability to process information accurately (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365737007", - "Display": "Finding related to ability to process information at normal speed (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365748000", - "Display": "Finding related to ability to analyze information (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365770002", - "Display": "Finding related to ability to tell the time (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365792003", - "Display": "Finding related to ability to read (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365803008", - "Display": "Finding related to logical sequencing ability (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365814006", - "Display": "Finding of intellectual ability (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365826001", - "Display": "Finding of intellectual faculties (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365837000", - "Display": "Finding of judgement (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365848007", - "Display": "Finding of digit span performance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365859003", - "Display": "Finding of short-term memory performance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365869009", - "Display": "Finding of verbal short-term memory performance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365875000", - "Display": "Finding related to ability to recall random address at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365885004", - "Display": "Finding related to ability to recall five digit number at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365886003", - "Display": "Finding of visual short-term memory performance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365887007", - "Display": "Finding related to ability to reproduce geometric figure at five minutes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365888002", - "Display": "Finding of long-term memory performance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365890001", - "Display": "Finding of semantic memory performance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365891002", - "Display": "Finding related to ability to remember own date of birth (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365892009", - "Display": "Finding related to ability to remember own age (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365893004", - "Display": "Finding related to ability to remember day of the week (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365894005", - "Display": "Finding related to ability to remember today's date (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365895006", - "Display": "Finding related to ability to remember month of year (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365896007", - "Display": "Finding related to ability to remember current year (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365897003", - "Display": "Finding related to ability to remember name of reigning monarch (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365898008", - "Display": "Finding related to ability to remember name of current prime minister (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365899000", - "Display": "Finding related to ability to remember objects (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365900005", - "Display": "Finding related to ability to remember faces (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365901009", - "Display": "Finding related to ability to remember sounds (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365902002", - "Display": "Finding related to ability to remember motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365903007", - "Display": "Finding related to ability to remember new motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365904001", - "Display": "Finding related to ability to remember old motor skills (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365905000", - "Display": "Finding of use of memory retrieval aids (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365906004", - "Display": "Finding of memory for own age (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365907008", - "Display": "Finding of memory for present time (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365908003", - "Display": "Finding of memory for present place (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365909006", - "Display": "Finding of memory for present year (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365911002", - "Display": "Finding of memory for own date of birth (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365912009", - "Display": "Finding of memory for present month (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365913004", - "Display": "Finding of memory for important event (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365914005", - "Display": "Finding of memory for important person (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365915006", - "Display": "Finding of memory for counting down (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365916007", - "Display": "Finding of memory for address recall (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365918008", - "Display": "Finding of semantic memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365919000", - "Display": "Finding of verbal memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365920006", - "Display": "Finding of type of memories (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365923008", - "Display": "Finding related to decision making (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365924002", - "Display": "Finding related to ability to use decision making strategies (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365925001", - "Display": "Finding related to ability to make considered choices (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "365926000", - "Display": "Finding of problem solving (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "367358004", - "Display": "Above average intellect (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373930000", - "Display": "Cognitive function finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38504003", - "Display": "Impaired judgement (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "386805003", - "Display": "Mild cognitive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "386806002", - "Display": "Impaired cognition (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "386807006", - "Display": "Memory impairment (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39416002", - "Display": "Non sequiturs (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "395689002", - "Display": "Transient epileptic amnesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397588000", - "Display": "Demonstrates knowledge of expected responses to operative procedure (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397598006", - "Display": "Demonstrates knowledge of nutritional requirements related to operative procedure (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397629003", - "Display": "Participates in perioperative plan of care decisions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397640006", - "Display": "Healthcare knowledge finding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397675006", - "Display": "Demonstrates knowledge of wound healing process (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397699006", - "Display": "Demonstrates knowledge of medication management (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397724004", - "Display": "Demonstrates knowledge of pain management (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40077001", - "Display": "Magical thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "401010000", - "Display": "Patient concerned about eyesight (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "401229000", - "Display": "Thoughts of deliberate self harm (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "401230005", - "Display": "Plans for deliberate self harm without intent (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "401231009", - "Display": "Intent of deliberate self harm with detailed plans (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40277007", - "Display": "Systematized delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40628008", - "Display": "Repetition of phrases (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "407628009", - "Display": "Global deterioration scale finding for assessment of primary degenerative dementia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "407629001", - "Display": "Global Deterioration Scale level 1 - no cognitive decline (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "407630006", - "Display": "Global Deterioration Scale level 2 - very mild cognitive decline (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "407631005", - "Display": "Global Deterioration Scale level 3 - mild cognitive decline (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "407632003", - "Display": "Global Deterioration Scale level 4 - moderate cognitive decline (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "407633008", - "Display": "Global Deterioration Scale level 5 - moderately severe cognitive decline (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "407634002", - "Display": "Global Deterioration Scale level 6 - severe cognitive decline (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "407635001", - "Display": "Global Deterioration Scale level 7 - very severe cognitive decline (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "408364003", - "Display": "Patient does not understand why taking all medication (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40907002", - "Display": "Word salad (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41189006", - "Display": "Ideas of reference (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413088002", - "Display": "Poor visual sequential memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413089005", - "Display": "Poor auditory sequential memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413301003", - "Display": "Feels at risk of crime in the neighborhood (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41435003", - "Display": "Disturbance in structure of associations (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "415806002", - "Display": "Using decision making strategies (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41591006", - "Display": "Disorder of form of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416106008", - "Display": "Disturbance of memory for order of events (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416687002", - "Display": "Flashbacks have stopped (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417233008", - "Display": "Paranoid ideation (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417938007", - "Display": "Verbalizes prescribed activity plan (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "418075002", - "Display": "Verbalizes plan for reduction of exercise barriers (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "418415002", - "Display": "Finding related to the ability to verbalize understanding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "418428009", - "Display": "Verbalizes plan to support exercise (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "418716000", - "Display": "Verbalizes essential medication characteristics (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "418837001", - "Display": "Verbalizes chronic illness diagnosis and severity (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419011006", - "Display": "Verbalizes medication compliance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419049005", - "Display": "Verbalizes medication refill plans (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419128007", - "Display": "Verbalizes plan for reduction of medication compliance barriers (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419399001", - "Display": "Verbalizes discharge instructions regarding activity plan (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419606008", - "Display": "Verbalizes medication self-dose adjustment methods (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "419849006", - "Display": "Verbalizes activity tolerance (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41996009", - "Display": "Repetitive hand wringing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420169008", - "Display": "Verbalizes routine for medication administration (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42176003", - "Display": "Amnesia for recent events (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422423006", - "Display": "Cultural barrier impedes ability to use community resources (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422454005", - "Display": "Unable to use communication device to communicate with community resources (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422716006", - "Display": "Difficulty understanding community service provider role (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422742006", - "Display": "Difficulty problem solving without conflict (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423124001", - "Display": "Diminished judgement (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423324006", - "Display": "Limited reasoning ability (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423525008", - "Display": "Inadequate use of communication device to communicate with community resources (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423864004", - "Display": "Forgets to complete personal care (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423875000", - "Display": "Deficient knowledge of family planning methods (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423884000", - "Display": "Repetitious behavior (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424040008", - "Display": "Psychological pseudocyesis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424100000", - "Display": "Limited ability to think abstractly (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424423005", - "Display": "Language barrier impedes ability to use community resources (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424537004", - "Display": "Deficient knowledge of preconception health practices (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424629004", - "Display": "Transportation barrier impedes ability to use community resources (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424746008", - "Display": "Unable to communicate concern to community service provider (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424994000", - "Display": "Educational barrier impedes ability to use community resources (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425104003", - "Display": "Suicidal behavior (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425209002", - "Display": "Unfamiliar with process for obtaining community services (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425296002", - "Display": "Dissatisfaction with community resource services (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425805004", - "Display": "Cognitive developmental delay (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426502000", - "Display": "Ready for enhanced knowledge (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42688000", - "Display": "Preoccupation of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427305007", - "Display": "Ready for enhanced decision making (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431432003", - "Display": "Anxiety about loss of memory (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433081000", - "Display": "Organic amnesia of language (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4364002", - "Display": "Structure of associations (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442212003", - "Display": "Residual cognitive deficit as late effect of cerebrovascular accident (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443265004", - "Display": "Cognitive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44515000", - "Display": "Perseveration (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445201000124105", - "Display": "Non-verbally indicates understanding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445651000124107", - "Display": "Verbalizes understanding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44906001", - "Display": "Capgras' syndrome (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449888003", - "Display": "Normal cognition (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "453521000124104", - "Display": "Deficient knowledge of medication administration (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "453531000124101", - "Display": "Deficient knowledge of medication storage (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "45418009", - "Display": "Basic learning problem in speaking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "458461000124102", - "Display": "Does not understand benefit of taking medication (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "461281000124105", - "Display": "Able to remember season (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46781003", - "Display": "Basic learning problem in writing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4721006", - "Display": "Basic motor learning problem (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48167000", - "Display": "Amnesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49229003", - "Display": "Déjà entendu (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4941000175101", - "Display": "Difficulty following instructions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50532002", - "Display": "Noesis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50543005", - "Display": "Thought insertion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50829006", - "Display": "Basic learning problem (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51474003", - "Display": "Disturbance in speed of associations (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51921000", - "Display": "Retrograde amnesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53108004", - "Display": "Delusion of guilt (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53138005", - "Display": "Mood-incongruent delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53209001", - "Display": "Decisional conflict (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53297005", - "Display": "Fregoli syndrome (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53427000", - "Display": "Finger-flicking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54407007", - "Display": "Fast learner (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54501006", - "Display": "Neologism (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5451000175105", - "Display": "Verbalizes partial understanding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5461000175107", - "Display": "Verbalizes no understanding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55050000", - "Display": "Hypermnesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55346003", - "Display": "Loosening of associations (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55533009", - "Display": "Forgetful (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55640002", - "Display": "Dyscalculia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55781004", - "Display": "Intellectual precocity (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55956009", - "Display": "Disturbance in content of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56435009", - "Display": "Poverty of thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56835001", - "Display": "Palikinesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58585005", - "Display": "Autochthonous delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5921000175108", - "Display": "Deficient knowledge of healthcare alternatives (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "609583009", - "Display": "Repetitive questioning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6149008", - "Display": "Amnesia for remote events (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61861001", - "Display": "Speed of associations (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6349000", - "Display": "Projection - mental defense mechanism (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "64336009", - "Display": "Incoherent thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "64514005", - "Display": "Delusional perception (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6471006", - "Display": "Suicidal thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "65135009", - "Display": "Knight's move in thought (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "672561000119103", - "Display": "Cognitive deficit due to and following ischemic cerebrovascular accident (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "672571000119109", - "Display": "Cognitive deficit due to and following hemorrhagic cerebrovascular accident (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67348001", - "Display": "Delusional conclusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67698009", - "Display": "Obsessional thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "690341000119100", - "Display": "Cognitive deficit due to and following embolic cerebrovascular accident (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698687007", - "Display": "Post-traumatic dementia with behavioral change (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698691002", - "Display": "Cognitive disorder in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "702535006", - "Display": "Anxiety about breathlessness (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "702955000", - "Display": "Moderate cognitive impairment (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "702956004", - "Display": "Severe cognitive impairment (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704375003", - "Display": "Deficient knowledge of breast feeding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704377006", - "Display": "Deficient knowledge of peritoneal dialysis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704379009", - "Display": "Deficient knowledge of sexual behavior (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704381006", - "Display": "Deficient knowledge of oral hygiene (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704383009", - "Display": "Deficient knowledge of child development (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704400005", - "Display": "Deficient knowledge of community services (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704402002", - "Display": "Deficient knowledge of physical therapy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704403007", - "Display": "Deficient knowledge of fall prevention (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704404001", - "Display": "Deficient knowledge of pain management (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704406004", - "Display": "Deficient knowledge of symptom (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704446005", - "Display": "Deficient knowledge of exercise (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704491001", - "Display": "Deficient knowledge of traditional therapy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704680001", - "Display": "Deficient knowledge of behavior change process (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "705086000", - "Display": "Deficient knowledge of patient controlled analgesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "706869001", - "Display": "Deficient knowledge of medication (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "707165003", - "Display": "Does not agree with care plan (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "708571001", - "Display": "Demonstrates knowledge of who to contact in medical emergency (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "709073001", - "Display": "Neurocognitive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "709134004", - "Display": "Judgement intact (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "711561004", - "Display": "Has access to planned means of suicide (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712759008", - "Display": "Sense of impending doom (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713398008", - "Display": "Deficient knowledge of travel health (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713447003", - "Display": "Deficient knowledge of parenting (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713448008", - "Display": "Deficient knowledge of infant feeding (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713449000", - "Display": "Deficient knowledge of infant care (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713451001", - "Display": "Deficient knowledge of labor and delivery (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713452008", - "Display": "Deficient knowledge of fetal development (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71426002", - "Display": "Erotographomania (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714411005", - "Display": "Able to agree with care plan (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714421002", - "Display": "Difficulty agreeing with care plan (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714670007", - "Display": "Deficient knowledge of pregnancy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714830003", - "Display": "Unable to agree with care plan (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714831004", - "Display": "Does agree with care plan (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71573006", - "Display": "Concrete thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "716391009", - "Display": "Able to adapt to sensory changes in body part (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "716415003", - "Display": "Able to make decision on safe information to give over telephone (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "716433009", - "Display": "Able to problem solve (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "716438000", - "Display": "Able to recognize need for pressure area care (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "716442002", - "Display": "Able to remember people (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "716454002", - "Display": "Able to think creatively (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719731006", - "Display": "Able to remember places (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719734003", - "Display": "Able to identify choices (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719743007", - "Display": "Able to make decisions (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719747008", - "Display": "Able to remember routines (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "720438009", - "Display": "Able to make decision on safe entry of visitors (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721157004", - "Display": "Able to remember past events (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724755002", - "Display": "Positive symptoms co-occurrent and due to primary psychotic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724760003", - "Display": "Cognitive impairment co-occurrent and due to primary psychotic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "736314008", - "Display": "Dissociative neurological symptom disorder co-occurrent with cognitive symptoms (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "736317001", - "Display": "Impaired executive functioning (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "736319003", - "Display": "Disorganized thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74396008", - "Display": "Tangential thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762298000", - "Display": "Cognitive impairment due to toxicity of substance (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762622003", - "Display": "Referential thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76789006", - "Display": "Information conversion problem (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7684004", - "Display": "Fantasizing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77303001", - "Display": "Delusion of poverty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78205008", - "Display": "Irrational thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78633001", - "Display": "Altered thought processes (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7865000", - "Display": "Reality testing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "788897000", - "Display": "Delusion of misidentification (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79015004", - "Display": "Worried (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79427009", - "Display": "Unio mystica (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81215003", - "Display": "Overvalued idea (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81511006", - "Display": "Basic learning problem in language (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82361000119107", - "Display": "Altered behavior in dementia due to Huntington chorea (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82371000119101", - "Display": "Dementia due to multiple sclerosis with altered behavior (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8273004", - "Display": "Intelligence quotient high (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82791007", - "Display": "Bizarre delusion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82870007", - "Display": "Pornographomania (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8330006", - "Display": "Delusion of infidelity (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83507006", - "Display": "Finding of thought content (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "836301008", - "Display": "Amnestic mild cognitive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "840449007", - "Display": "Cognitive impairment caused by ingestible alcohol (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85173004", - "Display": "False recognition (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86110000", - "Display": "Rumination - thoughts (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86597007", - "Display": "Illogical thinking (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8684002", - "Display": "Disturbance in judgement (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86917003", - "Display": "Thought broadcast (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870262000", - "Display": "Pervasive developmental disorder with disorder of intellectual development without loss of previously acquired skills (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870264004", - "Display": "Pervasive developmental disorder with disorder of intellectual development and pervasive impairment of functional language without loss of previously acquired skills (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870265003", - "Display": "Pervasive developmental disorder with disorder of intellectual development with loss of previously acquired skills (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870266002", - "Display": "Pervasive developmental disorder with disorder of intellectual development and marked impairment of functional language with loss of previously acquired skills (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870267006", - "Display": "Pervasive developmental disorder with disorder of intellectual development and marked impairment of functional language without loss of previously acquired skills (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870268001", - "Display": "Pervasive developmental disorder with disorder of intellectual development and complete impairment of functional language without loss of previously acquired skills (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870269009", - "Display": "Pervasive developmental disorder with disorder of intellectual development and absence of functional language with loss of previously acquired skills (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870270005", - "Display": "Pervasive developmental disorder with disorder of intellectual development and complete impairment of functional language with loss of previously acquired skills (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870305003", - "Display": "Pervasive developmental disorder with cognitive developmental delay and marked impairment of functional language (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870308001", - "Display": "Pervasive developmental disorder with cognitive developmental delay and complete impairment of functional language (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870752006", - "Display": "Finding related to health literacy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87076008", - "Display": "Thought withdrawal (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "871869008", - "Display": "Difficulty demonstrating health literacy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "871870009", - "Display": "Able to demonstrate health literacy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "871872001", - "Display": "Unable to demonstrate health literacy (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88293003", - "Display": "Clang associations (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88822006", - "Display": "Anterograde amnesia (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88962006", - "Display": "Incomplete clearmindedness (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89225005", - "Display": "Anxiety about blushing (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89809008", - "Display": "Delusion of parasitosis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90207007", - "Display": "Grinding teeth (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90406001", - "Display": "Amorphosynthesis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9288000", - "Display": "Irrelevant answer (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "97751000119108", - "Display": "Altered behavior in Alzheimer's disease (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G31.84", - "Display": "Mild cognitive impairment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I69.31", - "Display": "Cognitive deficits following cerebral infarction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R41.81", - "Display": "Age-related cognitive decline" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R41.841", - "Display": "Cognitive communication deficit" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R41.9", - "Display": "Unspecified symptoms and signs involving cognitive functions and awareness" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.43.json b/build/module/resources/2.16.840.1.113762.1.4.1222.43.json deleted file mode 100644 index d34198d..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.43.json +++ /dev/null @@ -1,1910 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10528009", - "Display": "Lupus vulgaris (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10706006", - "Display": "Tuberculosis of central nervous system (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10759881000119100", - "Display": "Tuberculosis in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10893003", - "Display": "Tuberculous adenitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1092771000119104", - "Display": "Tuberculous neuritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111825008", - "Display": "Tuberculosis of conjunctiva (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111830007", - "Display": "Tuberculosis of urinary organs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111832004", - "Display": "Primary progressive tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11676005", - "Display": "Tuberculous leptomeningitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11999007", - "Display": "Inactive tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12137005", - "Display": "Tuberculous enteritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12677003", - "Display": "Tuberculosis of brain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129211000119108", - "Display": "Isoniazid resistant tuberculosis of lung (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12985005", - "Display": "Tuberculosis of seminal vesicle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13570003", - "Display": "Tuberculous tenosynovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14188007", - "Display": "Tuberculosis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14527007", - "Display": "Tuberculous empyema (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15202009", - "Display": "Tuberculoma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15284007", - "Display": "Tuberculosis of esophagus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "154283005", - "Display": "Pulmonary tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016231000119109", - "Display": "Tuberculosis of right knee joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016311000119107", - "Display": "Tuberculosis of left knee joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "161414005", - "Display": "History of tuberculosis (situation)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16409009", - "Display": "Tuberculosis of retroperitoneal lymph nodes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17136009", - "Display": "Tuberculosis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17653001", - "Display": "Tuberculosis of bones and/or joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "182159002", - "Display": "Disseminated tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "185113005", - "Display": "Tuberculosis of adrenal glands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186172004", - "Display": "Tuberculous pleurisy in primary progressive tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186175002", - "Display": "Infiltrative lung tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186177005", - "Display": "Tuberculosis of lung with cavitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186178000", - "Display": "Tuberculosis of bronchus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186182003", - "Display": "Tuberculosis of pleura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186192006", - "Display": "Respiratory tuberculosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186193001", - "Display": "Tuberculosis of lung" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186194007", - "Display": "Tuberculosis of lung" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186195008", - "Display": "Tuberculosis of lung" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186199002", - "Display": "Tuberculosis of larynx" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186200004", - "Display": "Tuberculous pleurisy" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186201000", - "Display": "Primary respiratory tuberculosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186202007", - "Display": "Respiratory tuberculosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186203002", - "Display": "Tuberculosis of lung" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186204008", - "Display": "Tuberculosis of lung" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186225008", - "Display": "Tuberculosis of intestines" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186259007", - "Display": "Scrofulous tuberculous abscess (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186263000", - "Display": "Tuberculous chorioretinitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186266008", - "Display": "Tuberculous chronic iridocyclitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186267004", - "Display": "Tuberculous keratoconjunctivitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186269001", - "Display": "Tuberculosis of ear (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186270000", - "Display": "Tuberculous Addison's disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186272008", - "Display": "Tuberculosis of stomach (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186273003", - "Display": "Tuberculosis of liver (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186276006", - "Display": "Acute miliary tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186278007", - "Display": "Acute miliary tuberculosis of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190710003", - "Display": "Tuberculous arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193787009", - "Display": "Keratitis caused by tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194908003", - "Display": "Acute tuberculous pericarditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194949003", - "Display": "Acute myocarditis - tuberculous (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "198241002", - "Display": "Female tuberculous pelvic inflammatory disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199175001", - "Display": "Maternal tuberculosis during pregnancy" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199178004", - "Display": "Tuberculosis in pregnancy" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199179007", - "Display": "Maternal tuberculosis in the puerperium - baby delivered during current episode of care (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199180005", - "Display": "Maternal tuberculosis during pregnancy - baby not yet delivered (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199181009", - "Display": "Maternal tuberculosis in the puerperium - baby delivered during previous episode of care (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202994006", - "Display": "Tuberculous infection of tendon sheath (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203263006", - "Display": "Tuberculosis of cervical spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203264000", - "Display": "Tuberculosis of thoracic spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203265004", - "Display": "Tuberculosis of lumbar spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203267007", - "Display": "Tuberculosis of limb bones (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203269005", - "Display": "Tuberculosis of the upper arm bone (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203270006", - "Display": "Tuberculosis of the forearm bone (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203271005", - "Display": "Tuberculosis of the pelvic and/or thigh bones (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203272003", - "Display": "Tuberculosis of the lower leg bone (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203274002", - "Display": "Tuberculosis of multiple limb bones (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203278004", - "Display": "Tuberculosis of the bones of the shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203279007", - "Display": "Tuberculosis of the bones of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203280005", - "Display": "Tuberculosis of the bones of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203282002", - "Display": "Tuberculosis of the bones of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20372007", - "Display": "Tuberculosis of prostate (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "213580002", - "Display": "Caseating tuberculoid granuloma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22990009", - "Display": "Chronic tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233649005", - "Display": "Tuberculous chylothorax (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233763009", - "Display": "Silicotuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233794009", - "Display": "Tuberculous bronchopleural fistula (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234090004", - "Display": "Tuberculous mesenteric adenitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235067001", - "Display": "Oral tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235694001", - "Display": "Tuberculous duodenitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236602004", - "Display": "Tuberculous stricture of ureter (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236684001", - "Display": "Tuberculous urethritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236770001", - "Display": "Tuberculous epididymo-orchitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237445009", - "Display": "Tuberculosis of breast (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238430004", - "Display": "Cutaneous complication of bacillus Calmette-Guerin immunization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238431000", - "Display": "Bacillus Calmette-Guerin granuloma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238432007", - "Display": "Bacillus Calmette-Guerin ulcer (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240376003", - "Display": "Tuberculosis of gastrointestinal tract (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240379005", - "Display": "Tuberculosis of male genital organs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240380008", - "Display": "Acute tuberculous ulcer (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240381007", - "Display": "Acute miliary cutaneous tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240382000", - "Display": "Cutaneous tuberculous gumma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24235005", - "Display": "Tuberculous hydrothorax (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24810006", - "Display": "Tuberculosis orificialis of mouth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25629007", - "Display": "Acute tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25738004", - "Display": "Tuberculous synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25831001", - "Display": "Tuberculosis of nasal septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267317007", - "Display": "Tuberculosis in pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26935004", - "Display": "Tuberculosis of thyroid gland (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271423008", - "Display": "Tuberculosis of skin and subcutaneous tissue (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281623008", - "Display": "Genital tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28399005", - "Display": "Tuberculosis of spleen (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29731002", - "Display": "Tuberculous pneumothorax (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301836007", - "Display": "Tuberculosis of colon (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "302131003", - "Display": "Tuberculosis of heart (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31112008", - "Display": "Tuberculous meningoencephalitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314029000", - "Display": "Tuberculous uveitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32268008", - "Display": "Tuberculosis of bladder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33893009", - "Display": "Tuberculosis verrucosa cutis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35585004", - "Display": "Tuberculous endometritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35786001", - "Display": "Tuberculoma of meninges (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35984006", - "Display": "Tuberculosis of vertebral column (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "37133005", - "Display": "Tuberculous pyelitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "37260006", - "Display": "Congenital tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373043002", - "Display": "Infection caused by Mycobacterium microti (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373085003", - "Display": "Infection caused by Mycobacterium africanum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373086002", - "Display": "Infection caused by mycobacterium tuberculosis hominis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373437006", - "Display": "Infection caused by Mycobacterium bovis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373576009", - "Display": "Infection caused by Mycobacterium tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38115001", - "Display": "Tuberculosis of spinal meninges (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38279006", - "Display": "Tuberculosis of bone (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38420005", - "Display": "Tuberculosis of large intestine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39306006", - "Display": "Tuberculosis of anus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40258005", - "Display": "Tuberculosis of testis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402973006", - "Display": "Bacillus Calmette-Guerin-induced lupus vulgaris (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402974000", - "Display": "Bacillus Calmette-Guerin-induced scrofuloderma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402975004", - "Display": "Bacillus Calmette-Guerin-induced tuberculide (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413556004", - "Display": "Antibiotic resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413852006", - "Display": "Ciprofloxacin resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414146004", - "Display": "Ethambutol resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414149006", - "Display": "Ethionamide resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414546009", - "Display": "Isoniazid resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "415222009", - "Display": "Pyrazinamide resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "415345001", - "Display": "Rifampicin resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "415622003", - "Display": "Streptomycin resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416265003", - "Display": "Tuberculoma of brain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416903004", - "Display": "Tuberculoma of spinal cord (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421571007", - "Display": "Tuberculosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422481005", - "Display": "Extreme drug resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4225003", - "Display": "Tuberculosis of nose (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423092005", - "Display": "Multidrug resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423709000", - "Display": "Drug resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423997002", - "Display": "Tuberculosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427099000", - "Display": "Active tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428697002", - "Display": "Inactive tuberculosis of lung (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428934008", - "Display": "History of inactive tuberculosis (situation)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441770001", - "Display": "Tuberculosis of external body orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44182001", - "Display": "Tuberculous necrosis of bone (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44323002", - "Display": "Tuberculosis of kidney (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443378001", - "Display": "Lady Windermere syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4445009", - "Display": "Tuberculosis of genitourinary system (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44572005", - "Display": "Tuberculous peritonitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446753005", - "Display": "Tuberculosis of oropharynx (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446946005", - "Display": "Reinfection pulmonary tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446986002", - "Display": "Tuberculous pleural effusion (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447006007", - "Display": "Relapse pulmonary tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447012002", - "Display": "Tuberculosis of spinal cord (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447253004", - "Display": "Tuberculous arachnoiditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447330002", - "Display": "Tuberculosis of abdomen (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447371008", - "Display": "Tuberculosis of ileum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449925002", - "Display": "Tuberculosis of bone of upper limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4501007", - "Display": "Tuberculous ascites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "460440005", - "Display": "Pericarditis with pericardial effusion caused by Mycobacterium tuberculosis complex (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "460464006", - "Display": "Constrictive pericarditis caused by Mycobacterium tuberculosis complex (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47292005", - "Display": "Tuberculosis of myocardium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473114006", - "Display": "History of active tuberculosis (situation)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473426009", - "Display": "Primary tuberculous complex confirmed by culture (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473427000", - "Display": "Primary tuberculous complex confirmed histologically (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473428005", - "Display": "Primary tuberculous complex confirmed by microscopic examination (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473429002", - "Display": "Tuberculoma of spinal cord confirmed (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473430007", - "Display": "Primary tuberculous complex confirmed (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "473431006", - "Display": "Primary tuberculous complex with bacteriological or histological examination results unknown (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47604008", - "Display": "Miliary tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48225000", - "Display": "Tuberculous disseminated chorioretinitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49107007", - "Display": "Tuberculosis of eye (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49558004", - "Display": "Tuberculous salpingitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49807009", - "Display": "Tuberculous dactylitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51014003", - "Display": "Reinfection tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52721006", - "Display": "Tuberculosis of nasal sinus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52987001", - "Display": "Tuberculosis of endocardium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54084005", - "Display": "Cervical tuberculous lymphadenitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55419007", - "Display": "Tuberculosis of glottis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56498009", - "Display": "Tuberculosis of nasopharynx (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56717001", - "Display": "Tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58374007", - "Display": "Acute diffuse tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58437007", - "Display": "Tuberculosis of meninges (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58764007", - "Display": "Tuberculous osteomyelitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60136008", - "Display": "Tuberculosis of intestines (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62494007", - "Display": "Chronic miliary tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62819009", - "Display": "Tuberculous cervicitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63309002", - "Display": "Primary tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63808004", - "Display": "Tuberculous chancre (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66986005", - "Display": "Tuberculosis of skin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67256000", - "Display": "Tuberculosis of pericardium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700272008", - "Display": "Tuberculosis of respiratory system (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700273003", - "Display": "Isolated tracheobronchial tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70341005", - "Display": "Tuberculous laryngitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "707149004", - "Display": "Mycobacterial lymphadenitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "710106005", - "Display": "Extensively drug resistant tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71375000", - "Display": "Tuberculosis of mastoid process (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714394004", - "Display": "Lupus vulgaris of nose (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717697005", - "Display": "Tuberculous ulceration of vulva (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71943007", - "Display": "Chronic granulomatous tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721732001", - "Display": "Infection of musculoskeletal system caused by Mycobacterium tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724541008", - "Display": "Acute miliary tuberculosis of single site (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72807002", - "Display": "Tuberculous polyserositis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "733835007", - "Display": "Extrapulmonary tuberculosis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735517008", - "Display": "Myositis caused by Mycobacterium tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735518003", - "Display": "Infection of digestive system caused by Mycobacterium tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735519006", - "Display": "Infection of endocrine gland caused by Mycobacterium tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735521001", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 1 co-occurrent with tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735523003", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 2 co-occurrent with tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735525005", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 3 co-occurrent with tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735527002", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 4 co-occurrent with tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74181004", - "Display": "Tuberculosis of female genital organs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74387008", - "Display": "Tuberculosis of hilar lymph nodes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7444001", - "Display": "Tuberculosis of rectum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74610006", - "Display": "Tuberculous erythema nodosum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77038006", - "Display": "Tuberculosis of peripheral lymph nodes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "770674007", - "Display": "Tubercular lesion of lung (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78436002", - "Display": "Tuberculosis of intrathoracic lymph nodes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "788960009", - "Display": "Infection of placenta caused by Mycobacterium tuberculosis complex (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789056000", - "Display": "Tuberculosis of inner ear (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789057009", - "Display": "Tuberculosis of middle ear (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79158003", - "Display": "Tuberculous interstitial keratitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80003002", - "Display": "Tuberculous pneumonia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80010008", - "Display": "Isolated bronchial tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80602006", - "Display": "Nodular tuberculosis of lung (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81133003", - "Display": "Tuberculosis of bones of lower extremity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81359005", - "Display": "Tuberculosis of ureter (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81554001", - "Display": "Tuberculosis of lung with involvement of bronchus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82495004", - "Display": "Tuberculosis of mediastinal lymph nodes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8250007", - "Display": "Tuberculosis of subcutaneous cellular tissue (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82796002", - "Display": "Scrofuloderma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83652003", - "Display": "Tuberculosis of epididymis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83784000", - "Display": "Tuberculosis of mediastinum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "840446000", - "Display": "Dacryoadenitis caused by Mycobacterium tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84194006", - "Display": "Tuberculous oophoritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84288007", - "Display": "Tuberculous episcleritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85692003", - "Display": "Tuberculosis of tracheobronchial lymph nodes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85940005", - "Display": "Tuberculous otitis media (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "860803004", - "Display": "Hydrocephalus due to tuberculosis of brain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "866083008", - "Display": "Infection of eyelid caused by Mycobacterium tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870333003", - "Display": "Panuveitis caused by Mycobacterium tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8832006", - "Display": "Tuberculosis orificialis of anus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88356006", - "Display": "Primary tuberculous complex (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90117007", - "Display": "Tuberculous fibrosis of lung (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90302003", - "Display": "Tuberculosis of cerebral meninges (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91483004", - "Display": "Tuberculous encephalitis (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A15.0", - "Display": "Tuberculosis of lung" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A15.4", - "Display": "Tuberculosis of intrathoracic lymph nodes" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A15.5", - "Display": "Tuberculosis of larynx" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A15.6", - "Display": "Tuberculous pleurisy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A15.7", - "Display": "Primary respiratory tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A15.8", - "Display": "Other respiratory tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A15.9", - "Display": "Respiratory tuberculosis unspecified" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A17.0", - "Display": "Tuberculous meningitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A17.1", - "Display": "Meningeal tuberculoma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A17.81", - "Display": "Tuberculoma of brain and spinal cord" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A17.82", - "Display": "Tuberculous meningoencephalitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A17.83", - "Display": "Tuberculous neuritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A17.89", - "Display": "Other tuberculosis of nervous system" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A17.9", - "Display": "Tuberculosis of nervous system" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.01", - "Display": "Tuberculosis of spine" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.02", - "Display": "Tuberculous arthritis of other joints" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.03", - "Display": "Tuberculosis of other bones" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.09", - "Display": "Other musculoskeletal tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.1", - "Display": "Tuberculosis of genitourinary system" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.10", - "Display": "Tuberculosis of genitourinary system" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.11", - "Display": "Tuberculosis of kidney and ureter" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.12", - "Display": "Tuberculosis of bladder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.13", - "Display": "Tuberculosis of other urinary organs" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.14", - "Display": "Tuberculosis of prostate" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.15", - "Display": "Tuberculosis of other male genital organs" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.16", - "Display": "Tuberculosis of cervix" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.17", - "Display": "Tuberculous female pelvic inflammatory disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.18", - "Display": "Tuberculosis of other female genital organs" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.2", - "Display": "Tuberculous peripheral lymphadenopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.3", - "Display": "Tuberculosis of intestines" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.31", - "Display": "Tuberculous peritonitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.32", - "Display": "Tuberculous enteritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.39", - "Display": "Retroperitoneal tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.4", - "Display": "Tuberculosis of skin and subcutaneous tissue" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.5", - "Display": "Tuberculosis of eye" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.50", - "Display": "Tuberculosis of eye" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.51", - "Display": "Tuberculous episcleritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.52", - "Display": "Tuberculous keratitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.53", - "Display": "Tuberculous chorioretinitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.54", - "Display": "Tuberculous iridocyclitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.59", - "Display": "Other tuberculosis of eye" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.6", - "Display": "Tuberculosis of (inner) (middle) ear" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.7", - "Display": "Tuberculosis of adrenal glands" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.8", - "Display": "Tuberculosis of other specified organs" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.81", - "Display": "Tuberculosis of thyroid gland" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.82", - "Display": "Tuberculosis of other endocrine glands" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.83", - "Display": "Tuberculosis of digestive tract organs" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.84", - "Display": "Tuberculosis of heart" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.85", - "Display": "Tuberculosis of spleen" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.89", - "Display": "Tuberculosis of other sites" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A19.0", - "Display": "Acute miliary tuberculosis of a single specified site" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A19.1", - "Display": "Acute miliary tuberculosis of multiple sites" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A19.2", - "Display": "Acute miliary tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A19.8", - "Display": "Other miliary tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A19.9", - "Display": "Miliary tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B90.0", - "Display": "Sequelae of central nervous system tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B90.1", - "Display": "Sequelae of genitourinary tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B90.2", - "Display": "Sequelae of tuberculosis of bones and joints" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B90.8", - "Display": "Sequelae of tuberculosis of other organs" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B90.9", - "Display": "Sequelae of respiratory and unspecified tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "J65", - "Display": "Pneumoconiosis associated with tuberculosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Z86.11", - "Display": "Personal history of tuberculosis" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.47.json b/build/module/resources/2.16.840.1.113762.1.4.1222.47.json deleted file mode 100644 index 043f350..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.47.json +++ /dev/null @@ -1,44 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "119247004", - "Display": "Hypoalbuminemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "97361000119109", - "Display": "Hypoalbuminemia due to protein calorie malnutrition (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E43", - "Display": "Unspecified severe protein-calorie malnutrition" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E44", - "Display": "Protein-calorie malnutrition of moderate and mild degree" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E46", - "Display": "Unspecified protein-calorie malnutrition" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E88.09", - "Display": "Other disorders of plasma-protein metabolism" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R77.0", - "Display": "Abnormality of albumin" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.50.json b/build/module/resources/2.16.840.1.113762.1.4.1222.50.json deleted file mode 100644 index 0978c36..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.50.json +++ /dev/null @@ -1,68 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14140009", - "Display": "Hyperkalemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237846001", - "Display": "Hyperkalemic alkalosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237847005", - "Display": "Hyperkalemic acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237848000", - "Display": "Hyperkalemia with normal acid-base balance (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237849008", - "Display": "Drug-induced hyperkalemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40777006", - "Display": "Chronic hyperkalemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427195008", - "Display": "Hyperkalemia caused by angiotensin-converting enzyme inhibitor (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5354002", - "Display": "Hyperkalemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54781007", - "Display": "Hyperkalemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5579000", - "Display": "Acute hyperkalemia (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E87.5", - "Display": "Hyperkalemia" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.53.json b/build/module/resources/2.16.840.1.113762.1.4.1222.53.json deleted file mode 100644 index e871d5c..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.53.json +++ /dev/null @@ -1,3134 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10205009", - "Display": "Megaloblastic anemia due to exfoliative dermatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "105599000", - "Display": "Anemia related to disturbed deoxyribonucleic acid synthesis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10564005", - "Display": "Severe hereditary spherocytosis due to combined deficiency of spectrin AND ankyrin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10619002", - "Display": "Megaloblastic anemia due to poor nutrition (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10741751000119100", - "Display": "Anemia in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10759351000119103", - "Display": "Sickle cell anemia in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10762261000119105", - "Display": "Anemia following acute postoperative blood loss (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10806241000119108", - "Display": "Thalassemia in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10812081000119108", - "Display": "Iron deficiency anemia in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109996008", - "Display": "Myelodysplastic syndrome: Refractory anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109998009", - "Display": "Refractory anemia with ringed sideroblasts (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "110000005", - "Display": "Refractory anemia with excess blasts in transformation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111407006", - "Display": "Hemolytic uremic syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111469006", - "Display": "Hemolytic disease of the newborn due to non-ABO" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111571009", - "Display": "Congenital atransferrinemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111572002", - "Display": "beta^0^ Thalassemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111574001", - "Display": "Anemia due to copper deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111575000", - "Display": "Anemia due to membrane defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111576004", - "Display": "Acquired stomatocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111577008", - "Display": "Anemia due to enzyme deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111578003", - "Display": "Hereditary nonspherocytic hemolytic anemia due to aldolase A deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111579006", - "Display": "Hereditary nonspherocytic hemolytic anemia due to glutathione synthetase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111581008", - "Display": "Anemia caused by physical agent (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11491000", - "Display": "Anemia due to niacin deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11503009", - "Display": "Relative anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "115963009", - "Display": "Regenerative anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11781007", - "Display": "Autoimmune hemolytic anemia caused by complement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "118791000119106", - "Display": "Aplastic anemia caused by antineoplastic agent (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "119641000119103", - "Display": "Homozygous hemoglobin H constant spring thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "119691000119106", - "Display": "Hemoglobin C/beta thalassemia disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "119701000119106", - "Display": "Hemoglobin D/beta thalassemia disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12189000", - "Display": "Coombs negative hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12238007", - "Display": "Megaloblastic anemia due to gastrectomy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127040003", - "Display": "Sickle cell-hemoglobin SS disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127041004", - "Display": "Sickle cell-beta-thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127042006", - "Display": "Sickle cell beta plus thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127043001", - "Display": "Sickle cell-beta^0^-thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127044007", - "Display": "Sickle cell-delta beta^0^-thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127045008", - "Display": "Sickle cell anemia with coexistent alpha-thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127046009", - "Display": "Sickle cell trait with coexistent alpha-thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127049002", - "Display": "Primary (idiopathic) autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127050002", - "Display": "Secondary autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127052005", - "Display": "Secondary warm autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127053000", - "Display": "Post-infectious cold agglutinin disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127054006", - "Display": "Cold agglutinin disease caused by Epstein-Barr virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127055007", - "Display": "Chronic cold agglutinin disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127056008", - "Display": "Chronic cold agglutinin disease associated with B-cell neoplasm (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127057004", - "Display": "Paroxysmal cold hemoglobinuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127058009", - "Display": "Paroxysmal cold hemoglobinuria associated with tertiary syphilis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127060006", - "Display": "Drug-induced immune hemolytic anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127061005", - "Display": "Autoimmune hemolytic anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127319005", - "Display": "Anemia caused by alloimmune destruction of transfused red cells (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12907000", - "Display": "Thiamine-responsive megaloblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129638002", - "Display": "Hemolytic anemia caused by hyperbaric oxygen (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13172003", - "Display": "Chronic idiopathic thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14024008", - "Display": "Humoral immunologic aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14087004", - "Display": "Hereditary stomatocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14126008", - "Display": "Autosomal-linked pyridoxine refractory sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14379009", - "Display": "Dimorphic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14514008", - "Display": "Anemia due to disturbance of hemoglobin synthesis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15121005", - "Display": "Hereditary elliptocytosis due to glycophorin C deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15276008", - "Display": "Drug-induced enzyme deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15326009", - "Display": "beta^+^ Thalassemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15332004", - "Display": "Goats' milk anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16360009", - "Display": "Delta beta thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16427007", - "Display": "Delta thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16645003", - "Display": "Anemia caused by insect venom (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16964007", - "Display": "Hereditary persistence of fetal hemoglobin thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1801000119106", - "Display": "Anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18273004", - "Display": "Unstable hemoglobin disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18323000", - "Display": "Drug-induced immune hemolytic anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18637002", - "Display": "Megaloblastic anemia of premature infant (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18662002", - "Display": "Acquired Heinz body anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "189509003", - "Display": "Refractory anemia without sideroblasts" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191128004", - "Display": "Iron deficiency anemia due to dietary causes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191136008", - "Display": "Idiopathic hypochromic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191142007", - "Display": "Vitamin B12 deficiency anemia due to malabsorption with proteinuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191146005", - "Display": "Congenital folate malabsorption anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191148006", - "Display": "Folate deficiency anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191149003", - "Display": "Folate deficiency anemia due to malabsorption (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191150003", - "Display": "Folate deficiency anemia due to liver disorders (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191154007", - "Display": "Combined B12 and folate deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191161006", - "Display": "Vitamin C deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191169008", - "Display": "Hereditary elliptocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191170009", - "Display": "Hemolytic anemia due to glutathione metabolism disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191177007", - "Display": "Hemolytic anemia due to hexokinase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191178002", - "Display": "Hemolytic anemia due to pyruvate kinase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191179005", - "Display": "Hemolytic anemia due to triose phosphate isomerase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191180008", - "Display": "Anemia due to disorders of nucleotide metabolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191187006", - "Display": "Alpha trait thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191189009", - "Display": "Beta thalassemia intermedia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191210005", - "Display": "Primary cold-type hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191211009", - "Display": "Primary warm-type hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191212002", - "Display": "Secondary cold-type hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191213007", - "Display": "Secondary warm-type hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191216004", - "Display": "Non-autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191217008", - "Display": "Mechanical hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191218003", - "Display": "Toxic hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191222008", - "Display": "Hemoglobinuria due to hemolysis from external causes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191228007", - "Display": "Acquired spherocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191229004", - "Display": "Pyknocytosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191244003", - "Display": "Aplastic anemia due to chronic disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191246001", - "Display": "Aplastic anemia due to infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191247005", - "Display": "Aplastic anemia caused by radiation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191248000", - "Display": "Aplastic anemia caused by toxic cause (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191251007", - "Display": "Transient hypoplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191255003", - "Display": "Transient acquired pure red cell aplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191256002", - "Display": "Idiopathic aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191260004", - "Display": "Pyridoxine-responsive sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191261000", - "Display": "Secondary sideroblastic anemia due to disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191262007", - "Display": "Secondary sideroblastic anemia caused by drugs and toxins (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191265009", - "Display": "Anemia in neoplastic disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191268006", - "Display": "Chronic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19442009", - "Display": "Heterozygous thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1963002", - "Display": "Paroxysmal nocturnal hemoglobinuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199244000", - "Display": "Anemia during pregnancy - baby delivered (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199245004", - "Display": "Anemia in the puerperium - baby delivered during current episode of care (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199246003", - "Display": "Anemia during pregnancy - baby not yet delivered (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199247007", - "Display": "Anemia in the puerperium - baby delivered during previous episode of care (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199248002", - "Display": "Iron deficiency anemia of pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "21412009", - "Display": "X chromosome-linked pyridoxine refractory sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "21914002", - "Display": "Anemia of thyroid dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22098000", - "Display": "Chronic idiopathic autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22347002", - "Display": "Anemia of gonadal dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22438006", - "Display": "Anemia due to disturbance of proliferation AND/OR differentiation of hematopoietic stem cells (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22933009", - "Display": "Glucose-6-phosphate dehydrogenase deficiency class I variant anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23371004", - "Display": "Epsilon gamma delta beta thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234343008", - "Display": "Normocytic anemia due to aplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234346000", - "Display": "Dilutional anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234347009", - "Display": "Anemia of chronic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234348004", - "Display": "Anemia of renal disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234349007", - "Display": "Microcytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234350007", - "Display": "Neonatal anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234352004", - "Display": "Normocytic anemia due to chronic blood loss (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234353009", - "Display": "Congenital transferrin deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234358000", - "Display": "Megaloblastic anemia due to dietary causes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234360003", - "Display": "Vegan's anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234361004", - "Display": "Congenital deficiency of intrinsic factor (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234362006", - "Display": "Biermer's congenital pernicious anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234363001", - "Display": "Selective malabsorption of cyanocobalamin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234364007", - "Display": "Combined deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234365008", - "Display": "Thiamine-responsive macrocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234366009", - "Display": "Alcohol-related sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234370001", - "Display": "Pure red cell aplasia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234376007", - "Display": "Acquired red cell aplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234380002", - "Display": "Kell isoimmunization of the newborn (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234381003", - "Display": "Maternal autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234383000", - "Display": "Homozygous alpha thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234385007", - "Display": "Alpha thalassemia-2 trait (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234386008", - "Display": "Hemoglobin Constant Spring trait (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234387004", - "Display": "Hemoglobin Lepore trait (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234388009", - "Display": "Delta-beta-Lepore thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234389001", - "Display": "Alpha-beta thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234390005", - "Display": "Gamma thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234391009", - "Display": "Sickle cell anemia with high hemoglobin F (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234410008", - "Display": "Hereditary elliptocytosis with transient poikilocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237617006", - "Display": "Megaloblastic anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237985009", - "Display": "Pearson's syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240453002", - "Display": "Oroya fever (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240486003", - "Display": "Parvoviral aplastic crisis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24620004", - "Display": "Hemolytic anemia caused by babesiosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24661004", - "Display": "Glucose-6-phosphate dehydrogenase deficiency class III variant anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24962009", - "Display": "Anemia due to vitamin E deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24975009", - "Display": "Mild hereditary spherocytosis due to combined deficiency of spectrin AND ankyrin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25251008", - "Display": "Hereditary nonspherocytic hemolytic anemia due to gamma glutamyl cysteine synthetase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25266006", - "Display": "Hereditary spherocytosis due to spectrin deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25443007", - "Display": "X chromosome-linked pyridoxine responsive sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26333003", - "Display": "Megaloblastic anemia due to vitamin B>12< malabsorption with proteinuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26409005", - "Display": "Congenital dyserythropoietic anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26682008", - "Display": "Homozygous beta thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267513007", - "Display": "Deficiency anemias (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267517008", - "Display": "Vitamin B12 deficiency anemia due to dietary causes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267518003", - "Display": "Folate deficiency anemia due to dietary causes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267524009", - "Display": "Constitutional aplastic anemia with malformation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267527002", - "Display": "Aplastic anemia due to drugs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267530009", - "Display": "Acute posthemorrhagic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267535004", - "Display": "Congenital thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "269175006", - "Display": "Beta thalassemia trait (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2694001", - "Display": "Myelophthisic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26944003", - "Display": "Acute megaloblastic anemia due to dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "27080008", - "Display": "beta^0^ Thalassemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271737000", - "Display": "Anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "27342004", - "Display": "Anemia of pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "27366005", - "Display": "Megaloblastic anemia due to hemodialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "273985002", - "Display": "Anemia due to isoimmunization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276448005", - "Display": "Idiopathic sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276578004", - "Display": "Physiological anemia of infancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276580005", - "Display": "Atypical isoimmunization of newborn (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "27798002", - "Display": "Megaloblastic anemia due to impaired absorption of folate (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "278363000", - "Display": "Alcoholic macrocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28147001", - "Display": "Hemolytic anemia caused by Clostridium welchii (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2835000", - "Display": "Traumatic cardiac hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28505005", - "Display": "Acute idiopathic thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "286928002", - "Display": "Deficiency anemias" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28975000", - "Display": "Constitutional aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "290246007", - "Display": "Sideropenic anemia with reticuloendothelial siderosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "291262006", - "Display": "Simple chronic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29177004", - "Display": "Anemia due to pentose phosphate pathway defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29551000", - "Display": "Anemia caused by oxygen (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "300980002", - "Display": "Normocytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301317008", - "Display": "Hereditary nonspherocytic hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "302873008", - "Display": "Thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303060002", - "Display": "Normocytic anemia following acute bleed (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30418008", - "Display": "Anemia of adrenal dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30575002", - "Display": "Fanconi's anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306058006", - "Display": "Aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307333004", - "Display": "Rhesus isoimmunization due to anti-D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307334005", - "Display": "Rhesus isoimmunization due to anti-c (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307335006", - "Display": "Rhesus isoimmunization due to anti-E (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307336007", - "Display": "Rhesus isoimmunization due to anti-Cw (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307337003", - "Display": "Duffy isoimmunization of the newborn (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307338008", - "Display": "Kidd isoimmunization of the newborn (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307343001", - "Display": "Acquired hemoglobin H disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307726001", - "Display": "Anemia in ovarian carcinoma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309742004", - "Display": "Drug-induced autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310647000", - "Display": "Anemia secondary to renal failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31206006", - "Display": "Refractory megaloblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313291009", - "Display": "Anemia during the puerperium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31820007", - "Display": "Anemia of endocrine disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32094009", - "Display": "Megaloblastic anemia caused by fish tapeworm (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322699009", - "Display": "Intracorpuscular hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32273002", - "Display": "Immune thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323666000", - "Display": "Anemia due to intrinsic red cell abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32648007", - "Display": "Mild hereditary spherocytosis due to spectrin deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3272007", - "Display": "Stomatocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "328301000119102", - "Display": "Pancytopenia due to antineoplastic chemotherapy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32855007", - "Display": "Hereditary persistence of fetal hemoglobin unlinked to beta-globulin gene cluster (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32858009", - "Display": "Hemolytic disease of fetus OR newborn due to ABO immunization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33183004", - "Display": "Post infectious thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33491002", - "Display": "Autoimmune hemolytic anemia caused by immunoglobulin A plus complement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33905008", - "Display": "Hereditary spherocytosis due to deficiency of protein 4.2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34194007", - "Display": "Hereditary nonspherocytic hemolytic anemia due to pyrimidine-5'-nucleotidase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34247008", - "Display": "Anemia due to mechanical damage (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34629009", - "Display": "Anemia due to zinc deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34852006", - "Display": "Glucose-6-phosphate dehydrogenase deficiency class II variant anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34925000", - "Display": "Megaloblastic anemia due to inborn errors of metabolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "350601000119109", - "Display": "Hemolytic disease of newborn co-occurrent and due to ABO immunization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "350611000119107", - "Display": "Hemolytic disease of fetus due to ABO immunization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35703006", - "Display": "Post-viral paroxysmal cold hemoglobinuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3571004", - "Display": "Megaloblastic anemia due to pancreatic insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35778001", - "Display": "Megaloblastic anemia due to error of folate metabolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "360495000", - "Display": "Familial megaloblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "363041004", - "Display": "Congenital nonspherocytic hemolytic anemia due to inborn error of metabolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36467003", - "Display": "Alpha plus thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36472007", - "Display": "Sickle cell-thalassemia disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36568005", - "Display": "Hemolytic uremic syndrome of childhood (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36919001", - "Display": "Anemia caused by lead (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371046004", - "Display": "Traumatic hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371315009", - "Display": "Iron deficiency anemia secondary to inadequate dietary iron intake (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "37272000", - "Display": "Rh deficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373420004", - "Display": "Upshaw-Schulman syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373421000", - "Display": "Diarrhea-associated hemolytic uremic syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373422007", - "Display": "Diarrhea-negative hemolytic uremic syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "37370005", - "Display": "Megaloblastic anemia caused by drugs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38689004", - "Display": "Hemolytic anemia due to infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "387702001", - "Display": "Perinatal anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "387705004", - "Display": "Hemolytic disease of fetus OR newborn due to isoimmunization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "387745008", - "Display": "Sports anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38911009", - "Display": "Hereditary hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "389214003", - "Display": "Diaphyseal dysplasia with anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39586009", - "Display": "Hereditary persistence of fetal hemoglobin A gamma beta^+^ thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3978000", - "Display": "Warm autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398623004", - "Display": "Refractory anemia with excess blasts (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398937006", - "Display": "Cold autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40108008", - "Display": "Thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402653004", - "Display": "Thrombocytopenic purpura due to defective platelet production (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402654005", - "Display": "Thrombocytopenic purpura due to platelet consumption (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40387008", - "Display": "Polyagglutinable erythrocyte syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413532003", - "Display": "Anemia due to blood loss (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413533008", - "Display": "Anemia due to chronic blood loss (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413565006", - "Display": "Aplastic anemia associated with metabolic alteration (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413566007", - "Display": "Aplastic anemia associated with pancreatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413567003", - "Display": "Aplastic anemia associated with pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "413603009", - "Display": "Autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41387000", - "Display": "Hereditary nonspherocytic hemolytic anemia due to phosphofructokinase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41462006", - "Display": "Anemia due to disturbance of proliferation AND/OR differentiation of erythroid precursor cells (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "415283002", - "Display": "Refractory anemia with excess blasts-1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "415284008", - "Display": "Refractory anemia with excess blasts-2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41614006", - "Display": "Hypoplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416180004", - "Display": "Hemoglobin SS disease without crisis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416826005", - "Display": "Sickle cell-thalassemia disease with crisis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417048006", - "Display": "Sickle cell-thalassemia disease without crisis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417425009", - "Display": "Hemoglobin SS disease with crisis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417626001", - "Display": "Thrombocytopenic purpura associated with metabolic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41841004", - "Display": "Sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420543008", - "Display": "Anemia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421102007", - "Display": "Aplastic anemia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421851008", - "Display": "Acquired hemolytic anemia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42461002", - "Display": "Anemia caused by copper (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42484009", - "Display": "Hereditary nonspherocytic hemolytic anemia due to hexokinase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424988008", - "Display": "Anemia caused by substance (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42601008", - "Display": "Congenital hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428383000", - "Display": "Anemia caused by medication (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43707008", - "Display": "Anemia caused by heat (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "438476003", - "Display": "Autoimmune thrombotic thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43858000", - "Display": "Secondary aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "439007008", - "Display": "Acquired thrombotic thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "440206000", - "Display": "Hemoglobin SS disease with vasoocclusive crisis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441322009", - "Display": "Drug induced thrombotic thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44206008", - "Display": "Hapten type low affinity hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44288006", - "Display": "Anemia due to abnormality extrinsic to the red cell (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444108000", - "Display": "Acute sickle cell splenic sequestration crisis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444271000", - "Display": "Erythropoietin resistance in anemia of chronic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44452003", - "Display": "Normocytic hypochromic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444976001", - "Display": "Congenital hemolytic uremic syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44641000", - "Display": "Hereditary nonspherocytic hemolytic anemia due to triosephosphate isomerase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44666001", - "Display": "Microcytic hypochromic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447117006", - "Display": "Hemoglobin H constant spring thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44910003", - "Display": "Megaloblastic anemia due to decreased intake of vitamin B>12< (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "45098004", - "Display": "Anemia due to multiple mechanisms (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "45828008", - "Display": "Anemia in mother complicating pregnancy" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "462166006", - "Display": "Fetal anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46737006", - "Display": "Normocytic normochromic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46760003", - "Display": "Estren-Dameshek anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47047009", - "Display": "Thalassemia with other hemoglobinopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47084006", - "Display": "beta^+^ Thalassemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47100003", - "Display": "Anemia of prematurity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47516005", - "Display": "Hereditary spherocytosis due to combined deficiency of spectrin AND ankyrin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47526003", - "Display": "Hereditary nonspherocytic hemolytic anemia due to reduced nicotinamide adenine dinucleotide diaphorase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47844003", - "Display": "Megaloblastic anemia due to chronic hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4854004", - "Display": "Acquired hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48553001", - "Display": "Hemoglobin H disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48580008", - "Display": "Anemia due to starvation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48983004", - "Display": "X chromosome-linked sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49284006", - "Display": "Juvenile type megaloblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4939006", - "Display": "Hemolytic anemia due to nonlymphoid neoplasm (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49472006", - "Display": "Megaloblastic anemia due to vitamin B>12< deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49708008", - "Display": "Anemia of chronic renal failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4984008", - "Display": "Microcytic normochromic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50220002", - "Display": "Cellular immunologic aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50253007", - "Display": "Secondary paroxysmal cold hemoglobinuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51071000", - "Display": "Microangiopathic hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51667002", - "Display": "Anemia due to riboflavin deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52212006", - "Display": "Hereditary nonspherocytic hemolytic anemia due to glutathione reductase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52413004", - "Display": "Hereditary nonspherocytic hemolytic anemia due to glucose phosphate isomerase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52565000", - "Display": "Non megaloblastic anemia associated with nutritional deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52951008", - "Display": "Congenital dyserythropoietic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5300004", - "Display": "Hemoglobin Bart's hydrops syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5315003", - "Display": "Hereditary nonspherocytic hemolytic anemia due to increased adenosine deaminase activity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53165003", - "Display": "Megaloblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53743006", - "Display": "Anemia following fetal blood loss (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54006005", - "Display": "Hereditary persistence of fetal hemoglobin delta beta plus thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5430006", - "Display": "Megaloblastic anemia due to total parenteral nutrition (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54698001", - "Display": "Megaloblastic anemia due to Zollinger-Ellison syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55907008", - "Display": "Acquired aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55995005", - "Display": "Hereditary spherocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5603006", - "Display": "Autoimmune hemolytic anemia caused by immunoglobulin G (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56205004", - "Display": "Hereditary persistence of fetal hemoglobin" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59106005", - "Display": "Anemia due to decreased red cell production (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59548005", - "Display": "Congenital dyserythropoietic anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59644002", - "Display": "Hereditary nonspherocytic hemolytic anemia due to phosphoglycerate kinase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5967006", - "Display": "A gamma beta^+^ hereditary persistence of fetal hemoglobin AND beta^0^ thalassemia in cis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5994005", - "Display": "Hereditary elliptocytosis due to deficiency of protein 4.1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60138009", - "Display": "Anemia of pituitary deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60164003", - "Display": "Megaloblastic anemia due to blind loop syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60504009", - "Display": "Megaloblastic anemia due to congenital deficiency of intrinsic factor (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60805002", - "Display": "Hemolytic anemia with emphysema AND cutis laxa (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61261009", - "Display": "Hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61395005", - "Display": "Hereditary persistence of fetal hemoglobin G gamma beta plus thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61777009", - "Display": "Thalassemia-hemoglobin C disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62074008", - "Display": "Delta zero thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62268000", - "Display": "Hereditary nonspherocytic hemolytic anemia due to diphosphoglycerate mutase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62389006", - "Display": "Acute megaloblastic anemia due to severe illness (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62403005", - "Display": "Glucose-6-phosphate dehydrogenase deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62609001", - "Display": "Autoimmune hemolytic anemia caused by immunoglobulin G plus complement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62871001", - "Display": "Idiopathic paroxysmal cold hemoglobinuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63565007", - "Display": "Congenital anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6398009", - "Display": "Idiopathic chronic cold agglutinin disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "65959000", - "Display": "Beta thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66055002", - "Display": "Alpha zero thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66262001", - "Display": "Hereditary elliptocytosis due to beta spectrin-ankyrin interaction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66309005", - "Display": "Antibody-mediated anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6659005", - "Display": "Megaloblastic anemia due to nontropical sprue (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66612000", - "Display": "Nutritional anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67894009", - "Display": "Megaloblastic anemia due to increased requirements (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68361004", - "Display": "Late anemia due to isoimmunization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68700003", - "Display": "Megaloblastic anemia due to error of cobalamin metabolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68870007", - "Display": "Congenital dyserythropoietic anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68913001", - "Display": "Alpha thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "691381000119104", - "Display": "Anemia due to chronic kidney disease stage 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "691421000119108", - "Display": "Anemia co-occurrent and due to chronic kidney disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69216008", - "Display": "Hb Lepore thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69574002", - "Display": "Anemia of parathyroid dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69981004", - "Display": "Hereditary spherocytosis due to beta spectrin defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703135009", - "Display": "Anemia in malignant neoplastic disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703540008", - "Display": "Chronic recurrent multifocal osteomyelitis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "707323002", - "Display": "Anemia co-occurrent and due to chronic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "707324008", - "Display": "Anemia co-occurrent and due to end stage renal disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "707480001", - "Display": "Chronic hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "711161006", - "Display": "Hypochromic microcytic anemia with iron overload (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713508003", - "Display": "Aplastic anemia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713533000", - "Display": "Acquired hemolytic anemia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713910008", - "Display": "Antibody mediated acquired pure red cell aplasia caused by erythropoiesis stimulating agent (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "715342005", - "Display": "Alpha thalassemia X-linked intellectual disability syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "715526002", - "Display": "Dehydrated hereditary stomatocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "716682000", - "Display": "Dominant beta-thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717050005", - "Display": "Autosomal recessive sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717254007", - "Display": "Familial pseudohyperkalemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717946000", - "Display": "Megaloblastic anemia due to vitamin B12 deficiency secondary to intestinal disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717947009", - "Display": "Vitamin B12 deficiency anemia caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717948004", - "Display": "Acquired iron deficiency anemia due to increased iron requirement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "718196002", - "Display": "Beta thalassemia X-linked thrombocytopenia syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71832003", - "Display": "Autoimmune hemolytic anemia caused by immunoglobulin M (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71855000", - "Display": "Acute megaloblastic anemia secondary to total parenteral nutrition (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "718716008", - "Display": "Autoimmune hemolytic anemia mixed type (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719019000", - "Display": "WT limb blood syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719402008", - "Display": "Lethal hemolytic anemia and genital anomaly syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719453009", - "Display": "Congenital dyserythropoietic anemia type IV (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719816006", - "Display": "X-linked sideroblastic anemia with spinocerebellar ataxia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "720401009", - "Display": "Cystic fibrosis with gastritis and megaloblastic anemia syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "720465002", - "Display": "Adult-onset autosomal recessive sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "720982007", - "Display": "Alport syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721184003", - "Display": "Megaloblastic anemia due to folate deficiency due to increased requirement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721185002", - "Display": "Megaloblastic anemia due to folate deficiency in pregnancy and lactation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721186001", - "Display": "Megaloblastic anemia due to folate deficiency in prematurity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721295000", - "Display": "Acquired thiamine deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722005000", - "Display": "Iron-refractory iron deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722125003", - "Display": "Overhydrated hereditary stomatocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722207000", - "Display": "Pancreatic insufficiency" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722475006", - "Display": "X-linked congenital dyserythropoietic anemia with thrombocytopenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722721004", - "Display": "Familial hemolytic uremic syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72331000119105", - "Display": "Thalassemia in mother complicating pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "723512008", - "Display": "Revesz syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "723623002", - "Display": "Southeast Asian ovalocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724138007", - "Display": "Mitochondrial myopathy with sideroblastic anemia syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724556004", - "Display": "Iron deficiency anemia due to blood loss (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724557008", - "Display": "Acquired iron deficiency anemia due to decreased absorption (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72501006", - "Display": "Anemia caused by arsenic hydride (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "725057008", - "Display": "Nonspherocytic hemolytic anemia due to deficiency of adenosinetriphosphatase (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "725463007", - "Display": "Severe congenital hypochromic anemia with ringed sideroblasts (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "726669007", - "Display": "Central nervous system calcification" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73073009", - "Display": "Hereditary elliptocytosis due to beta spectrin defect in self-association (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73162004", - "Display": "Posttransfusion purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73190000", - "Display": "epsilon gamma delta beta^0^ Thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "732960002", - "Display": "Secondary autoimmune hemolytic anemia co-occurrent and due to systemic lupus erythematosus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "732962005", - "Display": "Secondary autoimmune hemolytic anemia co-occurrent and due to chronic inflammatory disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "732963000", - "Display": "Secondary autoimmune hemolytic anemia co-occurrent and due to lymphoproliferative disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "732965007", - "Display": "Secondary autoimmune hemolytic anemia co-occurrent and due to rheumatic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "732966008", - "Display": "Secondary autoimmune hemolytic anemia co-occurrent and due to ulcerative colitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "734349003", - "Display": "Alpha-thalassemia intellectual disability syndrome linked to chromosome 16 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735452003", - "Display": "Hereditary vitamin B12 deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735453008", - "Display": "Hereditary folate deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "737220002", - "Display": "Anemia due to metabolic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73891003", - "Display": "Acute megaloblastic anemia caused by nitrous oxide (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74703006", - "Display": "Hereditary nonspherocytic hemolytic anemia due to pyruvate kinase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74789008", - "Display": "Coombs positive hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75331009", - "Display": "Evans syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75443009", - "Display": "Hereditary elliptocytosis due to abnormal protein 4.1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75451007", - "Display": "Thalassemia major (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76336008", - "Display": "Delta beta zero thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76366001", - "Display": "Hemolytic anemia caused by Bartonella (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "765327005", - "Display": "Congenital sideroblastic anemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "765748009", - "Display": "Adult pure red cell aplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "766982000", - "Display": "Hemolytic anemia due to adenylate kinase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77084001", - "Display": "Immunologic aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "773489008", - "Display": "Hereditary cryohydrocytosis with normal stomatin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "774071007", - "Display": "Pancytopenia with developmental delay syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "774083009", - "Display": "Neonatal autoimmune hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77413008", - "Display": "Severe hereditary spherocytosis due to spectrin deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77607006", - "Display": "Drug-induced sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77663007", - "Display": "Hemolytic anemia caused by malaria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "778027003", - "Display": "Primary CD59 deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78129009", - "Display": "Thrombotic thrombocytopenic purpura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78209002", - "Display": "Hemolytic uremic syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "782759001", - "Display": "X-linked dyserythropoietic anemia with abnormal platelets and neutropenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "782911008", - "Display": "Hereditary cryohydrocytosis with reduced stomatin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "783255002", - "Display": "Hereditary isolated aplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78677008", - "Display": "Anemia due to pantothenic deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "788865000", - "Display": "Anemia due to chronic infectious disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "788944005", - "Display": "Gamma delta beta thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78908001", - "Display": "Hereditary nonspherocytic hemolytic anemia due to decreased adenosine deaminase activity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789660001", - "Display": "Atypical hemolytic uremic syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78997000", - "Display": "Megaloblastic anemia due to vegetarianism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79035003", - "Display": "Anemia due to unknown mechanism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79592006", - "Display": "Beta plus thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80126007", - "Display": "Plummer-Vinson syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80875006", - "Display": "Achlorhydric anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80963002", - "Display": "Glucose-6-phosphate dehydrogenase deficiency class V variant anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81711008", - "Display": "Hemolytic anemia caused by drugs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82003006", - "Display": "Glucose-6-phosphate dehydrogenase deficiency class IV variant anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82430007", - "Display": "Acute megaloblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82895008", - "Display": "Megaloblastic anemia due to disease of small intestine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82980005", - "Display": "Anemia due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83414005", - "Display": "Macrocytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84027009", - "Display": "Pernicious anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84188003", - "Display": "Thalassemia syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85422000", - "Display": "alpha^+^ Thalassemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85557000", - "Display": "Hereditary persistence of fetal hemoglobin deletion type (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85570009", - "Display": "Anemia due to vitamin A deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85649008", - "Display": "Megaloblastic anemia due to folate deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85746008", - "Display": "Anemia due to protein deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "862001", - "Display": "Anemia caused by chlorate (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86225009", - "Display": "Hapten type high affinity hemolytic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86242003", - "Display": "alpha^+^ Thalassemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86325007", - "Display": "Non megaloblastic anemia due to alcoholism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "863953007", - "Display": "Primaquine sensitivity anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86448001", - "Display": "Anemia due to vitamin B>6< deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "866092006", - "Display": "Megaloblastic anemia due to dihydrofolate reductase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86715000", - "Display": "Beta zero thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86859003", - "Display": "Glucose-6-phosphate dehydrogenase variant enzyme deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86986002", - "Display": "Hemolytic disease of fetus OR newborn due to RhD isoimmunization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87522002", - "Display": "Iron deficiency anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87806008", - "Display": "Megaloblastic anemia due to tropical sprue (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87810006", - "Display": "Megaloblastic anemia caused by alcoholism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87994004", - "Display": "Xerocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8857001", - "Display": "Hereditary elliptocytosis due to alpha spectrin defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88854002", - "Display": "Congenital hypoplastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89459006", - "Display": "Hereditary persistence of fetal hemoglobin linked to beta-globulin gene cluster (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89810003", - "Display": "^A^gamma delta beta^0^ thalassemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90175006", - "Display": "Secondary acquired sideroblastic anemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90414007", - "Display": "Chronic acquired pure red cell aplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91217009", - "Display": "Megaloblastic anemia due to pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91411007", - "Display": "Autoimmune hemolytic anemia caused by immunoglobulin A (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "934007", - "Display": "Thalassemia intermedia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9434008", - "Display": "Hereditary pyropoikilocytosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9764001", - "Display": "Anemia caused by radiation (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "D63", - "Display": "Anemia in chronic diseases classified elsewhere" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "D63.1", - "Display": "Anemia in chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "D63.8", - "Display": "Anemia in other chronic diseases classified elsewhere" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "D64.8", - "Display": "Other specified anemias" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "D64.89", - "Display": "Other specified anemias" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "D64.9", - "Display": "Anemia" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.6.json b/build/module/resources/2.16.840.1.113762.1.4.1222.6.json deleted file mode 100644 index 55a1fe7..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.6.json +++ /dev/null @@ -1,746 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "104931000119100", - "Display": "Chronic kidney disease due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10757401000119104", - "Display": "Pre-existing hypertensive heart and chronic kidney disease in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10757481000119107", - "Display": "Pre-existing hypertensive heart and chronic kidney disease in mother complicating pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111411000119103", - "Display": "End stage renal disease due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "117681000119102", - "Display": "Chronic kidney disease stage 1 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "118781000119108", - "Display": "Pre-existing hypertensive chronic kidney disease in mother complicating pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123609007", - "Display": "Subacute glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "127991000119101", - "Display": "Hypertension concurrent and due to end stage renal disease on dialysis due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "128001000119105", - "Display": "Hypertension concurrent and due to end stage renal disease on dialysis due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129151000119102", - "Display": "Chronic kidney disease stage 4 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129161000119100", - "Display": "Chronic kidney disease stage 5 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129171000119106", - "Display": "Chronic kidney disease stage 3 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129181000119109", - "Display": "Chronic kidney disease stage 2 due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "140101000119109", - "Display": "Hypertension in chronic kidney disease stage 5 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "140111000119107", - "Display": "Hypertension in chronic kidney disease stage 4 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "140121000119100", - "Display": "Hypertension in chronic kidney disease stage 3 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "140131000119102", - "Display": "Hypertension in chronic kidney disease stage 2 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "153851000119106", - "Display": "Malignant hypertensive chronic kidney disease stage 5 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "153891000119101", - "Display": "End stage renal disease on dialysis due to hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195791000119101", - "Display": "Chronic proliferative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197613008", - "Display": "Chronic mesangial proliferative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197616000", - "Display": "Chronic glomerulonephritis associated with another disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197617009", - "Display": "Chronic exudative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197618004", - "Display": "Chronic focal glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197619007", - "Display": "Chronic diffuse glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197626007", - "Display": "Focal membranoproliferative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197709005", - "Display": "Chronic nephritic syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197712008", - "Display": "Chronic nephritic syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197713003", - "Display": "Chronic nephritic syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197714009", - "Display": "Chronic nephritic syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197715005", - "Display": "Chronic nephritic syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20917003", - "Display": "Chronic glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234485006", - "Display": "Epstein syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236399008", - "Display": "Steroid-sensitive minimal change glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236400001", - "Display": "Steroid-resistant minimal change glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236401002", - "Display": "Steroid-dependent minimal change glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236407003", - "Display": "Immunoglobulin A nephropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236409000", - "Display": "Mesangiocapillary glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236410005", - "Display": "Mesangiocapillary glomerulonephritis type IV (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236411009", - "Display": "Immunoglobulin M nephropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236412002", - "Display": "C1q nephropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236413007", - "Display": "Membranous glomerulonephritis - stage I (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236414001", - "Display": "Membranous glomerulonephritis - stage II (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236415000", - "Display": "Membranous glomerulonephritis - stage III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236416004", - "Display": "Membranous glomerulonephritis - stage IV (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236417008", - "Display": "Membranous glomerulonephritis stage V (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253878003", - "Display": "Adult type polycystic kidney disease type 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253879006", - "Display": "Adult type polycystic kidney disease type 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28191000119109", - "Display": "Chronic nephritic syndrome with membranous glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "282364005", - "Display": "Immunoglobulin A nephropathy associated with liver disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284961000119106", - "Display": "Chronic kidney disease due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284971000119100", - "Display": "Chronic kidney disease stage 1 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284981000119102", - "Display": "Chronic kidney disease stage 2 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284991000119104", - "Display": "Chronic kidney disease stage 3 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285001000119105", - "Display": "Chronic kidney disease stage 4 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285011000119108", - "Display": "Chronic kidney disease stage 5 due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285831000119108", - "Display": "Malignant hypertensive chronic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285841000119104", - "Display": "Malignant hypertensive end stage renal disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285851000119102", - "Display": "Malignant hypertensive chronic kidney disease stage 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285861000119100", - "Display": "Malignant hypertensive chronic kidney disease stage 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285871000119106", - "Display": "Malignant hypertensive chronic kidney disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "285881000119109", - "Display": "Malignant hypertensive chronic kidney disease stage 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "286371000119107", - "Display": "Malignant hypertensive end stage renal disease on dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28770003", - "Display": "Polycystic kidney disease" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "367511000119101", - "Display": "Hereditary mesangiocapillary glomerulonephritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "367551000119100", - "Display": "Hereditary diffuse mesangial proliferative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368871000119106", - "Display": "Acute nephritic syndrome co-occurrent and due to membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368881000119109", - "Display": "Rapidly progressive nephritic syndrome co-occurrent and due to membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368901000119106", - "Display": "Chronic nephritic syndrome co-occurrent and due to membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368911000119109", - "Display": "Nephrotic syndrome co-occurrent and due to membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368921000119102", - "Display": "Nephritic syndrome co-occurrent and due to membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368931000119104", - "Display": "Isolated proteinuria co-occurrent and due to membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368941000119108", - "Display": "Hereditary nephropathy co-occurrent with membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425455002", - "Display": "Glomerulonephritis due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434431000124103", - "Display": "Hypertensive end stage renal disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445404003", - "Display": "Familial immunoglobulin A nephropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44785005", - "Display": "Minimal change disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52042003", - "Display": "Systemic lupus erythematosus glomerulonephritis syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59479006", - "Display": "Mesangiocapillary glomerulonephritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68779003", - "Display": "Primary immunoglobulin A nephropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704667004", - "Display": "Hypertension concurrent and due to end stage renal disease on dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71064009", - "Display": "Acquired polycystic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "711000119100", - "Display": "Chronic kidney disease stage 5 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712487000", - "Display": "End stage renal disease due to benign hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71421000119105", - "Display": "Hypertension in chronic kidney disease due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714813000", - "Display": "Recurrent hematuria co-occurrent and due to dense deposit disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714814006", - "Display": "Persistent hematuria co-occurrent and due to dense deposit disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71701000119105", - "Display": "Hypertension in chronic kidney disease due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721000119107", - "Display": "Chronic kidney disease stage 4 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722086002", - "Display": "Membranous glomerulonephritis due to malignant neoplastic disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722119002", - "Display": "Idiopathic membranous glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722120008", - "Display": "Membranous glomerulonephritis caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722168002", - "Display": "Membranous glomerulonephritis co-occurrent with infectious disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722433005", - "Display": "Dyschondrosteosis and nephritis syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722758004", - "Display": "Complement component 3 glomerulopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722760002", - "Display": "Dense deposit disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722761003", - "Display": "Complement component 3 glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "731000119105", - "Display": "Chronic kidney disease stage 3 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "741000119101", - "Display": "Chronic kidney disease stage 2 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "751000119104", - "Display": "Chronic kidney disease stage 1 due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75888001", - "Display": "Mesangiocapillary glomerulonephritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "771000119108", - "Display": "Chronic kidney disease due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77182004", - "Display": "Membranous glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80321008", - "Display": "Mesangiocapillary glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8501000119104", - "Display": "Hypertensive heart and chronic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90721000119101", - "Display": "Chronic kidney disease stage 1 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90731000119103", - "Display": "Chronic kidney disease stage 2 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90741000119107", - "Display": "Chronic kidney disease stage 3 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90751000119109", - "Display": "Chronic kidney disease stage 4 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90761000119106", - "Display": "Chronic kidney disease stage 5 due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90771000119100", - "Display": "End stage renal disease on dialysis due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90791000119104", - "Display": "End stage renal disease on dialysis due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96441000119101", - "Display": "Chronic kidney disease due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96701000119107", - "Display": "Hypertensive heart AND chronic kidney disease on dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96711000119105", - "Display": "Hypertensive heart AND chronic kidney disease stage 5 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96721000119103", - "Display": "Hypertensive heart AND chronic kidney disease stage 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96731000119100", - "Display": "Hypertensive heart AND chronic kidney disease stage 3 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96741000119109", - "Display": "Hypertensive heart AND chronic kidney disease stage 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "96751000119106", - "Display": "Hypertensive heart AND chronic kidney disease stage 1 (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I12", - "Display": "Hypertensive chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13", - "Display": "Hypertensive heart and chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q61.2", - "Display": "Polycystic kidney" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q61.3", - "Display": "Polycystic kidney" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q61.8", - "Display": "Other cystic kidney diseases" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.60.json b/build/module/resources/2.16.840.1.113762.1.4.1222.60.json deleted file mode 100644 index 164b780..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.60.json +++ /dev/null @@ -1,176 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13901000119100", - "Display": "Hypocalciuric hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190866006", - "Display": "Idiopathic hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2243000", - "Display": "Hypercalcemia due to hyperthyroidism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237880003", - "Display": "Secondary hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237885008", - "Display": "Familial hypocalciuric hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24052000", - "Display": "Hypercalcemia due to immobilization (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2638001", - "Display": "Hypercalcemia caused by a drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276645004", - "Display": "Infantile hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276646003", - "Display": "Idiopathic infantile hypercalcemia - mild form (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "277481003", - "Display": "Idiopathic infantile hypercalcemia - severe form (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34225008", - "Display": "Idiopathic hypercalcemia of infancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "361129004", - "Display": "Hypercalcemia caused by lithium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "37121000", - "Display": "Hypercalcemia caused by thiazide AND vitamin A (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43258006", - "Display": "Milk alkali syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "45646000", - "Display": "Subacute milk alkali syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47709007", - "Display": "Humoral hypercalcemia of malignancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52760008", - "Display": "Hypercalcemia due to granulomatous disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "57557005", - "Display": "Chronic milk alkali syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58136006", - "Display": "Nutritional disorder due to calcium-phosphorus imbalance (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66931009", - "Display": "Hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698729002", - "Display": "Hypercalcemia due to tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699260009", - "Display": "Hypercalcemia due to hypervitaminosis D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704166007", - "Display": "Acquired hypocalciuric hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7085002", - "Display": "Hypercalcemia due to sarcoidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724559006", - "Display": "Myopathy co-occurrent and due to hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "771445001", - "Display": "Autosomal recessive infantile hypercalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88351001", - "Display": "Hypercalcemia associated with chronic dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88380005", - "Display": "Acute milk alkali syndrome (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E83.52", - "Display": "Hypercalcemia" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.61.json b/build/module/resources/2.16.840.1.113762.1.4.1222.61.json deleted file mode 100644 index 8da8c39..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.61.json +++ /dev/null @@ -1,152 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16195001", - "Display": "Parathyroid hypocalcemic tetany (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190869004", - "Display": "Hypocalcemic tetany (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23490001000004109", - "Display": "Iatrogenic hypocalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237658004", - "Display": "Pseudohypoparathyroidism and pseudopseudohypoparathyroidism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237659007", - "Display": "Pseudopseudohypoparathyroidism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237883001", - "Display": "Hungry bone syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237884007", - "Display": "Drug-induced hypocalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240307008", - "Display": "Late neonatal hypocalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268846006", - "Display": "Neonatal hypocalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "400170001", - "Display": "Hypocalcemia of puerperium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "405256006", - "Display": "Parturient paresis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "405733001", - "Display": "Hypocalcemia of late pregnancy or lactation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42183005", - "Display": "Pseudohypoparathyroidism type II (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5291005", - "Display": "Hypocalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56090007", - "Display": "Pseudohypoparathyroidism type I B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58833000", - "Display": "Pseudohypoparathyroidism type I A (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58976002", - "Display": "Pseudohypoparathyroidism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60334003", - "Display": "Phosphate-loading hypocalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63275006", - "Display": "Cow's milk hypocalcemia of newborn (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "711151004", - "Display": "Hypomagnesemia with secondary hypocalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "711152006", - "Display": "Autosomal dominant hypocalcemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717792007", - "Display": "Pseudohypoparathyroidism type 1C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722947004", - "Display": "Hypocalcemic rickets (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81677009", - "Display": "Lactation tetany (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E83.51", - "Display": "Hypocalcemia" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.66.json b/build/module/resources/2.16.840.1.113762.1.4.1222.66.json deleted file mode 100644 index 51cf912..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.66.json +++ /dev/null @@ -1,32 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20165001", - "Display": "Hyperphosphatemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237904006", - "Display": "Renal failure-associated hyperphosphatemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237905007", - "Display": "Iatrogenic hyperphosphatemia (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E83.3", - "Display": "Disorders of phosphorus metabolism and phosphatases" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E83.39", - "Display": "Other disorders of phosphorus metabolism" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.67.json b/build/module/resources/2.16.840.1.113762.1.4.1222.67.json deleted file mode 100644 index 9a6d7d3..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.67.json +++ /dev/null @@ -1,374 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16698651000119109", - "Display": "Asymptomatic microscopic hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197627003", - "Display": "Recurrent benign hematuria syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197688006", - "Display": "Acute nephritic syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197707007", - "Display": "Chronic nephritic syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197708002", - "Display": "Chronic nephritic syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197938001", - "Display": "Painless hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197939009", - "Display": "Painful hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197940006", - "Display": "Microscopic hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197941005", - "Display": "Frank hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "197942003", - "Display": "Clot hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20407004", - "Display": "Benign hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236717007", - "Display": "Upper urinary tract hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236718002", - "Display": "Chemical hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281855006", - "Display": "Persistent frank hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281856007", - "Display": "Recurrent frank hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281857003", - "Display": "Persistent microscopic hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281858008", - "Display": "Recurrent microscopic hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281859000", - "Display": "Persistent hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281860005", - "Display": "Recurrent hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28191000119109", - "Display": "Chronic nephritic syndrome with membranous glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314280007", - "Display": "Hematuria of undiagnosed cause (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "366941000119107", - "Display": "Hematuria co-occurrent and due to acute cystitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "367011000119109", - "Display": "Benign essential microscopic hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "367171000119100", - "Display": "Hematuria co-occurrent and due to cystitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "367661000119102", - "Display": "Hematuria co-occurrent and due to chronic interstitial cystitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "367671000119108", - "Display": "Hematuria co-occurrent and due to irradiation cystitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368371000119102", - "Display": "Hematuria co-occurrent and due to trigonitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368901000119106", - "Display": "Chronic nephritic syndrome co-occurrent and due to membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368921000119102", - "Display": "Nephritic syndrome co-occurrent and due to membranoproliferative glomerulonephritis type III (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368971000119101", - "Display": "Hematuria co-occurrent and due to chronic cystitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371020003", - "Display": "Renal hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399094007", - "Display": "Familial hematuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40233000", - "Display": "Nephrotic-nephritic syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53298000", - "Display": "Hematuria syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714813000", - "Display": "Recurrent hematuria co-occurrent and due to dense deposit disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714814006", - "Display": "Persistent hematuria co-occurrent and due to dense deposit disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714815007", - "Display": "Recurrent hematuria co-occurrent and due to diffuse crescentic glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714816008", - "Display": "Persistent hematuria co-occurrent and due to diffuse crescentic glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714817004", - "Display": "Recurrent hematuria co-occurrent and due to diffuse endocapillary proliferative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714818009", - "Display": "Persistent hematuria co-occurrent and due to diffuse endocapillary proliferative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714819001", - "Display": "Recurrent hematuria co-occurrent and due to diffuse mesangiocapillary glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714820007", - "Display": "Persistent hematuria co-occurrent and due to diffuse mesangiocapillary glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714821006", - "Display": "Recurrent hematuria co-occurrent and due to diffuse membranous glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714822004", - "Display": "Persistent hematuria co-occurrent and due to diffuse membranous glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714823009", - "Display": "Recurrent hematuria co-occurrent and due to minor glomerular abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714824003", - "Display": "Persistent hematuria co-occurrent and due to minor glomerular abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714825002", - "Display": "Recurrent hematuria co-occurrent and due to diffuse mesangial proliferative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714826001", - "Display": "Persistent hematuria co-occurrent and due to diffuse mesangial proliferative glomerulonephritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714827005", - "Display": "Recurrent hematuria co-occurrent and due to focal and segmental glomerular lesions (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714828000", - "Display": "Persistent hematuria co-occurrent and due to focal and segmental glomerular lesions (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719551008", - "Display": "Hematuria due to radiation cystitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7724006", - "Display": "Nephritic syndrome (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N02", - "Display": "Recurrent and persistent hematuria" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N02.0", - "Display": "Recurrent and persistent hematuria with minor glomerular abnormality" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N02.1", - "Display": "Recurrent and persistent hematuria with focal and segmental glomerular lesions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N02.4", - "Display": "Recurrent and persistent hematuria with diffuse endocapillary proliferative glomerulonephritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N02.5", - "Display": "Recurrent and persistent hematuria with diffuse mesangiocapillary glomerulonephritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N02.7", - "Display": "Recurrent and persistent hematuria with diffuse crescentic glomerulonephritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "N02.9", - "Display": "Recurrent and persistent hematuria with unspecified morphologic changes" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R31", - "Display": "Hematuria" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R31.0", - "Display": "Gross hematuria" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R31.9", - "Display": "Hematuria" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.70.json b/build/module/resources/2.16.840.1.113762.1.4.1222.70.json deleted file mode 100644 index b7cac41..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.70.json +++ /dev/null @@ -1,374 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1003847003", - "Display": "Pyruvate dehydrogenase phosphatase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1003849000", - "Display": "Pyruvate dehydrogenase complex E2 subunit deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1003850000", - "Display": "Pyruvate dehydrogenase complex E1-alpha subunit deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1003851001", - "Display": "Pyruvate dehydrogenase complex E1 beta subunit deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111377009", - "Display": "Metabolic acidosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111556005", - "Display": "Ketoacidosis without coma due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13490001000004105", - "Display": "D-lactic acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "138621000119108", - "Display": "Ketoacidosis due to secondary diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1776003", - "Display": "Renal tubular acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18104000", - "Display": "Metabolic acidosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190406000", - "Display": "Ketoacidosis due to malnutrition related diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236460004", - "Display": "Familial proximal renal tubular acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236461000", - "Display": "Distal renal tubular acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236463002", - "Display": "Hyperkalemic renal tubular acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236464008", - "Display": "Hyporeninemic hypoaldosteronism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236467001", - "Display": "Acquired Fanconi syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236468006", - "Display": "Adult Fanconi syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236532003", - "Display": "Renal tubular acidosis with progressive nerve deafness (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236541008", - "Display": "Hyperchloremic acidosis associated with dialysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237847005", - "Display": "Hyperkalemic acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24790002", - "Display": "Proximal renal tubular acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25966003", - "Display": "Metabolic acidosis caused by methanol (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25998009", - "Display": "Metabolic acidosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26298008", - "Display": "Ketoacidotic coma due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276586004", - "Display": "Transient neonatal renal tubular acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29914000", - "Display": "Dihydrolipoamide dehydrogenase deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35528000", - "Display": "Metabolic acidosis caused by salicylate (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3591006", - "Display": "Metabolic acidosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "370491005", - "Display": "Metabolic acidosis due to grain overload (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420270002", - "Display": "Ketoacidosis due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420422005", - "Display": "Ketoacidosis due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421075007", - "Display": "Ketoacidotic coma due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421750000", - "Display": "Ketoacidosis due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421847006", - "Display": "Ketoacidotic coma due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43253002", - "Display": "Metabolic acidosis caused by ingestion of drugs AND/OR chemicals (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46166004", - "Display": "Compensated metabolic acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46683007", - "Display": "Pyruvate dehydrogenase complex deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4690009", - "Display": "Metabolic acidosis caused by paraldehyde (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51294009", - "Display": "Metabolic acidosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53254000", - "Display": "Metabolic acidosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55178001", - "Display": "Starvation ketoacidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55571001", - "Display": "Alcoholic ketoacidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56051008", - "Display": "Ketoacidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58067006", - "Display": "Metabolic acidosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59455009", - "Display": "Metabolic acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59686008", - "Display": "Metabolic acidosis caused by ethylene glycol (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "718713000", - "Display": "Hypertrophic cardiomyopathy with hypotonia and lactic acidosis syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721283000", - "Display": "Acidosis due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721284006", - "Display": "Acidosis due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722468005", - "Display": "Distal renal tubular acidosis co-occurrent with sensorineural deafness (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722937002", - "Display": "Birth asphyxia co-occurrent with metabolic acidemia of cord blood (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724099000", - "Display": "Acquired monoclonal immunoglobulin light chain-associated Fanconi syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "732951005", - "Display": "Mitochondrial myopathy" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735538002", - "Display": "Lactic acidosis due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735539005", - "Display": "Metabolic acidosis due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76938004", - "Display": "Infantile encephalopathy AND lactic acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "771509001", - "Display": "Hypertrophic cardiomyopathy and renal tubular disease due to mitochondrial deoxyribonucleic acid mutation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "773423007", - "Display": "Severe neonatal lactic acidosis due to NFS1-ISD11 complex deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91273001", - "Display": "Lactic acidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9635004", - "Display": "Late metabolic acidosis of newborn (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E87.2", - "Display": "Acidosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "P19.9", - "Display": "Metabolic acidemia" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.73.json b/build/module/resources/2.16.840.1.113762.1.4.1222.73.json deleted file mode 100644 index 27986b6..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.73.json +++ /dev/null @@ -1,374 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "114831000119107", - "Display": "Hyperlipidemia caused by steroid (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129589009", - "Display": "Endogenous hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129590000", - "Display": "Exogenous hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129591001", - "Display": "Mixed hypercholesterolemia and hypertriglyceridemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13644009", - "Display": "Hypercholesterolemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "137931000119102", - "Display": "Hyperlipidemia due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "137941000119106", - "Display": "Hyperlipidemia due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1571000119104", - "Display": "Mixed hyperlipidemia due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15771000119109", - "Display": "Familial hyperalphalipoproteinemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190774002", - "Display": "Hyperlipidemia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238040008", - "Display": "Familial combined hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238076009", - "Display": "Primary hypercholesterolemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238077000", - "Display": "Polygenic hypercholesterolemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238078005", - "Display": "Familial hypercholesterolemia - homozygous (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238079002", - "Display": "Familial hypercholesterolemia - heterozygous (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238080004", - "Display": "Hyperalphalipoproteinemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238081000", - "Display": "Familial defective apolipoprotein B-100 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238082007", - "Display": "Secondary hypercholesterolemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238083002", - "Display": "Primary hypertriglyceridemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238084008", - "Display": "Very low density lipoprotinemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238085009", - "Display": "Fredrickson type IV hyperlipoproteinemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238087001", - "Display": "Secondary hypertriglyceridemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238088006", - "Display": "Primary combined hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238089003", - "Display": "Secondary combined hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267432004", - "Display": "Pure hypercholesterolemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267433009", - "Display": "Pure hyperglyceridemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267434003", - "Display": "Mixed hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267435002", - "Display": "Familial hyperchylomicronemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "299465007", - "Display": "Familial multiple lipoprotein-type hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "302870006", - "Display": "Hypertriglyceridemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33513003", - "Display": "Familial apolipoprotein C-II deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34349009", - "Display": "Familial type 5 hyperlipoproteinemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34528009", - "Display": "Familial hypertriglyceridemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397915002", - "Display": "Fredrickson type IIa hyperlipoproteinemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398036000", - "Display": "Familial hypercholesterolemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402473001", - "Display": "Sporadic primary hypertriglyceridemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402474007", - "Display": "Primary \"polygenic\" type Iib combined hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402475008", - "Display": "Primary acquired chylomicronemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402725005", - "Display": "Hyperlipidemia with lipid deposition in skin (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402726006", - "Display": "Primary chylomicronemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402727002", - "Display": "Secondary hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402785008", - "Display": "Primary genetic hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402786009", - "Display": "Chylomicronemia syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402787000", - "Display": "Primary genetic mixed hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "403827000", - "Display": "Familial lipoprotein lipase deficiency with type I phenotype (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "403828005", - "Display": "Familial lipoprotein lipase deficiency with type V phenotype (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "403829002", - "Display": "Familial hypercholesterolemia due to heterozygous low density lipoprotein receptor mutation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "403830007", - "Display": "Familial hypercholesterolemia due to homozygous low density lipoprotein receptor mutation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "403831006", - "Display": "Familial hypercholesterolemia due to genetic defect of apolipoprotein B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426161002", - "Display": "Chemically induced hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445261005", - "Display": "Posttransplant hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55822004", - "Display": "Hyperlipidemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "701000119103", - "Display": "Mixed hyperlipidemia due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "767133009", - "Display": "Familial hypercholesterolemia co-occurrent and due to combined heterozygous low density lipoprotein receptor and low density lipoprotein receptor adaptor protein 1 mutations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "773649005", - "Display": "Transient infantile hypertriglyceridemia and hepatosteatosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "773726000", - "Display": "Hypercholesterolemia due to cholesterol 7alpha-hydroxylase deficiency (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E78.0", - "Display": "Pure hypercholesterolemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E78.00", - "Display": "Pure hypercholesterolemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E78.01", - "Display": "Familial hypercholesterolemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E78.2", - "Display": "Mixed hyperlipidemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E78.4", - "Display": "Other hyperlipidemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E78.5", - "Display": "Hyperlipidemia" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.76.json b/build/module/resources/2.16.840.1.113762.1.4.1222.76.json deleted file mode 100644 index 44b35cd..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.76.json +++ /dev/null @@ -1,1040 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102481003", - "Display": "Generalized chronic body pains (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102557007", - "Display": "Arm claudication (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109771000119103", - "Display": "Chronic postoperative pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111985007", - "Display": "Chronic abdominal pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1121000119107", - "Display": "Chronic neck pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "113611000119100", - "Display": "Myofascial pain syndrome of lumbar spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11892641000119101", - "Display": "Chronic female pelvic pain syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "121021000119105", - "Display": "New daily persistent headache (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12236951000119108", - "Display": "Intermittent claudication of bilateral lower limbs co-occurrent and due to atherosclerosis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12237071000119100", - "Display": "Intermittent claudication of left lower limb co-occurrent and due to atherosclerosis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12237191000119103", - "Display": "Intermittent claudication of right lower limb co-occurrent and due to atherosclerosis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12400141000119103", - "Display": "Chronic pain following bilateral total hip arthroplasty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12400181000119108", - "Display": "Chronic pain following bilateral total knee arthroplasty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12400221000119100", - "Display": "Chronic pain following left total hip arthroplasty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12400261000119105", - "Display": "Chronic pain following left total knee arthroplasty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12400301000119102", - "Display": "Chronic pain following right total hip arthroplasty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12400341000119100", - "Display": "Chronic pain following right total knee arthroplasty (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "124161000119104", - "Display": "Chronic migraine without aura with status migrainosus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "124171000119105", - "Display": "Chronic intractable migraine without aura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "128200000", - "Display": "Complex regional pain syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129501000119107", - "Display": "Chronic sacral pain for greater than three months (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "129511000119105", - "Display": "Chronic pain in coccyx for more than three months (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "133731000119108", - "Display": "Chronic pain in male pelvis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "134407002", - "Display": "Chronic back pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "136791000119103", - "Display": "Chronic thoracic back pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14150005", - "Display": "Alteration in comfort: chronic pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15743521000119108", - "Display": "Chronic pain of right upper limb (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15743561000119103", - "Display": "Chronic pain of left upper limb (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15749801000119104", - "Display": "Chronic pain of bilateral feet (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16002671000119106", - "Display": "Chronic pain of bilateral upper limbs (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16002871000119105", - "Display": "Chronic pain of right foot (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16002911000119108", - "Display": "Chronic pain of left foot (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16013431000119104", - "Display": "Intermittent claudication of bilateral lower limbs due to atherosclerosis of nonbiological bypass graft (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16013711000119104", - "Display": "Intermittent claudication of right lower limb co-occurrent and due to atherosclerosis of bypass graft (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16014031000119109", - "Display": "Intermittent claudication of left lower limb co-occurrent and due to atherosclerosis of bypass graft (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16014071000119107", - "Display": "Intermittent claudication of bilateral lower limbs co-occurrent and due to atherosclerosis of bypass graft (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16058471000119101", - "Display": "Complex regional pain syndrome type 2 of bilateral lower limbs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16058511000119105", - "Display": "Complex regional pain syndrome type 2 of bilateral upper limbs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16206661000119108", - "Display": "Reflex sympathetic dystrophy of bilateral upper limbs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16580691000119107", - "Display": "Chronic urinary bladder pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16754391000119100", - "Display": "Stable angina due to coronary arteriosclerosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193184006", - "Display": "Chronic painful neuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201311005", - "Display": "Painful operation scar (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203082005", - "Display": "Fibromyalgia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230477005", - "Display": "Chronic post-traumatic headache (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230575000", - "Display": "Chronic painful polyneuropathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230648001", - "Display": "Abdominal cutaneous nerve entrapment syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233819005", - "Display": "Stable angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235841007", - "Display": "Chronic nonspecific abdominal pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237067000", - "Display": "Chronic pain in female pelvis (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271858001", - "Display": "Recurrent acute abdominal pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "274665008", - "Display": "Chronic intractable pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "279030006", - "Display": "Myofascial pain syndrome of neck (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "279032003", - "Display": "Chronic pelvic pain without obvious pathology (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "279036000", - "Display": "Myofascial pain syndrome of thorax (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "279041008", - "Display": "Myofascial pain syndrome of lower back (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "279047007", - "Display": "Persistent pain following procedure (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "279048002", - "Display": "Internal mammary artery syndrome (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "290441000119105", - "Display": "Intractable chronic headache following trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "291761000119107", - "Display": "Complex regional pain syndrome type II of left upper limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "291771000119101", - "Display": "Complex regional pain syndrome type II of right upper limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "291781000119103", - "Display": "Complex regional pain syndrome type II of left lower limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "291791000119100", - "Display": "Complex regional pain syndrome type II of right lower limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "293921000119104", - "Display": "Complex regional pain syndrome type I of bilateral upper limbs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "293931000119101", - "Display": "Complex regional pain syndrome type I of left lower limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "293941000119105", - "Display": "Complex regional pain syndrome type I of left upper limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "293951000119107", - "Display": "Complex regional pain syndrome type I of bilateral lower limbs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "293961000119109", - "Display": "Complex regional pain syndrome type I of right lower limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "293971000119103", - "Display": "Complex regional pain syndrome type I of right upper limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "294031000119103", - "Display": "Episodic paroxysmal hemicrania (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29930001000004103", - "Display": "Intractable low back pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303081002", - "Display": "Neurogenic claudication (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3061000119102", - "Display": "Chronic nonmalignant pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314642004", - "Display": "Intermittent pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35074008", - "Display": "Chronic idiopathic anal pain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371806006", - "Display": "Progressive angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371808007", - "Display": "Recurrent angina status post percutaneous transluminal coronary angioplasty (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371809004", - "Display": "Recurrent angina status post coronary stent placement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371810009", - "Display": "Recurrent angina status post coronary artery bypass graft (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371811008", - "Display": "Recurrent angina status post rotational atherectomy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371812001", - "Display": "Recurrent angina status post directional coronary atherectomy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373621006", - "Display": "Chronic pain syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38654001", - "Display": "Recurrent biliary colic (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39402007", - "Display": "Pelvic congestion syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "408749000", - "Display": "Complex regional pain syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "408750000", - "Display": "Complex regional pain syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "408751001", - "Display": "Complex regional pain syndrome" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41321000119101", - "Display": "Myofascial pain syndrome of thoracic spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426135001", - "Display": "Chronic prostatitis - chronic pelvic pain syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426206001", - "Display": "Constant pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426628005", - "Display": "Chronic vaginal pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427419006", - "Display": "Transformed migraine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431237007", - "Display": "Chronic headache disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431481001", - "Display": "Chronic pain due to injury (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431601000124105", - "Display": "Chronic migraine without aura (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432615008", - "Display": "Chronic pain in face (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434011000124101", - "Display": "Chronic chest pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "437931000124100", - "Display": "Chronic migraine without aura" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43922008", - "Display": "Jaw claudication (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "439469002", - "Display": "Recurrent abdominal pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441711008", - "Display": "Chronic psychogenic pain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443095000", - "Display": "Hemicrania continua (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444746004", - "Display": "Acute exacerbation of chronic abdominal pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "458241000124102", - "Display": "Chronic daily headache (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51881000119109", - "Display": "Chronic ankle pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "571000119103", - "Display": "Daily headache (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "631000119102", - "Display": "Chronic back pain greater than three months duration (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63491006", - "Display": "Intermittent claudication (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "674051000119103", - "Display": "Chronic neck pain for greater than 3 months (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699694000", - "Display": "Chronic post-concussion headache (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712537009", - "Display": "Complex regional pain syndrome of upper limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712826000", - "Display": "Intermittent headache (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714252004", - "Display": "Post-mastectomy chronic pain syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722982003", - "Display": "Frequent episodic tension-type headache (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "726531007", - "Display": "Myofascial pain syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "734947007", - "Display": "Complex regional pain syndrome type I (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "734986006", - "Display": "Complex regional pain syndrome of lower limb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "734987002", - "Display": "Complex regional pain syndrome of foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "734988007", - "Display": "Complex regional pain syndrome of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "734989004", - "Display": "Complex regional pain syndrome of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735644008", - "Display": "Chronic nociceptive pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735935009", - "Display": "Chronic pain due to malignant neoplastic disease (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735936005", - "Display": "Chronic neuropathic pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "736428003", - "Display": "Chronic arthralgia of temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "736464002", - "Display": "Chronic idiopathic pain syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "737305006", - "Display": "Primary chronic pain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "737306007", - "Display": "Chronic visceral pain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762354003", - "Display": "Persistent headache due to and following injury of head (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762451005", - "Display": "Chronic pain following trauma (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762452003", - "Display": "Chronic musculoskeletal pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762454002", - "Display": "Chronic orofacial pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762589002", - "Display": "Chronic primary visceral pain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762590006", - "Display": "Chronic primary generalized pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762591005", - "Display": "Chronic primary musculoskeletal pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762592003", - "Display": "Chronic primary headache (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762593008", - "Display": "Chronic primary orofacial pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762594002", - "Display": "Chronic pain following surgical procedure for cancer (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762595001", - "Display": "Chronic painful polyneuropathy following chemotherapy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762596000", - "Display": "Chronic pain following radiotherapy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762597009", - "Display": "Chronic musculoskeletal pain due to persistent inflammation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762598004", - "Display": "Chronic musculoskeletal pain due to disease of nervous system (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762599007", - "Display": "Chronic mechanical visceral pain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762600005", - "Display": "Chronic visceral pain due to vascular disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762601009", - "Display": "Chronic visceral pain due to persistent inflammation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762602002", - "Display": "Chronic central neuropathic pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762603007", - "Display": "Chronic peripheral neuropathic pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762604001", - "Display": "Chronic secondary facial pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762605000", - "Display": "Chronic secondary oral pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "782661001", - "Display": "Chronic sacroiliac joint pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "785723001", - "Display": "Persistent idiopathic facial pain (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "788891004", - "Display": "Chronic pain after cancer treatment (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789494008", - "Display": "Central sensitization (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "792845002", - "Display": "Intermittent claudication due to atherosclerosis of artery of limb (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82423001", - "Display": "Chronic pain (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "95417003", - "Display": "Primary fibromyalgia syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "95443002", - "Display": "Venous intermittent claudication (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "95654002", - "Display": "Chronic paroxysmal hemicrania (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "95657009", - "Display": "Chronic mixed headache syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "98611000119104", - "Display": "Chronic post-thoracotomy pain syndrome (finding)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G89.0", - "Display": "Central pain syndrome" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G89.21", - "Display": "Chronic pain due to trauma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G89.28", - "Display": "Other chronic postprocedural pain" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G89.29", - "Display": "Other chronic pain" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G89.4", - "Display": "Chronic pain syndrome" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G90.511", - "Display": "Complex regional pain syndrome I of right upper limb" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G90.512", - "Display": "Complex regional pain syndrome I of left upper limb" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G90.513", - "Display": "Complex regional pain syndrome I of upper limb" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G90.521", - "Display": "Complex regional pain syndrome I of right lower limb" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G90.522", - "Display": "Complex regional pain syndrome I of left lower limb" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G90.523", - "Display": "Complex regional pain syndrome I of lower limb" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G90.529", - "Display": "Complex regional pain syndrome I of unspecified lower limb" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G90.59", - "Display": "Complex regional pain syndrome I of other specified site" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R52", - "Display": "Pain" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.81.json b/build/module/resources/2.16.840.1.113762.1.4.1222.81.json deleted file mode 100644 index 8733bd0..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.81.json +++ /dev/null @@ -1,7406 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "100451000119108", - "Display": "Pyogenic bacterial arthritis of shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "100461000119105", - "Display": "Pyogenic bacterial arthritis of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1010664005", - "Display": "Stickler syndrome type 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1010666007", - "Display": "Stickler syndrome type 4 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1010668008", - "Display": "Stickler syndrome type 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10193001", - "Display": "Arthritis caused by Pseudomonas (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10196009", - "Display": "Juvenile osteochondrosis of acetabulum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1033009", - "Display": "Thoracic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "104681000119106", - "Display": "Reactive arthritis of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1055297002", - "Display": "Gonarthrosis of left knee due to and following trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1055298007", - "Display": "Gonarthrosis of right knee due to and following trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10624571000119106", - "Display": "Ossification of anterior longitudinal ligament of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10629311000119107", - "Display": "Psoriatic arthritis mutilans (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073061000119105", - "Display": "Arthritis of right shoulder caused by Streptococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073071000119104", - "Display": "Arthritis of left shoulder caused by Streptococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073141000119105", - "Display": "Arthritis of right hip caused by genus Streptococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073151000119107", - "Display": "Arthritis of left hip caused by genus Streptococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073161000119109", - "Display": "Arthritis of right knee caused by Streptococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073171000119103", - "Display": "Arthritis of left knee caused by Streptococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073181000119100", - "Display": "Arthritis of right ankle caused by genus Streptococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073201000119104", - "Display": "Arthritis of left ankle caused by genus Streptococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073221000119108", - "Display": "Arthritis of right shoulder caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073231000119106", - "Display": "Arthritis of left shoulder caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073241000119102", - "Display": "Arthritis of right elbow caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073251000119100", - "Display": "Arthritis of left elbow caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073261000119103", - "Display": "Arthritis of right wrist caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073271000119109", - "Display": "Arthritis of left wrist caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073281000119107", - "Display": "Arthritis of right hand caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073291000119105", - "Display": "Arthritis of left hand caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073301000119106", - "Display": "Arthritis of right hip caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073311000119109", - "Display": "Arthritis of left hip caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073321000119102", - "Display": "Arthritis of right knee caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073331000119104", - "Display": "Arthritis of left knee caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073341000119108", - "Display": "Arthritis of right ankle caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073351000119105", - "Display": "Arthritis of right foot caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073361000119107", - "Display": "Arthritis of left foot caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073371000119101", - "Display": "Arthritis of left ankle caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073381000119103", - "Display": "Arthritis of left sacroiliac joint caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073391000119100", - "Display": "Arthritis of right sacroiliac joint caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073401000119103", - "Display": "Infective arthritis of left shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073411000119100", - "Display": "Infective arthritis of right shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073421000119107", - "Display": "Infective arthritis of left elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073431000119105", - "Display": "Infective arthritis of right elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073441000119101", - "Display": "Infective arthritis of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073451000119104", - "Display": "Infective arthritis of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073461000119102", - "Display": "Infective arthritis of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073471000119108", - "Display": "Infective arthritis of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073481000119106", - "Display": "Infective arthritis of left hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073491000119109", - "Display": "Infective arthritis of right hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073501000119102", - "Display": "Infective arthritis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073511000119104", - "Display": "Infective arthritis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073521000119106", - "Display": "Infective arthritis of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073531000119109", - "Display": "Infective arthritis of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073541000119100", - "Display": "Infective arthritis of right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073551000119103", - "Display": "Infective arthritis of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073681000119109", - "Display": "Rheumatoid arthritis of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073691000119107", - "Display": "Rheumatoid arthritis of left elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073701000119107", - "Display": "Rheumatoid arthritis of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073711000119105", - "Display": "Rheumatoid arthritis of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073721000119103", - "Display": "Rheumatoid arthritis of left hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073731000119100", - "Display": "Rheumatoid arthritis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073741000119109", - "Display": "Rheumatoid arthritis of left shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073751000119106", - "Display": "Rheumatoid arthritis of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073761000119108", - "Display": "Rheumatoid arthritis of right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073771000119102", - "Display": "Rheumatoid arthritis of right elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073781000119104", - "Display": "Rheumatoid arthritis of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073791000119101", - "Display": "Rheumatoid arthritis of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073801000119100", - "Display": "Rheumatoid arthritis of right hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073811000119102", - "Display": "Rheumatoid arthritis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073821000119109", - "Display": "Rheumatoid arthritis of right shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073831000119107", - "Display": "Rheumatoid arthritis of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073861000119104", - "Display": "Deformity of right hand co-occurrent and due to rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073871000119105", - "Display": "Deformity of left hand co-occurrent and due to rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073881000119108", - "Display": "Deformity of right foot co-occurrent and due to rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1073891000119106", - "Display": "Deformity of left foot co-occurrent and due to rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074001000119107", - "Display": "Arthritis of right foot due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074011000119105", - "Display": "Arthritis of right great toe due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074021000119103", - "Display": "Arthritis of left foot due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074031000119100", - "Display": "Arthritis of left great toe due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074061000119108", - "Display": "Chondrocalcinosis of right shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074071000119102", - "Display": "Chondrocalcinosis of left shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074081000119104", - "Display": "Chondrocalcinosis of right elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074091000119101", - "Display": "Chondrocalcinosis of left elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074101000119106", - "Display": "Chondrocalcinosis of joint of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074111000119109", - "Display": "Chondrocalcinosis of joint of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074121000119102", - "Display": "Chondrocalcinosis of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074131000119104", - "Display": "Chondrocalcinosis of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074141000119108", - "Display": "Chondrocalcinosis of right hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074151000119105", - "Display": "Chondrocalcinosis of left hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074161000119107", - "Display": "Chondrocalcinosis of joint of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074171000119101", - "Display": "Chondrocalcinosis of joint of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074181000119103", - "Display": "Chondrocalcinosis of right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074191000119100", - "Display": "Chondrocalcinosis of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074201000119102", - "Display": "Chondrocalcinosis of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074211000119104", - "Display": "Chondrocalcinosis of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074301000119109", - "Display": "Arthritis of right foot due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074311000119107", - "Display": "Arthritis of left foot due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074371000119104", - "Display": "Osteoarthritis of right acromioclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074381000119101", - "Display": "Osteoarthritis of right glenohumeral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074391000119103", - "Display": "Osteoarthritis of right sternoclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074401000119101", - "Display": "Osteoarthritis of bilateral acromioclavicular joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074411000119103", - "Display": "Osteoarthritis of bilateral sternoclavicular joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074421000119105", - "Display": "Osteoarthritis of bilateral glenohumeral joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074431000119108", - "Display": "Osteoarthritis of left acromioclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074441000119104", - "Display": "Osteoarthritis of left glenohumeral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074451000119102", - "Display": "Osteoarthritis of left sternoclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074461000119100", - "Display": "Osteoarthritis of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074471000119106", - "Display": "Osteoarthritis of midtarsal joint of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074481000119109", - "Display": "Osteoarthritis of first metatarsophalangeal joint of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074491000119107", - "Display": "Osteoarthritis of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074501000119100", - "Display": "Osteoarthritis of midtarsal joint of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074511000119102", - "Display": "Osteoarthritis of first metatarsophalangeal joint of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074521000119109", - "Display": "Osteoarthritis of right foot due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074531000119107", - "Display": "Osteoarthritis of left foot due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074561000119104", - "Display": "Osteoarthritis of right sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074571000119105", - "Display": "Osteoarthritis of left sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074581000119108", - "Display": "Arthritis of left acromioclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074591000119106", - "Display": "Inflammation of joint of left shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074601000119104", - "Display": "Arthritis of right acromioclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074611000119101", - "Display": "Inflammation of joint of right shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074621000119108", - "Display": "Arthritis of bilateral acromioclavicular joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074631000119106", - "Display": "Arthritis of bilateral glenohumeral joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074641000119102", - "Display": "Inflammation of joints of bilateral shoulder regions (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074651000119100", - "Display": "Arthritis of left glenohumeral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074661000119103", - "Display": "Arthritis of left sternoclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074671000119109", - "Display": "Arthritis of right glenohumeral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074681000119107", - "Display": "Arthritis of right sternoclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074691000119105", - "Display": "Arthritis of left elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074701000119105", - "Display": "Arthritis of right elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074711000119108", - "Display": "Arthritis of bilateral elbows (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074721000119101", - "Display": "Arthritis of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074731000119103", - "Display": "Arthritis of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074741000119107", - "Display": "Arthritis of bilateral wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074751000119109", - "Display": "Inflammation of joint of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074761000119106", - "Display": "Inflammation of joint of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074771000119100", - "Display": "Arthritis of finger of bilateral hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074781000119102", - "Display": "Arthritis of bilateral first carpometacarpal joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074791000119104", - "Display": "Inflammation of joint of both hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074801000119103", - "Display": "Arthritis of first carpometacarpal joint of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074811000119100", - "Display": "Arthritis of first carpometacarpal joint of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074821000119107", - "Display": "Bilateral arthritis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074831000119105", - "Display": "Arthritis of left hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074841000119101", - "Display": "Arthritis of right hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074851000119104", - "Display": "Arthritis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074861000119102", - "Display": "Arthritis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074871000119108", - "Display": "Bilateral arthritis of knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074881000119106", - "Display": "Arthritis of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074891000119109", - "Display": "Arthritis of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074901000119108", - "Display": "Arthritis of left midtarsal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074911000119106", - "Display": "Arthritis of right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074921000119104", - "Display": "Arthritis of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074931000119101", - "Display": "Arthritis of right midtarsal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074941000119105", - "Display": "Arthritis of bilateral ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074951000119107", - "Display": "Arthritis of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074961000119109", - "Display": "Arthritis of bilateral sternoclavicular joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074971000119103", - "Display": "Arthritis of left sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1074981000119100", - "Display": "Arthritis of right sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1075001000119108", - "Display": "Chronic tophaceous gout of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1075021000119104", - "Display": "Chronic tophaceous gout of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1075891000119105", - "Display": "Synovitis of left ankle joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1075901000119109", - "Display": "Synovitis of right ankle joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1075911000119107", - "Display": "Synovitis of joint of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1075921000119100", - "Display": "Synovitis of joint of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076171000119108", - "Display": "Patellar bursitis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076181000119106", - "Display": "Bursitis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076191000119109", - "Display": "Pes anserinus bursitis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076211000119105", - "Display": "Suprapatellar bursitis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076221000119103", - "Display": "Subpatellar bursitis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076231000119100", - "Display": "Patellar bursitis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076241000119109", - "Display": "Bursitis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076251000119106", - "Display": "Pes anserinus bursitis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076271000119102", - "Display": "Suprapatellar bursitis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076281000119104", - "Display": "Subpatellar bursitis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076371000119105", - "Display": "Infection of prepatellar bursa of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1076381000119108", - "Display": "Infection of prepatellar bursa of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "107881000119100", - "Display": "Advanced collapse of scapholunate joint due to osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1092661000119102", - "Display": "Sporotrichosis arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10948005", - "Display": "Thoracic spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109663009", - "Display": "Arthritis of temporomandibular joint as part of polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109664003", - "Display": "Arthritis of temporomandibular joint caused by internal joint prosthesis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109666001", - "Display": "Infectious arthritis of temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109667005", - "Display": "Infectious arthritis of temporomandibular joint caused by internal joint prosthesis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109668000", - "Display": "Degenerative arthritis of temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109669008", - "Display": "Traumatic arthritis of the temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "110041000119104", - "Display": "Reactive arthritis co-occurrent and due to nonspecific urethritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11023001", - "Display": "Acute calcific periarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11055151000119108", - "Display": "Seropositive rheumatoid arthritis of multiple joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111211002", - "Display": "Migratory polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111242007", - "Display": "Periarthritis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111243002", - "Display": "Bursitis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111820003", - "Display": "Staphylococcal arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "112961000119103", - "Display": "Osteoarthritis of joint of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "112971000119109", - "Display": "Osteoarthritis of joint of bilateral ankles (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "112981000119107", - "Display": "Osteoarthritis of bilateral knee joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "112991000119105", - "Display": "Osteoarthritis of bilateral hip joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "113001000119106", - "Display": "Osteoarthritis of joint of finger of bilateral hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "113011000119109", - "Display": "Osteoarthritis of joint of bilateral hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "113021000119102", - "Display": "Osteoarthritis of bilateral wrists (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "113031000119104", - "Display": "Osteoarthritis of bilateral elbows (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "113041000119108", - "Display": "Osteoarthritis of bilateral shoulders (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "116431000119103", - "Display": "Infective polyarthritis caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "116441000119107", - "Display": "Bacterial arthritis of vertebral column (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11939005", - "Display": "Acute arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "120401000119101", - "Display": "Chondrocalcinosis of hand due to disorder of calcium metabolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12236561000119100", - "Display": "Arthritis of finger of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12236601000119100", - "Display": "Arthritis of finger of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12241631000119102", - "Display": "Osteoarthritis of finger joint of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12241671000119104", - "Display": "Osteoarthritis of finger joint of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "122691000119106", - "Display": "Chondrocalcinosis of hip joint due to disorder of calcium metabolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12367361000119109", - "Display": "Osteoarthritis of right patellofemoral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12367411000119102", - "Display": "Osteoarthritis of left patellofemoral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12367461000119104", - "Display": "Osteoarthritis of bilateral patellofemoral joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123798002", - "Display": "Lumbosacral spondylosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123949001", - "Display": "Post-streptococcal reactive arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "128701000119108", - "Display": "Capsulitis of tarsus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "128751000119107", - "Display": "Capsulitis of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "137791000119100", - "Display": "Chondrocalcinosis of elbow due to disorder of calcium metabolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14175009", - "Display": "Rheumatic joint disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14188007", - "Display": "Tuberculosis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "143441000119108", - "Display": "Rheumatoid arthritis in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14380001000004102", - "Display": "Degenerative joint disease of thumb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15630971000119102", - "Display": "Bilateral inflammation of sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15635921000119105", - "Display": "Pes anserinus bursitis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15635961000119100", - "Display": "Bilateral adhesive capsulitis of shoulders (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15636001000119108", - "Display": "Lateral epicondylitis of bilateral humerus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15636041000119105", - "Display": "Bilateral medial epicondylitis of elbows (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15636211000119100", - "Display": "Chondromalacia of bilateral patellas (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "156370009", - "Display": "Psoriatic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15637231000119107", - "Display": "Bilateral tendonitis of patellar tendon (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15637471000119109", - "Display": "Degenerative rupture of medial meniscus of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15637511000119100", - "Display": "Degenerative rupture of medial meniscus of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15637551000119104", - "Display": "Degenerative rupture of medial meniscus of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15638571000119107", - "Display": "Prepatellar bursitis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15675201000119109", - "Display": "Tendinitis of metatarsophalangeal joint of second toe of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15675281000119101", - "Display": "Tendinitis of metatarsophalangeal joint of second toe of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15681801000119103", - "Display": "Juvenile osteochondritis of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15683241000119104", - "Display": "Infrapatellar bursitis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15683281000119109", - "Display": "Patellar bursitis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15683321000119104", - "Display": "Bursitis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15685921000119102", - "Display": "Rheumatoid arthritis of bilateral temporomandibular joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15685961000119107", - "Display": "Rheumatoid arthritis of right temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686001000119104", - "Display": "Rheumatoid arthritis of left temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686041000119102", - "Display": "Osteoarthritis of right temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686081000119107", - "Display": "Osteoarthritis of bilateral temporomandibular joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686121000119109", - "Display": "Osteoarthritis of left temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686281000119101", - "Display": "Rheumatoid arthritis of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686321000119106", - "Display": "Rheumatoid arthritis of bilateral elbows (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686521000119102", - "Display": "Transient synovitis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686601000119107", - "Display": "Transient synovitis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15686961000119102", - "Display": "Synovitis of joint of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15687001000119102", - "Display": "Synovitis of joint of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15687041000119100", - "Display": "Synovitis of joint of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15687201000119107", - "Display": "Rheumatoid arthritis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15687321000119109", - "Display": "Rheumatoid arthritis of bilateral hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15687841000119108", - "Display": "Rheumatoid arthritis of bilateral hips (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15687881000119103", - "Display": "Arthritis of bilateral hips caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15687921000119105", - "Display": "Capsulitis of metatarsophalangeal joint of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15688041000119101", - "Display": "Capsulitis of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15688081000119106", - "Display": "Capsulitis of metatarsophalangeal joint of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15688201000119108", - "Display": "Capsulitis of metatarsophalangeal joint of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15688241000119105", - "Display": "Capsulitis of right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15689921000119100", - "Display": "Arthritis of bilateral knees caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15690121000119107", - "Display": "Arthritis of bilateral knee joints caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15690201000119107", - "Display": "Arthritis of bilateral feet caused by domain Bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15690281000119104", - "Display": "Arthritis of bilateral shoulders caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15690321000119109", - "Display": "Arthritis of bilateral wrists caused by Bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15690361000119104", - "Display": "Arthritis of bilateral sacroiliac joints caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15690521000119100", - "Display": "Infective arthritis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15691161000119108", - "Display": "Seronegative rheumatoid arthritis of bilateral hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15691241000119101", - "Display": "Seronegative rheumatoid arthritis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15691321000119101", - "Display": "Seronegative rheumatoid arthritis of bilateral wrists (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15691721000119102", - "Display": "Rheumatoid arthritis of bilateral ankles (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15691761000119107", - "Display": "Rheumatoid arthritis of bilateral wrists (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15691801000119104", - "Display": "Seropositive rheumatoid arthritis of bilateral hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15691881000119107", - "Display": "Seropositive rheumatoid arthritis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15692241000119108", - "Display": "Arthritis of first metatarsophalangeal joint of right foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15692321000119108", - "Display": "Arthritis of bilateral first metatarsophalangeal joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15705201000119109", - "Display": "Chondrocalcinosis of bilateral hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15705241000119106", - "Display": "Chondrocalcinosis of bilateral shoulders (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15705281000119101", - "Display": "Chondrocalcinosis of bilateral knee joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15705361000119101", - "Display": "Chondrocalcinosis of bilateral hips (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15720481000119102", - "Display": "Chondromalacia of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15722441000119106", - "Display": "Osteoarthritis of left subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15722521000119101", - "Display": "Osteoarthritis of right subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15722561000119106", - "Display": "Osteoarthritis of first metatarsophalangeal joint of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15722961000119101", - "Display": "Osteoarthritis of bilateral sacroiliac joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15742441000119108", - "Display": "Medial epicondyle apophysitis of left elbow due to overuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15742481000119103", - "Display": "Medial epicondyle apophysitis of right elbow due to overuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15749161000119108", - "Display": "Chondromalacia of right patella (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15972981000119101", - "Display": "Arthritis of bilateral sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15980551000119106", - "Display": "Capsulitis of right temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15980591000119101", - "Display": "Capsulitis of left temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15980631000119101", - "Display": "Capsulitis of bilateral temporomandibular joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15980671000119103", - "Display": "Arthritis of right temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15980711000119104", - "Display": "Arthritis of left temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15980751000119103", - "Display": "Arthritis of bilateral temporomandibular joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16005991000119109", - "Display": "Tophus of bilateral elbows co-occurrent and due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16008111000119108", - "Display": "Degenerative rupture of triangular fibrocartilage of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16008191000119104", - "Display": "Degenerative rupture of triangular fibrocartilage of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16008271000119106", - "Display": "Chondrocalcinosis of bilateral wrists (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16008551000119100", - "Display": "Arthritis of finger of left hand due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16008751000119108", - "Display": "Arthritis of right finger due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16010751000119107", - "Display": "Gouty arthritis of bilateral great toes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16010951000119105", - "Display": "Osteoarthritis of bilateral feet due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16015391000119105", - "Display": "Osteoarthritis of midtarsal joints of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16015791000119109", - "Display": "Arthritis of left subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16015911000119102", - "Display": "Gouty arthritis of bilateral ankles (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16015951000119101", - "Display": "Gouty arthritis of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16015991000119106", - "Display": "Arthritis of right subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016111000119109", - "Display": "Arthritis of bilateral subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016151000119105", - "Display": "Chondrocalcinosis of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016191000119100", - "Display": "Chondrocalcinosis of bilateral ankles (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016231000119109", - "Display": "Tuberculosis of right knee joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016311000119107", - "Display": "Tuberculosis of left knee joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016511000119102", - "Display": "Degenerative rupture of lateral meniscus of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016551000119101", - "Display": "Degenerative rupture of lateral meniscus of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16016631000119106", - "Display": "Degenerative rupture of lateral meniscus of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16021231000119107", - "Display": "Suprapatellar bursitis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16024431000119108", - "Display": "Acute polyarticular juvenile idiopathic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039071000119104", - "Display": "Chondromalacia of joint of left elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039111000119106", - "Display": "Chondromalacia of joint of right elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039151000119107", - "Display": "Chondromalacia of joint of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039191000119102", - "Display": "Chondromalacia of left shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039231000119106", - "Display": "Chondromalacia of joint of right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039311000119109", - "Display": "Chondromalacia of joint of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039391000119100", - "Display": "Chondromalacia of right shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039431000119105", - "Display": "Chondromalacia of left hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039631000119108", - "Display": "Chondromalacia of right hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039791000119101", - "Display": "Chondromalacia of joint of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16039831000119107", - "Display": "Chondromalacia of bilateral ankles (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16040031000119108", - "Display": "Chronic tophaceous gout of bilateral elbows (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16040071000119106", - "Display": "Chronic tophaceous gout of bilateral hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16041671000119109", - "Display": "Juvenile rheumatoid arthritis of bilateral knees (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16044751000119106", - "Display": "Polyarticular juvenile idiopathic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16046631000119100", - "Display": "Hydroxyapatite deposition disease of left shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16046951000119104", - "Display": "Hydroxyapatite deposition disease of right shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16050071000119108", - "Display": "Seropositive rheumatoid arthritis of bilateral feet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16068491000119107", - "Display": "Arthritis of bilateral knees due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16076051000119104", - "Display": "Tophus of left elbow co-occurrent and due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16076131000119106", - "Display": "Tophus of right elbow co-occurrent and due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16208561000119106", - "Display": "Juvenile rheumatoid arthritis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16208721000119109", - "Display": "Juvenile rheumatoid arthritis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16426601000119103", - "Display": "Arthritis of facet joint of thoracic spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16426641000119101", - "Display": "Arthritis of facet joint of lumbar spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16426681000119106", - "Display": "Arthritis of facet joint of cervical spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16582921000119102", - "Display": "Arthritis of left ankle due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16582961000119107", - "Display": "Arthritis of right ankle due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16583281000119101", - "Display": "Osteoarthritis of left ankle due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16583321000119106", - "Display": "Osteoarthritis of right ankle due to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16583361000119101", - "Display": "Osteoarthritis of joint right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16606721000119107", - "Display": "Seropositive rheumatoid arthritis in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1679003", - "Display": "Arthritis associated with another disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16935003", - "Display": "Allergic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17059001", - "Display": "Prepatellar bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17136009", - "Display": "Tuberculosis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17231000119107", - "Display": "Pyogenic bacterial arthritis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1771000119109", - "Display": "Arthritis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18834007", - "Display": "Crystal arthropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18920006", - "Display": "Acute bacterial arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190710003", - "Display": "Tuberculous arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190828008", - "Display": "Gouty arthropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190842000", - "Display": "Tophus of hand co-occurrent and due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19181003", - "Display": "Lymphocytic plasmacytic synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19192002", - "Display": "Yaws of joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193120004", - "Display": "Nerve root and plexus compressions in spondylosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19375000", - "Display": "Pyogenic arthritis of pelvic region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19431000", - "Display": "Arthritis co-occurrent and due to rubella (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19514005", - "Display": "Arthritis mutilans (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19579005", - "Display": "Juvenile osteochondritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1961000", - "Display": "Chronic polyarticular juvenile rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20075001", - "Display": "Crystal arthropathy of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "200956002", - "Display": "Psoriatic arthritis with spine involvement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201466005", - "Display": "Staphylococcal arthritis and polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201467001", - "Display": "Pneumococcal arthritis and polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201474006", - "Display": "Sexually acquired reactive arthropathy of the shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201477004", - "Display": "Sexually acquired reactive arthropathy of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201478009", - "Display": "Sexually acquired reactive arthropathy of the pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201480003", - "Display": "Sexually acquired reactive arthropathy of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201485008", - "Display": "Arthropathy in Behcet's syndrome of the shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201488005", - "Display": "Arthropathy in Behcet's syndrome of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201489002", - "Display": "Arthropathy in Behcet's syndrome of the pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201491005", - "Display": "Arthropathy in Behcet's syndrome of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201497009", - "Display": "Post-dysenteric reactive arthropathy of the shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201500003", - "Display": "Post-dysenteric reactive arthropathy of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201501004", - "Display": "Post-dysenteric reactive arthropathy of the pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201503001", - "Display": "Post-dysenteric reactive arthropathy of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201504007", - "Display": "Post-dysenteric reactive arthropathy of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201517005", - "Display": "Seronegative arthritis secondary to Whipple's disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201546003", - "Display": "Arthropathy of the shoulder region associated with helminthiasis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201549005", - "Display": "Arthropathy of the hand associated with helminthiasis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201550005", - "Display": "Arthropathy of the pelvic region and thigh associated with helminthiasis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201552002", - "Display": "Arthropathy of the ankle and/or foot associated with helminthiasis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201558003", - "Display": "Reactive arthropathy of shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201559006", - "Display": "Reactive arthropathy of sternoclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201560001", - "Display": "Reactive arthropathy of acromioclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201561002", - "Display": "Reactive arthropathy of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201562009", - "Display": "Reactive arthropathy of distal radioulnar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201563004", - "Display": "Reactive arthropathy of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201564005", - "Display": "Reactive arthropathy of metacarpophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201565006", - "Display": "Reactive arthropathy of proximal interphalangeal joint of finger (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201566007", - "Display": "Reactive arthropathy of distal interphalangeal joint of finger (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201567003", - "Display": "Reactive arthropathy of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201568008", - "Display": "Reactive arthropathy of sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201569000", - "Display": "Reactive arthropathy of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201570004", - "Display": "Reactive arthropathy of tibiofibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201571000", - "Display": "Reactive arthropathy of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201572007", - "Display": "Reactive arthropathy of subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201573002", - "Display": "Reactive arthropathy of talonavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201575009", - "Display": "Reactive arthropathy of first metatarsophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201576005", - "Display": "Reactive arthropathy of lesser metatarsophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201577001", - "Display": "Reactive arthropathy of interphalangeal joint of toe (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201625003", - "Display": "Chondrocalcinosis due to dicalcium phosphate crystals (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201627006", - "Display": "Chondrocalcinosis due to dicalcium phosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201630004", - "Display": "Chondrocalcinosis due to dicalcium phosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201631000", - "Display": "Chondrocalcinosis due to dicalcium phosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201633002", - "Display": "Chondrocalcinosis due to dicalcium phosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201634008", - "Display": "Chondrocalcinosis due to dicalcium phosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201637001", - "Display": "Chondrocalcinosis due to pyrophosphate crystals (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201639003", - "Display": "Chondrocalcinosis due to pyrophosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201642009", - "Display": "Chondrocalcinosis-pyrophosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201643004", - "Display": "Chondrocalcinosis due to pyrophosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201645006", - "Display": "Chondrocalcinosis due to pyrophosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201646007", - "Display": "Chondrocalcinosis due to pyrophosphate crystals" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201663006", - "Display": "Gouty arthritis of the shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201666003", - "Display": "Gouty arthritis of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201667007", - "Display": "Gouty arthritis of the pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201669005", - "Display": "Gouty arthritis of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201670006", - "Display": "Gouty arthritis of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201728006", - "Display": "Arthropathy in Crohn's disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201732000", - "Display": "Arthropathy associated with dermatological disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201733005", - "Display": "Arthropathy associated with respiratory disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201736002", - "Display": "Reactive arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201738001", - "Display": "Post-infective arthropathy in syphilis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201764007", - "Display": "Rheumatoid arthritis of cervical spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201766009", - "Display": "Rheumatoid arthritis of shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201767000", - "Display": "Rheumatoid arthritis of sternoclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201768005", - "Display": "Rheumatoid arthritis of acromioclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201769002", - "Display": "Rheumatoid arthritis of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201770001", - "Display": "Rheumatoid arthritis of distal radioulnar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201771002", - "Display": "Rheumatoid arthritis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201772009", - "Display": "Rheumatoid arthritis of metacarpophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201773004", - "Display": "Rheumatoid arthritis of proximal interphalangeal joint of finger (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201774005", - "Display": "Rheumatoid arthritis of distal interphalangeal joint of finger (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201775006", - "Display": "Rheumatoid arthritis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201776007", - "Display": "Rheumatoid arthritis of sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201777003", - "Display": "Rheumatoid arthritis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201778008", - "Display": "Rheumatoid arthritis of tibiofibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201779000", - "Display": "Rheumatoid arthritis of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201780002", - "Display": "Rheumatoid arthritis of subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201781003", - "Display": "Rheumatoid arthritis of talonavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201783000", - "Display": "Rheumatoid arthritis of first metatarsophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201784006", - "Display": "Rheumatoid arthritis of lesser metatarsophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201785007", - "Display": "Rheumatoid arthritis of interphalangeal joint of toe (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201791009", - "Display": "Flare of rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201796004", - "Display": "Systemic onset juvenile chronic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201799006", - "Display": "Monarticular juvenile rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201805000", - "Display": "Juvenile arthritis in Crohn's disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201807008", - "Display": "Juvenile arthritis in ulcerative colitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201819000", - "Display": "Generalized osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201825001", - "Display": "Secondary multiple arthrosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201826000", - "Display": "Erosive osteoarthrosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201829007", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201831003", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201834006", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201835007", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201837004", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201847001", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201849003", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201852006", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201855008", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201857000", - "Display": "Post-traumatic coxarthrosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201858005", - "Display": "Post-traumatic gonarthrosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201921009", - "Display": "Kashin-Beck disease of the shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201924001", - "Display": "Kashin-Beck disease of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201925000", - "Display": "Kashin-Beck disease of the pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201927008", - "Display": "Kashin-Beck disease of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201929006", - "Display": "Kashin-Beck disease of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201964002", - "Display": "Allergic arthritis of the shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201967009", - "Display": "Allergic arthritis of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201968004", - "Display": "Allergic arthritis of the pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201970008", - "Display": "Allergic arthritis of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201972000", - "Display": "Allergic arthritis of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201977006", - "Display": "Climacteric arthritis of the shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201980007", - "Display": "Climacteric arthritis of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201981006", - "Display": "Climacteric arthritis of the pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201983009", - "Display": "Climacteric arthritis of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "201985002", - "Display": "Climacteric arthritis of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202031002", - "Display": "Generalized arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202046009", - "Display": "Arthritis secondary to malignancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202457009", - "Display": "Palindromic rheumatism of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202460002", - "Display": "Palindromic rheumatism of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202461003", - "Display": "Palindromic rheumatism of pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202463000", - "Display": "Palindromic rheumatism of ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202465007", - "Display": "Palindromic rheumatism of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202657000", - "Display": "Single-level cervical spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202658005", - "Display": "Two-level cervical spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202659002", - "Display": "Multiple-level cervical spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202666001", - "Display": "Single-level thoracic spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202667005", - "Display": "Two-level thoracic spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202668000", - "Display": "Multiple-level thoracic spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202670009", - "Display": "Single-level thoracic spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202671008", - "Display": "Two-level thoracic spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202672001", - "Display": "Multiple-level thoracic spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202674000", - "Display": "Single-level lumbosacral spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202675004", - "Display": "Two-level lumbosacral spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202676003", - "Display": "Multiple-level lumbosacral spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202677007", - "Display": "Lumbosacral spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202678002", - "Display": "Single-level lumbosacral spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202679005", - "Display": "Two-level lumbosacral spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202680008", - "Display": "Multiple-level lumbosacral spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202687006", - "Display": "Cervical spondylosis with vascular compression (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202688001", - "Display": "Thoracic spondylosis with radiculopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202689009", - "Display": "Single-level thoracic spondylosis with radiculopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202690000", - "Display": "Two-level thoracic spondylosis with radiculopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202692008", - "Display": "Multiple-level thoracic spondylosis with radiculopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202693003", - "Display": "Lumbosacral spondylosis with radiculopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202694009", - "Display": "Single-level lumbosacral spondylosis with radiculopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202695005", - "Display": "Two-level lumbosacral spondylosis with radiculopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202696006", - "Display": "Multiple-level lumbosacral spondylosis with radiculopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202700003", - "Display": "Neuropathic spondylopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202744000", - "Display": "Cervical discitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202747007", - "Display": "Calcification of cervical disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202748002", - "Display": "Thoracic discitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202751009", - "Display": "Calcification of thoracic disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202752002", - "Display": "Lumbar discitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202755000", - "Display": "Calcification of lumbar disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202756004", - "Display": "Infection of intervertebral disc - pyogenic (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202771000", - "Display": "Cervical posterior longitudinal ligament ossification (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202855006", - "Display": "Lateral epicondylitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202868003", - "Display": "Pes anserinus tendinitis and bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202900007", - "Display": "Synovitis and tenosynovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202910003", - "Display": "Plant thorn synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202924004", - "Display": "Transient synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202925003", - "Display": "Chronic crepitant synovitis of hand and wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "202926002", - "Display": "Synovitis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203382004", - "Display": "Juvenile osteochondrosis of head of humerus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "203395009", - "Display": "Osteochondrosis of fifth metatarsal (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20358003", - "Display": "Pyogenic arthritis of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "21534009", - "Display": "Arthritis caused by Escherichia coli (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22193007", - "Display": "Degenerative joint disease of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225655006", - "Display": "Degenerative polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22821000119104", - "Display": "Pyogenic bacterial arthritis of foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22841000119105", - "Display": "Pyogenic bacterial polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22851000119107", - "Display": "Pyogenic bacterial arthritis of pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23008004", - "Display": "Subacute infective arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2304001", - "Display": "Discitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "232439007", - "Display": "Relapsing polychondritis of larynx (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234524009", - "Display": "Sarcoid dactylitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235066005", - "Display": "Oral lesion co-occurrent with reactive arthritis triad (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236543006", - "Display": "Beta-2 microglobulin arthropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236744002", - "Display": "Circinate balanitis co-occurrent with reactive arthritis triad (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237876008", - "Display": "Arthritis secondary to amyloidosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237898004", - "Display": "Periarticular calcification (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238850005", - "Display": "Mouth and genital ulcers with inflamed cartilage syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23950002", - "Display": "Acute infective polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239777004", - "Display": "Knee pyogenic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239778009", - "Display": "Wrist pyogenic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239779001", - "Display": "Elbow pyogenic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239780003", - "Display": "Arthritis caused by viral infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239781004", - "Display": "Arthritis caused by spirochaetale infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239782006", - "Display": "Arthritis due to parasitic infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239783001", - "Display": "Post-infective arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239785008", - "Display": "Post-dysenteric reactive arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239787000", - "Display": "Post-tuberculous reactive arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239789002", - "Display": "Post-immunization arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239790006", - "Display": "Arthritis following intestinal bypass (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239791005", - "Display": "Seropositive rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239792003", - "Display": "Seronegative rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239795001", - "Display": "Rheumatoid arthritis with multisystem involvement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239796000", - "Display": "Juvenile chronic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239797009", - "Display": "Early onset pauciarticular chronic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239798004", - "Display": "Late onset pauciarticular chronic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239799007", - "Display": "Early onset polyarticular juvenile chronic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239800006", - "Display": "Late onset polyarticular juvenile chronic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239802003", - "Display": "Juvenile psoriatic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239803008", - "Display": "Juvenile psoriatic arthritis with psoriasis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239804002", - "Display": "Juvenile psoriatic arthritis without psoriasis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239805001", - "Display": "Juvenile ankylosing spondylitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239806000", - "Display": "Juvenile spondyloarthropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239807009", - "Display": "Juvenile reactive arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239808004", - "Display": "Juvenile reactive arthritis triad (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239809007", - "Display": "Juvenile arthritis of inflammatory bowel disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239810002", - "Display": "Ankylosing spondylitis with organ / system involvement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239811003", - "Display": "Ankylosing spondylitis with multisystem involvement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239812005", - "Display": "Psoriatic arthritis with distal interphalangeal joint involvement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239814006", - "Display": "Seronegative arthritis secondary to inflammatory bowel disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239815007", - "Display": "Solitary sacroiliitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239816008", - "Display": "Synovitis of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239817004", - "Display": "Synovitis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239818009", - "Display": "Shoulder synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239819001", - "Display": "Undifferentiated inflammatory oligoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239820007", - "Display": "Undifferentiated inflammatory monoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239821006", - "Display": "Secondary inflammatory arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239822004", - "Display": "Arthritis secondary to non-hematological malignancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239826001", - "Display": "Chronic infantile neurological" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239828000", - "Display": "Apatite-associated destructive arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239832006", - "Display": "Calcium pyrophosphate deposition disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239833001", - "Display": "Chondrocalcinosis due to pyrophosphate crystals of the knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239834007", - "Display": "Pyrophosphate arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239835008", - "Display": "Idiopathic pyrophosphate arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239836009", - "Display": "Secondary pyrophosphate arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239837000", - "Display": "Pyrophosphate tophus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239842008", - "Display": "Monosodium urate arthritis and periarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239849004", - "Display": "Intra-articular steroid-induced arthritis and periarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239862000", - "Display": "Idiopathic osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239863005", - "Display": "Osteoarthritis of spinal facet joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239865003", - "Display": "Osteoarthritis of acromioclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239866002", - "Display": "Osteoarthritis of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239867006", - "Display": "Osteoarthritis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239868001", - "Display": "Osteoarthritis of finger joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239869009", - "Display": "Osteoarthritis of distal interphalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239870005", - "Display": "Osteoarthritis of proximal interphalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239871009", - "Display": "Osteoarthritis of metacarpophalangeal joint of finger (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239872002", - "Display": "Osteoarthritis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239873007", - "Display": "Osteoarthritis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239874001", - "Display": "Osteoarthritis of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239876004", - "Display": "Osteoarthritis of subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239877008", - "Display": "Osteoarthritis of first metatarsophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239878003", - "Display": "Osteoarthritis of toe joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239880009", - "Display": "Lumbar spondylosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239881008", - "Display": "Otto's pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239883006", - "Display": "Endemic osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239884000", - "Display": "Malemud disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "239920006", - "Display": "Adult onset Still's disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240002009", - "Display": "Popliteal bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240003004", - "Display": "Suprapatellar bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240004005", - "Display": "Semimembranosus bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240177002", - "Display": "Juvenile osteochondritis of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240178007", - "Display": "Juvenile osteochondritis of the arm (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240179004", - "Display": "Pelvis juvenile osteochondropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240180001", - "Display": "Hip juvenile osteochondropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240181002", - "Display": "Osteochondritis of the distal ulna (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240182009", - "Display": "Osteochondritis of the femoral head (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240211000", - "Display": "Intervertebral disk calcification (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240270007", - "Display": "Silicone synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240428000", - "Display": "Postmeningococcal arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240582004", - "Display": "Gonococcal synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240671002", - "Display": "Lyme erosive synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24761000119107", - "Display": "Pyogenic bacterial arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250126000", - "Display": "Symmetrical arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250127009", - "Display": "Asymmetrical arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250128004", - "Display": "Small joint arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250129007", - "Display": "Large joint arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250130002", - "Display": "Small and large joint arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250131003", - "Display": "Lower limb joint arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250536002", - "Display": "Starch synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25343008", - "Display": "Secondary localized osteoarthrosis of pelvic region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "254779008", - "Display": "Osteoarthritis deformans (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25738004", - "Display": "Tuberculous synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26071001", - "Display": "Acute infective arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26171000119109", - "Display": "Pyogenic bacterial arthritis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26241001", - "Display": "Crystal arthropathy of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26538006", - "Display": "Degeneration of lumbar intervertebral disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267439008", - "Display": "Liposynovitis prepatellaris (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267880006", - "Display": "Pyogenic arthritis of the pelvic region and thigh (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267882003", - "Display": "Pyogenic arthritis of the ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267889007", - "Display": "Generalized osteoarthritis of the hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267890003", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267970006", - "Display": "Cervical spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "267971005", - "Display": "Thoracic spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268022000", - "Display": "Juvenile osteochondritis of the hip and pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268023005", - "Display": "Osteochondritis of pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268024004", - "Display": "Juvenile osteochondritis of the arm and hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268025003", - "Display": "Juvenile osteochondrosis of capitulum of humerus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268054009", - "Display": "Osteoarthritis of multiple joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "270505009", - "Display": "Kashin-Beck disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "272006008", - "Display": "Gonococcal arthritis dermatitis syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "274135002", - "Display": "Arthritis/arthrosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "275324008", - "Display": "Osteoarthritis of metacarpophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276480007", - "Display": "Osteochondritis of metatarsal (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276481006", - "Display": "Osteochondritis of metacarpal (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276653007", - "Display": "Parvo virus arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281350007", - "Display": "Arthritis secondary to hematological malignancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281351006", - "Display": "Arthritis due to bleeding disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281359008", - "Display": "Traumatic synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281365008", - "Display": "Tophus of prepatellar bursa co-occurrent and due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "281371002", - "Display": "Inflammatory discitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287006005", - "Display": "Rheumatoid arthritis of multiple joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287007001", - "Display": "Rheumatoid arthritis of hand joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287008006", - "Display": "Rheumatoid arthritis of ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287016002", - "Display": "Synovitis/tenosynovitis - multiple joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287017006", - "Display": "Synovitis/tenosynovitis - shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287019009", - "Display": "Synovitis/tenosynovitis - wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287020003", - "Display": "Synovitis/tenosynovitis - hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287021004", - "Display": "Synovitis/tenosynovitis - knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "287062005", - "Display": "Juvenile osteochondritis - leg/foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28729000", - "Display": "Proliferative synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28736004", - "Display": "Primary localized osteoarthrosis of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "288213002", - "Display": "Synovitis/tenosynovitis - hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28880005", - "Display": "Rheumatoid carditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "298941000119101", - "Display": "Gout of shoulder due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "298951000119104", - "Display": "Gout of vertebra due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "298961000119102", - "Display": "Gout of wrist due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "300961000119108", - "Display": "Juvenile idiopathic arthritis of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301051000119101", - "Display": "Juvenile idiopathic arthritis of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301864002", - "Display": "Transient synovitis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301971000119109", - "Display": "Adhesive capsulitis of right shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301981000119107", - "Display": "Adhesive capsulitis of left shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "302935008", - "Display": "Infective discitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303001000119101", - "Display": "Osteoarthritis of hip co-occurrent and due to dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303041000119104", - "Display": "Osteoarthritis of bilateral first carpometacarpal joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303481000119104", - "Display": "Calcium deposit in bursa of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303551000119107", - "Display": "Calcium deposit in bursa of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303861000119106", - "Display": "Chondromalacia of left patella (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303881000119102", - "Display": "Chronic tophaceous gout of ankle due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303891000119104", - "Display": "Chronic gout of ankle without tophus due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303901000119100", - "Display": "Chronic tophaceous gout of elbow due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303911000119102", - "Display": "Chronic gout of elbow without tophus due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303921000119109", - "Display": "Chronic tophaceous gout of hand due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303931000119107", - "Display": "Chronic gout of hand without tophus due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303941000119103", - "Display": "Chronic tophaceous gout of hip due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303951000119101", - "Display": "Chronic gout of hip without tophus due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303961000119104", - "Display": "Chronic tophaceous gout of knee due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "303971000119105", - "Display": "Chronic gout of knee without tophus due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304121000119108", - "Display": "Chronic tophaceous gout of multiple sites due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304261000119109", - "Display": "Chronic tophaceous gout of right wrist due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304281000119100", - "Display": "Chronic tophaceous gout of shoulder due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304291000119102", - "Display": "Chronic gout of shoulder without tophus due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304301000119101", - "Display": "Chronic tophaceous gout of vertebra due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304311000119103", - "Display": "Chronic gout of vertebra without tophus due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304321000119105", - "Display": "Chronic tophaceous gout due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304341000119104", - "Display": "Chronic tophaceous gout of wrist due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304351000119102", - "Display": "Chronic gout of wrist without tophus due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306131000119100", - "Display": "Chronic tophaceous gout of ankle and/or foot caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306141000119109", - "Display": "Chronic gout of ankle and/or foot without tophus caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306151000119106", - "Display": "Chronic tophaceous gout of elbow caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306161000119108", - "Display": "Chronic gout of elbow without tophus caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306171000119102", - "Display": "Chronic tophaceous gout of hand caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306181000119104", - "Display": "Chronic gout of hand without tophus caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306191000119101", - "Display": "Chronic tophaceous gout of hip caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306201000119103", - "Display": "Chronic gout of hip without tophus caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306211000119100", - "Display": "Chronic tophaceous gout of knee caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306221000119107", - "Display": "Chronic gout of knee without tophus caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306371000119100", - "Display": "Chronic tophaceous gout of multiple sites caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306531000119108", - "Display": "Chronic tophaceous gout of shoulder caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306541000119104", - "Display": "Chronic gout of shoulder without tophus caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306551000119102", - "Display": "Chronic tophaceous gout of vertebra caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306561000119100", - "Display": "Chronic gout of vertebra without tophus caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306571000119106", - "Display": "Chronic tophaceous gout caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306591000119107", - "Display": "Chronic tophaceous gout of wrist caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306601000119100", - "Display": "Chronic gout of wrist without tophus caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306611000119102", - "Display": "Gout of ankle and/or foot caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306621000119109", - "Display": "Gout of elbow caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306631000119107", - "Display": "Gout of hand caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306641000119103", - "Display": "Gout of hip caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306651000119101", - "Display": "Gout of knee caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306811000119101", - "Display": "Gout of shoulder caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306821000119108", - "Display": "Gout of vertebra caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "306831000119106", - "Display": "Gout of wrist caused by drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307371000119102", - "Display": "Familial calcium pyrophosphate deposition of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307391000119101", - "Display": "Familial calcium pyrophosphate deposition of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307451000119100", - "Display": "Familial calcium pyrophosphate deposition of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307471000119109", - "Display": "Familial calcium pyrophosphate deposition of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "307500008", - "Display": "Cricoarytenoid joint arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "308143008", - "Display": "Seropositive erosive rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "308791000119101", - "Display": "Gout of elbow due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "308801000119100", - "Display": "Gout of hand due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "308811000119102", - "Display": "Gout of hip due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "308821000119109", - "Display": "Gout of knee due to renal impairment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309246000", - "Display": "Osteoarthritis of foot joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309255002", - "Display": "Charcot's joint of foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309661000119108", - "Display": "Primary chronic gout without tophus of ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309681000119104", - "Display": "Primary chronic gout without tophus of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309701000119101", - "Display": "Primary chronic gout without tophus of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309721000119105", - "Display": "Primary chronic gout without tophus of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "309741000119104", - "Display": "Primary chronic gout without tophus of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310061000119109", - "Display": "Primary chronic gout without tophus of shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310081000119100", - "Display": "Primary chronic gout without tophus of vertebra (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310121000119103", - "Display": "Primary chronic gout without tophus of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310181000119104", - "Display": "Gouty arthritis of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310191000119101", - "Display": "Arthritis of left elbow due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310201000119103", - "Display": "Gouty arthritis of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310221000119107", - "Display": "Gouty arthritis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310241000119101", - "Display": "Arthritis of left wrist due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310261000119102", - "Display": "Gouty arthritis of right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310271000119108", - "Display": "Arthritis of right elbow due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310281000119106", - "Display": "Gouty arthritis of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310301000119105", - "Display": "Gouty arthritis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310321000119101", - "Display": "Arthritis of right wrist due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "310640003", - "Display": "Degenerative lesion of articular cartilage of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312411000119100", - "Display": "Lateral epicondylitis of left humerus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312421000119107", - "Display": "Lateral epicondylitis of right humerus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313257005", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313258000", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313259008", - "Display": "Localized" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313541000119107", - "Display": "Medial epicondylitis of left humerus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313551000119109", - "Display": "Medial epicondylitis of right humerus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313591000119104", - "Display": "Monoarthritis of joint of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313611000119109", - "Display": "Monoarthritis of joint of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313631000119104", - "Display": "Monoarthritis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313661000119107", - "Display": "Monoarthritis of joint of right ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313681000119103", - "Display": "Monoarthritis of joint of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313701000119100", - "Display": "Monoarthritis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "317511000119102", - "Display": "Tendonitis of left patellar tendon (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "317521000119109", - "Display": "Tendonitis of right patellar tendon (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "317821000119107", - "Display": "Arthritis of left knee caused by Streptococcus pneumoniae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "317891000119109", - "Display": "Arthritis of right knee caused by Streptococcus pneumoniae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318601000119103", - "Display": "Prepatellar bursitis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318611000119100", - "Display": "Prepatellar bursitis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318641000119101", - "Display": "Osteoarthritis of joint of left ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318651000119104", - "Display": "Osteoarthritis of joint of left elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318661000119102", - "Display": "Osteoarthritis of joint of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318671000119108", - "Display": "Osteoarthritis of joint of left shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318681000119106", - "Display": "Osteoarthritis of joint of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318691000119109", - "Display": "Osteoarthritis of joint of right ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318701000119109", - "Display": "Osteoarthritis of joint of right elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318711000119107", - "Display": "Osteoarthritis of joint of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318721000119100", - "Display": "Osteoarthritis of joint of right shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318731000119102", - "Display": "Osteoarthritis of joint of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318861000119101", - "Display": "Seropositive rheumatoid arthritis of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318871000119107", - "Display": "Seropositive rheumatoid arthritis of left hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318881000119105", - "Display": "Seropositive rheumatoid arthritis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318931000119100", - "Display": "Seropositive rheumatoid arthritis of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318941000119109", - "Display": "Seropositive rheumatoid arthritis of right hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "318951000119106", - "Display": "Seropositive rheumatoid arthritis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "319031000119108", - "Display": "Seronegative rheumatoid arthritis of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "319081000119109", - "Display": "Seronegative rheumatoid arthritis of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "319111000119104", - "Display": "Seronegative rheumatoid arthritis of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "319841000119107", - "Display": "Rheumatoid lung disease with rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321311000119108", - "Display": "Spondylosis of cervicothoracic spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321341000119107", - "Display": "Spondylosis of thoracolumbar spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321651000119101", - "Display": "Arthritis of left ankle caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321661000119104", - "Display": "Arthritis of left elbow caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321681000119108", - "Display": "Arthritis of left hip caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321691000119106", - "Display": "Arthritis of left knee caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321701000119106", - "Display": "Arthritis of left shoulder caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321711000119109", - "Display": "Arthritis of left wrist caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321721000119102", - "Display": "Arthritis of right ankle caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321731000119104", - "Display": "Arthritis of right elbow caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321751000119105", - "Display": "Arthritis of right hip caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321761000119107", - "Display": "Arthritis of right knee caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321771000119101", - "Display": "Arthritis of right shoulder caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "321781000119103", - "Display": "Arthritis of right wrist caused by Staphylococcus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322521000119104", - "Display": "Transient synovitis of left elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322531000119101", - "Display": "Transient synovitis of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322541000119105", - "Display": "Transient synovitis of left hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322571000119103", - "Display": "Transient synovitis of left wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322601000119109", - "Display": "Transient synovitis of right elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322611000119107", - "Display": "Transient synovitis of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322621000119100", - "Display": "Transient synovitis of right hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "322651000119108", - "Display": "Transient synovitis of right wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323161000119107", - "Display": "Osteoarthritis of left hip joint due to dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323171000119101", - "Display": "Osteoarthritis of right hip joint due to dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323251000119103", - "Display": "Osteoarthritis of first carpometacarpal joint of left hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323261000119101", - "Display": "Osteoarthritis of first carpometacarpal joint of right hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323291000119108", - "Display": "Osteoarthritis of left hip joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323301000119109", - "Display": "Osteoarthritis of left knee joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323311000119107", - "Display": "Osteoarthritis of right hip joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "323321000119100", - "Display": "Osteoarthritis of right knee joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "324171000119104", - "Display": "Monoarthritis of joint of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33262002", - "Display": "Osteoarthrosis involving multiple sites but not designated as generalized (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33420007", - "Display": "Diffuse cervicobrachial syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33937009", - "Display": "Lyme arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33952002", - "Display": "Localized osteoarthrosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34427002", - "Display": "Crystal arthropathy of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34934005", - "Display": "Pyogenic arthritis of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35908007", - "Display": "Chronic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36071006", - "Display": "Chondromalacia of patella (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "361197009", - "Display": "Sarcoid arthropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "361198004", - "Display": "Sarcoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36309003", - "Display": "Pneumococcal arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36540006", - "Display": "Calcification of joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36678001", - "Display": "Pyogenic arthritis of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "367356000", - "Display": "Osteochondritis of carpal lunate (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371081002", - "Display": "Arthritis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371082009", - "Display": "Arthritis of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "372247004", - "Display": "Fungal arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "372248009", - "Display": "Suppurative arthritis caused by fungus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3723001", - "Display": "Arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "372937009", - "Display": "Suppurative arthritis caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "372938004", - "Display": "Acute suppurative arthritis caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "372939007", - "Display": "Suppurative arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "372940009", - "Display": "Acute suppurative arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "372941008", - "Display": "Pyogenic arthritis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373623009", - "Display": "Osteoarthritis of glenohumeral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "37785001", - "Display": "Patellar tendonitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "37895003", - "Display": "Osteoarthrosis of the carpometacarpal joint of the thumb (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "386032009", - "Display": "Osteochondritis of the talus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "387800004", - "Display": "Cervical spondylosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "387801000", - "Display": "Cervical arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "387802007", - "Display": "Thoracic spondylosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38800000", - "Display": "Acute serous synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "394991004", - "Display": "Exacerbation of osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3951000119103", - "Display": "Medial epicondyle apophysitis due to overuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "396234004", - "Display": "Infective arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "396275006", - "Display": "Osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39838007", - "Display": "Ochronotic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398640008", - "Display": "Rheumatoid pneumoconiosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399112009", - "Display": "Seronegative arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399923009", - "Display": "Rheumatoid arteritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399964004", - "Display": "Fibroblastic rheumatism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402338004", - "Display": "Circinate vulvovaginitis co-occurrent with reactive arthritis triad (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402339007", - "Display": "Nail dystrophy co-occurrent with reactive arthritis triad (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410020008", - "Display": "Polyarthritis caused by Erysipelothrix rhusiopathiae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410502007", - "Display": "Juvenile idiopathic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410793008", - "Display": "Chronic arthritis of juvenile onset (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410794002", - "Display": "Still's disease with juvenile onset and/or adult onset (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410795001", - "Display": "Juvenile rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410796000", - "Display": "Juvenile seropositive polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410797009", - "Display": "Juvenile seronegative polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410798004", - "Display": "Juvenile idiopathic arthritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410799007", - "Display": "Juvenile idiopathic arthritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410800006", - "Display": "Juvenile idiopathic arthritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410801005", - "Display": "Juvenile idiopathic arthritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410802003", - "Display": "Juvenile idiopathic arthritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41271000119108", - "Display": "Viral arthritis co-occurrent with hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416209007", - "Display": "Synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4168008", - "Display": "Tibial plateau chondromalacia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416956002", - "Display": "Undifferentiated inflammatory polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417180005", - "Display": "Undifferentiated inflammatory arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417373000", - "Display": "Inflammatory polyarthropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4211000119108", - "Display": "Localized osteoarthritis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421708000", - "Display": "Infective arthritis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422565003", - "Display": "Post-infective polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423310007", - "Display": "Post-infective arthritis of joint of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "423515003", - "Display": "Post-infective arthritis of joint of foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4248008", - "Display": "Synovitis AND/OR tenosynovitis associated with another disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42545001", - "Display": "Subacute arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426845002", - "Display": "Bursitis of finger (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427770001", - "Display": "Rheumatoid arthritis of temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427947000", - "Display": "Monoarthritis of hip joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427967009", - "Display": "Arthropathy in Behcet's syndrome of the spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428027008", - "Display": "Crystal arthropathy of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428104002", - "Display": "Arthritis of midtarsal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428143003", - "Display": "Arthritis of joint of toe (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428169009", - "Display": "Arthropathy in Behcet's syndrome of the ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428218004", - "Display": "Allergic arthritis of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428361004", - "Display": "Arthritis of hand caused by viral infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428385007", - "Display": "Infective arthritis of joint of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428437005", - "Display": "Infective arthritis of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428705008", - "Display": "Degenerative tear of triangular fibrocartilage complex of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428768008", - "Display": "Crystal arthropathy of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428839004", - "Display": "Arthritis of toe due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428857003", - "Display": "Kashin-Beck disease of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42898009", - "Display": "Acute polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429192004", - "Display": "Rheumatoid arthritis of foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429298008", - "Display": "Climacteric arthritis of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429419004", - "Display": "Crystal arthropathy of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429420005", - "Display": "Crystal arthropathy of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429422002", - "Display": "Rheumatic arthritis of temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42944009", - "Display": "Degeneration of internal semilunar cartilage (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429459001", - "Display": "Arthritis of acromioclavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429555005", - "Display": "Sacral arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429669000", - "Display": "Arthritis of knee caused by viral infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429670004", - "Display": "Infection of prepatellar bursa (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "430505004", - "Display": "Osteochondritis of proximal tibia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "430506003", - "Display": "Osteochondritis of tibial tubercle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "430741000124108", - "Display": "Polyarthritis associated with hemochromatosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431011000124103", - "Display": "Arthritis due to alkaptonuria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431236003", - "Display": "Bacterial arthritis of sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431263002", - "Display": "Bacterial arthritis of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43132002", - "Display": "Degeneration of cervicothoracic intervertebral disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431606003", - "Display": "Bacterial arthritis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431631000124102", - "Display": "Granulomatous synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431731000124106", - "Display": "Intervertebral disc desiccation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431901000124100", - "Display": "Infectious synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432418003", - "Display": "Bacterial arthritis of patellofemoral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432733005", - "Display": "Acute degenerative joint disease of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "433711000124101", - "Display": "Calcium oxalate deposition disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43829003", - "Display": "Chronic osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "439656005", - "Display": "Arthritis of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44221002", - "Display": "Idiopathic polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44245003", - "Display": "Tibial collateral ligament bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442884002", - "Display": "Chondrocalcinosis of joint of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442925003", - "Display": "Chondrocalcinosis of wrist joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442928001", - "Display": "Chondrocalcinosis of joint of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442941002", - "Display": "Chondrocalcinosis of joint of ankle AND/OR foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442942009", - "Display": "Chondrocalcinosis of knee joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443001001", - "Display": "Chondrocalcinosis of elbow joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443002008", - "Display": "Chondrocalcinosis of hip joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443524000", - "Display": "Secondary osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443798008", - "Display": "Inflammation of joint of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444556003", - "Display": "Seronegative arthritis of joint of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444765007", - "Display": "Inflammation of joint caused by Streptococcus suis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444972004", - "Display": "Inflammation of tendon of metatarsophalangeal joint of second toe (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444998005", - "Display": "Infective arthritis of pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "444999002", - "Display": "Infective arthritis of ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445247000", - "Display": "Inflammation of bursa of patella (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445271007", - "Display": "Villous arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445345005", - "Display": "Remitting seronegative symmetrical synovitis with pitting edema (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445473008", - "Display": "Inflammation of pubic symphysis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445477009", - "Display": "Crystal arthropathy of pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445478004", - "Display": "Degenerative joint disease of pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445495007", - "Display": "Infective arthritis of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445496008", - "Display": "Chondrocalcinosis of joint of pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445525001", - "Display": "Infective arthritis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446496001", - "Display": "Heterotopic ossification of joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44743006", - "Display": "Gonococcal infection of joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448393000", - "Display": "Inflammation of interphalangeal joint of toe due to infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448394006", - "Display": "Inflammation of joint of foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448453004", - "Display": "Inflammation of distal interphalangeal joint of finger due to infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448454005", - "Display": "Inflammation of first metatarsophalangeal joint due to infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448589005", - "Display": "Inflammation of joint of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449070007", - "Display": "Inflammation of metatarsophalangeal joint of lesser toe due to infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449250008", - "Display": "Inflammation of proximal interphalangeal joint of finger due to infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "450481000124109", - "Display": "Villous arthritis of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "450521003", - "Display": "Osteoarthritis of patellofemoral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "45214008", - "Display": "Chronic infective arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "45231001", - "Display": "Infrapatellar bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "453351000124100", - "Display": "Arthritis of first metatarsophalangeal joint of left foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "459911000124100", - "Display": "Rheumatoid factor positive rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "459921000124108", - "Display": "Rheumatoid factor positive rheumatoid arthritis of the shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46527004", - "Display": "Haemophilus influenzae arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48210000", - "Display": "Lumbosacral spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48245008", - "Display": "Bacterial arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48440001", - "Display": "Arthritis due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49761000", - "Display": "Chronic infective polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50442003", - "Display": "Palindromic rheumatism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50921008", - "Display": "Periarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51646002", - "Display": "Streptococcal arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52334005", - "Display": "Miner's knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52661003", - "Display": "Extra-articular rheumatoid process (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53332000", - "Display": "Spinal arthritis deformans (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53338001", - "Display": "Arthropathy associated with a hypersensitivity reaction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54615002", - "Display": "Martin du Pan-Rutishauer disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55146009", - "Display": "Inflammation of sacroiliac joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56528004", - "Display": "Post-dysenteric arthropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "57160007", - "Display": "Felty's syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58392004", - "Display": "Congenital syphilitic osteochondritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58769002", - "Display": "Subacute rheumatic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59484000", - "Display": "Chlamydial polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6011000119108", - "Display": "Transient arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60140004", - "Display": "Subacute infective polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60644007", - "Display": "Pellegrini-Stieda syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60684003", - "Display": "Synovitis acne pustulosis hyperostosis osteomyelitis syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60937000", - "Display": "Degeneration of lumbosacral intervertebral disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61112000", - "Display": "Pyogenic arthritis of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61126009", - "Display": "Infective polyarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61176006", - "Display": "Mycoplasma arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6211002", - "Display": "Polyarthritis associated with another disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63198006", - "Display": "Chondromalacia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "64166009", - "Display": "Subpatellar bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67148009", - "Display": "Arthritis of great toe due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67224007", - "Display": "Reactive arthritis triad (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67315001", - "Display": "Degenerative joint disease of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67437007", - "Display": "Lumbar spondylosis with myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68449006", - "Display": "Coxitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68451005", - "Display": "Chronic arthritis due to gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6861003", - "Display": "Pyogenic arthritis of foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68675004", - "Display": "Degeneration of thoracic intervertebral disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68859000", - "Display": "Spondylosis without myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69195002", - "Display": "Degeneration of cervical intervertebral disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69521007", - "Display": "Chronic crepitant synovitis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698474005", - "Display": "Monoarthritis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698475006", - "Display": "Monoarthritis of hand (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698476007", - "Display": "Monoarthritis of wrist (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698477003", - "Display": "Monoarthritis of joint of shoulder region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698478008", - "Display": "Monoarthritis of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698479000", - "Display": "Monoarthritis of ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69896004", - "Display": "Rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699207005", - "Display": "Arthritis of pelvis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699261008", - "Display": "Post infectious osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699262001", - "Display": "Post traumatic osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699302001", - "Display": "Lumbar arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699419000", - "Display": "Inflammation of stylomandibular ligament (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699462004", - "Display": "Monoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699655001", - "Display": "Calcification of stylohyoid ligament (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699681002", - "Display": "Gouty arthritis of temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699861000", - "Display": "Familial granulomatous inflammatory arthritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699942000", - "Display": "Apatite-associated destructive arthritis of shoulder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700077008", - "Display": "Charcot arthropathy of joint of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700293006", - "Display": "Primary osteoarthritis of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700294000", - "Display": "Secondary osteoarthritis of ankle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700295004", - "Display": "Osteoarthritis of ankle secondary to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700304006", - "Display": "Primary osteoarthritis of calcaneocuboid joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700305007", - "Display": "Osteoarthritis of calcaneocuboid joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700307004", - "Display": "Secondary osteoarthritis of calcaneocuboid joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700312003", - "Display": "Osteoarthritis of calcaneocuboid joint secondary to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700313008", - "Display": "Primary osteoarthritis of subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700314002", - "Display": "Secondary osteoarthritis of subtalar joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700315001", - "Display": "Osteoarthritis of subtalar joint secondary to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700316000", - "Display": "Osteoarthritis of subtalar joint secondary to inflammatory arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700317009", - "Display": "Osteoarthritis of calcaneocuboid joint secondary to inflammatory arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700318004", - "Display": "Osteoarthritis of ankle secondary to inflammatory arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700324005", - "Display": "Osteoarthritis of talonavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700325006", - "Display": "Primary osteoarthritis of talonavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700326007", - "Display": "Secondary osteoarthritis of talonavicular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700328008", - "Display": "Osteoarthritis of talonavicular joint secondary to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700331009", - "Display": "Osteoarthritis of talonavicular joint secondary to inflammatory arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700332002", - "Display": "Secondary osteoarthritis of first metatarsophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700333007", - "Display": "Primary osteoarthritis of first metatarsophalangeal joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700335000", - "Display": "Osteoarthritis of first metatarsophalangeal joint secondary to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700336004", - "Display": "Osteoarthritis of first metatarsophalangeal joint secondary to inflammatory arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700437007", - "Display": "Charcot arthropathy of midfoot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700438002", - "Display": "Charcot arthropathy of hindfoot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "701003", - "Display": "Adult osteochondritis of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "702604009", - "Display": "Osteochondrosis of head of second metatarsal (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "702976005", - "Display": "Retrodiscitis of temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703050003", - "Display": "Secondary osteoarthritis of midfoot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703051004", - "Display": "Osteoarthritis of midfoot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703052006", - "Display": "Primary osteoarthritis of midfoot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703053001", - "Display": "Osteoarthritis of midfoot secondary to trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703054007", - "Display": "Osteoarthritis of midfoot secondary to inflammatory arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703627005", - "Display": "Asymptomatic calcium pyrophosphate deposition disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "704174008", - "Display": "Chronic synovitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "705058008", - "Display": "Charcot arthropathy of forefoot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70736000", - "Display": "Osteochondritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "709200009", - "Display": "Bacterial arthritis of costotransverse joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712504007", - "Display": "Osteoarthritis of hip due to dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712520002", - "Display": "Arthritis of lower limb due to parasitic infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712521003", - "Display": "Bacterial arthritis caused by Haemophilus influenzae type b (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712524006", - "Display": "Bacterial arthritis of atlantoaxial joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712530006", - "Display": "Bacterial arthritis of costovertebral joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712547007", - "Display": "Bacterial arthritis of facet joint of thoracic spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712548002", - "Display": "Bacterial arthritis of facet joint of lumbar spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712549005", - "Display": "Bacterial arthritis of facet joint of cervical spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7126001", - "Display": "Secondary localized osteoarthrosis of multiple sites (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71299003", - "Display": "Salmonella arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713482002", - "Display": "Osteoarthritis of facet joint of thoracic spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713532005", - "Display": "Infective arthritis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713777005", - "Display": "Non-radiographic axial spondyloarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713826008", - "Display": "Osteoarthritis of lumbar spinal facet joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713869000", - "Display": "Congenital calcium pyrophosphate dihydrate crystal deposition disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713911007", - "Display": "Lumbosacral spondylosis co-occurrent with root compression (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "718602007", - "Display": "Hereditary arterial and articular multiple calcification syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "720363008", - "Display": "Arthritis of lumbosacral spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721090002", - "Display": "Dermatoosteolysis Kirghizian type (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721272009", - "Display": "Infection causing spondyloarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721285007", - "Display": "Chronic primary gouty arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72275000", - "Display": "Relapsing polychondritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "723116002", - "Display": "Axial spondyloarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724015007", - "Display": "Pyogenic arthritis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724604003", - "Display": "Intervertebral disc degeneration of cervical spine without prolapsed disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724605002", - "Display": "Ossification of spinal ligament (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724606001", - "Display": "Peripheral spondyloarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "726078000", - "Display": "Sporadic Blau syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "726628003", - "Display": "Familial chondromalacia patellae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73105000", - "Display": "Pes anserinus bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "733177005", - "Display": "Arthropathy caused by fungus following fungal infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "733179008", - "Display": "Arthropathy caused by and following parasitic infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "733180006", - "Display": "Arthropathy caused by virus due to and following virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735598004", - "Display": "Oligoosteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735599007", - "Display": "Erosion of joint surface co-occurrent and due to rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735600005", - "Display": "Rheumatoid arthritis without erosion (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735602002", - "Display": "Wear of articular bearing surface of joint prosthesis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735603007", - "Display": "Wear of articular bearing surface of joint prosthesis of knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735604001", - "Display": "Prolapse of cervical intervertebral disc co-occurrent and due to degeneration (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735605000", - "Display": "Degeneration of cervical intervertebral disc co-occurrent with osteophyte of cervical vertebra (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735606004", - "Display": "Degeneration of thoracic intervertebral disc without prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735607008", - "Display": "Prolapse of thoracic intervertebral disc co-occurrent and due to degeneration (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735608003", - "Display": "Degeneration of thoracic intervertebral disc co-occurrent with osteophyte (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735609006", - "Display": "Degeneration of lumbar intervertebral disc without prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735610001", - "Display": "Prolapse of lumbar intervertebral disc co-occurrent and due to degeneration (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735611002", - "Display": "Degeneration of lumbar intervertebral disc co-occurrent with osteophyte of lumbar vertebra (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735914007", - "Display": "Wear of cartilage of joint caused by hemiarthroplasty (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "737057000", - "Display": "Osteoarthritis of joint of left ankle and/or foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "737607009", - "Display": "Infrapatellar bursitis of left knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "737608004", - "Display": "Infrapatellar bursitis of right knee (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73877009", - "Display": "Chronic tophaceous gout (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74391003", - "Display": "Pauciarticular juvenile rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74885006", - "Display": "Interphalangeal osteoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75468006", - "Display": "Crystal arthropathy of ankle AND/OR foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75822003", - "Display": "Acute polyarticular juvenile rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7607008", - "Display": "Pericarditis co-occurrent with extraarticular rheumatoid arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "771333006", - "Display": "Immune dysregulation" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77323000", - "Display": "Fibular collateral ligament bursitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "773732005", - "Display": "Interstitial granulomatous dermatitis with arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77547008", - "Display": "Degeneration of intervertebral disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77888002", - "Display": "Climacteric arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77994009", - "Display": "Primary localized osteoarthrosis of pelvic region (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "781206002", - "Display": "Rheumatoid arthritis of joint of spine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "784332006", - "Display": "Spondyloarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "784545009", - "Display": "Synovitis of ankle joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "784546005", - "Display": "Synovitis of joint of foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "785808002", - "Display": "Aneurysm osteoarthritis syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "786077003", - "Display": "Ankylosing spondylitis co-occurrent with anterior uveitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78675000", - "Display": "Stickler syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789000004", - "Display": "Osteoarthritis of hip due to and following trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789001000", - "Display": "Osteoarthritis of knee due to and following trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "789002007", - "Display": "Osteoarthritis of wrist and hand due to and following trauma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79721000119102", - "Display": "Pyogenic bacterial arthritis of patella (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80574002", - "Display": "Opera glass deformity of hands (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81077008", - "Display": "Acute rheumatic arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8161000119106", - "Display": "Arthritis co-occurrent and due to Crohn's disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "818950005", - "Display": "Blau syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82300000", - "Display": "Degenerative joint disease of ankle AND/OR foot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83831000119100", - "Display": "Pyogenic bacterial arthritis of elbow (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "838360003", - "Display": "Arthritis caused by Mycobacterium leprae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83841000119109", - "Display": "Pyogenic bacterial arthritis of hip (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84241008", - "Display": "Lipoid dermatoarthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86219005", - "Display": "Uveitis-rheumatoid arthritis syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86261000119104", - "Display": "Spondylosis due to another disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86787000", - "Display": "Chondrocalcinosis due to calcium hydroxyapatite crystals (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86901000119106", - "Display": "Villous arthropathy of multiple joints (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870272002", - "Display": "Reactive arthropathy following infection caused by Mycobacterium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870274001", - "Display": "Postinfective arthropathy following infection caused by Mycobacterium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870281008", - "Display": "Spondyloarthritis caused by parasite (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8847002", - "Display": "Spondylosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89764009", - "Display": "Mumps arthritis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89807005", - "Display": "Juvenile osteochondrosis of head of metacarpals (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90448008", - "Display": "Ossification of posterior longitudinal ligament (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90860001", - "Display": "Localized osteoarthrosis uncertain if primary OR secondary (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91240008", - "Display": "Degeneration of thoracolumbar intervertebral disc (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91944005", - "Display": "Arthritis of temporomandibular joint (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9350004", - "Display": "Arthritis due to inflammatory bowel disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9467007", - "Display": "Meningococcal arthropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9631008", - "Display": "Ankylosing spondylitis (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A01.04", - "Display": "Typhoid arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A02.23", - "Display": "Salmonella arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A18.02", - "Display": "Tuberculous arthritis of other joints" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A39.83", - "Display": "Meningococcal arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A39.84", - "Display": "Postmeningococcal arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A54.42", - "Display": "Gonococcal arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A69.23", - "Display": "Arthritis due to Lyme disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B06.82", - "Display": "Rubella arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B26.85", - "Display": "Mumps arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B42.82", - "Display": "Sporotrichosis arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E79.0", - "Display": "Hyperuricemia without signs of inflammatory arthritis and tophaceous disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G98.0", - "Display": "Neurogenic arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L40.5", - "Display": "Arthropathic psoriasis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L40.50", - "Display": "Arthropathic psoriasis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L40.51", - "Display": "Distal interphalangeal psoriatic arthropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L40.52", - "Display": "Psoriatic arthritis mutilans" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L40.53", - "Display": "Psoriatic spondylitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L40.54", - "Display": "Psoriatic juvenile arthropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L40.59", - "Display": "Other psoriatic arthropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M00", - "Display": "Pyogenic arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M05", - "Display": "Rheumatoid arthritis with rheumatoid factor" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M06", - "Display": "Other rheumatoid arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M08", - "Display": "Juvenile arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M13", - "Display": "Other arthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M15", - "Display": "Polyosteoarthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M16", - "Display": "Osteoarthritis of hip" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M17", - "Display": "Osteoarthritis of knee" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M18", - "Display": "Osteoarthritis of first carpometacarpal joint" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M19", - "Display": "Other and unspecified osteoarthritis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M32.1", - "Display": "Systemic lupus erythematosus with organ or system involvement" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M32.10", - "Display": "Systemic lupus erythematosus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M32.11", - "Display": "Endocarditis in systemic lupus erythematosus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M32.12", - "Display": "Pericarditis in systemic lupus erythematosus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M32.13", - "Display": "Lung involvement in systemic lupus erythematosus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M32.14", - "Display": "Glomerular disease in systemic lupus erythematosus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M32.15", - "Display": "Tubulo-interstitial nephropathy in systemic lupus erythematosus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "M32.19", - "Display": "Other organ or system involvement in systemic lupus erythematosus" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.84.json b/build/module/resources/2.16.840.1.113762.1.4.1222.84.json deleted file mode 100644 index fa2b68c..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.84.json +++ /dev/null @@ -1,92 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "161807003", - "Display": "History of severe pre-eclampsia (situation)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "198983002", - "Display": "Severe pre-eclampsia - delivered (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "198984008", - "Display": "Severe pre-eclampsia - delivered with postnatal complication (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "198985009", - "Display": "Severe pre-eclampsia - not delivered (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "198986005", - "Display": "Severe pre-eclampsia with postnatal complication (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398254007", - "Display": "Pre-eclampsia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41114007", - "Display": "Mild pre-eclampsia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46764007", - "Display": "Severe pre-eclampsia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67359005", - "Display": "Pre-eclampsia added to pre-existing hypertension (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "765182005", - "Display": "Pre-eclampsia in puerperium (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O11", - "Display": "Pre-existing hypertension with pre-eclampsia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O14", - "Display": "Pre-eclampsia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O14.0", - "Display": "Mild to moderate pre-eclampsia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O14.1", - "Display": "Severe pre-eclampsia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O14.9", - "Display": "Unspecified pre-eclampsia" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.85.json b/build/module/resources/2.16.840.1.113762.1.4.1222.85.json deleted file mode 100644 index 50d9ac3..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.85.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190920002", - "Display": "Hyperuricemia without signs of inflammatory arthritis and tophaceous disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35885006", - "Display": "Hyperuricemia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721840000", - "Display": "Hyperuricemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E79.0", - "Display": "Hyperuricemia without signs of inflammatory arthritis and tophaceous disease" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.90.json b/build/module/resources/2.16.840.1.113762.1.4.1222.90.json deleted file mode 100644 index 5976729..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.90.json +++ /dev/null @@ -1,32 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34713006", - "Display": "Vitamin D deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "386070008", - "Display": "Deficiency of vitamin D2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "386072000", - "Display": "Deficiency of vitamin D3 (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E55", - "Display": "Vitamin D deficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E55.9", - "Display": "Vitamin D deficiency" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.93.json b/build/module/resources/2.16.840.1.113762.1.4.1222.93.json deleted file mode 100644 index 5ffbb49..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.93.json +++ /dev/null @@ -1,74 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190859005", - "Display": "Hypophosphatasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20756002", - "Display": "Adult hypophosphatasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30174008", - "Display": "Childhood hypophosphatasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "360792001", - "Display": "Deficiency of alkaline phosphatase (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55236002", - "Display": "Infantile hypophosphatasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "708672004", - "Display": "Odontohypophosphatasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "709556009", - "Display": "Periodontitis co-occurrent with hypophosphatasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721183009", - "Display": "Low alkaline phosphatase due to chronic kidney disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85487008", - "Display": "Renal phosphaturia (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E83.3", - "Display": "Disorders of phosphorus metabolism and phosphatases" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E83.30", - "Display": "Disorder of phosphorus metabolism" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "R74.8", - "Display": "Abnormal levels of other serum enzymes" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.96.json b/build/module/resources/2.16.840.1.113762.1.4.1222.96.json deleted file mode 100644 index 5655c9c..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.96.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "403733004", - "Display": "Hemodialysis-associated pruritus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "707151000", - "Display": "Uremic pruritus (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L29.8", - "Display": "Other pruritus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "L29.9", - "Display": "Pruritus" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113762.1.4.1222.97.json b/build/module/resources/2.16.840.1.113762.1.4.1222.97.json deleted file mode 100644 index c74a200..0000000 --- a/build/module/resources/2.16.840.1.113762.1.4.1222.97.json +++ /dev/null @@ -1,164 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "162204000", - "Display": "Late insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191997003", - "Display": "Persistent insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "192454004", - "Display": "Nonorganic insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "24121004", - "Display": "Insomnia disorder related to another mental disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "27971000119105", - "Display": "Insomnia co-occurrent and due to medical condition (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3972004", - "Display": "Primary insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "401236004", - "Display": "Early morning waking (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41975002", - "Display": "Insomnia with sleep apnea (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425832009", - "Display": "Psychophysiologic insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "436001000124105", - "Display": "Insomnia due to anxiety and fear (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "472819006", - "Display": "Adjustment insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54230003", - "Display": "Mixed insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59050008", - "Display": "Initial insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67062000", - "Display": "Terminal insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67233009", - "Display": "Middle insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724748004", - "Display": "Chronic insomnia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81608000", - "Display": "Insomnia disorder related to known organic factor (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88982005", - "Display": "Rebound insomnia (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F51.01", - "Display": "Primary insomnia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F51.02", - "Display": "Adjustment insomnia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F51.03", - "Display": "Paradoxical insomnia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F51.04", - "Display": "Psychophysiologic insomnia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F51.05", - "Display": "Insomnia due to other mental disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F51.09", - "Display": "Other insomnia not due to a substance or known physiological condition" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G47.00", - "Display": "Insomnia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G47.01", - "Display": "Insomnia due to medical condition" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "G47.09", - "Display": "Other insomnia" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.117.1.7.1.215.json b/build/module/resources/2.16.840.1.113883.3.117.1.7.1.215.json deleted file mode 100644 index fee0751..0000000 --- a/build/module/resources/2.16.840.1.113883.3.117.1.7.1.215.json +++ /dev/null @@ -1,116 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "13457-7", - "Display": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "18261-8", - "Display": "Cholesterol in LDL [Mass/volume] in Serum or Plasma ultracentrifugate" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "18262-6", - "Display": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by Direct assay" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "2089-1", - "Display": "Cholesterol in LDL [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "43394-6", - "Display": "Cholesterol in LDL acylated [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "49132-4", - "Display": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by Electrophoresis" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "50193-2", - "Display": "Cholesterol in LDL.narrow density [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "55440-2", - "Display": "Cholesterol.in LDL (real) [Mass/volume] in Serum or Plasma by VAP" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "86911-5", - "Display": "Cholesterol in LDL goal [Mass/volume] Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "90364-1", - "Display": "Cholesterol.in LDL.small dense [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "91105-7", - "Display": "Cholesterol in LDL 1 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "91106-5", - "Display": "Cholesterol in LDL 2 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "91107-3", - "Display": "Cholesterol in LDL 3 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "91108-1", - "Display": "Cholesterol in LDL 4 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "91109-9", - "Display": "Cholesterol in LDL 5 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "91110-7", - "Display": "Cholesterol in LDL 6 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "91111-5", - "Display": "Cholesterol in LDL 7 [Mass/volume] in Serum or Plasma" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "96259-7", - "Display": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by Calculated by Martin-Hopkins" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "96597-0", - "Display": "Cholesterol in LDL [Mass/volume] in DBS by Direct assay" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.464.1003.103.12.1020.json b/build/module/resources/2.16.840.1.113883.3.464.1003.103.12.1020.json deleted file mode 100644 index 187c3ba..0000000 --- a/build/module/resources/2.16.840.1.113883.3.464.1003.103.12.1020.json +++ /dev/null @@ -1,968 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "102781000119107", - "Display": "Sensory neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "104941000119109", - "Display": "Ischemia of retina due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "109171000119104", - "Display": "Retinal edema due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "138881000119106", - "Display": "Mild nonproliferative retinopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "138891000119109", - "Display": "Moderate nonproliferative retinopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "138901000119108", - "Display": "Severe nonproliferative retinopathy due to diabetes mellitus type 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190330002", - "Display": "Hyperosmolar coma due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190368000", - "Display": "Type I diabetes mellitus with ulcer (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190372001", - "Display": "Type I diabetes mellitus maturity onset (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199229001", - "Display": "Pre-existing type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23045005", - "Display": "Insulin dependent diabetes mellitus type IA (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.01", - "Display": "Diabetes mellitus without mention of complication" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.03", - "Display": "Diabetes mellitus without mention of complication" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.11", - "Display": "Diabetes with ketoacidosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.13", - "Display": "Diabetes with ketoacidosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.21", - "Display": "Diabetes with hyperosmolarity" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.23", - "Display": "Diabetes with hyperosmolarity" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.31", - "Display": "Diabetes with other coma" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.33", - "Display": "Diabetes with other coma" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.41", - "Display": "Diabetes with renal manifestations" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.43", - "Display": "Diabetes with renal manifestations" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.51", - "Display": "Diabetes with ophthalmic manifestations" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.53", - "Display": "Diabetes with ophthalmic manifestations" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.61", - "Display": "Diabetes with neurological manifestations" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.63", - "Display": "Diabetes with neurological manifestations" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.71", - "Display": "Diabetes with peripheral circulatory disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.73", - "Display": "Diabetes with peripheral circulatory disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.81", - "Display": "Diabetes with other specified manifestations" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.83", - "Display": "Diabetes with other specified manifestations" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.91", - "Display": "Diabetes with unspecified complication" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "250.93", - "Display": "Diabetes with unspecified complication" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28032008", - "Display": "Insulin dependent diabetes mellitus type IB (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31211000119101", - "Display": "Peripheral angiopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31321000119102", - "Display": "Diabetes mellitus type 1 without retinopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313435000", - "Display": "Type I diabetes mellitus without complication (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314893005", - "Display": "Arthropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368521000119107", - "Display": "Disorder of nerve co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420486006", - "Display": "Exudative maculopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420789003", - "Display": "Retinopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420918009", - "Display": "Mononeuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421075007", - "Display": "Ketoacidotic coma due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421365002", - "Display": "Peripheral circulatory disorder due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421437000", - "Display": "Hypoglycemic coma due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421468001", - "Display": "Disorder of nervous system due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421893009", - "Display": "Renal disorder due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427571000", - "Display": "Lumbosacral radiculoplexus neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46635009", - "Display": "Diabetes mellitus type 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "609562003", - "Display": "Maturity onset diabetes of the young" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "609564002", - "Display": "Pre-existing type 1 diabetes mellitus in pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "609566000", - "Display": "Pregnancy and type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60961000119107", - "Display": "Nonproliferative diabetic retinopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60971000119101", - "Display": "Proliferative retinopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60991000119100", - "Display": "Blindness due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "691000119103", - "Display": "Erectile dysfunction due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712882000", - "Display": "Autonomic neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713702000", - "Display": "Gastroparesis due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713705003", - "Display": "Polyneuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71721000119101", - "Display": "Nephrotic syndrome due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71791000119104", - "Display": "Peripheral neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "739681000", - "Display": "Disorder of eye due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "770098001", - "Display": "Cranial nerve palsy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82571000119107", - "Display": "Traction detachment of retina due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82581000119105", - "Display": "Rubeosis iridis due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.10", - "Display": "Type 1 diabetes mellitus with ketoacidosis without coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.11", - "Display": "Type 1 diabetes mellitus with ketoacidosis with coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.21", - "Display": "Type 1 diabetes mellitus with diabetic nephropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.22", - "Display": "Type 1 diabetes mellitus with diabetic chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.29", - "Display": "Type 1 diabetes mellitus with other diabetic kidney complication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.311", - "Display": "Type 1 diabetes mellitus with unspecified diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.319", - "Display": "Type 1 diabetes mellitus with unspecified diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.321", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3211", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3212", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3213", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3219", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.329", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3291", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3292", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3293", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3299", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.331", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3311", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3312", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3313", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3319", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.339", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3391", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3392", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3393", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3399", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.341", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3411", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3412", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3413", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3419", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.349", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3491", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3492", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3493", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3499", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.351", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3511", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3512", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3513", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3519", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3521", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3522", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3523", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3529", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3531", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3532", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3533", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3539", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3541", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3542", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3543", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3549", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3551", - "Display": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3552", - "Display": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3553", - "Display": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3559", - "Display": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.359", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3591", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3592", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3593", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3599", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.36", - "Display": "Type 1 diabetes mellitus with diabetic cataract" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.37X1", - "Display": "Type 1 diabetes mellitus with diabetic macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.37X2", - "Display": "Type 1 diabetes mellitus with diabetic macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.37X3", - "Display": "Type 1 diabetes mellitus with diabetic macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.37X9", - "Display": "Type 1 diabetes mellitus with diabetic macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.39", - "Display": "Type 1 diabetes mellitus with other diabetic ophthalmic complication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.40", - "Display": "Type 1 diabetes mellitus with diabetic neuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.41", - "Display": "Type 1 diabetes mellitus with diabetic mononeuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.42", - "Display": "Type 1 diabetes mellitus with diabetic polyneuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.43", - "Display": "Type 1 diabetes mellitus with diabetic autonomic (poly)neuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.44", - "Display": "Type 1 diabetes mellitus with diabetic amyotrophy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.49", - "Display": "Type 1 diabetes mellitus with other diabetic neurological complication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.51", - "Display": "Type 1 diabetes mellitus with diabetic peripheral angiopathy without gangrene" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.52", - "Display": "Type 1 diabetes mellitus with diabetic peripheral angiopathy with gangrene" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.59", - "Display": "Type 1 diabetes mellitus with other circulatory complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.610", - "Display": "Type 1 diabetes mellitus with diabetic neuropathic arthropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.618", - "Display": "Type 1 diabetes mellitus with other diabetic arthropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.620", - "Display": "Type 1 diabetes mellitus with diabetic dermatitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.621", - "Display": "Type 1 diabetes mellitus with foot ulcer" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.622", - "Display": "Type 1 diabetes mellitus with other skin ulcer" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.628", - "Display": "Type 1 diabetes mellitus with other skin complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.630", - "Display": "Type 1 diabetes mellitus with periodontal disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.638", - "Display": "Type 1 diabetes mellitus with other oral complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.641", - "Display": "Type 1 diabetes mellitus with hypoglycemia with coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.649", - "Display": "Type 1 diabetes mellitus with hypoglycemia without coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.65", - "Display": "Type 1 diabetes mellitus with hyperglycemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.69", - "Display": "Type 1 diabetes mellitus with other specified complication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.8", - "Display": "Type 1 diabetes mellitus with unspecified complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.9", - "Display": "Type 1 diabetes mellitus without complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.011", - "Display": "Pre-existing type 1 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.012", - "Display": "Pre-existing type 1 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.013", - "Display": "Pre-existing type 1 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.019", - "Display": "Pre-existing type 1 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.02", - "Display": "Pre-existing type 1 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.03", - "Display": "Pre-existing type 1 diabetes mellitus" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.464.1003.103.12.1021.json b/build/module/resources/2.16.840.1.113883.3.464.1003.103.12.1021.json deleted file mode 100644 index 008875b..0000000 --- a/build/module/resources/2.16.840.1.113883.3.464.1003.103.12.1021.json +++ /dev/null @@ -1,878 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "104961000119108", - "Display": "Ischemia of retina due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "110181000119105", - "Display": "Peripheral sensory neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "138911000119106", - "Display": "Mild nonproliferative retinopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "138921000119104", - "Display": "Moderate nonproliferative retinopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "138941000119105", - "Display": "Severe nonproliferative retinopathy due to diabetes mellitus type 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1481000119100", - "Display": "Diabetes mellitus type 2 without retinopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1501000119109", - "Display": "Proliferative retinopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1511000119107", - "Display": "Peripheral neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1551000119108", - "Display": "Nonproliferative retinopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190331003", - "Display": "Hyperosmolar coma due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "190389009", - "Display": "Type II diabetes mellitus with ulcer (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "199230006", - "Display": "Pre-existing type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237599002", - "Display": "Insulin treated type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237604008", - "Display": "Maturity onset diabetes of the young" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28331000119107", - "Display": "Retinal edema due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "313436004", - "Display": "Type II diabetes mellitus without complication (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314902007", - "Display": "Peripheral angiopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314903002", - "Display": "Arthropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "359642000", - "Display": "Diabetes mellitus type 2 in nonobese (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368101000119109", - "Display": "Periodontal disease co-occurrent and due to diabetes mellitus type 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368581000119106", - "Display": "Neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41911000119107", - "Display": "Glaucoma due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420279001", - "Display": "Renal disorder due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420436000", - "Display": "Mononeuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421326000", - "Display": "Disorder of nervous system due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421779007", - "Display": "Exudative maculopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421847006", - "Display": "Ketoacidotic coma due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422034002", - "Display": "Retinopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422099009", - "Display": "Disorder of eye due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422166005", - "Display": "Peripheral circulatory disorder due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427027005", - "Display": "Lumbosacral radiculoplexus neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428007007", - "Display": "Erectile dysfunction due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44054006", - "Display": "Diabetes mellitus type 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60951000119105", - "Display": "Blindness due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "609567009", - "Display": "Pre-existing type 2 diabetes mellitus in pregnancy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "712883005", - "Display": "Autonomic neuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713703005", - "Display": "Gastroparesis due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713706002", - "Display": "Polyneuropathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71441000119104", - "Display": "Nephrotic syndrome due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719216001", - "Display": "Hypoglycemic coma due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81531005", - "Display": "Diabetes mellitus type 2 in obese (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82541000119100", - "Display": "Traction detachment of retina due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82551000119103", - "Display": "Rubeosis iridis due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87921000119104", - "Display": "Cranial nerve palsy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "97331000119101", - "Display": "Macular edema and retinopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9859006", - "Display": "Acanthosis nigricans due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.00", - "Display": "Type 2 diabetes mellitus with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.01", - "Display": "Type 2 diabetes mellitus with hyperosmolarity with coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.10", - "Display": "Type 2 diabetes mellitus with ketoacidosis without coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.11", - "Display": "Type 2 diabetes mellitus with ketoacidosis with coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.21", - "Display": "Type 2 diabetes mellitus with diabetic nephropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.22", - "Display": "Type 2 diabetes mellitus with diabetic chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.29", - "Display": "Type 2 diabetes mellitus with other diabetic kidney complication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.311", - "Display": "Type 2 diabetes mellitus with unspecified diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.319", - "Display": "Type 2 diabetes mellitus with unspecified diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.321", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3211", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3212", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3213", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3219", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.329", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3291", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3292", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3293", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3299", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.331", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3311", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3312", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3313", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3319", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.339", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3391", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3392", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3393", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3399", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.341", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3411", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3412", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3413", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3419", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.349", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3491", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3492", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3493", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3499", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.351", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3511", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3512", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3513", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3519", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3521", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3522", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3523", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3529", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3531", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3532", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3533", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3539", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3541", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3542", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3543", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3549", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3551", - "Display": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3552", - "Display": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3553", - "Display": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3559", - "Display": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.359", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3591", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3592", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3593", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3599", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.36", - "Display": "Type 2 diabetes mellitus with diabetic cataract" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.37X1", - "Display": "Type 2 diabetes mellitus with diabetic macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.37X2", - "Display": "Type 2 diabetes mellitus with diabetic macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.37X3", - "Display": "Type 2 diabetes mellitus with diabetic macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.37X9", - "Display": "Type 2 diabetes mellitus with diabetic macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.39", - "Display": "Type 2 diabetes mellitus with other diabetic ophthalmic complication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.40", - "Display": "Type 2 diabetes mellitus with diabetic neuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.41", - "Display": "Type 2 diabetes mellitus with diabetic mononeuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.42", - "Display": "Type 2 diabetes mellitus with diabetic polyneuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.43", - "Display": "Type 2 diabetes mellitus with diabetic autonomic (poly)neuropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.44", - "Display": "Type 2 diabetes mellitus with diabetic amyotrophy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.49", - "Display": "Type 2 diabetes mellitus with other diabetic neurological complication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.51", - "Display": "Type 2 diabetes mellitus with diabetic peripheral angiopathy without gangrene" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.52", - "Display": "Type 2 diabetes mellitus with diabetic peripheral angiopathy with gangrene" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.59", - "Display": "Type 2 diabetes mellitus with other circulatory complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.610", - "Display": "Type 2 diabetes mellitus with diabetic neuropathic arthropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.618", - "Display": "Type 2 diabetes mellitus with other diabetic arthropathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.620", - "Display": "Type 2 diabetes mellitus with diabetic dermatitis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.621", - "Display": "Type 2 diabetes mellitus with foot ulcer" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.622", - "Display": "Type 2 diabetes mellitus with other skin ulcer" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.628", - "Display": "Type 2 diabetes mellitus with other skin complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.630", - "Display": "Type 2 diabetes mellitus with periodontal disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.638", - "Display": "Type 2 diabetes mellitus with other oral complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.641", - "Display": "Type 2 diabetes mellitus with hypoglycemia with coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.649", - "Display": "Type 2 diabetes mellitus with hypoglycemia without coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.65", - "Display": "Type 2 diabetes mellitus with hyperglycemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.69", - "Display": "Type 2 diabetes mellitus with other specified complication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.8", - "Display": "Type 2 diabetes mellitus with unspecified complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.9", - "Display": "Type 2 diabetes mellitus without complications" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.111", - "Display": "Pre-existing type 2 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.112", - "Display": "Pre-existing type 2 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.113", - "Display": "Pre-existing type 2 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.119", - "Display": "Pre-existing type 2 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.12", - "Display": "Pre-existing type 2 diabetes mellitus" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "O24.13", - "Display": "Pre-existing type 2 diabetes mellitus" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.464.1003.104.12.1017.json b/build/module/resources/2.16.840.1.113883.3.464.1003.104.12.1017.json deleted file mode 100644 index 7cd4ed2..0000000 --- a/build/module/resources/2.16.840.1.113883.3.464.1003.104.12.1017.json +++ /dev/null @@ -1,4388 +0,0 @@ -[ - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "093.20", - "Display": "Syphilitic endocarditis of valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "093.21", - "Display": "Syphilitic endocarditis of mitral valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "093.22", - "Display": "Syphilitic endocarditis of aortic valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "093.23", - "Display": "Syphilitic endocarditis of tricuspid valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "093.24", - "Display": "Syphilitic endocarditis of pulmonary valve" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10273003", - "Display": "Acute infarction of papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111287006", - "Display": "Tricuspid valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1131009", - "Display": "Congenital valvular insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11851006", - "Display": "Mitral valve disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12023003", - "Display": "Rheumatic disease of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123643003", - "Display": "Acquired atresia of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123656005", - "Display": "Congenital atresia of cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123657001", - "Display": "Congenital stenosis of cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123658006", - "Display": "Congenital cleft of cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123801008", - "Display": "Heart valve stenosis and regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "128599005", - "Display": "Structural disorder of heart (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13689005", - "Display": "Congenital anomaly of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15096009", - "Display": "Congenital insufficiency of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16063004", - "Display": "Rheumatic disease of heart valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16440002", - "Display": "Rheumatic disease of mitral AND aortic valves (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16855001", - "Display": "Rheumatic tricuspid valve failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17394001", - "Display": "Ebstein's anomaly with atrial septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17759006", - "Display": "Rheumatic aortic stenosis with regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18192007", - "Display": "Acute rheumatic endocarditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18546004", - "Display": "Congenital stenosis of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18687009", - "Display": "Rheumatic disease of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186875004", - "Display": "Syphilitic endocarditis of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186877007", - "Display": "Syphilitic endocarditis of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186878002", - "Display": "Syphilitic endocarditis of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19036004", - "Display": "Rheumatic heart valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194726006", - "Display": "Mitral stenosis with insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194727002", - "Display": "Non-rheumatic mitral valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194732001", - "Display": "Diseases of mitral and aortic valves (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194733006", - "Display": "Mitral and aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194734000", - "Display": "Mitral stenosis and aortic insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194735004", - "Display": "Mitral insufficiency and aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194736003", - "Display": "Mitral and aortic incompetence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194741006", - "Display": "Rheumatic tricuspid stenosis and insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194866002", - "Display": "Rupture of chordae tendinae due to and following acute myocardial infarction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194867006", - "Display": "Rupture of papillary muscle as current complication following acute myocardial infarction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194978002", - "Display": "Non-rheumatic mitral regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194983005", - "Display": "Aortic incompetence" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194984004", - "Display": "Aortic stenosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194987006", - "Display": "Aortic valve stenosis with insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194989009", - "Display": "Tricuspid valve disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194990000", - "Display": "Tricuspid incompetence" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194991001", - "Display": "Tricuspid stenosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194992008", - "Display": "Non-rheumatic tricuspid valve stenosis with insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194995005", - "Display": "Pulmonary incompetence" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194997002", - "Display": "Pulmonary stenosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195000004", - "Display": "Pulmonary valve stenosis with insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195002007", - "Display": "Multiple valve disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195003002", - "Display": "Disorders of both aortic and tricuspid valves (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195004008", - "Display": "Disorders of both mitral and tricuspid valves (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195005009", - "Display": "Combined disorders of mitral" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195141007", - "Display": "Papillary muscle atrophy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195142000", - "Display": "Papillary muscle degeneration (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19833008", - "Display": "Nodular calcific aortic valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204306007", - "Display": "Pentalogy of Fallot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204319006", - "Display": "Lutembacher's syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204339005", - "Display": "Congenital pulmonary valve abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204342004", - "Display": "Congenital atresia of the pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204343009", - "Display": "Hypoplasia of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204345002", - "Display": "Congenital fusion of pulmonic cusps (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204346001", - "Display": "Congenital fusion of pulmonary valve segment (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204351007", - "Display": "Fallot's trilogy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204352000", - "Display": "Supernumerary pulmonary valve cusps (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204354004", - "Display": "Congenital tricuspid atresia and stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204357006", - "Display": "Ebstein's anomaly of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204362007", - "Display": "Parachute malformation of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204363002", - "Display": "Supernumerary cusps of the mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "204402008", - "Display": "Fusion of mitral valve cusps (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20721001", - "Display": "Tricuspid valve disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "213036006", - "Display": "Mechanical complication of heart valve prosthesis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "21379009", - "Display": "Ruptured sinus of Valsalva (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23063005", - "Display": "Congenital atresia of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233848004", - "Display": "Disorder of endocardium and heart valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233849007", - "Display": "Syphilitic valve disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233853009", - "Display": "Prosthetic valve endocarditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233856001", - "Display": "Mitral restenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233858000", - "Display": "Familial mitral valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233860003", - "Display": "Post-infarction mitral papillary muscle rupture (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233861004", - "Display": "Functional mitral regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233862006", - "Display": "Calcific aortic stenosis - bicuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233863001", - "Display": "Senile aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233864007", - "Display": "Aortic regurgitation due to cystic medial necrosis of aorta (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233865008", - "Display": "Functional tricuspid regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233866009", - "Display": "Functional pulmonary regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234181008", - "Display": "Prosthetic cardiac valve dehiscence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234182001", - "Display": "Prosthetic cardiac valve component embolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234183006", - "Display": "Prosthetic cardiac valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234184000", - "Display": "Prosthetic cardiac paravalvular leak (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234185004", - "Display": "Prosthetic cardiac valve thrombosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234186003", - "Display": "Prosthetic cardiac valve obstruction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234187007", - "Display": "Prosthetic cardiac valve vegetation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234188002", - "Display": "Prosthetic cardiac valve calcification (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "234189005", - "Display": "Prosthetic cardiac valve displacement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248675005", - "Display": "Aortic ejection murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248678007", - "Display": "Mitral late systolic murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248679004", - "Display": "Mitral pansystolic murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248680001", - "Display": "Tricuspid inspiratory pansystolic murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248682009", - "Display": "Aortic diastolic murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248684005", - "Display": "Mid-diastolic mitral murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248685006", - "Display": "Mid-diastolic tricuspid murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248686007", - "Display": "Diastolic tricuspid flow murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248687003", - "Display": "Presystolic mitral murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248688008", - "Display": "Presystolic tricuspid murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248691008", - "Display": "Early opening snap (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250973007", - "Display": "Aortic stenosis with doming (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250974001", - "Display": "Prosthetic aortic valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250975000", - "Display": "Paraprosthetic aortic regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250976004", - "Display": "Aortic cusp regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250978003", - "Display": "Aortic valve calcification (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250979006", - "Display": "Aortic valve fibrosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250982001", - "Display": "Commissural fusion of aortic cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250983006", - "Display": "Bicuspid doming of aortic cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250984000", - "Display": "Torn aortic cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250985004", - "Display": "Perforated aortic cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250987007", - "Display": "Prosthetic mitral valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250988002", - "Display": "Paraprosthetic mitral regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250989005", - "Display": "Mitral cusp prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250990001", - "Display": "Ischemic mitral valve dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250993004", - "Display": "Circular mitral valve orifice (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250994005", - "Display": "Slit-like mitral valve orifice (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250995006", - "Display": "Irregular mitral valve orifice (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250996007", - "Display": "Complex mitral valve orifice (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250997003", - "Display": "Multiple mitral valve orifice (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "250999000", - "Display": "Rheumatic mitral valve leaflet changes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251001002", - "Display": "Mitral sub-valve apparatus calcification (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251002009", - "Display": "Mitral valve annular calcification (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251003004", - "Display": "Torn mitral leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251004005", - "Display": "Masses on mitral apparatus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251006007", - "Display": "Pulmonary valve stenosis with doming (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251007003", - "Display": "Pulmonary valve stenosis with narrow jet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251036003", - "Display": "Aortic root dilatation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "251038002", - "Display": "Aortic root congenital abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253374008", - "Display": "Congenital abnormality of atrioventricular valves in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253375009", - "Display": "Tricuspid leaflet dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253376005", - "Display": "Tricuspid annulus hypoplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253377001", - "Display": "Dilatation of tricuspid annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253378006", - "Display": "Overriding tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253379003", - "Display": "Straddling tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253380000", - "Display": "Tricuspid leaflet abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253381001", - "Display": "Absent tricuspid leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253382008", - "Display": "Double orifice of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253383003", - "Display": "Tricuspid valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253384009", - "Display": "Accessory tissue on tricuspid leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253385005", - "Display": "Abnormality of tricuspid chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253386006", - "Display": "Arcade abnormality of tricuspid chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253387002", - "Display": "Tricuspid chordae tendinae too short (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253388007", - "Display": "Tricuspid chordae tendinae too long (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253389004", - "Display": "Tricuspid chordae tendinae to outlet septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253390008", - "Display": "Tricuspid papillary muscle abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253391007", - "Display": "Parachute malformation of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253392000", - "Display": "Absent tricuspid papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253393005", - "Display": "Fused tricuspid papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253394004", - "Display": "Hypoplastic tricuspid papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253395003", - "Display": "Mitral valve dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253396002", - "Display": "Mitral leaflet dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253397006", - "Display": "Overriding mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253398001", - "Display": "Dilatation of mitral annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253399009", - "Display": "Straddling mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253400002", - "Display": "Mitral leaflet abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253401003", - "Display": "Absent mitral leaflets (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253402005", - "Display": "Double orifice of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253403000", - "Display": "Ebstein-like downward displacement of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253404006", - "Display": "Anterior leaflet of mitral valve attached to septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253405007", - "Display": "Accessory tissue on mitral leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253406008", - "Display": "Abnormality of mitral chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253407004", - "Display": "Arcade abnormality of mitral chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253408009", - "Display": "Mitral chordae tendinae too short (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253409001", - "Display": "Mitral chordae tendinae too long (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253410006", - "Display": "Mitral papillary muscle abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253411005", - "Display": "Absent mitral papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253412003", - "Display": "Fused mitral papillary muscles (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253413008", - "Display": "Hypoplastic mitral papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253427003", - "Display": "Abnormality of atrioventricular (non-mitral" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253428008", - "Display": "Abnormality of common atrioventricular valve in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253429000", - "Display": "Atresia of common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253430005", - "Display": "Imperforate common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253431009", - "Display": "Hypoplasia of common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253432002", - "Display": "Dysplasia of common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253433007", - "Display": "Regurgitation of common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253434001", - "Display": "Common atrioventricular valve limited to one ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253435000", - "Display": "Dilatation of common atrioventricular valve annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253436004", - "Display": "Common atrioventricular valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253437008", - "Display": "Common atrioventricular valve leaflet abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253438003", - "Display": "Common atrioventricular valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253439006", - "Display": "True cleft of common atrioventricular valve leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253440008", - "Display": "Accessory tissue on common atrioventricular valve leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253441007", - "Display": "Double orifice of common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253442000", - "Display": "Triple orifice of left ventricular component of common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253443005", - "Display": "Ebstein's anomaly of common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253444004", - "Display": "Abnormality of common atrioventricular valve chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253445003", - "Display": "Common atrioventricular valve chordae too short (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253446002", - "Display": "Common atrioventricular valve chordae too long (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253447006", - "Display": "Common atrioventricular valve chordae to outlet septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253448001", - "Display": "Arcade abnormality of common atrioventricular valve chordae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253449009", - "Display": "Abnormality of common atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253450009", - "Display": "Parachute malformation of common atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253451008", - "Display": "Absent common atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253452001", - "Display": "Fused common atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253453006", - "Display": "Hypoplastic common atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253454000", - "Display": "Abnormality of right atrioventricular valve in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253455004", - "Display": "Right atrioventricular valve atresia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253456003", - "Display": "Imperforate right atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253457007", - "Display": "Right atrioventricular valve dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253458002", - "Display": "Right atrioventricular valve hypoplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253459005", - "Display": "Right atrioventricular valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253460000", - "Display": "Overriding right atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253461001", - "Display": "Dilatation of right atrioventricular valve annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253462008", - "Display": "Right atrioventricular valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253463003", - "Display": "Straddling right atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253464009", - "Display": "Right atrioventricular valve leaflet abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253465005", - "Display": "Absent right atrioventricular valve leaflets (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253467002", - "Display": "Double orifice of right atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253468007", - "Display": "Ebstein's anomaly of right atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253469004", - "Display": "Right atrioventricular valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253470003", - "Display": "True cleft of right atrioventricular valve leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253471004", - "Display": "Accessory tissue on right atrioventricular valve leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253472006", - "Display": "Right atrioventricular valve leaflet dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253473001", - "Display": "Abnormality of right atrioventricular valve chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253474007", - "Display": "Right atrioventricular valve chordae too short (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253475008", - "Display": "Right atrioventricular valve chordae too long (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253476009", - "Display": "Right atrioventricular valve chordae to outlet septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253477000", - "Display": "Arcade abnormality of right atrioventricular valve chordae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253478005", - "Display": "Abnormality of right atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253479002", - "Display": "Parachute malformation of right atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253480004", - "Display": "Absent right atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253481000", - "Display": "Fused right atrioventricular valve papillary muscles (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253482007", - "Display": "Hypoplastic right atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253483002", - "Display": "Abnormality of left atrioventricular valve in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253484008", - "Display": "Left atrioventricular valve atresia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253485009", - "Display": "Imperforate left atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253486005", - "Display": "Left atrioventricular valve dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253487001", - "Display": "Left atrioventricular valve hypoplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253488006", - "Display": "Left atrioventricular valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253489003", - "Display": "Overriding left atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253490007", - "Display": "Dilatation of left atrioventricular valve annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253491006", - "Display": "Left atrioventricular valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253492004", - "Display": "Straddling left atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253493009", - "Display": "Left atrioventricular valve leaflet abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253494003", - "Display": "Absent left atrioventricular valve leaflets (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253495002", - "Display": "Double orifice of left atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253496001", - "Display": "Ebstein's anomaly of left atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253497005", - "Display": "Left atrioventricular valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253498000", - "Display": "True cleft of left atrioventricular valve leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253499008", - "Display": "Accessory tissue on left atrioventricular valve leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253500004", - "Display": "Left atrioventricular valve leaflet dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253501000", - "Display": "Abnormality of left atrioventricular valve chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253502007", - "Display": "Left atrioventricular valve chordae too short (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253503002", - "Display": "Left atrioventricular valve chordae too long (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253504008", - "Display": "Left atrioventricular valve chordae to outlet septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253505009", - "Display": "Arcade abnormality of left atrioventricular valve chordae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253506005", - "Display": "Abnormality of left atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253507001", - "Display": "Parachute malformation of left atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253508006", - "Display": "Absent left atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253509003", - "Display": "Fused left atrioventricular valve papillary muscles (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253510008", - "Display": "Hypoplastic left atrioventricular valve papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253512000", - "Display": "Tetralogy of Fallot with pulmonary stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253513005", - "Display": "Tetralogy of Fallot with pulmonary atresia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253514004", - "Display": "Dextraposition of aorta in Fallot's tetralogy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253515003", - "Display": "Ventricular septal defect in Fallot's tetralogy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253543007", - "Display": "Primary left ventricular endocardial fibroelastosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253562005", - "Display": "Ventricular septal defect with absent outlet septum and overriding truncal valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253578007", - "Display": "Congenital abnormality of arterial valves (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253579004", - "Display": "Truncal valve abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253580001", - "Display": "Truncal valve dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253581002", - "Display": "Truncal valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253582009", - "Display": "Truncal valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253583004", - "Display": "Truncal valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253584005", - "Display": "Accessory tissue on truncal valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253585006", - "Display": "Pulmonary valve cusp hypoplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253586007", - "Display": "Pulmonary valve ring hypoplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253587003", - "Display": "Commissural fusion of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253588008", - "Display": "Pulmonary valve dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253593006", - "Display": "Imperforate pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253595004", - "Display": "Pulmonary valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253596003", - "Display": "Absent pulmonary valve syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253597007", - "Display": "Accessory tissue on pulmonary valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253598002", - "Display": "Unicuspid pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253599005", - "Display": "Bicuspid pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253600008", - "Display": "Quadricuspid pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253601007", - "Display": "Aortic valve ring hypoplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253602000", - "Display": "Commissural fusion of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253603005", - "Display": "Eccentric opening of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253604004", - "Display": "Aortic valve dysplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253606002", - "Display": "Aortic valve cusp abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253607006", - "Display": "Hypoplasia of aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253608001", - "Display": "Accessory tissue on aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253609009", - "Display": "Abnormal number of aortic valve cusps (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253610004", - "Display": "Unicuspid aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253611000", - "Display": "Quadricuspid aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253612007", - "Display": "Aortic valve cusp prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253641003", - "Display": "Localized supravalvar aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253642005", - "Display": "Diffuse supravalvar aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253647004", - "Display": "Sinus of Valsalva abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "253648009", - "Display": "Sinus of Valsalva aneurysm with rupture (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "266250003", - "Display": "Mitral papillary muscle rupture (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "266252006", - "Display": "Mitral papillary muscle dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268185002", - "Display": "Supravalvar aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "27007008", - "Display": "Scarring of papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "270906004", - "Display": "Mitral chordae rupture (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271984008", - "Display": "Disorder of prosthetic cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "274097009", - "Display": "Non-rheumatic heart valve disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "274098004", - "Display": "Rupture of chordae tendineae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276518005", - "Display": "Transient tricuspid regurgitation of newborn (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276790000", - "Display": "Isolated aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276795005", - "Display": "Mitral valve anterior leaflet prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "278480000", - "Display": "Syphilitic endocarditis of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "278928000", - "Display": "Transient mitral regurgitation of newborn (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28284007", - "Display": "Rheumatic heart valve stenosis with insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28656008", - "Display": "Congenital insufficiency of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "286947004", - "Display": "Chronic rheumatic mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "286950001", - "Display": "Chronic rheumatic aortic valve disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29375001", - "Display": "Abnormal number of cusps (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "297197008", - "Display": "Ruptured tricuspid chordae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "297285002", - "Display": "Paraprosthetic pulmonary regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "297286001", - "Display": "Paraprosthetic tricuspid regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29928006", - "Display": "Congenital insufficiency of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301105002", - "Display": "Pulmonary valve lesion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301106001", - "Display": "Pulmonary valve vegetations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301109008", - "Display": "Tricuspid valve lesion (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301110003", - "Display": "Tricuspid valve vegetations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301184001", - "Display": "Aortic valve vegetations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "301185000", - "Display": "Mitral valve vegetations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "302943003", - "Display": "Abnormal number of pulmonary valve cusps (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "308687000", - "Display": "Aortic murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31085000", - "Display": "Rheumatic mitral regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "315615007", - "Display": "Non-rheumatic aortic sclerosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "32615007", - "Display": "Austin Flint murmur (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33700007", - "Display": "Ruptured sinus of Valsalva into right atrium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34126003", - "Display": "Rheumatic pulmonary valve insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35162007", - "Display": "Ruptured sinus of Valsalva into right ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36079008", - "Display": "Double cardiac valve orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36133000", - "Display": "Abnormal position of cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36222008", - "Display": "Carcinoid heart disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36233006", - "Display": "Congenital stenosis of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "368009", - "Display": "Heart valve disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "370141003", - "Display": "Rheumatic mitral AND aortic valve obstruction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371813006", - "Display": "Acute mitral regurgitation from chordal rupture (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371814000", - "Display": "Acute mitral regurgitation from chordal dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371815004", - "Display": "Acute mitral regurgitation from papillary muscle dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371816003", - "Display": "Acute mitral regurgitation from papillary muscle rupture (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373116009", - "Display": "Acute mitral regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373133002", - "Display": "Enlarged aortic root (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373134008", - "Display": "Aneurysm of aortic root (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373135009", - "Display": "Annular abscess of aortic root (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373136005", - "Display": "Heart valve calcification (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "373137001", - "Display": "Immobile heart valve (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38230003", - "Display": "Ruptured sinus of Valsalva into left ventricle (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "391.1", - "Display": "Acute rheumatic endocarditis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "394.0", - "Display": "Mitral stenosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "394.1", - "Display": "Rheumatic mitral insufficiency" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "394.2", - "Display": "Mitral stenosis with insufficiency" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "394.9", - "Display": "Other and unspecified mitral valve diseases" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "395.0", - "Display": "Rheumatic aortic stenosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "395.1", - "Display": "Rheumatic aortic insufficiency" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "395.2", - "Display": "Rheumatic aortic stenosis with insufficiency" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "395.9", - "Display": "Other and unspecified rheumatic aortic diseases" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "396.0", - "Display": "Mitral valve stenosis and aortic valve stenosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "396.1", - "Display": "Mitral valve stenosis and aortic valve insufficiency" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "396.2", - "Display": "Mitral valve insufficiency and aortic valve stenosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "396.3", - "Display": "Mitral valve insufficiency and aortic valve insufficiency" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "396.8", - "Display": "Multiple involvement of mitral and aortic valves" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "396.9", - "Display": "Mitral and aortic valve diseases" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "397.0", - "Display": "Diseases of tricuspid valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "397.1", - "Display": "Rheumatic diseases of pulmonary valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "397.9", - "Display": "Rheumatic diseases of endocardium" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398995000", - "Display": "Cardiac valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399228007", - "Display": "Tetralogy of Fallot with absent pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40023000", - "Display": "Rheumatic mitral valve failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40445007", - "Display": "Heart valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "405550001", - "Display": "Trauma to aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "405551002", - "Display": "Trauma to mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "405552009", - "Display": "Trauma to pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "405553004", - "Display": "Trauma to tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "405554005", - "Display": "Abscess of aortic root (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40964007", - "Display": "Chronic cardiac valvulitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "409712001", - "Display": "Mitral valve prolapse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417081007", - "Display": "Systolic anterior movement of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417094009", - "Display": "Valvular sclerosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417191003", - "Display": "Mitral valve sclerosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42069006", - "Display": "Myxoid transformation of mitral valve (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "424.0", - "Display": "Mitral valve disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "424.1", - "Display": "Aortic valve disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "424.2", - "Display": "Tricuspid valve disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "424.3", - "Display": "Pulmonary valve disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "424.90", - "Display": "Endocarditis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "424.99", - "Display": "Other endocarditis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "425.3", - "Display": "Endocardial fibroelastosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427515002", - "Display": "Critical stenosis of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42770003", - "Display": "Syphilis of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428164004", - "Display": "Mitral valve disorder in pregnancy (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "429.5", - "Display": "Rupture of chordae tendineae" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "429.6", - "Display": "Rupture of papillary muscle" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "429.81", - "Display": "Other disorders of papillary muscle" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429347004", - "Display": "Rheumatic aortic valve sclerosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "430065009", - "Display": "Abscess of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "430402003", - "Display": "Abscess of tricuspid valve caused by bacteria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "430616003", - "Display": "Abscess of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431189009", - "Display": "Abscess of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43121002", - "Display": "Rheumatic heart valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431238002", - "Display": "Abscess of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431261000", - "Display": "Bacterial abscess of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431262007", - "Display": "Bacterial abscess of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43176009", - "Display": "Congenital hypoplasia of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432992007", - "Display": "Bacterial abscess of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4374004", - "Display": "Congenital anomaly of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43873004", - "Display": "Mechanical complication due to heart valve prosthesis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44241007", - "Display": "Heart valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445270008", - "Display": "Aortic orifice left side by side with respect to pulmonary orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445284003", - "Display": "Aortic sinus of Valsalva aneurysm from noncoronary sinus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445285002", - "Display": "Aortic sinus of Valsalva aneurysm from left coronary sinus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445286001", - "Display": "Aortic sinus of Valsalva aneurysm from right coronary sinus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445298006", - "Display": "Aortic orifice anterior with respect to pulmonary orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445330003", - "Display": "Right atrioventricular valve leaflets absent in double inlet ventricle (unguarded orifice) (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445373007", - "Display": "Aortic orifice posterior with respect to pulmonary orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445607003", - "Display": "Aortic orifice posterior left with respect to pulmonary orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445636003", - "Display": "Aortic orifice anterior right with respect to pulmonary orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445650008", - "Display": "Aortic orifice anterior left with respect to pulmonary orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446628002", - "Display": "Tricuspid leaflet gelatinous (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446630000", - "Display": "Tricuspid leaflet noncoapting (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446633003", - "Display": "Tricuspid leaflet thickened (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446670007", - "Display": "Aortic orifice right side by side with respect to pulmonary orifice (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446699002", - "Display": "Tricuspid leaflet deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446781004", - "Display": "Tricuspid leaflet flail (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446786009", - "Display": "Tricuspid leaflet fenestration (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447670001", - "Display": "Ventricular septal defect with anterior malaligned outlet septum with overriding pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447671002", - "Display": "Ventricular septal defect with posterior malaligned outlet septum with overriding aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447672009", - "Display": "Ventricular septal defect with posterior malaligned outlet septum with overriding pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447681003", - "Display": "Continuity between mitral valve and pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447682005", - "Display": "Discontinuity between mitral valve and aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447683000", - "Display": "Discontinuity between mitral valve and pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447695000", - "Display": "Tricuspid truncal valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447696004", - "Display": "Unicommissural unicuspid aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447697008", - "Display": "Unicommissural unicuspid pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447698003", - "Display": "Ventricular septal defect with anterior malaligned outlet septum with overriding aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447774002", - "Display": "Congenital midvalvar ring of mitral leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447779007", - "Display": "Trifoliate left atrioventricular valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447822009", - "Display": "Congenital prolapse of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447829000", - "Display": "Congenital abnormality of tricuspid chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447830005", - "Display": "Congenital abnormality of tricuspid leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447847006", - "Display": "Prolapse of right coronary aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447875008", - "Display": "Congenital mass of mitral leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447915002", - "Display": "Ebstein's anomaly of left sided tricuspid valve with discordant atrioventricular connections (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "447937009", - "Display": "Congenital abnormality of aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448004007", - "Display": "Acommissural unicuspid pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448026008", - "Display": "Left atrioventricular valve bifoliate with fused left sided superior and inferior bridging leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448061002", - "Display": "Shelf-like supravalvar aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448073002", - "Display": "Congenital abnormality of tricuspid papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448074008", - "Display": "Ebstein's anomaly with functional tricuspid stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448085005", - "Display": "Acommissural unicuspid aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448098001", - "Display": "Aneurysm of aortic sinus of Valsalva with protrusion into pulmonary artery (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448099009", - "Display": "Aneurysm of aortic sinus of Valsalva with protrusion into right atrium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448100001", - "Display": "Aneurysm of aortic sinus of Valsalva with protrusion into right ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448102009", - "Display": "Quadricuspid truncal valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448104005", - "Display": "Localized supravalvar aortic stenosis at sinutubular junction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448115000", - "Display": "Aneurysm of aortic sinus of Valsalva with protrusion into left atrium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448116004", - "Display": "Aneurysm of aortic sinus of Valsalva with protrusion into left ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448117008", - "Display": "Aneurysm of aortic sinus of Valsalva with protrusion into pericardial cavity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448161000", - "Display": "Aortic valve overriding ventricular septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448280008", - "Display": "Malalignment of aortic sinus in relation to pulmonary sinus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448328001", - "Display": "Aneurysm of aortic sinus of Valsalva without rupture (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448413002", - "Display": "Pulmonary valve overriding ventricular septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448475002", - "Display": "Absent pulmonary valve syndrome with ventricular septal defect of non Fallot type (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448497000", - "Display": "Congenital deformity of mitral valve annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448528000", - "Display": "Aneurysm of aortic sinus of Valsalva with rupture to pericardial cavity (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448576004", - "Display": "Fenestration of aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448604006", - "Display": "Congenital abnormality of pulmonary valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448618004", - "Display": "Abnormality of mitral valve annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448626007", - "Display": "Gelatinous atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448634001", - "Display": "Absent aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448643005", - "Display": "Abnormality of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448684008", - "Display": "Prolapse of left coronary aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448723007", - "Display": "Aneurysm of aortic sinus of Valsalva with rupture to left atrium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448724001", - "Display": "Aneurysm of aortic sinus of Valsalva with rupture to left ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448729006", - "Display": "Common atrioventricular valve in functionally univentricular heart (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448743001", - "Display": "Abnormality of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448744007", - "Display": "Aneurysm of aortic sinus of Valsalva with rupture to pulmonary artery (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448745008", - "Display": "Aneurysm of aortic sinus of Valsalva with rupture to right atrium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448746009", - "Display": "Aneurysm of aortic sinus of Valsalva with rupture to right ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448777006", - "Display": "Noncoapting atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448780007", - "Display": "Ventricular septal defect with absent outlet septum and overriding truncal valve with extension of membranous septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448790004", - "Display": "Anterior-posterior orientation of bicuspid aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448793002", - "Display": "Bicuspid truncal valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448819009", - "Display": "Right-left orientation of bicuspid aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448820003", - "Display": "Thickened mitral leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448821004", - "Display": "Abnormality of truncal valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448822006", - "Display": "Deficiency of atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448827000", - "Display": "Ventricular septal defect with absent outlet septum and overriding truncal valve with inferior muscular rim (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448828005", - "Display": "Deficiency of mitral leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448836001", - "Display": "Thickened atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448844001", - "Display": "Multiple mitral papillary muscles with hammock valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448903003", - "Display": "Dilatation of annulus of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448905005", - "Display": "Dilatation of aortic sinus of Valsalva (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448946000", - "Display": "Anterior-posterior orientation of bicuspid pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448947009", - "Display": "Congenital abnormality of left atrioventricular valve in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448948004", - "Display": "Overriding ventriculoarterial valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449005003", - "Display": "Absence of mitral chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449008001", - "Display": "Flail atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449011000", - "Display": "Fenestration of atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449029005", - "Display": "Imperforate ventriculoarterial valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449031001", - "Display": "Congenital abnormality of right atrioventricular valve leaflet in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449032008", - "Display": "Congenital abnormality of right atrioventricular valve papillary muscle in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449037002", - "Display": "Truncal valve overriding ventricular septum (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449040002", - "Display": "Hypoplasia of right atrioventricular valve annulus in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449086000", - "Display": "Ebstein's anomaly of left atrioventricular valve in functionally univentricular heart (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449087009", - "Display": "Ebstein's anomaly of right atrioventricular valve in functionally univentricular heart (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449098005", - "Display": "Congenital abnormality of left atrioventricular valve chordae tendinae in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449099002", - "Display": "Left atrioventricular valve stenosis in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449110001", - "Display": "Congenital billowing of mitral valve leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449111002", - "Display": "Double orifice of right atrioventricular valve in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449112009", - "Display": "Prolapse of noncoronary aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449116007", - "Display": "Tricuspid but functionally bicuspid aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449123008", - "Display": "Eccentric opening of tricuspid aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449124002", - "Display": "Eccentric opening of tricuspid pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449133000", - "Display": "Absence of pulmonary valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449136008", - "Display": "Fenestration of mitral leaflet (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449139001", - "Display": "Commissural fusion of truncal valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449140004", - "Display": "Right-left orientation of bicuspid pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449149003", - "Display": "Deficiency of aortic valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449158005", - "Display": "Ebstein's anomaly of tricuspid valve with atrialization of right ventricular chamber (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449186002", - "Display": "Dilatation of pulmonary valve annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449189009", - "Display": "Mass associated with atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449228007", - "Display": "Hypoplasia of left atrioventricular valve annulus in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449270002", - "Display": "Hypoplasia of mitral valve annulus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449315003", - "Display": "Congenital abnormality of right atrioventricular valve chordae tendinae in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449316002", - "Display": "Congenital abnormality of right atrioventricular valve in double inlet ventricle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449354002", - "Display": "Hypoplasia of pulmonary cusps of absent pulmonary valve type (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449382009", - "Display": "Congenital abnormality of atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449383004", - "Display": "Congenital abnormality of atrioventricular valve papillary muscle in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449388008", - "Display": "Abnormality of atrioventricular valve leaflet in atrioventricular septal defect (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449455000", - "Display": "Abnormal attachment of tricuspid chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449511008", - "Display": "Imperforate left ventriculoarterial valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449512001", - "Display": "Imperforate right ventriculoarterial valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449529003", - "Display": "Abnormality of pulmonary valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449534004", - "Display": "Obstructed interchordal space of tricuspid chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449544002", - "Display": "Deficiency of truncal valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449555002", - "Display": "Aortic valve commissural abnormality (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449563001", - "Display": "Absence of primary mitral chordae tendinae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449564007", - "Display": "Fenestration of truncal valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449567000", - "Display": "Overriding left ventriculoarterial valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449568005", - "Display": "Overriding right ventriculoarterial valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449601008", - "Display": "Fenestration of pulmonary valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449605004", - "Display": "Deficiency of pulmonary valve cusp (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44993000", - "Display": "Rheumatic mitral valve and aortic valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "45058001", - "Display": "Syphilis of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46165000", - "Display": "Chronic rheumatic endocarditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48724000", - "Display": "Mitral valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48872007", - "Display": "Rheumatic endocarditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49699002", - "Display": "Rheumatic disease of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49915006", - "Display": "Tricuspid valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50608004", - "Display": "Incompetence of papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51442005", - "Display": "Congenital atresia of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52048004", - "Display": "Rheumatic pulmonary valve failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52757001", - "Display": "Congenital supravalvular pulmonary stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54073003", - "Display": "Monocuspid cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54160000", - "Display": "Congenital aneurysm of sinus of Valsalva (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55836009", - "Display": "Incoordination of papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56786000", - "Display": "Pulmonic valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "57373003", - "Display": "Myxoid transformation of cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58056005", - "Display": "Syphilis of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5919001", - "Display": "Rupture of papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59464004", - "Display": "Rheumatic mitral AND aortic valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60232001", - "Display": "Cleft leaflet of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60234000", - "Display": "Aortic valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60573004", - "Display": "Aortic valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61612001", - "Display": "Syphilitic aortic incompetence (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63042009", - "Display": "Congenital atresia of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "65457005", - "Display": "Endocardial fibroelastosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67278007", - "Display": "Congenital stenosis of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67696008", - "Display": "Rheumatic tricuspid valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67754003", - "Display": "Aortic valve sclerosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6996004", - "Display": "Congenital absence of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70320004", - "Display": "Congenital anomaly of heart valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7169009", - "Display": "Congenital supravalvular aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71799002", - "Display": "Rheumatic mitral valve stenosis AND aortic valve insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72011007", - "Display": "Rheumatic aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72352009", - "Display": "Bicuspid aortic valve (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "745.2", - "Display": "Tetralogy of fallot" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.00", - "Display": "Congenital pulmonary valve anomaly" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.01", - "Display": "Atresia of pulmonary valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.02", - "Display": "Stenosis of pulmonary valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.09", - "Display": "Other congenital anomalies of pulmonary valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.1", - "Display": "Tricuspid atresia and stenosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.2", - "Display": "Ebstein's anomaly" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.3", - "Display": "Congenital stenosis of aortic valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.4", - "Display": "Congenital insufficiency of aortic valve" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.5", - "Display": "Congenital mitral stenosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.6", - "Display": "Congenital mitral insufficiency" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "746.89", - "Display": "Other specified congenital anomalies of heart" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "747.22", - "Display": "Atresia and stenosis of aorta" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75372006", - "Display": "Congenital anomaly of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76257003", - "Display": "Bicuspid cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76267008", - "Display": "Pulmonary valve disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77696009", - "Display": "Double aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78031003", - "Display": "Rheumatic aortic regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78196008", - "Display": "Double mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78320000", - "Display": "Quadricuspid cardiac valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78495000", - "Display": "Cleft leaflet of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "787001", - "Display": "Rheumatic mitral stenosis with regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79619009", - "Display": "Mitral valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8074002", - "Display": "Mitral valve prolapse syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81552002", - "Display": "Rheumatic mitral valve insufficiency and aortic valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82355002", - "Display": "Syphilitic aortic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8239009", - "Display": "Primary endocardial fibroelastosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82458004", - "Display": "Congenital stenosis of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83119008", - "Display": "Congenital insufficiency of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83898004", - "Display": "Rheumatic disease of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84871007", - "Display": "Acute rheumatic fever with valvulitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85971001", - "Display": "Rheumatic pulmonary valve stenosis with insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86299006", - "Display": "Tetralogy of Fallot (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86466006", - "Display": "Rheumatic mitral stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86856005", - "Display": "Dysfunction of papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "8722008", - "Display": "Aortic valve disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88318005", - "Display": "Rheumatic tricuspid valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89456004", - "Display": "Chronic rheumatic valvulitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89736004", - "Display": "Valvular endocarditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90154003", - "Display": "Papillary muscle disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91434003", - "Display": "Pulmonic valve regurgitation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91442002", - "Display": "Rheumatic pulmonary valve stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91529004", - "Display": "Rheumatic heart valve failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91634006", - "Display": "Fused commissures of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92808004", - "Display": "Chronic degenerative aortic valve disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92830003", - "Display": "Combined valvular-subvalvular pulmonic stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92888002", - "Display": "Congenital abnormal shape of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92923008", - "Display": "Congenital abnormal shape of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92941000", - "Display": "Congenital abnormal shape of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92944008", - "Display": "Congenital abnormal shape of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92960007", - "Display": "Congenital absence of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92963009", - "Display": "Congenital absence of chordae tendineae (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92969008", - "Display": "Congenital absence of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92974000", - "Display": "Congenital absence of papillary muscle (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92976003", - "Display": "Congenital absence of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "93069000", - "Display": "Congenital hypertrophy of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "93075009", - "Display": "Congenital hypertrophy of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "93076005", - "Display": "Congenital hypertrophy of tricuspid valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "93234006", - "Display": "Congenital hypertrophy of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "93237004", - "Display": "Congenital hypoplasia of aortic valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "93271008", - "Display": "Congenital hypoplasia of mitral valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "93287006", - "Display": "Congenital hypoplasia of pulmonary valve (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "94720001", - "Display": "Myxoid transformation of tricuspid valve (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "996.02", - "Display": "Mechanical complication due to heart valve prosthesis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "996.61", - "Display": "Infection and inflammatory reaction due to cardiac device" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "A52.03", - "Display": "Syphilitic endocarditis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I01.1", - "Display": "Acute rheumatic endocarditis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I02.0", - "Display": "Rheumatic chorea with heart involvement" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I05.0", - "Display": "Rheumatic mitral stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I05.1", - "Display": "Rheumatic mitral insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I05.2", - "Display": "Rheumatic mitral stenosis with insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I05.8", - "Display": "Other rheumatic mitral valve diseases" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I05.9", - "Display": "Rheumatic mitral valve disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I06.0", - "Display": "Rheumatic aortic stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I06.1", - "Display": "Rheumatic aortic insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I06.2", - "Display": "Rheumatic aortic stenosis with insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I06.8", - "Display": "Other rheumatic aortic valve diseases" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I06.9", - "Display": "Rheumatic aortic valve disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I07.0", - "Display": "Rheumatic tricuspid stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I07.1", - "Display": "Rheumatic tricuspid insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I07.2", - "Display": "Rheumatic tricuspid stenosis and insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I07.8", - "Display": "Other rheumatic tricuspid valve diseases" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I07.9", - "Display": "Rheumatic tricuspid valve disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I08.0", - "Display": "Rheumatic disorders of both mitral and aortic valves" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I08.1", - "Display": "Rheumatic disorders of both mitral and tricuspid valves" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I08.2", - "Display": "Rheumatic disorders of both aortic and tricuspid valves" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I08.3", - "Display": "Combined rheumatic disorders of mitral" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I08.8", - "Display": "Other rheumatic multiple valve diseases" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I08.9", - "Display": "Rheumatic multiple valve disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I09.1", - "Display": "Rheumatic diseases of endocardium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I09.89", - "Display": "Other specified rheumatic heart diseases" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I23.4", - "Display": "Rupture of chordae tendineae as current complication following acute myocardial infarction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I23.5", - "Display": "Rupture of papillary muscle as current complication following acute myocardial infarction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I34.0", - "Display": "Nonrheumatic mitral (valve) insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I34.1", - "Display": "Nonrheumatic mitral (valve) prolapse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I34.2", - "Display": "Nonrheumatic mitral (valve) stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I34.8", - "Display": "Other nonrheumatic mitral valve disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I34.9", - "Display": "Nonrheumatic mitral valve disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I35.0", - "Display": "Nonrheumatic aortic (valve) stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I35.1", - "Display": "Nonrheumatic aortic (valve) insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I35.2", - "Display": "Nonrheumatic aortic (valve) stenosis with insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I35.8", - "Display": "Other nonrheumatic aortic valve disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I35.9", - "Display": "Nonrheumatic aortic valve disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I36.0", - "Display": "Nonrheumatic tricuspid (valve) stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I36.1", - "Display": "Nonrheumatic tricuspid (valve) insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I36.2", - "Display": "Nonrheumatic tricuspid (valve) stenosis with insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I36.8", - "Display": "Other nonrheumatic tricuspid valve disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I36.9", - "Display": "Nonrheumatic tricuspid valve disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I37.0", - "Display": "Nonrheumatic pulmonary valve stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I37.1", - "Display": "Nonrheumatic pulmonary valve insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I37.2", - "Display": "Nonrheumatic pulmonary valve stenosis with insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I37.8", - "Display": "Other nonrheumatic pulmonary valve disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I37.9", - "Display": "Nonrheumatic pulmonary valve disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I38", - "Display": "Endocarditis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I39", - "Display": "Endocarditis and heart valve disorders in diseases classified elsewhere" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I51.1", - "Display": "Rupture of chordae tendineae" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I51.2", - "Display": "Rupture of papillary muscle" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q21.3", - "Display": "Tetralogy of Fallot" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.0", - "Display": "Pulmonary valve atresia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.1", - "Display": "Congenital pulmonary valve stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.2", - "Display": "Congenital pulmonary valve insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.3", - "Display": "Other congenital malformations of pulmonary valve" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.4", - "Display": "Congenital tricuspid stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.5", - "Display": "Ebstein's anomaly" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.6", - "Display": "Hypoplastic right heart syndrome" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.8", - "Display": "Other congenital malformations of tricuspid valve" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q22.9", - "Display": "Congenital malformation of tricuspid valve" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q23.0", - "Display": "Congenital stenosis of aortic valve" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q23.1", - "Display": "Congenital insufficiency of aortic valve" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q23.2", - "Display": "Congenital mitral stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q23.3", - "Display": "Congenital mitral insufficiency" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q23.4", - "Display": "Hypoplastic left heart syndrome" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q23.8", - "Display": "Other congenital malformations of aortic and mitral valves" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q23.9", - "Display": "Congenital malformation of aortic and mitral valves" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q24.8", - "Display": "Other specified congenital malformations of heart" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Q25.3", - "Display": "Supravalvular aortic stenosis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.01XA", - "Display": "Breakdown (mechanical) of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.01XD", - "Display": "Breakdown (mechanical) of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.01XS", - "Display": "Breakdown (mechanical) of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.02XA", - "Display": "Displacement of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.02XD", - "Display": "Displacement of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.02XS", - "Display": "Displacement of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.03XA", - "Display": "Leakage of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.03XD", - "Display": "Leakage of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.03XS", - "Display": "Leakage of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.09XA", - "Display": "Other mechanical complication of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.09XD", - "Display": "Other mechanical complication of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.09XS", - "Display": "Other mechanical complication of heart valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.6XXA", - "Display": "Infection and inflammatory reaction due to cardiac valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.6XXD", - "Display": "Infection and inflammatory reaction due to cardiac valve prosthesis" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "T82.6XXS", - "Display": "Infection and inflammatory reaction due to cardiac valve prosthesis" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.464.1003.105.12.1104.json b/build/module/resources/2.16.840.1.113883.3.464.1003.105.12.1104.json deleted file mode 100644 index 6d21b98..0000000 --- a/build/module/resources/2.16.840.1.113883.3.464.1003.105.12.1104.json +++ /dev/null @@ -1,914 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111482003", - "Display": "Subchronic schizophrenia with acute exacerbations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111483008", - "Display": "Catatonic schizophrenia in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111484002", - "Display": "Undifferentiated schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "12939007", - "Display": "Chronic disorganized schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14291003", - "Display": "Subchronic disorganized schizophrenia with acute exacerbations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16990005", - "Display": "Subchronic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191526005", - "Display": "Schizophrenic disorders (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191527001", - "Display": "Simple schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191531007", - "Display": "Acute exacerbation of chronic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191542003", - "Display": "Catatonic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191547009", - "Display": "Acute exacerbation of subchronic catatonic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191548004", - "Display": "Acute exacerbation of chronic catatonic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191554003", - "Display": "Acute exacerbation of subchronic paranoid schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191555002", - "Display": "Acute exacerbation of chronic paranoid schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191559008", - "Display": "Latent schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191561004", - "Display": "Subchronic latent schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191562006", - "Display": "Chronic latent schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191563001", - "Display": "Acute exacerbation of subchronic latent schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191564007", - "Display": "Acute exacerbation of chronic latent schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191567000", - "Display": "Schizoaffective schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191569002", - "Display": "Subchronic schizoaffective schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191570001", - "Display": "Chronic schizoaffective schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191571002", - "Display": "Acute exacerbation of subchronic schizoaffective schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191572009", - "Display": "Acute exacerbation of chronic schizoaffective schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191574005", - "Display": "Schizoaffective schizophrenia in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191577003", - "Display": "Cenesthopathic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191680007", - "Display": "Psychogenic paranoid psychosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231437006", - "Display": "Reactive psychoses (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231489001", - "Display": "Acute transient psychotic disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "247804008", - "Display": "Schizophrenic prodrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26025008", - "Display": "Residual schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268617001", - "Display": "Acute schizophrenic episode (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268624000", - "Display": "Acute paranoid reaction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "270901009", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271428004", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "27387000", - "Display": "Subchronic disorganized schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "274952002", - "Display": "Borderline schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "278853003", - "Display": "Acute schizophrenia-like psychotic disorder (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.00", - "Display": "Simple type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.01", - "Display": "Simple type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.02", - "Display": "Simple type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.03", - "Display": "Simple type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.04", - "Display": "Simple type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.05", - "Display": "Simple type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.10", - "Display": "Disorganized type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.11", - "Display": "Disorganized type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.12", - "Display": "Disorganized type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.13", - "Display": "Disorganized type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.14", - "Display": "Disorganized type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.15", - "Display": "Disorganized type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.20", - "Display": "Catatonic type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.21", - "Display": "Catatonic type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.22", - "Display": "Catatonic type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.23", - "Display": "Catatonic type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.24", - "Display": "Catatonic type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.25", - "Display": "Catatonic type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.30", - "Display": "Paranoid type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.31", - "Display": "Paranoid type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.32", - "Display": "Paranoid type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.33", - "Display": "Paranoid type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.34", - "Display": "Paranoid type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.35", - "Display": "Paranoid type schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.40", - "Display": "Schizophreniform disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.41", - "Display": "Schizophreniform disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.42", - "Display": "Schizophreniform disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.43", - "Display": "Schizophreniform disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.44", - "Display": "Schizophreniform disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.45", - "Display": "Schizophreniform disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.50", - "Display": "Latent schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.51", - "Display": "Latent schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.52", - "Display": "Latent schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.53", - "Display": "Latent schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.54", - "Display": "Latent schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.55", - "Display": "Latent schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.60", - "Display": "Schizophrenic disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.61", - "Display": "Schizophrenic disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.62", - "Display": "Schizophrenic disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.63", - "Display": "Schizophrenic disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.64", - "Display": "Schizophrenic disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.65", - "Display": "Schizophrenic disorders" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.70", - "Display": "Schizoaffective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.71", - "Display": "Schizoaffective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.72", - "Display": "Schizoaffective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.73", - "Display": "Schizoaffective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.74", - "Display": "Schizoaffective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.75", - "Display": "Schizoaffective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.80", - "Display": "Other specified types of schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.81", - "Display": "Other specified types of schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.82", - "Display": "Other specified types of schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.83", - "Display": "Other specified types of schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.84", - "Display": "Other specified types of schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.85", - "Display": "Other specified types of schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.90", - "Display": "Unspecified schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.91", - "Display": "Unspecified schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.92", - "Display": "Unspecified schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.93", - "Display": "Unspecified schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.94", - "Display": "Unspecified schizophrenia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "295.95", - "Display": "Unspecified schizophrenia" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29599000", - "Display": "Chronic undifferentiated schizophrenia (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "298.0", - "Display": "Depressive type psychosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "298.1", - "Display": "Excitative type psychosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "298.4", - "Display": "Psychogenic paranoid psychosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "298.8", - "Display": "Other and unspecified reactive psychosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "298.9", - "Display": "Unspecified psychosis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30336007", - "Display": "Chronic residual schizophrenia with acute exacerbations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31027006", - "Display": "Schizotypal personality disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31373002", - "Display": "Disorganized schizophrenia in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31658008", - "Display": "Chronic paranoid schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35218008", - "Display": "Chronic disorganized schizophrenia with acute exacerbation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35252006", - "Display": "Disorganized schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36158005", - "Display": "Schizophreniform disorder with good prognostic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38368003", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39610001", - "Display": "Undifferentiated schizophrenia in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416340002", - "Display": "Late onset schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42868002", - "Display": "Subchronic catatonic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441704009", - "Display": "Affective psychosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441833000", - "Display": "Lethal catatonia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4926007", - "Display": "Schizophrenia in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51133006", - "Display": "Residual schizophrenia in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5464005", - "Display": "Brief reactive psychosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55736003", - "Display": "Schizophreniform disorder without good prognostic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "58214004", - "Display": "Schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63181006", - "Display": "Paranoid schizophrenia in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "64905009", - "Display": "Paranoid schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68890003", - "Display": "Schizoaffective disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68995007", - "Display": "Chronic catatonic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7025000", - "Display": "Subchronic undifferentiated schizophrenia with acute exacerbations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70814008", - "Display": "Subchronic residual schizophrenia with acute exacerbations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71103003", - "Display": "Chronic residual schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76566000", - "Display": "Subchronic residual schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79204003", - "Display": "Chronic undifferentiated schizophrenia with acute exacerbations (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79866005", - "Display": "Subchronic paranoid schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83746006", - "Display": "Chronic schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84760002", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85861002", - "Display": "Subchronic undifferentiated schizophrenia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88975006", - "Display": "Schizophreniform disorder (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F20.0", - "Display": "Paranoid schizophrenia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F20.1", - "Display": "Disorganized schizophrenia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F20.2", - "Display": "Catatonic schizophrenia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F20.3", - "Display": "Undifferentiated schizophrenia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F20.5", - "Display": "Residual schizophrenia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F20.81", - "Display": "Schizophreniform disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F20.89", - "Display": "Other schizophrenia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F20.9", - "Display": "Schizophrenia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F21", - "Display": "Schizotypal disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F23", - "Display": "Brief psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F25.0", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F25.1", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F25.8", - "Display": "Other schizoaffective disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F25.9", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F28", - "Display": "Other psychotic disorder not due to a substance or known physiological condition" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F29", - "Display": "Unspecified psychosis not due to a substance or known physiological condition" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.464.1003.106.12.1004.json b/build/module/resources/2.16.840.1.113883.3.464.1003.106.12.1004.json deleted file mode 100644 index 5aedc7f..0000000 --- a/build/module/resources/2.16.840.1.113883.3.464.1003.106.12.1004.json +++ /dev/null @@ -1,3050 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1081000119105", - "Display": "Opioid dependence" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "110281001", - "Display": "Chronic drug abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "11047881000119101", - "Display": "Cannabis hyperemesis syndrome co-occurrent and due to cannabis abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "144981000119109", - "Display": "Nondependent intraveous amphetamine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "145101000119102", - "Display": "Intravenous cocaine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "145841000119107", - "Display": "Episodic phencyclidine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1461000119109", - "Display": "Drug dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1471000119103", - "Display": "Drug abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15167005", - "Display": "Alcohol abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "153501000119105", - "Display": "Drug dependence" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191813001", - "Display": "Chronic alcoholism in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191821007", - "Display": "Opioid dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191827006", - "Display": "Hypnotic or anxiolytic dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191833002", - "Display": "Cocaine dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191839003", - "Display": "Cannabis dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191851001", - "Display": "Hallucinogen dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191857002", - "Display": "Glue sniffing dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191869005", - "Display": "Combined opioid with non-opioid drug dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191875001", - "Display": "Combined drug dependence" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191882002", - "Display": "Nondependent alcohol abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191883007", - "Display": "Nondependent alcohol abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191884001", - "Display": "Nondependent alcohol abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191889006", - "Display": "Tobacco dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191891003", - "Display": "Nondependent cannabis abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191893000", - "Display": "Nondependent cannabis abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191894006", - "Display": "Nondependent cannabis abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191895007", - "Display": "Nondependent cannabis abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191899001", - "Display": "Nondependent hallucinogen abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191900006", - "Display": "Nondependent hallucinogen abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191901005", - "Display": "Nondependent hallucinogen abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191905001", - "Display": "Nondependent hypnotic or anxiolytic abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191906000", - "Display": "Nondependent hypnotic or anxiolytic abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191907009", - "Display": "Nondependent hypnotic or anxiolytic abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191909007", - "Display": "Nondependent opioid abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191912005", - "Display": "Nondependent opioid abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191913000", - "Display": "Nondependent opioid abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191914006", - "Display": "Nondependent opioid abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191916008", - "Display": "Nondependent cocaine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191918009", - "Display": "Nondependent cocaine abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191919001", - "Display": "Nondependent cocaine abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191920007", - "Display": "Nondependent cocaine abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191924003", - "Display": "Nondependent amphetamine or psychostimulant abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191925002", - "Display": "Nondependent amphetamine or psychostimulant abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191928000", - "Display": "Abuse of antidepressant drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191930003", - "Display": "Nondependent antidepressant type drug abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191931004", - "Display": "Nondependent antidepressant type drug abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191932006", - "Display": "Nondependent antidepressant type drug abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191934007", - "Display": "Nondependent mixed drug abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191936009", - "Display": "Nondependent mixed drug abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191937000", - "Display": "Nondependent mixed drug abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191938005", - "Display": "Nondependent mixed drug abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231458000", - "Display": "Abuse of steroids (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231459008", - "Display": "Abuse of nonpsychotropic analgesic drugs (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231461004", - "Display": "Hypnotic or anxiolytic abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231462006", - "Display": "Barbiturate abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "248119008", - "Display": "Abuse of drugs to lose weight (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26416006", - "Display": "Drug abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268645007", - "Display": "Nondependent alcohol abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268646008", - "Display": "Nondependent hallucinogen abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268647004", - "Display": "Nondependent hypnotic or anxiolytic abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268648009", - "Display": "Nondependent amphetamine or other psychostimulant abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "280982009", - "Display": "Abuse of laxatives (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "280983004", - "Display": "Abuse of vitamins (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "280984005", - "Display": "Abuse of herbal medicine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "280985006", - "Display": "Abuse of diuretics (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "280986007", - "Display": "Abuse of antacids (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "284591009", - "Display": "Persistent alcohol abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "288281000119100", - "Display": "Abuse of herbal medicine or folk remedy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "304605000", - "Display": "Methanol abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34111000119108", - "Display": "Nondependent amphetamine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "37344009", - "Display": "Cannabis abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414874007", - "Display": "Nondependent amphetamine or psychostimulant abuse in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425533007", - "Display": "Episodic drug abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425841004", - "Display": "Phencyclidine dependence in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "425885002", - "Display": "Continuous phencyclidine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426095000", - "Display": "Continuous inhalant abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426590003", - "Display": "Drug abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427205009", - "Display": "Amphetamine abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427229002", - "Display": "Episodic inhalant abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428561000124100", - "Display": "Maternal substance abuse (situation)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429001000124103", - "Display": "Catha edulis abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429692000", - "Display": "Amphetamine abuse" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441527004", - "Display": "Stimulant abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445273005", - "Display": "Polysubstance abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49540005", - "Display": "Non dependent drug abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5602001", - "Display": "Opioid abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "64386003", - "Display": "Sedative abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "6525002", - "Display": "Dependent drug abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66214007", - "Display": "Substance abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70340006", - "Display": "Inhalant abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7071007", - "Display": "Phencyclidine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713775002", - "Display": "Novel psychoactive substance misuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724694006", - "Display": "Harmful pattern of use of caffeine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724697004", - "Display": "Harmful pattern of use of nicotine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724712001", - "Display": "Harmful use of dissociative drug (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "724713006", - "Display": "Harmful use of ketamine (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "737336003", - "Display": "Synthetic cannabinoid abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74851005", - "Display": "Hallucinogen abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "762504005", - "Display": "Abuse of synthetic cathinone (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78267003", - "Display": "Cocaine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84758004", - "Display": "Amphetamine abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91388009", - "Display": "Psychoactive substance abuse (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9769006", - "Display": "Drug habituation (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.10", - "Display": "Alcohol abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.11", - "Display": "Alcohol abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.120", - "Display": "Alcohol abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.121", - "Display": "Alcohol abuse with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.129", - "Display": "Alcohol abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.14", - "Display": "Alcohol abuse with alcohol-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.150", - "Display": "Alcohol abuse with alcohol-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.151", - "Display": "Alcohol abuse with alcohol-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.159", - "Display": "Alcohol abuse with alcohol-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.180", - "Display": "Alcohol abuse with alcohol-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.181", - "Display": "Alcohol abuse with alcohol-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.182", - "Display": "Alcohol abuse with alcohol-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.188", - "Display": "Alcohol abuse with other alcohol-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.19", - "Display": "Alcohol abuse with unspecified alcohol-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.20", - "Display": "Alcohol dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.21", - "Display": "Alcohol dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.220", - "Display": "Alcohol dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.221", - "Display": "Alcohol dependence with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.229", - "Display": "Alcohol dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.230", - "Display": "Alcohol dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.231", - "Display": "Alcohol dependence with withdrawal delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.232", - "Display": "Alcohol dependence with withdrawal with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.239", - "Display": "Alcohol dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.24", - "Display": "Alcohol dependence with alcohol-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.250", - "Display": "Alcohol dependence with alcohol-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.251", - "Display": "Alcohol dependence with alcohol-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.259", - "Display": "Alcohol dependence with alcohol-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.26", - "Display": "Alcohol dependence with alcohol-induced persisting amnestic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.27", - "Display": "Alcohol dependence with alcohol-induced persisting dementia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.280", - "Display": "Alcohol dependence with alcohol-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.281", - "Display": "Alcohol dependence with alcohol-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.282", - "Display": "Alcohol dependence with alcohol-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.288", - "Display": "Alcohol dependence with other alcohol-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.29", - "Display": "Alcohol dependence with unspecified alcohol-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.920", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.921", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.929", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.94", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.950", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.951", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.959", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.96", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.97", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.980", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.981", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.982", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.988", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F10.99", - "Display": "Alcohol use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.10", - "Display": "Opioid abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.11", - "Display": "Opioid abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.120", - "Display": "Opioid abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.121", - "Display": "Opioid abuse with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.122", - "Display": "Opioid abuse with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.129", - "Display": "Opioid abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.14", - "Display": "Opioid abuse with opioid-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.150", - "Display": "Opioid abuse with opioid-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.151", - "Display": "Opioid abuse with opioid-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.159", - "Display": "Opioid abuse with opioid-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.181", - "Display": "Opioid abuse with opioid-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.182", - "Display": "Opioid abuse with opioid-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.188", - "Display": "Opioid abuse with other opioid-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.19", - "Display": "Opioid abuse with unspecified opioid-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.20", - "Display": "Opioid dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.21", - "Display": "Opioid dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.220", - "Display": "Opioid dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.221", - "Display": "Opioid dependence with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.222", - "Display": "Opioid dependence with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.229", - "Display": "Opioid dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.23", - "Display": "Opioid dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.24", - "Display": "Opioid dependence with opioid-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.250", - "Display": "Opioid dependence with opioid-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.251", - "Display": "Opioid dependence with opioid-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.259", - "Display": "Opioid dependence with opioid-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.281", - "Display": "Opioid dependence with opioid-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.282", - "Display": "Opioid dependence with opioid-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.288", - "Display": "Opioid dependence with other opioid-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.29", - "Display": "Opioid dependence with unspecified opioid-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.90", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.920", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.921", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.922", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.929", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.93", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.94", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.950", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.951", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.959", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.981", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.982", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.988", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F11.99", - "Display": "Opioid use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.10", - "Display": "Cannabis abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.11", - "Display": "Cannabis abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.120", - "Display": "Cannabis abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.121", - "Display": "Cannabis abuse with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.122", - "Display": "Cannabis abuse with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.129", - "Display": "Cannabis abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.150", - "Display": "Cannabis abuse with psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.151", - "Display": "Cannabis abuse with psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.159", - "Display": "Cannabis abuse with psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.180", - "Display": "Cannabis abuse with cannabis-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.188", - "Display": "Cannabis abuse with other cannabis-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.19", - "Display": "Cannabis abuse with unspecified cannabis-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.20", - "Display": "Cannabis dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.21", - "Display": "Cannabis dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.220", - "Display": "Cannabis dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.221", - "Display": "Cannabis dependence with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.222", - "Display": "Cannabis dependence with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.229", - "Display": "Cannabis dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.250", - "Display": "Cannabis dependence with psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.251", - "Display": "Cannabis dependence with psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.259", - "Display": "Cannabis dependence with psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.280", - "Display": "Cannabis dependence with cannabis-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.288", - "Display": "Cannabis dependence with other cannabis-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.29", - "Display": "Cannabis dependence with unspecified cannabis-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.90", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.920", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.921", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.922", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.929", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.950", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.951", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.959", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.980", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.988", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F12.99", - "Display": "Cannabis use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.10", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.11", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.120", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.121", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.129", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.14", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.150", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.151", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.159", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.180", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.181", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.182", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.188", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.19", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.20", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.21", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.220", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.221", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.229", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.230", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.231", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.232", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.239", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.24", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.250", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.251", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.259", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.26", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.27", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.280", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.281", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.282", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.288", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.29", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.90", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.920", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.921", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.929", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.930", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.931", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.932", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.939", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.94", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.950", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.951", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.959", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.96", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.97", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.980", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.981", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.982", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.988", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F13.99", - "Display": "Sedative" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.10", - "Display": "Cocaine abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.11", - "Display": "Cocaine abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.120", - "Display": "Cocaine abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.121", - "Display": "Cocaine abuse with intoxication with delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.122", - "Display": "Cocaine abuse with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.129", - "Display": "Cocaine abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.14", - "Display": "Cocaine abuse with cocaine-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.150", - "Display": "Cocaine abuse with cocaine-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.151", - "Display": "Cocaine abuse with cocaine-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.159", - "Display": "Cocaine abuse with cocaine-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.180", - "Display": "Cocaine abuse with cocaine-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.181", - "Display": "Cocaine abuse with cocaine-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.182", - "Display": "Cocaine abuse with cocaine-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.188", - "Display": "Cocaine abuse with other cocaine-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.19", - "Display": "Cocaine abuse with unspecified cocaine-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.20", - "Display": "Cocaine dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.21", - "Display": "Cocaine dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.220", - "Display": "Cocaine dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.221", - "Display": "Cocaine dependence with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.222", - "Display": "Cocaine dependence with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.229", - "Display": "Cocaine dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.23", - "Display": "Cocaine dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.24", - "Display": "Cocaine dependence with cocaine-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.250", - "Display": "Cocaine dependence with cocaine-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.251", - "Display": "Cocaine dependence with cocaine-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.259", - "Display": "Cocaine dependence with cocaine-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.280", - "Display": "Cocaine dependence with cocaine-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.281", - "Display": "Cocaine dependence with cocaine-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.282", - "Display": "Cocaine dependence with cocaine-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.288", - "Display": "Cocaine dependence with other cocaine-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.29", - "Display": "Cocaine dependence with unspecified cocaine-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.90", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.920", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.921", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.922", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.929", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.94", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.950", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.951", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.959", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.980", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.981", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.982", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.988", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F14.99", - "Display": "Cocaine use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.10", - "Display": "Other stimulant abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.11", - "Display": "Other stimulant abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.120", - "Display": "Other stimulant abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.121", - "Display": "Other stimulant abuse with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.122", - "Display": "Other stimulant abuse with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.129", - "Display": "Other stimulant abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.14", - "Display": "Other stimulant abuse with stimulant-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.150", - "Display": "Other stimulant abuse with stimulant-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.151", - "Display": "Other stimulant abuse with stimulant-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.159", - "Display": "Other stimulant abuse with stimulant-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.180", - "Display": "Other stimulant abuse with stimulant-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.181", - "Display": "Other stimulant abuse with stimulant-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.182", - "Display": "Other stimulant abuse with stimulant-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.188", - "Display": "Other stimulant abuse with other stimulant-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.19", - "Display": "Other stimulant abuse with unspecified stimulant-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.20", - "Display": "Other stimulant dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.21", - "Display": "Other stimulant dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.220", - "Display": "Other stimulant dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.221", - "Display": "Other stimulant dependence with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.222", - "Display": "Other stimulant dependence with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.229", - "Display": "Other stimulant dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.23", - "Display": "Other stimulant dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.24", - "Display": "Other stimulant dependence with stimulant-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.250", - "Display": "Other stimulant dependence with stimulant-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.251", - "Display": "Other stimulant dependence with stimulant-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.259", - "Display": "Other stimulant dependence with stimulant-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.280", - "Display": "Other stimulant dependence with stimulant-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.281", - "Display": "Other stimulant dependence with stimulant-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.282", - "Display": "Other stimulant dependence with stimulant-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.288", - "Display": "Other stimulant dependence with other stimulant-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.29", - "Display": "Other stimulant dependence with unspecified stimulant-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.90", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.920", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.921", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.922", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.929", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.93", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.94", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.950", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.951", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.959", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.980", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.981", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.982", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.988", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F15.99", - "Display": "Other stimulant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.10", - "Display": "Hallucinogen abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.11", - "Display": "Hallucinogen abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.120", - "Display": "Hallucinogen abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.121", - "Display": "Hallucinogen abuse with intoxication with delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.122", - "Display": "Hallucinogen abuse with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.129", - "Display": "Hallucinogen abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.14", - "Display": "Hallucinogen abuse with hallucinogen-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.150", - "Display": "Hallucinogen abuse with hallucinogen-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.151", - "Display": "Hallucinogen abuse with hallucinogen-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.159", - "Display": "Hallucinogen abuse with hallucinogen-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.180", - "Display": "Hallucinogen abuse with hallucinogen-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.183", - "Display": "Hallucinogen abuse with hallucinogen persisting perception disorder (flashbacks)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.188", - "Display": "Hallucinogen abuse with other hallucinogen-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.19", - "Display": "Hallucinogen abuse with unspecified hallucinogen-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.20", - "Display": "Hallucinogen dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.21", - "Display": "Hallucinogen dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.220", - "Display": "Hallucinogen dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.221", - "Display": "Hallucinogen dependence with intoxication with delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.229", - "Display": "Hallucinogen dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.24", - "Display": "Hallucinogen dependence with hallucinogen-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.250", - "Display": "Hallucinogen dependence with hallucinogen-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.251", - "Display": "Hallucinogen dependence with hallucinogen-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.259", - "Display": "Hallucinogen dependence with hallucinogen-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.280", - "Display": "Hallucinogen dependence with hallucinogen-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.283", - "Display": "Hallucinogen dependence with hallucinogen persisting perception disorder (flashbacks)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.288", - "Display": "Hallucinogen dependence with other hallucinogen-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.29", - "Display": "Hallucinogen dependence with unspecified hallucinogen-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.90", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.920", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.921", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.929", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.94", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.950", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.951", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.959", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.980", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.983", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.988", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F16.99", - "Display": "Hallucinogen use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.10", - "Display": "Inhalant abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.11", - "Display": "Inhalant abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.120", - "Display": "Inhalant abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.121", - "Display": "Inhalant abuse with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.129", - "Display": "Inhalant abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.14", - "Display": "Inhalant abuse with inhalant-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.150", - "Display": "Inhalant abuse with inhalant-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.151", - "Display": "Inhalant abuse with inhalant-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.159", - "Display": "Inhalant abuse with inhalant-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.17", - "Display": "Inhalant abuse with inhalant-induced dementia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.180", - "Display": "Inhalant abuse with inhalant-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.188", - "Display": "Inhalant abuse with other inhalant-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.19", - "Display": "Inhalant abuse with unspecified inhalant-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.20", - "Display": "Inhalant dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.21", - "Display": "Inhalant dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.220", - "Display": "Inhalant dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.221", - "Display": "Inhalant dependence with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.229", - "Display": "Inhalant dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.24", - "Display": "Inhalant dependence with inhalant-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.250", - "Display": "Inhalant dependence with inhalant-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.251", - "Display": "Inhalant dependence with inhalant-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.259", - "Display": "Inhalant dependence with inhalant-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.27", - "Display": "Inhalant dependence with inhalant-induced dementia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.280", - "Display": "Inhalant dependence with inhalant-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.288", - "Display": "Inhalant dependence with other inhalant-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.29", - "Display": "Inhalant dependence with unspecified inhalant-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.90", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.920", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.921", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.929", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.94", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.950", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.951", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.959", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.97", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.980", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.988", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F18.99", - "Display": "Inhalant use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.10", - "Display": "Other psychoactive substance abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.11", - "Display": "Other psychoactive substance abuse" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.120", - "Display": "Other psychoactive substance abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.121", - "Display": "Other psychoactive substance abuse with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.122", - "Display": "Other psychoactive substance abuse with intoxication with perceptual disturbances" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.129", - "Display": "Other psychoactive substance abuse with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.14", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.150", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.151", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.159", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.16", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced persisting amnestic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.17", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced persisting dementia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.180", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.181", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.182", - "Display": "Other psychoactive substance abuse with psychoactive substance-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.188", - "Display": "Other psychoactive substance abuse with other psychoactive substance-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.19", - "Display": "Other psychoactive substance abuse with unspecified psychoactive substance-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.20", - "Display": "Other psychoactive substance dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.21", - "Display": "Other psychoactive substance dependence" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.220", - "Display": "Other psychoactive substance dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.221", - "Display": "Other psychoactive substance dependence with intoxication delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.222", - "Display": "Other psychoactive substance dependence with intoxication with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.229", - "Display": "Other psychoactive substance dependence with intoxication" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.230", - "Display": "Other psychoactive substance dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.231", - "Display": "Other psychoactive substance dependence with withdrawal delirium" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.232", - "Display": "Other psychoactive substance dependence with withdrawal with perceptual disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.239", - "Display": "Other psychoactive substance dependence with withdrawal" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.24", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced mood disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.250", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder with delusions" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.251", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder with hallucinations" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.259", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.26", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced persisting amnestic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.27", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced persisting dementia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.280", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced anxiety disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.281", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced sexual dysfunction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.282", - "Display": "Other psychoactive substance dependence with psychoactive substance-induced sleep disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.288", - "Display": "Other psychoactive substance dependence with other psychoactive substance-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.29", - "Display": "Other psychoactive substance dependence with unspecified psychoactive substance-induced disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.90", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.920", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.921", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.922", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.929", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.930", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.931", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.932", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.939", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.94", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.950", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.951", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.959", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.96", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.97", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.980", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.981", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.982", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.988", - "Display": "Other psychoactive substance use" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F19.99", - "Display": "Other psychoactive substance use" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.464.1003.109.12.1011.json b/build/module/resources/2.16.840.1.113883.3.464.1003.109.12.1011.json deleted file mode 100644 index b421cfc..0000000 --- a/build/module/resources/2.16.840.1.113883.3.464.1003.109.12.1011.json +++ /dev/null @@ -1,314 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "180272001", - "Display": "Insertion of chronic ambulatory peritoneal dialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "180277007", - "Display": "Insertion of temporary peritoneal dialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "225892009", - "Display": "Revision of arteriovenous shunt for renal dialysis (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22800003", - "Display": "Removal of thrombus from arteriovenous shunt or cannula (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233468004", - "Display": "Creation of Cimino fistula (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233471007", - "Display": "Creation of external arteriovenous shunt (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233472000", - "Display": "Creation of Scribner shunt (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233547003", - "Display": "Cannulation of arteriovenous dialysis fistula (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238314006", - "Display": "Renewal of chronic ambulatory peritoneal dialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "238315007", - "Display": "Adjustment of chronic ambulatory peritoneal dialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271418008", - "Display": "Chronic ambulatory peritoneal dialysis catheter procedure (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34163007", - "Display": "Revision of arteriovenous fistula with thrombectomy with nonautogenous graft (procedure)" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36800", - "Display": "Insertion of cannula for hemodialysis" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36810", - "Display": "Insertion of cannula for hemodialysis" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36815", - "Display": "Insertion of cannula for hemodialysis" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36818", - "Display": "Arteriovenous anastomosis" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36819", - "Display": "Arteriovenous anastomosis" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36820", - "Display": "Arteriovenous anastomosis" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36821", - "Display": "Arteriovenous anastomosis" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36831", - "Display": "Thrombectomy" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36832", - "Display": "Revision" - }, - { - "System": "http://www.ama-assn.org/go/cpt", - "Version": "2021", - "Code": "36833", - "Display": "Revision" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426340003", - "Display": "Creation of graft fistula for dialysis (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427992007", - "Display": "Removal of thrombus of arteriovenous fistula (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "428118009", - "Display": "Procedure involving peritoneal dialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431418000", - "Display": "Fluoroscopic percutaneous angiography of dialysis fistula with insertion of drug eluting stent (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431440009", - "Display": "Fluoroscopic angiography of dialysis fistula using contrast with insertion of stent (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "431781000", - "Display": "Insertion of tunneled dialysis catheter using fluoroscopic guidance (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432509002", - "Display": "Insertion of dialysis catheter using doppler ultrasound guidance (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432654009", - "Display": "Insertion of peritoneal dialysis catheter using fluoroscopy guidance (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "434435000", - "Display": "Fluoroscopic angiography of dialysis fistula using contrast with insertion of stent graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "438341004", - "Display": "Laparoscopic insertion of peritoneal dialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "438342006", - "Display": "Replacement of peritoneal dialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "439241008", - "Display": "Open arteriovenous anastomosis by transposition of forearm vein (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "439322008", - "Display": "Open arteriovenous anastomosis by transposition of basilic vein of upper arm (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "439349008", - "Display": "Open arteriovenous anastomosis by transposition of cephalic vein of upper arm (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "439534001", - "Display": "Shaving of peritoneal dialysis catheter cuff (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443683004", - "Display": "Open revision of arteriovenous fistula using graft with removal of thrombus (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "448591002", - "Display": "Repositioning of Tenckhoff catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "449400003", - "Display": "Removal of blood clot from arteriovenous fistula (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "450865002", - "Display": "Insertion of nontunneled hemodialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54817007", - "Display": "Arteriovenous shunt for renal dialysis by external cannula (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61160002", - "Display": "Direct arteriovenous anastomosis (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61740001", - "Display": "Insertion of cannula for hemodialysis" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63421002", - "Display": "Insertion of cannula for hemodialysis (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "676002", - "Display": "Peritoneal dialysis including cannulation (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69380006", - "Display": "Venous catheterization for renal dialysis (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "736919006", - "Display": "Insertion of hemodialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "736922008", - "Display": "Insertion of tunneled hemodialysis catheter (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "7459007", - "Display": "Revision of arteriovenous fistula with thrombectomy with autogenous graft (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79827002", - "Display": "Arteriovenous anastomosis for renal dialysis (procedure)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80634002", - "Display": "Revision of vessel-to-vessel arteriovenous cannula (procedure)" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.464.1003.117.12.1016.json b/build/module/resources/2.16.840.1.113883.3.464.1003.117.12.1016.json deleted file mode 100644 index 8b31a5f..0000000 --- a/build/module/resources/2.16.840.1.113883.3.464.1003.117.12.1016.json +++ /dev/null @@ -1,116 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19034001", - "Display": "Hyperparathyroidism due to renal insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "237653008", - "Display": "Familial primary hyperparathyroidism (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "252.00", - "Display": "Hyperparathyroidism" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "252.01", - "Display": "Primary hyperparathyroidism" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "252.02", - "Display": "Secondary hyperparathyroidism" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "252.08", - "Display": "Other hyperparathyroidism" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "361128007", - "Display": "Hyperparathyroidism caused by lithium therapy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36348003", - "Display": "Primary hyperparathyroidism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "363627009", - "Display": "Parathyromatosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "47445009", - "Display": "Hyperparathyroidism due to vitamin D deficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66999008", - "Display": "Hyperparathyroidism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78200003", - "Display": "Tertiary hyperparathyroidism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78625002", - "Display": "Hyperparathyroidism due to intestinal malabsorption (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9092004", - "Display": "Parathyroid hyperplasia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91478007", - "Display": "Secondary hyperparathyroidism (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E21.0", - "Display": "Primary hyperparathyroidism" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E21.1", - "Display": "Secondary hyperparathyroidism" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E21.2", - "Display": "Other hyperparathyroidism" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E21.3", - "Display": "Hyperparathyroidism" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.464.1003.120.12.1003.json b/build/module/resources/2.16.840.1.113883.3.464.1003.120.12.1003.json deleted file mode 100644 index a554b92..0000000 --- a/build/module/resources/2.16.840.1.113883.3.464.1003.120.12.1003.json +++ /dev/null @@ -1,1286 +0,0 @@ -[ - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "042", - "Display": "Human immunodeficiency virus [HIV] disease" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "079.53", - "Display": "Human immunodeficiency virus" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10746341000119109", - "Display": "Acquired immune deficiency syndrome complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10755671000119100", - "Display": "Human immunodeficiency virus in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111880001", - "Display": "Acute human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15928141000119107", - "Display": "Cognitive impairment co-occurrent and due to human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "165816005", - "Display": "Human immunodeficiency virus positive (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186706006", - "Display": "Human immunodeficiency virus infection constitutional disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186707002", - "Display": "Human immunodeficiency virus infection with neurological disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186708007", - "Display": "Human immunodeficiency virus infection with secondary clinical infectious disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230180003", - "Display": "Human immunodeficiency virus leukoencephalopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230202002", - "Display": "Vacuolar myelopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "230598008", - "Display": "Neuropathy caused by human immunodeficiency virus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235009000", - "Display": "Human immunodeficiency virus-associated periodontitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235726002", - "Display": "Human immunodeficiency virus enteropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "236406007", - "Display": "Acquired immune deficiency syndrome-related nephropathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "240103002", - "Display": "Human immunodeficiency virus myopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276665006", - "Display": "Congenital acquired immune deficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "276666007", - "Display": "Congenital human immunodeficiency virus positive status syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "315019000", - "Display": "Human immunodeficiency virus infection with aseptic meningitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "397763006", - "Display": "Human immunodeficiency virus encephalopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398329009", - "Display": "Human immunodeficiency virus encephalitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "402901009", - "Display": "Oral hairy leukoplakia associated with human immunodeficiency virus disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "405631006", - "Display": "Pediatric human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "406109008", - "Display": "Human immunodeficiency virus enzyme-linked immunosorbent assay test positive (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40780007", - "Display": "Human immunodeficiency virus I infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "414604009", - "Display": "Leukoplakia of tongue associated with human immunodeficiency virus disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "416729007", - "Display": "Neutropenia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420244003", - "Display": "Encephalitis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420281004", - "Display": "Skin rash associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420302007", - "Display": "Reticulosarcoma associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420308006", - "Display": "Retinal vascular changes associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420321004", - "Display": "Intestinal malabsorption associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420384005", - "Display": "Hematopoietic system disease associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420395004", - "Display": "Acute endocarditis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420403001", - "Display": "Pneumocystosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420452002", - "Display": "Myelopathy associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420524008", - "Display": "Kaposi's sarcoma associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420543008", - "Display": "Anemia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420544002", - "Display": "Bacterial pneumonia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420549007", - "Display": "Salivary gland disease associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420554003", - "Display": "Progressive multifocal leukoencephalopathy associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420614009", - "Display": "Organic dementia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420658009", - "Display": "Radiculitis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420687005", - "Display": "Ill-defined intestinal infection associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420691000", - "Display": "Nutritional deficiency associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420718004", - "Display": "Central nervous system demyelinating disease associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420721002", - "Display": "Acquired immunodeficiency syndrome-associated disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420764009", - "Display": "Salmonella infection associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420774007", - "Display": "Organic brain syndrome associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420787001", - "Display": "Pneumococcal pneumonia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420801006", - "Display": "Malaise associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420818005", - "Display": "Mycobacteriosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420877009", - "Display": "Dermatomycosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420900006", - "Display": "Fatigue associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420938005", - "Display": "Subacute endocarditis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420945005", - "Display": "Histoplasmosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421020000", - "Display": "Microsporidiosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421023003", - "Display": "Presenile dementia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421047005", - "Display": "Candidiasis of lung associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421077004", - "Display": "Disseminated candidiasis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421102007", - "Display": "Aplastic anemia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421230000", - "Display": "Hepatomegaly associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421272004", - "Display": "Subacute myocarditis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421283008", - "Display": "Primary lymphoma of brain associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421312009", - "Display": "Agranulocytosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421315006", - "Display": "Myelitis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421394009", - "Display": "Skin disorder associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421403008", - "Display": "Cryptococcosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421415007", - "Display": "Subacute adenoviral encephalitis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421431004", - "Display": "Nocardiosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421454008", - "Display": "Infectious gastroenteritis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421460008", - "Display": "Retinopathy associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421508002", - "Display": "Viral pneumonia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421529006", - "Display": "Dementia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421571007", - "Display": "Tuberculosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421597001", - "Display": "Polyneuropathy associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421660003", - "Display": "Failure to thrive in infant associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421671002", - "Display": "Pneumonia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421695000", - "Display": "Abnormal weight loss associated with acquired immunodeficiency syndrome (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421706001", - "Display": "Blindness associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421708000", - "Display": "Infective arthritis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421710003", - "Display": "Candidiasis of mouth associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421766003", - "Display": "Thrombocytopenia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421827003", - "Display": "Encephalopathy associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421851008", - "Display": "Acquired hemolytic anemia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421874007", - "Display": "Respiratory disorder associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421883002", - "Display": "Strongyloidiasis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421929001", - "Display": "Myocarditis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421983003", - "Display": "Noninfectious gastroenteritis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421998001", - "Display": "Central nervous disorder associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422003001", - "Display": "Cachexia associated with acquired immunodeficiency syndrome (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422012004", - "Display": "Neuritis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422089004", - "Display": "Encephalomyelitis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422127002", - "Display": "Herpes zoster associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422136003", - "Display": "Neuralgia associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422177004", - "Display": "Dyspnea associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422189002", - "Display": "Low vision associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422194002", - "Display": "Hyperhidrosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422282000", - "Display": "Malignant neoplasm associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422337001", - "Display": "Coccidioidomycosis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "432218001", - "Display": "History of asymptomatic human immunodeficiency virus infection (situation)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442537007", - "Display": "Non-Hodgkin lymphoma associated with Human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442662004", - "Display": "Copies of human immunodeficiency virus ribonucleic acid above reference range (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "445945000", - "Display": "Infectious disease associated with acquired immune deficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48794007", - "Display": "Human immunodeficiency virus infection with infectious mononucleosis-like syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "52079000", - "Display": "Congenital human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62479008", - "Display": "Acquired immune deficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "697904001", - "Display": "Pulmonary arterial hypertension associated with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "697965002", - "Display": "Cholangitis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "699433000", - "Display": "Human immunodeficiency virus carrier (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "700053002", - "Display": "Sepsis associated with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713260006", - "Display": "Subacute adenoviral encephalitis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713275003", - "Display": "Splenomegaly co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713278001", - "Display": "Neuralgia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713297001", - "Display": "Candidiasis of esophagus co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713298006", - "Display": "Heart disease co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713299003", - "Display": "Disorder of eye proper co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713300006", - "Display": "Disorder of gastrointestinal tract co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713316008", - "Display": "Eruption of skin co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713318009", - "Display": "Myocarditis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713320007", - "Display": "Radiculitis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713325002", - "Display": "Primary cerebral lymphoma co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713339002", - "Display": "Infection caused by Strongyloides co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713340000", - "Display": "Disorder of skin co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713341001", - "Display": "Myelitis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713342008", - "Display": "Infection caused by Salmonella co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713349004", - "Display": "Anemia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713444005", - "Display": "Hemophagocytic syndrome co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713445006", - "Display": "Disseminated infection caused by Strongyloides co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713446007", - "Display": "Chronic infection caused by herpes simplex virus co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713483007", - "Display": "Reticulosarcoma co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713484001", - "Display": "Disorder of respiratory system co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713487008", - "Display": "Progressive multifocal leukoencephalopathy co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713488003", - "Display": "Presenile dementia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713489006", - "Display": "Polyneuropathy co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713490002", - "Display": "Infection caused by Pneumocystis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713491003", - "Display": "Organic brain syndrome co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713497004", - "Display": "Candidiasis of mouth co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713503007", - "Display": "Disorder of spinal cord co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713504001", - "Display": "Disorder of kidney co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713505000", - "Display": "Gastrointestinal malabsorption syndrome co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713506004", - "Display": "Neuritis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713507008", - "Display": "Lymphadenopathy co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713508003", - "Display": "Aplastic anemia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713510001", - "Display": "Enlargement of liver co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713511002", - "Display": "Acute endocarditis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713523008", - "Display": "Cardiomyopathy co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713526000", - "Display": "Recurrent bacterial pneumonia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713527009", - "Display": "Disorder of peripheral nervous system co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713530002", - "Display": "Agranulocytosis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713531003", - "Display": "Visual impairment co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713532005", - "Display": "Infective arthritis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713533000", - "Display": "Acquired hemolytic anemia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713543002", - "Display": "Demyelinating disease of central nervous system co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713544008", - "Display": "Bacterial pneumonia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713545009", - "Display": "Infection caused by Nocardia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713546005", - "Display": "Isosporiasis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713570009", - "Display": "Infectious gastroenteritis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713571008", - "Display": "Disorder of central nervous system co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713572001", - "Display": "Malignant neoplastic disease co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713695001", - "Display": "Nephrotic syndrome co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713696000", - "Display": "Renal failure syndrome co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713718006", - "Display": "Diffuse non-Hodgkin immunoblastic lymphoma co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713722001", - "Display": "Infection caused by Cytomegalovirus co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713729005", - "Display": "Infection caused by Coccidia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713730000", - "Display": "Infection caused by herpes simplex virus co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713731001", - "Display": "Pyrexia of unknown origin co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713732008", - "Display": "Infection caused by Aspergillus co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713733003", - "Display": "Infection caused by herpes zoster virus co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713734009", - "Display": "Infection caused by Dermatophyte co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713742005", - "Display": "Human immunodeficiency virus antibody positive (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713844000", - "Display": "Dementia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713845004", - "Display": "Infection caused by Cryptosporidium co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713880000", - "Display": "Opportunistic mycosis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713881001", - "Display": "Infection caused by Microsporidia co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713887002", - "Display": "Focal segmental glomerulosclerosis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713897006", - "Display": "Burkitt lymphoma co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713964006", - "Display": "Multidermatomal infection caused by Herpes zoster co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "713967004", - "Display": "Disseminated atypical infection caused by Mycobacterium co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714083007", - "Display": "Recurrent salmonella sepsis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "714464009", - "Display": "Immune reconstitution inflammatory syndrome caused by human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "719522009", - "Display": "Infection of upper respiratory tract caused by Candida co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "721166000", - "Display": "Human immunodeficiency virus complicating pregnancy childbirth and the puerperium (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "722557007", - "Display": "Parkinsonism due to human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "733834006", - "Display": "Invasive carcinoma of uterine cervix co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "733835007", - "Display": "Extrapulmonary tuberculosis co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735521001", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 1 co-occurrent with tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735522008", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 1 co-occurrent with malaria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735523003", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 2 co-occurrent with tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735524009", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 2 co-occurrent with malaria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735525005", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 3 co-occurrent with tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735526006", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 3 co-occurrent with malaria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735527002", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 4 co-occurrent with tuberculosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "735528007", - "Display": "Human immunodeficiency virus World Health Organization 2007 stage 4 co-occurrent with malaria (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "771119002", - "Display": "Infection caused by Coccidia co-occurrent with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "771126002", - "Display": "Infection caused by Toxoplasma gondii co-occurrent with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "771127006", - "Display": "Infection caused by Isospora co-occurrent with acquired immunodeficiency syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79019005", - "Display": "Human immunodeficiency virus II infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "80191000119101", - "Display": "Symptomatic human immunodeficiency virus I infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81000119104", - "Display": "Symptomatic human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "838377003", - "Display": "Chronic hepatitis C co-occurrent with human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "840442003", - "Display": "Encephalitis caused by human immunodeficiency virus type 2 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "840498003", - "Display": "Encephalitis caused by human immunodeficiency virus type 1 (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86406008", - "Display": "Human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87117006", - "Display": "Human immunodeficiency virus infection with acute lymphadenitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90681000119107", - "Display": "Asymptomatic human immunodeficiency virus A1 infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90691000119105", - "Display": "Asymptomatic human immunodeficiency virus A2 infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91947003", - "Display": "Asymptomatic human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "91948008", - "Display": "Asymptomatic human immunodeficiency virus infection in pregnancy (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B20", - "Display": "Human immunodeficiency virus [HIV] disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B97.35", - "Display": "Human immunodeficiency virus" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "V08", - "Display": "Asymptomatic human immunodeficiency virus [HIV] infection status" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Z21", - "Display": "Asymptomatic human immunodeficiency virus [HIV] infection status" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.526.3.327.json b/build/module/resources/2.16.840.1.113883.3.526.3.327.json deleted file mode 100644 index 7d2a9d8..0000000 --- a/build/module/resources/2.16.840.1.113883.3.526.3.327.json +++ /dev/null @@ -1,1400 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193349004", - "Display": "Preproliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "193350004", - "Display": "Advanced maculopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "232020009", - "Display": "Disorder of macula due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "232021008", - "Display": "Proliferative retinopathy with optic disc neovascularization due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "232022001", - "Display": "Proliferative retinopathy with neovascularization elsewhere than the optic disc due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "232023006", - "Display": "Traction detachment of retina due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25412000", - "Display": "Microaneurysm of retinal artery due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "311782002", - "Display": "Advanced retinal disease due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312903003", - "Display": "Mild nonproliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312904009", - "Display": "Moderate nonproliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312905005", - "Display": "Severe nonproliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312906006", - "Display": "Non-high-risk proliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312907002", - "Display": "High risk proliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312908007", - "Display": "Quiescent proliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312909004", - "Display": "Proliferative retinopathy with iris neovascularization due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "312912001", - "Display": "Macular edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314010006", - "Display": "Diffuse exudative maculopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314011005", - "Display": "Focal exudative maculopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314014002", - "Display": "Ischemic maculopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314015001", - "Display": "Mixed maculopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "390834004", - "Display": "Nonproliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399862001", - "Display": "High risk proliferative retinopathy without macular edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399863006", - "Display": "Very severe nonproliferative retinopathy without macular edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399864000", - "Display": "Macular edema not clinically significant due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399865004", - "Display": "Very severe proliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399866003", - "Display": "Venous beading of retina due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399868002", - "Display": "Intraretinal microvascular anomaly due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399869005", - "Display": "High risk proliferative retinopathy not amenable to photocoagulation due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399870006", - "Display": "Non-high-risk proliferative retinopathy with no macular edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399871005", - "Display": "Visually threatening retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399872003", - "Display": "Severe nonproliferative retinopathy with clinically significant macular edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399873008", - "Display": "Severe nonproliferative retinopathy without macular edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399874002", - "Display": "High risk proliferative retinopathy with clinically significant macula edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399875001", - "Display": "Non-high-risk proliferative retinopathy with clinically significant macular edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399876000", - "Display": "Very severe nonproliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "399877009", - "Display": "Very severe nonproliferative retinopathy with clinically significant macular edema due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420486006", - "Display": "Exudative maculopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420789003", - "Display": "Retinopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421779007", - "Display": "Exudative maculopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "422034002", - "Display": "Retinopathy due to type 2 diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4855003", - "Display": "Retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59276001", - "Display": "Proliferative retinopathy due to diabetes mellitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "870420005", - "Display": "Severe nonproliferative retinopathy with venous beading of retina due to diabetes mellitus (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.311", - "Display": "Diabetes mellitus due to underlying condition with unspecified diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.319", - "Display": "Diabetes mellitus due to underlying condition with unspecified diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3211", - "Display": "Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3212", - "Display": "Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3213", - "Display": "Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3291", - "Display": "Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3292", - "Display": "Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3293", - "Display": "Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3311", - "Display": "Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3312", - "Display": "Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3313", - "Display": "Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3391", - "Display": "Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3392", - "Display": "Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3393", - "Display": "Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3411", - "Display": "Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3412", - "Display": "Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3413", - "Display": "Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3491", - "Display": "Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3492", - "Display": "Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3493", - "Display": "Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3511", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3512", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3513", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3521", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3522", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3523", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3531", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3532", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3533", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3541", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3542", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3543", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3551", - "Display": "Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3552", - "Display": "Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3553", - "Display": "Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3591", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3592", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E08.3593", - "Display": "Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.311", - "Display": "Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.319", - "Display": "Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3211", - "Display": "Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3212", - "Display": "Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3213", - "Display": "Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3291", - "Display": "Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3292", - "Display": "Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3293", - "Display": "Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3311", - "Display": "Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3312", - "Display": "Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3313", - "Display": "Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3391", - "Display": "Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3392", - "Display": "Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3393", - "Display": "Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3411", - "Display": "Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3412", - "Display": "Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3413", - "Display": "Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3491", - "Display": "Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3492", - "Display": "Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3493", - "Display": "Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3511", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3512", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3513", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3521", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3522", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3523", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3531", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3532", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3533", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3541", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3542", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3543", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3551", - "Display": "Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3552", - "Display": "Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3553", - "Display": "Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3591", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3592", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E09.3593", - "Display": "Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.311", - "Display": "Type 1 diabetes mellitus with unspecified diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.319", - "Display": "Type 1 diabetes mellitus with unspecified diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3211", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3212", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3213", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3291", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3292", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3293", - "Display": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3311", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3312", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3313", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3391", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3392", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3393", - "Display": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3411", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3412", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3413", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3491", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3492", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3493", - "Display": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3511", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3512", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3513", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3521", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3522", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3523", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3531", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3532", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3533", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3541", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3542", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3543", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3551", - "Display": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3552", - "Display": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3553", - "Display": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3591", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3592", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E10.3593", - "Display": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.311", - "Display": "Type 2 diabetes mellitus with unspecified diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.319", - "Display": "Type 2 diabetes mellitus with unspecified diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3211", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3212", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3213", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3291", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3292", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3293", - "Display": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3311", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3312", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3313", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3391", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3392", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3393", - "Display": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3411", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3412", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3413", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3491", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3492", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3493", - "Display": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3511", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3512", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3513", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3521", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3522", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3523", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3531", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3532", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3533", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3541", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3542", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3543", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3551", - "Display": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3552", - "Display": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3553", - "Display": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3591", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3592", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E11.3593", - "Display": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.311", - "Display": "Other specified diabetes mellitus with unspecified diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.319", - "Display": "Other specified diabetes mellitus with unspecified diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3211", - "Display": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3212", - "Display": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3213", - "Display": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3291", - "Display": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3292", - "Display": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3293", - "Display": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3311", - "Display": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3312", - "Display": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3313", - "Display": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3391", - "Display": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3392", - "Display": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3393", - "Display": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3411", - "Display": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3412", - "Display": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3413", - "Display": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3491", - "Display": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3492", - "Display": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3493", - "Display": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3511", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3512", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3513", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3521", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3522", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3523", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3531", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3532", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3533", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3541", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3542", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3543", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3551", - "Display": "Other specified diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3552", - "Display": "Other specified diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3553", - "Display": "Other specified diabetes mellitus with stable proliferative diabetic retinopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3591", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3592", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "E13.3593", - "Display": "Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.526.3.369.json b/build/module/resources/2.16.840.1.113883.3.526.3.369.json deleted file mode 100644 index a0cf76d..0000000 --- a/build/module/resources/2.16.840.1.113883.3.526.3.369.json +++ /dev/null @@ -1,632 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10365005", - "Display": "Right main coronary artery thrombosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123641001", - "Display": "Left coronary artery occlusion (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "123642008", - "Display": "Right coronary artery occlusion (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19057007", - "Display": "Status anginosus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194823009", - "Display": "Acute coronary insufficiency (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194828000", - "Display": "Angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194842008", - "Display": "Single coronary vessel disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194843003", - "Display": "Double coronary vessel disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "21470009", - "Display": "Syncope anginosa (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233817007", - "Display": "Triple vessel disease of the heart (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233819005", - "Display": "Stable angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233821000", - "Display": "New onset angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233970002", - "Display": "Coronary artery stenosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28248000", - "Display": "Left anterior descending coronary artery thrombosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29899005", - "Display": "Coronary artery embolism (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "300995000", - "Display": "Exercise-induced angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314116003", - "Display": "Post infarct angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "315025001", - "Display": "Refractory angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "315348000", - "Display": "Asymptomatic coronary heart disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35928006", - "Display": "Nocturnal angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371803003", - "Display": "Multi vessel coronary artery disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371804009", - "Display": "Left main coronary artery disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371805005", - "Display": "Significant coronary bypass graft disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371806006", - "Display": "Progressive angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371807002", - "Display": "Atypical angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371808007", - "Display": "Recurrent angina status post percutaneous transluminal coronary angioplasty (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371809004", - "Display": "Recurrent angina status post coronary stent placement (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371810009", - "Display": "Recurrent angina status post coronary artery bypass graft (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371811008", - "Display": "Recurrent angina status post rotational atherectomy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371812001", - "Display": "Recurrent angina status post directional coronary atherectomy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "398274000", - "Display": "Coronary artery thrombosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "408546009", - "Display": "Coronary artery bypass graft occlusion (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41334000", - "Display": "Angina" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "420006002", - "Display": "Obliterative coronary artery disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "421327009", - "Display": "Coronary artery stent thrombosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "427919004", - "Display": "Coronary arteriosclerosis caused by radiation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429245005", - "Display": "Recurrent coronary arteriosclerosis after percutaneous transluminal coronary angioplasty (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "429559004", - "Display": "Typical angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443502000", - "Display": "Atherosclerosis of coronary artery (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4557003", - "Display": "Preinfarction syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50570003", - "Display": "Aneurysm of coronary vessels (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53741008", - "Display": "Coronary arteriosclerosis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59021001", - "Display": "Angina decubitus (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61490001", - "Display": "Angina" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "62207008", - "Display": "Syphilitic ostial coronary disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63739005", - "Display": "Coronary occlusion (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67682002", - "Display": "Coronary artery atheroma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74218008", - "Display": "Coronary artery arising from main pulmonary artery (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75398000", - "Display": "Anomalous origin of coronary artery (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85284003", - "Display": "Angina" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87343002", - "Display": "Prinzmetal angina (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "89323001", - "Display": "Angina" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92517006", - "Display": "Calcific coronary arteriosclerosis (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I20.0", - "Display": "Unstable angina" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I20.1", - "Display": "Angina pectoris with documented spasm" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I20.8", - "Display": "Other forms of angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I20.9", - "Display": "Angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I24.0", - "Display": "Acute coronary thrombosis not resulting in myocardial infarction" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I24.8", - "Display": "Other forms of acute ischemic heart disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I24.9", - "Display": "Acute ischemic heart disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.10", - "Display": "Atherosclerotic heart disease of native coronary artery without angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.110", - "Display": "Atherosclerotic heart disease of native coronary artery with unstable angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.111", - "Display": "Atherosclerotic heart disease of native coronary artery with angina pectoris with documented spasm" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.118", - "Display": "Atherosclerotic heart disease of native coronary artery with other forms of angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.119", - "Display": "Atherosclerotic heart disease of native coronary artery with unspecified angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.5", - "Display": "Ischemic cardiomyopathy" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.6", - "Display": "Silent myocardial ischemia" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.700", - "Display": "Atherosclerosis of coronary artery bypass graft(s)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.701", - "Display": "Atherosclerosis of coronary artery bypass graft(s)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.708", - "Display": "Atherosclerosis of coronary artery bypass graft(s)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.709", - "Display": "Atherosclerosis of coronary artery bypass graft(s)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.710", - "Display": "Atherosclerosis of autologous vein coronary artery bypass graft(s) with unstable angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.711", - "Display": "Atherosclerosis of autologous vein coronary artery bypass graft(s) with angina pectoris with documented spasm" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.718", - "Display": "Atherosclerosis of autologous vein coronary artery bypass graft(s) with other forms of angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.719", - "Display": "Atherosclerosis of autologous vein coronary artery bypass graft(s) with unspecified angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.720", - "Display": "Atherosclerosis of autologous artery coronary artery bypass graft(s) with unstable angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.721", - "Display": "Atherosclerosis of autologous artery coronary artery bypass graft(s) with angina pectoris with documented spasm" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.728", - "Display": "Atherosclerosis of autologous artery coronary artery bypass graft(s) with other forms of angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.729", - "Display": "Atherosclerosis of autologous artery coronary artery bypass graft(s) with unspecified angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.730", - "Display": "Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with unstable angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.731", - "Display": "Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with angina pectoris with documented spasm" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.738", - "Display": "Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with other forms of angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.739", - "Display": "Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with unspecified angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.750", - "Display": "Atherosclerosis of native coronary artery of transplanted heart with unstable angina" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.751", - "Display": "Atherosclerosis of native coronary artery of transplanted heart with angina pectoris with documented spasm" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.758", - "Display": "Atherosclerosis of native coronary artery of transplanted heart with other forms of angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.759", - "Display": "Atherosclerosis of native coronary artery of transplanted heart with unspecified angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.760", - "Display": "Atherosclerosis of bypass graft of coronary artery of transplanted heart with unstable angina" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.761", - "Display": "Atherosclerosis of bypass graft of coronary artery of transplanted heart with angina pectoris with documented spasm" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.768", - "Display": "Atherosclerosis of bypass graft of coronary artery of transplanted heart with other forms of angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.769", - "Display": "Atherosclerosis of bypass graft of coronary artery of transplanted heart with unspecified angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.790", - "Display": "Atherosclerosis of other coronary artery bypass graft(s) with unstable angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.791", - "Display": "Atherosclerosis of other coronary artery bypass graft(s) with angina pectoris with documented spasm" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.798", - "Display": "Atherosclerosis of other coronary artery bypass graft(s) with other forms of angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.799", - "Display": "Atherosclerosis of other coronary artery bypass graft(s) with unspecified angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.810", - "Display": "Atherosclerosis of coronary artery bypass graft(s) without angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.811", - "Display": "Atherosclerosis of native coronary artery of transplanted heart without angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.812", - "Display": "Atherosclerosis of bypass graft of coronary artery of transplanted heart without angina pectoris" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.82", - "Display": "Chronic total occlusion of coronary artery" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.83", - "Display": "Coronary atherosclerosis due to lipid rich plaque" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.89", - "Display": "Other forms of chronic ischemic heart disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I25.9", - "Display": "Chronic ischemic heart disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Z95.1", - "Display": "Presence of aortocoronary bypass graft" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Z95.5", - "Display": "Presence of coronary angioplasty implant and graft" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "Z98.61", - "Display": "Coronary angioplasty status" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.526.3.376.json b/build/module/resources/2.16.840.1.113883.3.526.3.376.json deleted file mode 100644 index 5b9a84a..0000000 --- a/build/module/resources/2.16.840.1.113883.3.526.3.376.json +++ /dev/null @@ -1,566 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10091002", - "Display": "High output heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "101281000119107", - "Display": "Congestive heart failure due to cardiomyopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10633002", - "Display": "Acute congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111283005", - "Display": "Chronic left-sided heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "120851000119104", - "Display": "Systolic heart failure stage D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "120861000119102", - "Display": "Systolic heart failure stage C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "120871000119108", - "Display": "Systolic heart failure stage B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "120881000119106", - "Display": "Diastolic heart failure stage D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "120891000119109", - "Display": "Diastolic heart failure stage C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "120901000119108", - "Display": "Diastolic heart failure stage B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "153931000119109", - "Display": "Acute combined systolic and diastolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "153941000119100", - "Display": "Chronic combined systolic and diastolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "153951000119103", - "Display": "Acute on chronic combined systolic and diastolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15629541000119106", - "Display": "Congestive heart failure stage C due to ischemic cardiomyopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15629591000119103", - "Display": "Congestive heart failure stage B due to ischemic cardiomyopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15629641000119107", - "Display": "Systolic heart failure stage B due to ischemic cardiomyopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15629741000119102", - "Display": "Systolic heart failure stage C due to ischemic cardiomyopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15781000119107", - "Display": "Hypertensive heart AND chronic kidney disease with congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15964701000119109", - "Display": "Acute cor pulmonale co-occurrent and due to saddle embolus of pulmonary artery (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194767001", - "Display": "Benign hypertensive heart disease with congestive cardiac failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194779001", - "Display": "Hypertensive heart and renal disease with (congestive) heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "194781004", - "Display": "Hypertensive heart and renal disease with both (congestive) heart failure and renal failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195111005", - "Display": "Decompensated cardiac failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195112003", - "Display": "Compensated cardiac failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "195114002", - "Display": "Acute left ventricular failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "206586007", - "Display": "Congenital cardiac failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23341000119109", - "Display": "Congestive heart failure with right heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "233924009", - "Display": "Heart failure as a complication of care (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25544003", - "Display": "Low output heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "314206003", - "Display": "Refractory heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "364006", - "Display": "Acute left-sided heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "410431009", - "Display": "Cardiorespiratory failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "417996009", - "Display": "Systolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "418304008", - "Display": "Diastolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42343007", - "Display": "Congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424404003", - "Display": "Decompensated chronic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426263006", - "Display": "Congestive heart failure due to left ventricular systolic dysfunction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "426611007", - "Display": "Congestive heart failure due to valvular disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43736008", - "Display": "Rheumatic left ventricular failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44088000", - "Display": "Low cardiac output syndrome (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441481004", - "Display": "Chronic systolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "441530006", - "Display": "Chronic diastolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "44313006", - "Display": "Right heart failure secondary to left heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443253003", - "Display": "Acute on chronic systolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443254009", - "Display": "Acute systolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443343001", - "Display": "Acute diastolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "443344007", - "Display": "Acute on chronic diastolic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46113002", - "Display": "Hypertensive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "471880001", - "Display": "Heart failure due to end stage congenital heart disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48447003", - "Display": "Chronic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5148006", - "Display": "Hypertensive heart disease with congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5375005", - "Display": "Chronic left-sided congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "56675007", - "Display": "Acute heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67431000119105", - "Display": "Congestive heart failure stage D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67441000119101", - "Display": "Congestive heart failure stage C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "698594003", - "Display": "Symptomatic congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703272007", - "Display": "Heart failure with reduced ejection fraction (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703273002", - "Display": "Heart failure with reduced ejection fraction due to coronary artery disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703274008", - "Display": "Heart failure with reduced ejection fraction due to myocarditis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703275009", - "Display": "Heart failure with reduced ejection fraction due to cardiomyopathy (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "703276005", - "Display": "Heart failure with reduced ejection fraction due to heart valve disease (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "717840005", - "Display": "Congestive heart failure stage B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "72481000119103", - "Display": "Congestive heart failure as early postoperative complication (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74960003", - "Display": "Acute left-sided congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82523003", - "Display": "Congestive rheumatic heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83105008", - "Display": "Malignant hypertensive heart disease with congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84114007", - "Display": "Heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85232009", - "Display": "Left heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "871617000", - "Display": "Low output heart failure due to and following Fontan operation (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "88805009", - "Display": "Chronic congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "90727007", - "Display": "Pleural effusion due to congestive heart failure (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "92506005", - "Display": "Biventricular congestive heart failure (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I11.0", - "Display": "Hypertensive heart disease with heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.0", - "Display": "Hypertensive heart and chronic kidney disease with heart failure and stage 1 through stage 4 chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I13.2", - "Display": "Hypertensive heart and chronic kidney disease with heart failure and with stage 5 chronic kidney disease" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.1", - "Display": "Left ventricular failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.20", - "Display": "Unspecified systolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.21", - "Display": "Acute systolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.22", - "Display": "Chronic systolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.23", - "Display": "Acute on chronic systolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.30", - "Display": "Unspecified diastolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.31", - "Display": "Acute diastolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.32", - "Display": "Chronic diastolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.33", - "Display": "Acute on chronic diastolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.40", - "Display": "Unspecified combined systolic (congestive) and diastolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.41", - "Display": "Acute combined systolic (congestive) and diastolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.42", - "Display": "Chronic combined systolic (congestive) and diastolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.43", - "Display": "Acute on chronic combined systolic (congestive) and diastolic (congestive) heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.814", - "Display": "Right heart failure due to left heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.82", - "Display": "Biventricular heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.83", - "Display": "High output heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.84", - "Display": "End stage heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.89", - "Display": "Other heart failure" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "I50.9", - "Display": "Heart failure" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.600.145.json b/build/module/resources/2.16.840.1.113883.3.600.145.json deleted file mode 100644 index 0f03b5d..0000000 --- a/build/module/resources/2.16.840.1.113883.3.600.145.json +++ /dev/null @@ -1,662 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10811121000119102", - "Display": "Major depressive disorder in mother complicating childbirth (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "133121000119109", - "Display": "Severe seasonal affective disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14183003", - "Display": "Chronic major depressive disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15193003", - "Display": "Severe recurrent major depression with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "15639000", - "Display": "Moderate major depression" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "18818009", - "Display": "Moderate recurrent major depression (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191604000", - "Display": "Single major depressive episode" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191610000", - "Display": "Recurrent major depressive episodes" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191611001", - "Display": "Recurrent major depressive episodes" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191613003", - "Display": "Recurrent major depressive episodes" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191616006", - "Display": "Recurrent depression (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191659001", - "Display": "Atypical depressive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "192080009", - "Display": "Chronic depression (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19527009", - "Display": "Single episode of major depression in full remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19694002", - "Display": "Late onset dysthymia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20250007", - "Display": "Severe major depression" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231504006", - "Display": "Mixed anxiety and depressive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231542000", - "Display": "Depressive conduct disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2506003", - "Display": "Early onset dysthymia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "25922000", - "Display": "Major depressive disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "2618002", - "Display": "Chronic recurrent major depressive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "268621008", - "Display": "Recurrent major depressive episodes (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28475009", - "Display": "Severe recurrent major depression with psychotic features (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "290.13", - "Display": "Presenile dementia with depressive features" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "290.21", - "Display": "Senile dementia with depressive features" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "290.43", - "Display": "Vascular dementia" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.20", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.21", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.22", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.23", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.24", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.25", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.26", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.30", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.31", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.32", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.33", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.34", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.35", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.36", - "Display": "Major depressive affective disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.82", - "Display": "Atypical depressive disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "298.0", - "Display": "Depressive type psychosis" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "300.4", - "Display": "Dysthymic disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "301.12", - "Display": "Chronic depressive personality disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "309.0", - "Display": "Adjustment disorder with depressed mood" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "309.1", - "Display": "Prolonged depressive reaction" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "309.28", - "Display": "Adjustment disorder with mixed anxiety and depressed mood" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3109008", - "Display": "Secondary dysthymia early onset (disorder)" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "311", - "Display": "Depressive disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "319768000", - "Display": "Recurrent major depressive disorder with melancholic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "320751009", - "Display": "Major depression" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33078009", - "Display": "Severe recurrent major depression with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35489007", - "Display": "Depressive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36170009", - "Display": "Secondary dysthymia late onset (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36474008", - "Display": "Severe recurrent major depression without psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36923009", - "Display": "Major depression" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "370143000", - "Display": "Major depressive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38451003", - "Display": "Primary dysthymia early onset (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38694004", - "Display": "Recurrent major depressive disorder with atypical features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "39809009", - "Display": "Recurrent major depressive disorder with catatonic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40379007", - "Display": "Mild recurrent major depression (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40568001", - "Display": "Recurrent brief depressive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "42925002", - "Display": "Major depressive disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "430852001", - "Display": "Severe major depression" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442057004", - "Display": "Chronic depressive personality disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48589009", - "Display": "Minor depressive disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63778009", - "Display": "Major depressive disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66344007", - "Display": "Recurrent major depression (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "67711008", - "Display": "Primary dysthymia late onset (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "69392006", - "Display": "Major depressive disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71336009", - "Display": "Recurrent major depressive disorder with postpartum onset (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73867007", - "Display": "Severe major depression with psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75084000", - "Display": "Severe major depression without psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75837004", - "Display": "Mood disorder with depressive features due to general medical condition (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76441001", - "Display": "Severe major depression" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77486005", - "Display": "Mood disorder with major depressive-like episode due to general medical condition (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "77911002", - "Display": "Severe major depression" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78667006", - "Display": "Dysthymia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79298009", - "Display": "Mild major depression" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81319007", - "Display": "Severe bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83176005", - "Display": "Primary dysthymia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "832007", - "Display": "Moderate major depression (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "84760002", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85080004", - "Display": "Secondary dysthymia (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87512008", - "Display": "Mild major depression (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F01.51", - "Display": "Vascular dementia with behavioral disturbance" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F32.0", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F32.1", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F32.2", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F32.3", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F32.4", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F32.5", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F32.89", - "Display": "Other specified depressive episodes" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F32.9", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.0", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.1", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.2", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.3", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.40", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.41", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.42", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.8", - "Display": "Other recurrent depressive disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F33.9", - "Display": "Major depressive disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F34.1", - "Display": "Dysthymic disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F34.81", - "Display": "Disruptive mood dysregulation disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F34.89", - "Display": "Other specified persistent mood disorders" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.21", - "Display": "Adjustment disorder with depressed mood" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F43.23", - "Display": "Adjustment disorder with mixed anxiety and depressed mood" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F53.0", - "Display": "Postpartum depression" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F53.1", - "Display": "Puerperal psychosis" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.600.450.json b/build/module/resources/2.16.840.1.113883.3.600.450.json deleted file mode 100644 index 4f5f40a..0000000 --- a/build/module/resources/2.16.840.1.113883.3.600.450.json +++ /dev/null @@ -1,962 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10875004", - "Display": "Severe mixed bipolar I disorder with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "10981006", - "Display": "Severe mixed bipolar I disorder with psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111485001", - "Display": "Mixed bipolar I disorder in full remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1196001", - "Display": "Chronic bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "133091000119105", - "Display": "Rapid cycling bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13313007", - "Display": "Mild bipolar disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13581000", - "Display": "Severe bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13746004", - "Display": "Bipolar disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "14495005", - "Display": "Severe bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1499003", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "162004", - "Display": "Severe manic bipolar I disorder without psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16295005", - "Display": "Bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "16506000", - "Display": "Mixed bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "17782008", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191618007", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191620005", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191621009", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191623007", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191625000", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191627008", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191629006", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191630001", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191634005", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191636007", - "Display": "Mixed bipolar affective disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191638008", - "Display": "Mixed bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191639000", - "Display": "Mixed bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191641004", - "Display": "Mixed bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "191643001", - "Display": "Mixed bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "192362008", - "Display": "Bipolar affective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "19300006", - "Display": "Severe bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "20960007", - "Display": "Severe bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "21900002", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22121000", - "Display": "Depressed bipolar I disorder in full remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "22407005", - "Display": "Bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "231444002", - "Display": "Organic bipolar disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "23741000119105", - "Display": "Severe manic bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "261000119107", - "Display": "Severe depressed bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26203008", - "Display": "Severe depressed bipolar I disorder with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26530004", - "Display": "Severe bipolar disorder with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "271000119101", - "Display": "Severe mixed bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28663008", - "Display": "Severe manic bipolar I disorder with psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "28884001", - "Display": "Moderate bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.00", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.01", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.02", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.03", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.04", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.05", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.06", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.40", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.41", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.42", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.43", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.44", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.45", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.46", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.50", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.51", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.52", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.53", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.54", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.55", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.56", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.60", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.61", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.62", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.63", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.64", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.65", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.66", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.7", - "Display": "Bipolar I disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.80", - "Display": "Bipolar disorder" - }, - { - "System": "2.16.840.1.113883.6.103", - "Version": "2013", - "Code": "296.89", - "Display": "Other bipolar disorders" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "29929003", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30520009", - "Display": "Severe bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30687003", - "Display": "Bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "30935000", - "Display": "Manic bipolar I disorder in full remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "31446002", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "33380008", - "Display": "Severe manic bipolar I disorder with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "34315001", - "Display": "Bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "3530005", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35481005", - "Display": "Mixed bipolar I disorder in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "35846004", - "Display": "Moderate bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "36583000", - "Display": "Mixed bipolar I disorder in partial remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371596008", - "Display": "Bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371599001", - "Display": "Severe bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371600003", - "Display": "Severe bipolar disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "371604007", - "Display": "Severe bipolar II disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38368003", - "Display": "Schizoaffective disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "40926005", - "Display": "Moderate mixed bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41552001", - "Display": "Mild bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41832009", - "Display": "Severe bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "41836007", - "Display": "Bipolar disorder in full remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43568002", - "Display": "Bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "43769008", - "Display": "Mild mixed bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "4441000", - "Display": "Severe bipolar disorder with psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "45479006", - "Display": "Manic bipolar I disorder in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "46229002", - "Display": "Severe mixed bipolar I disorder without psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "48937005", - "Display": "Bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49468007", - "Display": "Depressed bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "49512000", - "Display": "Depressed bipolar I disorder in partial remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "51637008", - "Display": "Chronic bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53049002", - "Display": "Severe bipolar disorder without psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53607008", - "Display": "Depressed bipolar I disorder in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "54761006", - "Display": "Severe depressed bipolar I disorder with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "55516002", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "5703000", - "Display": "Bipolar disorder in partial remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "59617007", - "Display": "Severe depressed bipolar I disorder with psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61403008", - "Display": "Severe depressed bipolar I disorder without psychotic features (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "63249007", - "Display": "Manic bipolar I disorder in partial remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "64731001", - "Display": "Severe mixed bipolar I disorder with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "65042007", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66631006", - "Display": "Moderate depressed bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "68569003", - "Display": "Manic bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "70546001", - "Display": "Severe bipolar disorder with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71294008", - "Display": "Mild bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "71984005", - "Display": "Mild manic bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "73471000", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "74686005", - "Display": "Mild depressed bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75360000", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "75752004", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78269000", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "78640000", - "Display": "Severe manic bipolar I disorder with psychotic features" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "79584002", - "Display": "Moderate bipolar disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "81319007", - "Display": "Severe bipolar II disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "82998009", - "Display": "Moderate manic bipolar I disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "83225003", - "Display": "Bipolar II disorder (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "85248005", - "Display": "Bipolar disorder in remission (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "86058007", - "Display": "Severe bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87203005", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "87950005", - "Display": "Bipolar I disorder" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "9340000", - "Display": "Bipolar I disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.0", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.10", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.11", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.12", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.13", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.2", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.30", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.31", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.32", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.4", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.5", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.60", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.61", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.62", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.63", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.64", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.70", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.71", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.72", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.73", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.74", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.75", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.76", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.77", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.78", - "Display": "Bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.81", - "Display": "Bipolar II disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.89", - "Display": "Other bipolar disorder" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "F31.9", - "Display": "Bipolar disorder" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.67.1.101.1.269.json b/build/module/resources/2.16.840.1.113883.3.67.1.101.1.269.json deleted file mode 100644 index 303c0ea..0000000 --- a/build/module/resources/2.16.840.1.113883.3.67.1.101.1.269.json +++ /dev/null @@ -1,188 +0,0 @@ -[ - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "1116000", - "Display": "Chronic aggressive type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "111891008", - "Display": "Viral hepatitis B without hepatic coma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "13265006", - "Display": "Acute fulminating type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186624004", - "Display": "Hepatic coma due to acute hepatitis B with delta agent (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186626002", - "Display": "Acute hepatitis B with delta-agent (coinfection) without hepatic coma (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "186639003", - "Display": "Chronic viral hepatitis B without delta-agent (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235864009", - "Display": "Acute hepatitis B with hepatitis D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235865005", - "Display": "Hepatitis D superinfection of hepatitis B carrier (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235869004", - "Display": "Chronic viral hepatitis B with hepatitis D (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "235871004", - "Display": "Hepatitis B carrier (finding)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "26206000", - "Display": "Hepatic coma due to viral hepatitis B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "38662009", - "Display": "Chronic persistent type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424099008", - "Display": "Hepatic coma due to acute hepatitis B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "424340000", - "Display": "Hepatic coma due to chronic hepatitis B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442134007", - "Display": "Hepatitis B associated with Human immunodeficiency virus infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "442374005", - "Display": "Hepatitis B and hepatitis C (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "446698005", - "Display": "Reactivation of hepatitis B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "50167007", - "Display": "Chronic active type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "53425008", - "Display": "Anicteric type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "60498001", - "Display": "Congenital viral hepatitis B infection (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "61977001", - "Display": "Chronic type B viral hepatitis (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "66071002", - "Display": "Viral hepatitis type B (disorder)" - }, - { - "System": "http://snomed.info/sct", - "Version": "2021-03", - "Code": "76795007", - "Display": "Acute type B viral hepatitis (disorder)" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B16.0", - "Display": "Acute hepatitis B with delta-agent with hepatic coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B16.1", - "Display": "Acute hepatitis B with delta-agent without hepatic coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B16.2", - "Display": "Acute hepatitis B without delta-agent with hepatic coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B16.9", - "Display": "Acute hepatitis B without delta-agent and without hepatic coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B18.0", - "Display": "Chronic viral hepatitis B with delta-agent" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B18.1", - "Display": "Chronic viral hepatitis B without delta-agent" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B19.10", - "Display": "Unspecified viral hepatitis B without hepatic coma" - }, - { - "System": "http://hl7.org/fhir/sid/icd-10-cm", - "Version": "2022", - "Code": "B19.11", - "Display": "Unspecified viral hepatitis B with hepatic coma" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.6929.2.1002.json b/build/module/resources/2.16.840.1.113883.3.6929.2.1002.json deleted file mode 100644 index 7367a43..0000000 --- a/build/module/resources/2.16.840.1.113883.3.6929.2.1002.json +++ /dev/null @@ -1,50 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "13705-9", - "Display": "Albumin/Creatinine [Mass Ratio] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14585-4", - "Display": "Albumin/Creatinine [Molar ratio] in Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14958-3", - "Display": "Microalbumin/Creatinine [Mass Ratio] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "14959-1", - "Display": "Microalbumin/Creatinine [Mass Ratio] in Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "32294-1", - "Display": "Albumin/Creatinine [Ratio] in Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "44292-1", - "Display": "Microalbumin/Creatinine [Mass Ratio] in 12 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "76401-9", - "Display": "Albumin/Creatinine [Ratio] in 24 hour Urine" - }, - { - "System": "http://loinc.org", - "Version": "2.70", - "Code": "9318-7", - "Display": "Albumin/Creatinine [Mass Ratio] in Urine" - } -] \ No newline at end of file diff --git a/build/module/resources/2.16.840.1.113883.3.6929.3.1000.json b/build/module/resources/2.16.840.1.113883.3.6929.3.1000.json deleted file mode 100644 index a443516..0000000 --- a/build/module/resources/2.16.840.1.113883.3.6929.3.1000.json +++ /dev/null @@ -1,38 +0,0 @@ -[ - { - "System": "http://loinc.org", - "Version": "2.68", - "Code": "48642-3", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among non-blacks [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.68", - "Code": "48643-1", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among blacks [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.68", - "Code": "50044-7", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among females [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.68", - "Code": "50210-4", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.68", - "Code": "62238-1", - "Display": "Glomerular filtration rate/1.73 sq M.predicted [Volume Rate/Area] in Serum" - }, - { - "System": "http://loinc.org", - "Version": "2.68", - "Code": "70969-1", - "Display": "Glomerular filtration rate/1.73 sq M.predicted among males [Volume Rate/Area] in Serum" - } -] \ No newline at end of file diff --git a/build/module/types/index.d.ts b/build/module/types/index.d.ts deleted file mode 100644 index 193fb35..0000000 --- a/build/module/types/index.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -export declare type ObservationMode = 'panel' | 'code' | 'component' | 'combo'; -export declare type ValueAsset = { - System: string; - Version: string; - Code: string; - Display: string; -}; diff --git a/build/module/types/index.js b/build/module/types/index.js deleted file mode 100644 index 0c1a5bc..0000000 --- a/build/module/types/index.js +++ /dev/null @@ -1,2 +0,0 @@ -export {}; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zb3VyY2UvdHlwZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9 \ No newline at end of file diff --git a/build/module/types/mcc-observations.d.ts b/build/module/types/mcc-observations.d.ts deleted file mode 100644 index 6d78423..0000000 --- a/build/module/types/mcc-observations.d.ts +++ /dev/null @@ -1,171 +0,0 @@ -export declare type MccTime = { - value?: string; -}; -export declare type MccDateTime = { - rawDate: string; - date: string; -}; -export declare type MccInstant = { - value: string; -}; -export declare type MccDate = { - rawDate: string; - date: string; -}; -export declare type MccPeriod = { - start?: MccDate; - end?: MccDate; -}; -export declare type MccCoding = { - system?: string; - version?: string; - code: string; - display?: string; -}; -export declare type Repeat = { - bounds?: Bounds; - count?: number; - countMax?: number; - duration?: string; - durationMax?: string; - durationUnit?: string; - frequency?: number; - frequencyMax?: number; - period?: string; - periodMax?: string; - periodUnit?: string; - dayOfWeek?: Array; - timeOfDay?: Array; - when?: Array; - offset?: number; - readable?: string; -}; -export declare type MccQuantity = { - unit?: string; - comparator?: string; - value?: number; - system?: string; - code?: string; - display?: string; -}; -export declare type MccRange = { - high?: MccQuantity; - low?: MccQuantity; -}; -export declare type MccDuration = { - unit?: string; - comparator?: string; - value?: number; - system?: string; - code?: string; - display?: string; -}; -export declare type Bounds = { - type?: string; - range?: MccRange; - period?: MccPeriod; - duration?: MccDuration; -}; -export declare type MccCodeableConcept = { - coding?: Array; - text: string; -}; -export declare type MccTiming = { - event?: Array; - code?: MccCodeableConcept; - repeat?: Repeat; - readable: string; -}; -export declare type Effective = { - type?: string; - dateTime?: MccDateTime; - period?: MccPeriod; - timing?: MccTiming; - instant?: MccInstant; -}; -export declare type MccReference = { - reference?: string; - display?: string; - type?: string; -}; -export declare type MccId = { - value: string; -}; -export declare type MccRatio = { - numerator?: MccQuantity; - denominator?: MccQuantity; -}; -export declare type MccSimpleQuantity = { - unit?: string; - value?: number; - system?: string; - code?: string; - display?: string; -}; -export declare type MccSampledData = { - origin?: MccSimpleQuantity; - period?: number; - factor?: number; - lowerlimit?: number; - upperlimit?: number; - dimensions?: number; - data?: string; -}; -export declare type MccIdentifer = { - use?: string; - type?: MccCodeableConcept; - system?: string; - value?: string; - period?: MccPeriod; - assigner?: MccReference; -}; -export declare type GenericType = { - valueType: string; - stringValue?: string; - integerValue?: number; - booleanValue?: boolean; - idValue?: MccId; - codeableConceptValue?: MccCodeableConcept; - quantityValue?: MccQuantity; - rangeValue?: MccRange; - ratioValue?: MccRatio; - periodValue?: MccPeriod; - dateValue?: MccDate; - timeValue?: MccTime; - dateTimeValue?: MccDateTime; - sampledDataValue?: MccSampledData; - durationValue?: MccDuration; - timingValue?: MccTiming; - instantValue?: MccInstant; - identiferValue?: MccIdentifer; - codingValue?: MccCoding; - decimalValue?: number; -}; -export declare type ReferenceRange = { - low?: MccQuantity; - high?: MccQuantity; - type?: MccCodeableConcept; - appliesTo?: Array; - age?: MccRange; - text?: string; -}; -export declare type ObservationComponent = { - code: MccCodeableConcept; - value: GenericType; - interpretation?: Array; - dataAbsentReason?: MccCodeableConcept; - referenceRanges?: Array; -}; -export declare type MccObservation = { - code: MccCodeableConcept; - status: string; - basedOn?: Array; - effective?: Effective; - value?: GenericType; - note?: string; - referenceRanges?: Array; - components?: Array; - category?: Array; - dataAbsentReason?: MccCodeableConcept; - fhirid?: string; -}; diff --git a/build/module/types/mcc-observations.js b/build/module/types/mcc-observations.js deleted file mode 100644 index 5bddda1..0000000 --- a/build/module/types/mcc-observations.js +++ /dev/null @@ -1,2 +0,0 @@ -export {}; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWNjLW9ic2VydmF0aW9ucy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NvdXJjZS90eXBlcy9tY2Mtb2JzZXJ2YXRpb25zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ== \ No newline at end of file diff --git a/build/module/utils/loglevel.d.ts b/build/module/utils/loglevel.d.ts deleted file mode 100644 index 8e386e1..0000000 --- a/build/module/utils/loglevel.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -declare const logger: { - info: (message: any) => void; - debug: (message: any) => void; - error: (message: any) => void; -}; -export default logger; diff --git a/build/module/utils/loglevel.js b/build/module/utils/loglevel.js deleted file mode 100644 index c2d0a03..0000000 --- a/build/module/utils/loglevel.js +++ /dev/null @@ -1,28 +0,0 @@ -const logger = { - info: (message) => { - if (typeof message === 'object') { - console.info(message); - } - else { - console.info(`EccDS: ${message}`); - } - }, - debug: (message) => { - if (typeof message === 'object') { - console.log(message); - } - else { - console.log(`EccDS: ${message}`); - } - }, - error: (message) => { - if (typeof message === 'object') { - console.warn(message); - } - else { - console.warn(`EccDS: ${message}`); - } - }, -}; -export default logger; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9nbGV2ZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zb3VyY2UvdXRpbHMvbG9nbGV2ZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxNQUFNLEdBQUc7SUFDYixJQUFJLEVBQUUsQ0FBQyxPQUFPLEVBQUUsRUFBRTtRQUNoQixJQUFJLE9BQU8sT0FBTyxLQUFLLFFBQVEsRUFBRTtZQUMvQixPQUFPLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1NBQ3ZCO2FBQU07WUFDTCxPQUFPLENBQUMsSUFBSSxDQUFDLFVBQVUsT0FBTyxFQUFFLENBQUMsQ0FBQztTQUNuQztJQUNILENBQUM7SUFDRCxLQUFLLEVBQUUsQ0FBQyxPQUFPLEVBQUUsRUFBRTtRQUNqQixJQUFJLE9BQU8sT0FBTyxLQUFLLFFBQVEsRUFBRTtZQUMvQixPQUFPLENBQUMsR0FBRyxDQUFDLE9BQU8sQ0FBQyxDQUFDO1NBQ3RCO2FBQU07WUFDTCxPQUFPLENBQUMsR0FBRyxDQUFDLFVBQVUsT0FBTyxFQUFFLENBQUMsQ0FBQztTQUNsQztJQUNILENBQUM7SUFDRCxLQUFLLEVBQUUsQ0FBQyxPQUFPLEVBQUUsRUFBRTtRQUNqQixJQUFJLE9BQU8sT0FBTyxLQUFLLFFBQVEsRUFBRTtZQUMvQixPQUFPLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1NBQ3ZCO2FBQU07WUFDTCxPQUFPLENBQUMsSUFBSSxDQUFDLFVBQVUsT0FBTyxFQUFFLENBQUMsQ0FBQztTQUNuQztJQUNILENBQUM7Q0FDRixDQUFDO0FBRUYsZUFBZSxNQUFNLENBQUMifQ== \ No newline at end of file diff --git a/build/tsconfig.module.tsbuildinfo b/build/tsconfig.module.tsbuildinfo deleted file mode 100644 index e20e9b5..0000000 --- a/build/tsconfig.module.tsbuildinfo +++ /dev/null @@ -1 +0,0 @@ -{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/@types/fhir/r4.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/fhirclient/lib/client.d.ts","../node_modules/fhirclient/lib/lib.d.ts","../node_modules/fhirclient/lib/types.d.ts","../node_modules/fhirclient/index.d.ts","../source/constants/mode.ts","../source/types/index.ts","../source/query/json.ts","../source/utils/loglevel.ts","../source/lib/observation/observation.util.ts","../source/lib/observation/observation.ts","../source/lib/authorize/authorize.ts","../source/lib/observation.ts","../source/lib/questionnaire/questionnaire.util.ts","../source/lib/questionnaire/questionnaire.ts","../source/index.ts","../source/lib/authorize.spec.ts","../source/lib/authorize.ts","../source/lib/observation.spec.ts","../source/lib/questionnaire.spec.ts","../source/lib/questionnaire.ts","../source/lib/authorize/authorize.spec.ts","../source/lib/authorize/authorize.util.ts","../source/lib/authorize/index.ts","../source/lib/observation/index.ts","../source/lib/observation/observation.spec.ts","../source/lib/questionnaire/index.ts","../source/lib/questionnaire/questionnaire.spec.ts","../source/query/convertcsvtojson.ts","../source/types/mcc-observations.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"1d721120ffeb95a5cedfbe9b7f6d799727e944eb06be011a003540867c2fdb6c","9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"002d6d5f044365b3fbfba0ba9be3bb57cac09b81547c8df4b0795755d2081d90","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","c4cfc9a6e2ebb8bc8c0e2392dfc4056993ced3b35069ebf132ac18ca7a562881","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"bae4ea23beb8397755b935cb84d3cdc6cdb0b1b4a329b90de9fc6c8774d71994","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","df36874d9e56aff601e921c4b3971d37cf66d14f6455935ce821e6cad13b1823","3c135ff5bda0355f6b52a10ea931736ec7c5a80b7fb8772019054e0eaa0fd6b6","1abb206a4ecd13b21536b677d7d5f66e0d7316f0d44610197cfcc5776f78884a","dbe5aa5a5dd8bd1c6a8d11b1310c3f0cdabaacc78a37b394a8c7b14faeb5fb84","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"76527127c8b749bee5977408861ce3ee56ec19ddcea8704c628f98ca610283e6","7fc5b4377d39edbbd127cdc84805bd85da1ec2fc55412213912cd6f67b66399b","cb92bc2e42b261e4299025756f1beb826b3d9666a3f0d46f8a7254ca512f57e4","cb4f3f03480e1727eae46400606cecaa97f550186ff8fa909ebc00db4180531b",{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","556bf5c36deb62cffa1bf697c1789fe008ec82db0273025001db66732714e9d9","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","0830071706fa0e477fb5e95f0955cc1062b5948b146b7d4e03a126f12ad6085f",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2d526e6f21d8cc66ac11ada32874e95ae88d870c6c9d3d9d4e03b1d1f9ad7b8e","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","d2ec52f565f0570e90b659811347bd689f8c6039b11eaaccd0f243759d46da6e","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a12806a1bde5e9f137bb79728d87a4ceaedf04e95efc9967d3288a3c252d9a7b","0afc265ee37dbf63416be548103997fd98f3e16a5c305454c00e59ce73b34146","bae2686dc1bdcab2eadbb2b2c286b89b5bd072e39eb3047c3698d410530a9aee","d0339c46c0bed4f9ea762a64dd0f86cf7983ae7567c544abc75ac2e9dfd210f3","d39879cec1111de22d96106a1fb7444b1af57f77f5020d382cbb0295d8b2a5a5",{"version":"46e13969e80cfab66f03ee9db6ef38db9a6c76633a05387d55b65b23a8bd87bf","signature":"1192d5f201088f23b3337665d4a5c5ce1afddcf5793d4bd02644fed0319686f4"},{"version":"eb68e649ccf0c57fec79e2b872fb64e154dde9b6d3e65b260fe5bf1703bbf106","signature":"aaea91660d82cd54ca329c0b6a128ccf8a33bef83b093dc4f8f426c1e9a6e819"},{"version":"fbdeafbc428a6017e68437b95e37fb890e44b96a2e5000f2d023912e51f21c34","signature":"256e3f00b2e6dbe137a9e0ef51ad76536a98d3475316cad50d399f5c83b28fdf"},{"version":"5780b02850a9f187b9ce6b7a2aa7c31ad1939823cdd596176f4b902e635d81ee","signature":"34e7cf180d9b2528453cd184040fad798b2d659dd0d57e488640fcd149ed9e7d"},{"version":"d590e523bb254fa6ea0a8cdf2b57d71aa7afbfa69b20cc8f965d3c2faaa5d9bd","signature":"8efa859a4d51fb320786ca9e6c1c65fc4876a16f693e5af399b74fdcca697817"},{"version":"4419240d686d44bd811905bc57af9565800dfd10b2fc7f0ca8b20d7a2b5dcf05","signature":"3f570775f49eedf82ed5537a19117315d4b42a3c54605137e4ba8e1123164a07"},{"version":"07793a6cc73a7912b2f765c9f276cde73adf00e5d028c5b9a1ebdd0129371d0a","signature":"52050299e3c40d9f970fca3faa5716666840bb13fe9f93f87de762f04fe86716"},{"version":"98889dc923900cb7d62165e902f1bb2fb505e54f9fb21e963bf847ce0ac6cd58","signature":"99b753afc6278411d34a7551b2182d98999723f659f57b4121f10a447f55ff4f"},{"version":"3eaafac710b617a75f4c2ffa15a2d9b6cb985ef03d3a13d486a34140d24ddb5f","signature":"4857d7b22eaca41299896ff25113cb910c0813a7eb9ebb57af576ed9a89c118f"},{"version":"985a57b55f2d599d28632ba125fad0d267559b98b7bb2d79f13ae48c5c16a3c2","signature":"5379e8d9a8fb9f2bd2cafc575b7115250843488fe91df19a563a53cb8a4f9b8c"},{"version":"f1d6789b23e1b89a97a2d3ef1448f4304eaec48b3b4da88962626b1abf7e05b9","signature":"10cf7c6f0cafb5608d2bfbed06c5b183d453907cd68920d99255e11ef6932645"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"5754e4416cf1f3781ebfcdeb6977b636c01f6caf7a6ffcd5c6f005bd158552a7","signature":"222a317af0ad9c94130dc79e8e16d40f10a3ff63d9ae4102c50484c1bbf09f69"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"f29062d38452b15f1802c2315515b2ed40c0e94a82d24c3175ca3cc4ebbd8c9d","signature":"5379e8d9a8fb9f2bd2cafc575b7115250843488fe91df19a563a53cb8a4f9b8c"},{"version":"2f3091048e825b62d68471f7e175a504323e69052f0e6312adb0bfe9fb7ac539","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"2f3091048e825b62d68471f7e175a504323e69052f0e6312adb0bfe9fb7ac539","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"68f823422e708078967c92129208df2c565faabd5de39504d2b6a17ce66d95c5","signature":"836bf09974b059bdbd1295c123e05c21baecf91ad4a5086fc483a8823d7abbe1"},{"version":"88c16142735da092bb18a5a28808593660921ce7e16ffc8207c5e5acd56d9f9c","signature":"219a95f0530e5a0693f1a3727defd693f2428495f1a99e6f5f5f0de05ad92b5e"},{"version":"2f3091048e825b62d68471f7e175a504323e69052f0e6312adb0bfe9fb7ac539","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"99f1afcf4a7793e44af8902538afddaab985fc1fbf74e37a7f693011d35501ab","signature":"9daad5692802c3f8ad9ceff9a37d05b9305c62ed6e728251e91d04e0f997e525"},{"version":"2f3091048e825b62d68471f7e175a504323e69052f0e6312adb0bfe9fb7ac539","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"f246f2605a5f1cdf091385dbd9f6b1da185512e640a1cbaa3ed6cbab38412d05","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"be10e17b342492ff59cb7c9760ae71937fe9805c898928f7c8d41f9b7e392eff","signature":"8610021d55b8c50ac4cfc718e80984025afcf6a29396a519dea554ee82487e56"}],"options":{"declaration":true,"esModuleInterop":true,"inlineSourceMap":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./module","rootDir":"../source","target":2},"fileIdsList":[[88],[43,88],[46,88],[47,52,88],[48,58,59,66,76,87,88],[48,49,58,66,88],[50,88],[51,52,59,67,88],[52,76,84,88],[53,55,58,66,88],[54,88],[55,56,88],[57,58,88],[58,88],[58,59,60,76,87,88],[58,59,60,76,79,88],[88,92],[61,66,76,87,88],[58,59,61,62,66,76,84,87,88],[61,63,76,84,87,88],[43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94],[58,64,88],[65,87,88],[55,58,66,76,88],[67,88],[68,88],[46,69,88],[70,86,88,92],[71,88],[72,88],[58,73,74,88],[73,75,88,90],[58,76,77,78,79,88],[76,78,88],[76,77,88],[79,88],[80,88],[58,82,83,88],[82,83,88],[52,66,76,84,88],[85,88],[66,86,88],[47,61,72,87,88],[52,88],[76,88,89],[88,90],[88,91],[47,52,58,60,69,76,87,88,90,92],[76,88,93],[61,88,95,96,98],[88,98],[61,88,96,97],[88,105,106,109],[88,99],[88,99,103],[88,106],[42,88,98,99,100,101,102],[88,105],[42,88,98,99,100,101,102,103,104],[42,88,98],[42,88,98,99,107],[88,109],[42,88,98,99,103,104,107,108],[88,101],[105,106,109],[96],[106],[42,101],[105],[42,98],[42],[109]],"referencedMap":[[42,1],[43,2],[44,2],[46,3],[47,4],[48,5],[49,6],[50,7],[51,8],[52,9],[53,10],[54,11],[55,12],[56,12],[57,13],[58,14],[59,15],[60,16],[45,17],[94,1],[61,18],[62,19],[63,20],[95,21],[64,22],[65,23],[66,24],[67,25],[68,26],[69,27],[70,28],[71,29],[72,30],[73,31],[74,31],[75,32],[76,33],[78,34],[77,35],[79,36],[80,37],[81,1],[82,38],[83,39],[84,40],[85,41],[86,42],[87,43],[88,44],[89,45],[90,46],[91,47],[92,48],[93,49],[99,50],[96,51],[97,51],[98,52],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[100,1],[110,53],[111,1],[112,54],[116,1],[106,55],[117,1],[118,56],[113,1],[107,57],[119,58],[120,1],[105,59],[104,60],[114,1],[115,61],[121,62],[122,1],[109,63],[108,60],[123,1],[102,64],[101,1],[124,1],[103,1]],"exportedModulesMap":[[42,1],[43,2],[44,2],[46,3],[47,4],[48,5],[49,6],[50,7],[51,8],[52,9],[53,10],[54,11],[55,12],[56,12],[57,13],[58,14],[59,15],[60,16],[45,17],[94,1],[61,18],[62,19],[63,20],[95,21],[64,22],[65,23],[66,24],[67,25],[68,26],[69,27],[70,28],[71,29],[72,30],[73,31],[74,31],[75,32],[76,33],[78,34],[77,35],[79,36],[80,37],[81,1],[82,38],[83,39],[84,40],[85,41],[86,42],[87,43],[88,44],[89,45],[90,46],[91,47],[92,48],[93,49],[99,50],[96,51],[97,51],[98,52],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[110,65],[111,1],[112,66],[106,66],[118,67],[113,1],[107,68],[119,69],[105,68],[104,70],[114,1],[115,71],[121,72],[109,71],[108,70]],"semanticDiagnosticsPerFile":[42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,45,94,61,62,63,95,64,65,66,67,68,69,70,71,72,73,74,75,76,78,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,99,96,97,98,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,34,39,40,35,36,37,38,1,41,100,110,111,112,116,106,117,118,113,107,119,120,105,104,114,115,121,122,109,108,123,102,101,124,103]},"version":"4.8.3"} \ No newline at end of file diff --git a/build/tsconfig.tsbuildinfo b/build/tsconfig.tsbuildinfo deleted file mode 100644 index 2d79798..0000000 --- a/build/tsconfig.tsbuildinfo +++ /dev/null @@ -1 +0,0 @@ -{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/@types/fhir/r4.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/fhirclient/lib/client.d.ts","../node_modules/fhirclient/lib/lib.d.ts","../node_modules/fhirclient/lib/types.d.ts","../node_modules/fhirclient/index.d.ts","../source/constants/mode.ts","../source/types/index.ts","../source/query/json.ts","../source/utils/loglevel.ts","../source/lib/observation/observation.util.ts","../source/lib/observation/observation.ts","../source/lib/authorize/authorize.ts","../source/lib/observation.ts","../source/lib/questionnaire/questionnaire.util.ts","../source/lib/questionnaire/questionnaire.ts","../source/index.ts","../source/lib/authorize.spec.ts","../source/lib/authorize.ts","../source/lib/observation.spec.ts","../source/lib/questionnaire.spec.ts","../source/lib/questionnaire.ts","../source/lib/authorize/authorize.spec.ts","../source/lib/authorize/authorize.util.ts","../source/lib/authorize/index.ts","../source/lib/observation/index.ts","../source/lib/observation/observation.spec.ts","../source/lib/questionnaire/index.ts","../source/lib/questionnaire/questionnaire.spec.ts","../source/query/convertcsvtojson.ts","../source/types/mcc-observations.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"1d721120ffeb95a5cedfbe9b7f6d799727e944eb06be011a003540867c2fdb6c","9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"002d6d5f044365b3fbfba0ba9be3bb57cac09b81547c8df4b0795755d2081d90","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","c4cfc9a6e2ebb8bc8c0e2392dfc4056993ced3b35069ebf132ac18ca7a562881","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"bae4ea23beb8397755b935cb84d3cdc6cdb0b1b4a329b90de9fc6c8774d71994","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","df36874d9e56aff601e921c4b3971d37cf66d14f6455935ce821e6cad13b1823","3c135ff5bda0355f6b52a10ea931736ec7c5a80b7fb8772019054e0eaa0fd6b6","1abb206a4ecd13b21536b677d7d5f66e0d7316f0d44610197cfcc5776f78884a","dbe5aa5a5dd8bd1c6a8d11b1310c3f0cdabaacc78a37b394a8c7b14faeb5fb84","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"76527127c8b749bee5977408861ce3ee56ec19ddcea8704c628f98ca610283e6","7fc5b4377d39edbbd127cdc84805bd85da1ec2fc55412213912cd6f67b66399b","cb92bc2e42b261e4299025756f1beb826b3d9666a3f0d46f8a7254ca512f57e4","cb4f3f03480e1727eae46400606cecaa97f550186ff8fa909ebc00db4180531b",{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","556bf5c36deb62cffa1bf697c1789fe008ec82db0273025001db66732714e9d9","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","0830071706fa0e477fb5e95f0955cc1062b5948b146b7d4e03a126f12ad6085f",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2d526e6f21d8cc66ac11ada32874e95ae88d870c6c9d3d9d4e03b1d1f9ad7b8e","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","d2ec52f565f0570e90b659811347bd689f8c6039b11eaaccd0f243759d46da6e","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a12806a1bde5e9f137bb79728d87a4ceaedf04e95efc9967d3288a3c252d9a7b","0afc265ee37dbf63416be548103997fd98f3e16a5c305454c00e59ce73b34146","bae2686dc1bdcab2eadbb2b2c286b89b5bd072e39eb3047c3698d410530a9aee","d0339c46c0bed4f9ea762a64dd0f86cf7983ae7567c544abc75ac2e9dfd210f3","d39879cec1111de22d96106a1fb7444b1af57f77f5020d382cbb0295d8b2a5a5",{"version":"46e13969e80cfab66f03ee9db6ef38db9a6c76633a05387d55b65b23a8bd87bf","signature":"1192d5f201088f23b3337665d4a5c5ce1afddcf5793d4bd02644fed0319686f4"},{"version":"eb68e649ccf0c57fec79e2b872fb64e154dde9b6d3e65b260fe5bf1703bbf106","signature":"aaea91660d82cd54ca329c0b6a128ccf8a33bef83b093dc4f8f426c1e9a6e819"},{"version":"fbdeafbc428a6017e68437b95e37fb890e44b96a2e5000f2d023912e51f21c34","signature":"256e3f00b2e6dbe137a9e0ef51ad76536a98d3475316cad50d399f5c83b28fdf"},{"version":"5780b02850a9f187b9ce6b7a2aa7c31ad1939823cdd596176f4b902e635d81ee","signature":"34e7cf180d9b2528453cd184040fad798b2d659dd0d57e488640fcd149ed9e7d"},{"version":"d590e523bb254fa6ea0a8cdf2b57d71aa7afbfa69b20cc8f965d3c2faaa5d9bd","signature":"8efa859a4d51fb320786ca9e6c1c65fc4876a16f693e5af399b74fdcca697817"},{"version":"4419240d686d44bd811905bc57af9565800dfd10b2fc7f0ca8b20d7a2b5dcf05","signature":"3f570775f49eedf82ed5537a19117315d4b42a3c54605137e4ba8e1123164a07"},{"version":"07793a6cc73a7912b2f765c9f276cde73adf00e5d028c5b9a1ebdd0129371d0a","signature":"52050299e3c40d9f970fca3faa5716666840bb13fe9f93f87de762f04fe86716"},{"version":"98889dc923900cb7d62165e902f1bb2fb505e54f9fb21e963bf847ce0ac6cd58","signature":"99b753afc6278411d34a7551b2182d98999723f659f57b4121f10a447f55ff4f"},{"version":"3eaafac710b617a75f4c2ffa15a2d9b6cb985ef03d3a13d486a34140d24ddb5f","signature":"4857d7b22eaca41299896ff25113cb910c0813a7eb9ebb57af576ed9a89c118f"},{"version":"985a57b55f2d599d28632ba125fad0d267559b98b7bb2d79f13ae48c5c16a3c2","signature":"5379e8d9a8fb9f2bd2cafc575b7115250843488fe91df19a563a53cb8a4f9b8c"},{"version":"f1d6789b23e1b89a97a2d3ef1448f4304eaec48b3b4da88962626b1abf7e05b9","signature":"10cf7c6f0cafb5608d2bfbed06c5b183d453907cd68920d99255e11ef6932645"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"5754e4416cf1f3781ebfcdeb6977b636c01f6caf7a6ffcd5c6f005bd158552a7","signature":"222a317af0ad9c94130dc79e8e16d40f10a3ff63d9ae4102c50484c1bbf09f69"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"f29062d38452b15f1802c2315515b2ed40c0e94a82d24c3175ca3cc4ebbd8c9d","signature":"5379e8d9a8fb9f2bd2cafc575b7115250843488fe91df19a563a53cb8a4f9b8c"},{"version":"2f3091048e825b62d68471f7e175a504323e69052f0e6312adb0bfe9fb7ac539","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"2f3091048e825b62d68471f7e175a504323e69052f0e6312adb0bfe9fb7ac539","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"68f823422e708078967c92129208df2c565faabd5de39504d2b6a17ce66d95c5","signature":"836bf09974b059bdbd1295c123e05c21baecf91ad4a5086fc483a8823d7abbe1"},{"version":"88c16142735da092bb18a5a28808593660921ce7e16ffc8207c5e5acd56d9f9c","signature":"219a95f0530e5a0693f1a3727defd693f2428495f1a99e6f5f5f0de05ad92b5e"},{"version":"2f3091048e825b62d68471f7e175a504323e69052f0e6312adb0bfe9fb7ac539","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"99f1afcf4a7793e44af8902538afddaab985fc1fbf74e37a7f693011d35501ab","signature":"9daad5692802c3f8ad9ceff9a37d05b9305c62ed6e728251e91d04e0f997e525"},{"version":"2f3091048e825b62d68471f7e175a504323e69052f0e6312adb0bfe9fb7ac539","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"f246f2605a5f1cdf091385dbd9f6b1da185512e640a1cbaa3ed6cbab38412d05","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"be10e17b342492ff59cb7c9760ae71937fe9805c898928f7c8d41f9b7e392eff","signature":"8610021d55b8c50ac4cfc718e80984025afcf6a29396a519dea554ee82487e56"}],"options":{"declaration":true,"esModuleInterop":true,"inlineSourceMap":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./main","rootDir":"../source","target":4},"fileIdsList":[[88],[43,88],[46,88],[47,52,88],[48,58,59,66,76,87,88],[48,49,58,66,88],[50,88],[51,52,59,67,88],[52,76,84,88],[53,55,58,66,88],[54,88],[55,56,88],[57,58,88],[58,88],[58,59,60,76,87,88],[58,59,60,76,79,88],[88,92],[61,66,76,87,88],[58,59,61,62,66,76,84,87,88],[61,63,76,84,87,88],[43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94],[58,64,88],[65,87,88],[55,58,66,76,88],[67,88],[68,88],[46,69,88],[70,86,88,92],[71,88],[72,88],[58,73,74,88],[73,75,88,90],[58,76,77,78,79,88],[76,78,88],[76,77,88],[79,88],[80,88],[58,82,83,88],[82,83,88],[52,66,76,84,88],[85,88],[66,86,88],[47,61,72,87,88],[52,88],[76,88,89],[88,90],[88,91],[47,52,58,60,69,76,87,88,90,92],[76,88,93],[61,88,95,96,98],[88,98],[61,88,96,97],[88,105,106,109],[88,99],[88,99,103],[88,106],[42,88,98,99,100,101,102],[88,105],[42,88,98,99,100,101,102,103,104],[42,88,98],[42,88,98,99,107],[88,109],[42,88,98,99,103,104,107,108],[88,101],[105,106,109],[96],[106],[42,101],[105],[42,98],[42],[109]],"referencedMap":[[42,1],[43,2],[44,2],[46,3],[47,4],[48,5],[49,6],[50,7],[51,8],[52,9],[53,10],[54,11],[55,12],[56,12],[57,13],[58,14],[59,15],[60,16],[45,17],[94,1],[61,18],[62,19],[63,20],[95,21],[64,22],[65,23],[66,24],[67,25],[68,26],[69,27],[70,28],[71,29],[72,30],[73,31],[74,31],[75,32],[76,33],[78,34],[77,35],[79,36],[80,37],[81,1],[82,38],[83,39],[84,40],[85,41],[86,42],[87,43],[88,44],[89,45],[90,46],[91,47],[92,48],[93,49],[99,50],[96,51],[97,51],[98,52],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[100,1],[110,53],[111,1],[112,54],[116,1],[106,55],[117,1],[118,56],[113,1],[107,57],[119,58],[120,1],[105,59],[104,60],[114,1],[115,61],[121,62],[122,1],[109,63],[108,60],[123,1],[102,64],[101,1],[124,1],[103,1]],"exportedModulesMap":[[42,1],[43,2],[44,2],[46,3],[47,4],[48,5],[49,6],[50,7],[51,8],[52,9],[53,10],[54,11],[55,12],[56,12],[57,13],[58,14],[59,15],[60,16],[45,17],[94,1],[61,18],[62,19],[63,20],[95,21],[64,22],[65,23],[66,24],[67,25],[68,26],[69,27],[70,28],[71,29],[72,30],[73,31],[74,31],[75,32],[76,33],[78,34],[77,35],[79,36],[80,37],[81,1],[82,38],[83,39],[84,40],[85,41],[86,42],[87,43],[88,44],[89,45],[90,46],[91,47],[92,48],[93,49],[99,50],[96,51],[97,51],[98,52],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[110,65],[111,1],[112,66],[106,66],[118,67],[113,1],[107,68],[119,69],[105,68],[104,70],[114,1],[115,71],[121,72],[109,71],[108,70]],"semanticDiagnosticsPerFile":[42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,45,94,61,62,63,95,64,65,66,67,68,69,70,71,72,73,74,75,76,78,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,99,96,97,98,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,34,39,40,35,36,37,38,1,41,100,110,111,112,116,106,117,118,113,107,119,120,105,104,114,115,121,122,109,108,123,102,101,124,103]},"version":"4.8.3"} \ No newline at end of file diff --git a/source/.DS_Store b/source/.DS_Store deleted file mode 100644 index 53fb051..0000000 Binary files a/source/.DS_Store and /dev/null differ diff --git a/source/index.ts b/source/index.ts index c461522..2337bd5 100644 --- a/source/index.ts +++ b/source/index.ts @@ -1,3 +1,4 @@ export * from './lib/observation/observation'; export * from './lib/authorize/authorize'; export * from './lib/questionnaire/questionnaire'; +export * from './lib/careplan/careplan'; diff --git a/source/lib/authorize.spec.ts b/source/lib/authorize.spec.ts deleted file mode 100644 index e69de29..0000000 diff --git a/source/lib/authorize.ts b/source/lib/authorize.ts deleted file mode 100644 index 0ea3179..0000000 --- a/source/lib/authorize.ts +++ /dev/null @@ -1,136 +0,0 @@ -import FHIR from 'fhirclient'; - -export const authorize = async () => { - await FHIR.oauth2.authorize({ - // Meld Synthea test data sandbox - redirectUri: '', - clientId: '9ff4f5c4-f07c-464f-8d4b-90b90a76bebf', - scope: 'patient/*.read openid launch', - }); -}; - -export const checkAuthorize = async () => { - const client = await FHIR.oauth2.ready(); - - return client; -}; - -// const mccObj: MccObservation = { -// code: { -// coding: [ -// { -// system: 'http://loinc.org', -// code: '17856-6', -// display: 'Hemoglobin A1c/Hemoglobin.total in Blood by HPLC', -// }, -// ], -// text: 'Hemoglobin A1c/Hemoglobin.total in Blood by HPLC', -// }, -// status: 'final', -// effective: { -// type: 'dateTime', -// dateTime: { -// rawDate: '1646841600000', -// date: '03/10/2022 12:00', -// }, -// }, -// value: { -// valueType: 'Quantity', -// quantityValue: { -// unit: '%', -// value: 9.2, -// system: 'http://unitsofmeasure.org/', -// code: '%', -// }, -// }, -// referenceRanges: [ -// { -// low: { -// unit: '%', -// value: 5.6, -// system: 'http://unitsofmeasure.org', -// code: 'mg/dL', -// }, -// text: '4 to 5.6 %', -// }, -// ], -// category: [ -// { -// coding: [ -// { -// system: 'http://terminology.hl7.org/CodeSystem/observation-category', -// code: 'laboratory', -// }, -// ], -// text: 'Laboratory', -// }, -// ], -// fhirid: 'mcc-obs-pnoelle-lab-hgbA1c', -// }; - -// const Obj: Observation = { -// resourceType: 'Observation', -// id: 'mcc-obs-pnoelle-lab-hgbA1c', -// meta: { -// versionId: '1', -// lastUpdated: '2022-05-02T11:40:59.000+00:00', -// source: '#eb35f0f8c939c1e2', -// profile: [ -// 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults', -// ], -// }, -// status: 'final', -// category: [ -// { -// coding: [ -// { -// system: 'http://terminology.hl7.org/CodeSystem/observation-category', -// code: 'laboratory', -// }, -// ], -// text: 'Laboratory', -// }, -// ], -// code: { -// coding: [ -// { -// system: 'http://loinc.org', -// code: '17856-6', -// display: 'Hemoglobin A1c/Hemoglobin.total in Blood by HPLC', -// }, -// ], -// }, -// subject: { -// reference: 'Patient/mcc-pat-pnoelle', -// }, -// effectiveDateTime: '2022-03-10', -// performer: [ -// { -// reference: 'Practitioner/mcc-prac-carlson-john', -// display: 'Dr. John Carlson, MD', -// }, -// ], -// valueQuantity: { -// value: 9.2, -// unit: '%', -// system: 'http://unitsofmeasure.org/', -// code: '%', -// }, -// referenceRange: [ -// { -// low: { -// value: 4, -// unit: '%', -// system: 'http://unitsofmeasure.org', -// code: '%', -// }, -// high: { -// value: 5.6, -// unit: '%', -// system: 'http://unitsofmeasure.org', -// code: 'mg/dL', -// }, -// text: '4 to 5.6 %', -// }, -// ], -// }; diff --git a/source/lib/authorize/authorize.readme.md b/source/lib/authorize/authorize.readme.md new file mode 100644 index 0000000..c456cc1 --- /dev/null +++ b/source/lib/authorize/authorize.readme.md @@ -0,0 +1,9 @@ +# documentation for authorize module + +## Methods + +### authorize +This will authenticate client to FHIR based on the params provided, params can be scopes, or iss url, etc + +### checkAuthorize +This will check if authentication from authorize method successful diff --git a/source/lib/authorize/authorize.ts b/source/lib/authorize/authorize.ts index 5dcf23b..1ecd063 100644 --- a/source/lib/authorize/authorize.ts +++ b/source/lib/authorize/authorize.ts @@ -1,20 +1,14 @@ import FHIR from 'fhirclient'; +import { fhirclient } from 'fhirclient/lib/types'; import log from '../../utils/loglevel'; -export const authorize = async ( - redirectUri?: string, - clientId?: string, - scope?: string -) => { +export const authorize = async (props: fhirclient.AuthorizeParams) => { log.info('Authenticating client'); - await FHIR.oauth2.authorize({ - // Meld Synthea test data sandbox - redirectUri: redirectUri ?? '', - clientId: clientId ?? '9ff4f5c4-f07c-464f-8d4b-90b90a76bebf', - scope: scope ?? 'patient/*.read openid launch', - }); + await FHIR.oauth2.authorize(props); + + log.info('Authenticating client success'); }; export const checkAuthorize = async () => { diff --git a/source/lib/careplan/careplan.readme.md b/source/lib/careplan/careplan.readme.md new file mode 100644 index 0000000..f0106cf --- /dev/null +++ b/source/lib/careplan/careplan.readme.md @@ -0,0 +1,21 @@ +# documentation for careplan module + +## Methods + +### getBestCareplan +- First it will try to call `CarePlan?subject=${subject}`, +- if matchSchemeParam provided, it will try to sort based on the param +- then the list of careplans will be mapped to call `getCondition`which will then applied to the response +- validate and map to resource object to get the list of careplans + +### getCareplansByStatusAndCategory +This will call fhir `CarePlan?status=${status}&category=${combinedCategory}`, handle validation and map it to resource object to get the list of careplans + +### getCondition +This is a supporting method to call `${urlPaths[0]}?_id=${urlPaths[1]}` from getBestCarePlan, which then handle validation and map it to resource object to get the specific condition based on urlpath + +### getCareplans +This will call fhir `CarePlan?subject=${subject}`, handle validation and map it to resource object to get the list of careplans + +### getCareplan +This will call fhir `CarePlan?_id=${id}`, handle validation and map it to resource object to get the list of specific careplan diff --git a/build/main/lib/authorize.spec.d.ts b/source/lib/careplan/careplan.spec.ts similarity index 100% rename from build/main/lib/authorize.spec.d.ts rename to source/lib/careplan/careplan.spec.ts diff --git a/source/lib/careplan/careplan.ts b/source/lib/careplan/careplan.ts new file mode 100644 index 0000000..2d26b17 --- /dev/null +++ b/source/lib/careplan/careplan.ts @@ -0,0 +1,207 @@ +import { CarePlan, Condition } from 'fhir/r4'; +import FHIR from 'fhirclient'; +import { fhirclient } from 'fhirclient/lib/types'; + +import log from '../../utils/loglevel'; + +import { + fhirOptions, + getConceptDisplayString, + notFoundResponse, + resourcesFrom, + resourcesFromObject, +} from './careplan.util'; + +export const getCareplans = async (sort?: string, max?: string): Promise => { + const sortType = sort === 'descending' ? '-date' : 'date'; + + const client = await FHIR.oauth2.ready(); + + const queryPath = `CarePlan?&_sort=${sortType}&_count=${max ?? 100}`; + const careplanRequest: fhirclient.JsonArray = await client.patient.request( + queryPath + ); + + const filteredCareplans: CarePlan[] = resourcesFrom( + careplanRequest + ) as CarePlan[]; + + log.info( + `getCareplans - successful with status ${filteredCareplans[0]?.status}` + ); + log.debug({ serviceName: 'getCareplans', result: filteredCareplans }); + return filteredCareplans; +}; + +export const getCareplan = async (id: string): Promise => { + if (!id) { + log.error('getCareplan - id not found'); + return notFoundResponse as unknown as CarePlan; + } + + const client = await FHIR.oauth2.ready(); + + const queryPath = `CarePlan?_id=${id}`; + const careplanRequest: fhirclient.JsonObject = await client.patient.request( + queryPath + ); + + const filteredCareplan: CarePlan = resourcesFromObject( + careplanRequest + ) as CarePlan; + + log.info( + `getCareplan - successful with id ${id} - with status ${filteredCareplan?.status}` + ); + log.debug({ serviceName: 'getCareplan', result: filteredCareplan }); + return filteredCareplan; +}; + +export const getCareplansByStatusAndCategory = async ( + status: string, + category: string[], +): Promise => { + if (!status || !category) { + log.error('getCareplansByStatusAndCategory - status or category not found'); + return [notFoundResponse] as unknown as CarePlan[]; + } + const client = await FHIR.oauth2.ready(); + + const combinedCategory = category?.join(','); + + const queryPath = `CarePlan?status=${status}&category=${combinedCategory}`; + const careplanRequest: fhirclient.JsonArray = await client.patient.request( + queryPath + ); + + const filteredCareplans: CarePlan[] = resourcesFrom( + careplanRequest + ) as CarePlan[]; + + log.info( + `getCareplansByStatusAndCategory - successful with pre-response ${filteredCareplans[0].toString()} - with status ${filteredCareplans[0]?.status}` + ); + log.debug({ serviceName: 'getCareplansByStatusAndCategory', result: filteredCareplans }); + return filteredCareplans; +}; + +export const getCondition = async (urlPath: string): Promise => { + if (!urlPath) { + log.error('getCondition - urlPath not found'); + return {} as unknown as Condition; + } + + const client = await FHIR.oauth2.ready(); + + const urlPaths = urlPath.split('/'); + + const queryPath = `${urlPaths[0]}?_id=${urlPaths[1]}`; + const conditionRequest: fhirclient.JsonObject = await client.patient.request( + queryPath + ); + + const filteredCondition: Condition = resourcesFromObject( + conditionRequest + ) as Condition; + + log.info(`getCondition - successful with urlPath ${urlPath}`); + log.debug({ serviceName: 'getCondition', result: filteredCondition }); + return filteredCondition; +}; + +export const getBestCareplan = async ( + subject: string, + matchScheme?: string +): Promise => { + if (!subject) { + log.error('getBestCareplan - subject not found'); + return [] as CarePlan[]; + } + + const matchSchemeParam = matchScheme ?? 'profiles'; + + const client = await FHIR.oauth2.ready(); + + log.info(`getBestCareplan - start with subject - ${subject}`); + const queryPath = `CarePlan?subject=${subject}`; + const careplanRequest: fhirclient.JsonArray = await client.patient.request( + queryPath, + fhirOptions + ); + + const careplanResource: CarePlan[] = resourcesFrom( + careplanRequest + ) as CarePlan[]; + + const filteredCareplans: CarePlan[] = careplanResource.filter( + (v) => + v !== undefined && v.resourceType === 'CarePlan' && v.status === 'active' + // filter for address condition not needed by mcc-provider + ); + + // fallback + if (!filteredCareplans.length) { + log.error('getBestCareplan - empty careplan'); + return [{ id: 'NOID' }] as CarePlan[]; + } + + // sorting + switch (matchSchemeParam) { + case 'created': + // eslint-disable-next-line functional/immutable-data + filteredCareplans.sort((a, b): number => { + if (!a.created) return -1; + if (!b.created) return 1; + + return a.created.localeCompare(b.created); + }); + break; + case 'lastModified': + // eslint-disable-next-line functional/immutable-data + filteredCareplans.sort((a, b): number => { + if (!a.meta?.lastUpdated) return -1; + if (!b.meta?.lastUpdated) return 1; + + return a.meta?.lastUpdated.localeCompare(b.meta?.lastUpdated); + }); + break; + case 'profiles': + // eslint-disable-next-line functional/immutable-data + filteredCareplans.sort((a, b): number => { + return a.addresses?.length - b.addresses?.length; + }); + break; + case 'order': + default: + break; + } + + log.debug({ + serviceName: 'getBestCareplan (before filter condition)', + result: filteredCareplans, + }); + + // filter out addresses by condition reference + const responseCarePlans: CarePlan[] = await Promise.all( + filteredCareplans.map(async (careplan: CarePlan) => { + const addresses = await Promise.all( + careplan.addresses.map(async (address) => { + const condition: Condition = await getCondition(address.reference); + return { + ...address, + reference: getConceptDisplayString(condition.code), + }; + }) + ); + + const newCareplan = { ...careplan, addresses }; + return newCareplan; + }) + ); + + log.info( + `getBestCareplan - successful with subject ${subject} - with status ${responseCarePlans[0].status}` + ); + log.debug({ serviceName: 'getBestCareplan', result: responseCarePlans }); + return responseCarePlans; +}; diff --git a/source/lib/careplan/careplan.util.ts b/source/lib/careplan/careplan.util.ts new file mode 100644 index 0000000..50f3441 --- /dev/null +++ b/source/lib/careplan/careplan.util.ts @@ -0,0 +1,51 @@ +import { CodeableConcept, Resource } from 'fhir/r4'; +import { fhirclient } from 'fhirclient/lib/types'; + +export const fhirOptions: fhirclient.FhirOptions = { + pageLimit: 0, +}; + +export const notFoundResponse = (code?: string) => ({ + code, + status: 'notfound', + value: { + stringValue: 'No Data Available', + valueType: 'string', + }, +}); + +export const resourcesFromObject = ( + response: fhirclient.JsonObject +): Resource => { + const entry: fhirclient.JsonObject = response?.entry[0]; + + const resource: any = entry?.resource; + + if (resource.resourceType === 'OperationOutcome') { + return {} as any; + } + + return resource; +}; + +export const resourcesFrom = (response: fhirclient.JsonArray): Resource[] => { + const firstEntries = response[0] as fhirclient.JsonObject; + const entries: fhirclient.JsonObject[] = firstEntries?.entry + ? (firstEntries.entry as [fhirclient.JsonObject]) + : []; + return entries + .map((entry: fhirclient.JsonObject) => entry?.resource as any) + .filter( + (resource: Resource) => resource.resourceType !== 'OperationOutcome' + ); +}; + +export const getConceptDisplayString = (code: CodeableConcept): string => { + if (code.text) return code.text; + + if (code.coding) { + return code.coding.reduce((_, curr) => curr.display, ''); + } + + return ''; +}; diff --git a/source/lib/careplan/index.ts b/source/lib/careplan/index.ts new file mode 100644 index 0000000..475acf4 --- /dev/null +++ b/source/lib/careplan/index.ts @@ -0,0 +1 @@ +export * from './careplan'; diff --git a/source/lib/observation.spec.ts b/source/lib/observation.spec.ts deleted file mode 100644 index e69de29..0000000 diff --git a/source/lib/observation.ts b/source/lib/observation.ts deleted file mode 100644 index 6935a03..0000000 --- a/source/lib/observation.ts +++ /dev/null @@ -1,185 +0,0 @@ -import { Observation, Resource } from 'fhir/r4'; -import FHIR from 'fhirclient'; -import { fhirclient } from 'fhirclient/lib/types'; - -import { EccMode } from '../constants/mode'; -import { getAllCodes } from '../query/json'; -import type { ObservationMode } from '../types'; - -const fhirOptions: fhirclient.FhirOptions = { - pageLimit: 0, -}; - -const notFoundResponse = (code) => ({ - code, - status: 'notfound', - value: { - stringValue: 'No Data Available', - valueType: 'string', - }, -}); - -const resourcesFrom = (response: fhirclient.JsonArray): Resource[] => { - const firstEntries = response[0] as fhirclient.JsonObject; - const entries: fhirclient.JsonObject[] = firstEntries?.entry - ? (firstEntries.entry as [fhirclient.JsonObject]) - : []; - return entries - .map((entry: fhirclient.JsonObject) => entry?.resource as any) - .filter( - (resource: Resource) => resource.resourceType !== 'OperationOutcome' - ); -}; - -export const getObservation = async (code: string): Promise => { - const client = await FHIR.oauth2.ready(); - const queryPath = `Observation?${EccMode.code}=http://loinc.org|${code}&_sort=-date&_count=1`; - const observationRequest: fhirclient.JsonArray = await client.patient.request( - queryPath, - fhirOptions - ); - - const observationResource: Observation[] = resourcesFrom( - observationRequest - ) as Observation[]; - - const filteredObservations: Observation[] = observationResource.filter( - (v) => v !== undefined && v.resourceType === 'Observation' - ); - - if (filteredObservations.length) { - return filteredObservations[0]; - } else { - return notFoundResponse(code) as unknown as Observation; - } -}; - -export const getValue = (obs: Observation): any => { - if (obs.valueQuantity) { - return { - valueQuantity: obs.valueQuantity, - }; - } else if (obs.valueBoolean) { - return { - valueBoolean: obs.valueBoolean, - }; - } else if (obs.valueInteger) { - return { - valueInteger: obs.valueInteger, - }; - } else if (obs.valueString) { - return { - valueString: obs.valueString, - }; - } else if (obs.valueRange) { - return { - valueRange: obs.valueRange, - }; - } else if (obs.valueCodeableConcept) { - return { - valueCodeableConcept: obs.valueCodeableConcept, - }; - } else { - return { - value: 'Unknown type', - }; - } -}; - -export const getObservations = async ( - code: string, - mode: ObservationMode, - sort?: string, - max?: string -): Promise => { - const client = await FHIR.oauth2.ready(); - - const sortType = sort === 'descending' ? '-date' : 'date'; - - const queryPath = `Observation?${ - EccMode[mode] ?? EccMode.code - }=http://loinc.org|${code}&_sort=${sortType}&_count=${max ?? 100}`; - const observationRequest: fhirclient.JsonArray = await client.patient.request( - queryPath, - fhirOptions - ); - - const observationResource: Observation[] = resourcesFrom( - observationRequest - ) as Observation[]; - - const filteredObservations: Observation[] = observationResource.filter( - (v) => v !== undefined && v.resourceType === 'Observation' - ); - - if (filteredObservations.length) { - return filteredObservations; - } else { - return []; - } -}; - -export const getObservationsByValueSet = async ( - valueSet: string, - sort?: string, - max?: string -): Promise => { - const client = await FHIR.oauth2.ready(); - - const codes = await getAllCodes(valueSet); - const combinedCodes = codes.join(','); - - const sortType = sort === 'descending' ? '-date' : 'date'; - - const queryPath = `Observation?${EccMode.code}=${combinedCodes}&_sort=${sortType}&_count=${max}`; - const observationRequest: fhirclient.JsonArray = await client.patient.request( - queryPath, - fhirOptions - ); - - const observationResource: Observation[] = resourcesFrom( - observationRequest - ) as Observation[]; - - const filteredObservations: Observation[] = observationResource.filter( - (v) => v !== undefined && v.resourceType === 'Observation' - ); - - if (filteredObservations.length) { - return filteredObservations; - } else { - return []; - } -}; - -export const getObservationsByCategory = async ( - category: string, - sort?: string, - max?: string -): Promise => { - const client = await FHIR.oauth2.ready(); - - const sortType = sort === 'descending' ? '-date' : 'date'; - - const queryPath = `Observation?category=${category}&_sort=${sortType}&_count=${ - max ?? 100 - }`; - const observationRequest: fhirclient.JsonArray = await client.patient.request( - queryPath, - fhirOptions - ); - - const observationResource: Observation[] = resourcesFrom( - observationRequest - ) as Observation[]; - - const filteredObservations: Observation[] = observationResource.filter( - (v) => v !== undefined && v.resourceType === 'Observation' - ); - - if (filteredObservations.length) { - return filteredObservations; - } else { - return []; - } -}; diff --git a/source/lib/observation/observation.readme.md b/source/lib/observation/observation.readme.md new file mode 100644 index 0000000..538edf3 --- /dev/null +++ b/source/lib/observation/observation.readme.md @@ -0,0 +1,18 @@ +# documentation for observation module + +## Methods + +### getObservation +This will call fhir `Observation?${EccMode.code}=http://loinc.org|${code}&_sort=-date&_count=1`, handle validation and map it to resource object to get the list of specific observation + +### getObservations +This will call fhir `Observation?${EccMode[mode] ?? EccMode.code}=http://loinc.org|${code}&_sort=${sortType}&_count=${max ?? 100}`, handle validation and map it to resource object to get the list of observations + +### getObservationsByValueSet +- First it will try to query codes from local json based on valueSet provided +- the codes will then used to call `Observation?${EccMode.code}=${combinedCodes}&_sort=${sortType}&_count=${max}` +- validate and map to resource object to get the list of observations + + +### getObservationsByCategory +This will call fhir `Observation?category=${category}`, handle validation and map it to resource object to get the list of observations diff --git a/source/lib/observation/observation.ts b/source/lib/observation/observation.ts index eaf521f..859a63e 100644 --- a/source/lib/observation/observation.ts +++ b/source/lib/observation/observation.ts @@ -54,8 +54,8 @@ export const getObservations = async ( sort?: string, max?: string ): Promise => { - if (!code || !mode) { - log.error('getObservations - required parameters not found - (code, mode)'); + if (!code) { + log.error('getObservations - required parameters not found - (code)'); return []; } const client = await FHIR.oauth2.ready(); @@ -152,7 +152,8 @@ export const getObservationsByValueSet = async ( export const getObservationsByCategory = async ( category: string, sort?: string, - max?: string + max?: string, + date?: string ): Promise => { if (!category) { log.error('getObservationsByCategory - category not found'); @@ -166,9 +167,11 @@ export const getObservationsByCategory = async ( `getObservationsByCategory - start with category - ${category} - ${sort} ${max}` ); - const queryPath = `Observation?category=${category}&_sort=${sortType}&_count=${ - max ?? 100 - }`; + const queryPath = `Observation?category=${category} + ${sortType ? `&_sort=` : ''} + ${max ? `&_count=${max}` : ''} + ${date ? `&date=${date}` : ''} + `; const observationRequest: fhirclient.JsonArray = await client.patient.request( queryPath, fhirOptions diff --git a/source/lib/observation/observation.util.ts b/source/lib/observation/observation.util.ts index f1d6ada..a6af153 100644 --- a/source/lib/observation/observation.util.ts +++ b/source/lib/observation/observation.util.ts @@ -19,6 +19,7 @@ export const resourcesFrom = (response: fhirclient.JsonArray): Resource[] => { const entries: fhirclient.JsonObject[] = firstEntries?.entry ? (firstEntries.entry as [fhirclient.JsonObject]) : []; + return entries .map((entry: fhirclient.JsonObject) => entry?.resource as any) .filter( diff --git a/source/lib/questionnaire.spec.ts b/source/lib/questionnaire.spec.ts deleted file mode 100644 index e69de29..0000000 diff --git a/source/lib/questionnaire.ts b/source/lib/questionnaire.ts deleted file mode 100644 index 9c85ae4..0000000 --- a/source/lib/questionnaire.ts +++ /dev/null @@ -1,130 +0,0 @@ -import { Questionnaire, QuestionnaireResponse, Resource } from 'fhir/r4'; -import FHIR from 'fhirclient'; -import { fhirclient } from 'fhirclient/lib/types'; - -import { getObservation, getValue } from './observation'; - -const activeQuestionnaireStatus = ['active', 'draft', 'retired']; - -const fhirOptions: fhirclient.FhirOptions = { - pageLimit: 0, -}; - -const notFoundResponse = (code) => ({ - code, - status: 'notfound', - type: 'QuestionnaireResponse', -}); - -const resourcesFrom = (response: fhirclient.JsonArray): Resource[] => { - const firstEntries = response[0] as fhirclient.JsonObject; - const entries: fhirclient.JsonObject[] = firstEntries?.entry - ? (firstEntries.entry as [fhirclient.JsonObject]) - : []; - return entries - .map((entry: fhirclient.JsonObject) => entry?.resource as any) - .filter( - (resource: Resource) => resource.resourceType !== 'OperationOutcome' - ); -}; - -const getQuestionnaireCodes = async (code: string): Promise => { - const client = await FHIR.oauth2.ready(); - const queryPath = `Questionnaire?code=${code}&_summary=true`; - const questionnaireRequest: fhirclient.JsonArray = await client.request( - queryPath, - fhirOptions - ); - - const questionnaireResource: Questionnaire[] = resourcesFrom( - questionnaireRequest - ) as Questionnaire[]; - - const filteredQuestionnaire: Questionnaire[] = questionnaireResource.filter( - (v) => - v !== undefined && - v.resourceType === 'Questionnaire' && - activeQuestionnaireStatus.includes(v.status) - ); - - const questionnaireCodes = filteredQuestionnaire.map((val) => val.id); - - return questionnaireCodes.join(','); -}; - -export const getQuestionnaireItem = async ( - code: string -): Promise => { - const client = await FHIR.oauth2.ready(); - const questionnaireCodes = await getQuestionnaireCodes(code); - if (questionnaireCodes) { - const queryPath = `QuestionnaireResponse?questionnaire=${questionnaireCodes}&status=completed,amended,in-progress&_sort=-authored&_count=1`; - const questionnaireRequest: fhirclient.JsonArray = - await client.patient.request(queryPath, fhirOptions); - - const questionnaireResource: QuestionnaireResponse[] = resourcesFrom( - questionnaireRequest - ) as QuestionnaireResponse[]; - - const filteredQuestionnaire: QuestionnaireResponse[] = - questionnaireResource.filter( - (v) => v !== undefined && v.resourceType === 'QuestionnaireResponse' - ); - - if (filteredQuestionnaire.length) { - return filteredQuestionnaire[0]; - } else { - return notFoundResponse(code) as unknown as QuestionnaireResponse; - } - } else { - const observation = await getObservation(code); - - const mappedObservation = { - item: [ - { - answer: [getValue(observation)], - linkId: observation.code.coding[0].code, - }, - ], - resourceType: observation.resourceType, - authored: observation.issued, - }; - - return mappedObservation as unknown as QuestionnaireResponse; - } -}; - -export const getQuestionnaireItems = async ( - code: string, - count?: string, - sort?: string -): Promise => { - const client = await FHIR.oauth2.ready(); - const questionnaireCodes = await getQuestionnaireCodes(code); - if (questionnaireCodes) { - const sortType = sort === 'ascending' ? 'date' : '-date'; - - const queryPath = `QuestionnaireResponse?questionnaire=${questionnaireCodes}&_sort=${sortType}&_count=${ - count ?? '100' - }`; - const questionnaireRequest: fhirclient.JsonArray = - await client.patient.request(queryPath, fhirOptions); - - const questionnaireResource: QuestionnaireResponse[] = resourcesFrom( - questionnaireRequest - ) as QuestionnaireResponse[]; - - const filteredQuestionnaire: QuestionnaireResponse[] = - questionnaireResource.filter( - (v) => v !== undefined && v.resourceType === 'QuestionnaireResponse' - ); - - if (filteredQuestionnaire.length) { - return filteredQuestionnaire; - } else { - return []; - } - } else { - return []; - } -}; diff --git a/source/lib/questionnaire/questionnaire.readme.md b/source/lib/questionnaire/questionnaire.readme.md new file mode 100644 index 0000000..51d6b93 --- /dev/null +++ b/source/lib/questionnaire/questionnaire.readme.md @@ -0,0 +1,18 @@ +# documentation for questionnaire module + +## Methods + +### getQuestionnaireCodes +- This will call fhir `Questionnaire?code=${code}&_summary=true` +- then the codes will be mapped to the `id` and combined to string separated by `,` +- return the combined codes + +### getQuestionnaireItem +- will call `getQuestionnaireCodes` to get the combined codes +- from the codes then call fhir `QuestionnaireResponse?questionnaire=${questionnaireCodes}&status=completed,amended,in-progress&_sort=-authored&_count=1` +- validate and map to resource object to get the specific questionnaire + +### getQuestionnaireItems +- will call `getQuestionnaireCodes` to get the combined codes +- from the codes then call fhir `QuestionnaireResponse?questionnaire=${questionnaireCodes}&_sort=${sortType}&_count=${count ?? '100'}` +- validate and map to resource object to get the list of questionnaires diff --git a/source/query/json.ts b/source/query/json.ts index ed1a52d..9642d17 100644 --- a/source/query/json.ts +++ b/source/query/json.ts @@ -1,5 +1,7 @@ import { ValueAsset } from '../types'; +// This is the code on how we query json files to map the codes + const internalGetCodeKey = (uuesystem: string, code: string): string => { return uuesystem + '%7C' + code; }; diff --git a/source/utils/loglevel.ts b/source/utils/loglevel.ts index b8b7e7d..398e271 100644 --- a/source/utils/loglevel.ts +++ b/source/utils/loglevel.ts @@ -3,14 +3,14 @@ const logger = { if (typeof message === 'object') { console.info(message); } else { - console.info(`EccDS: ${message}`); + console.info(`%c EccDS: ${message}`, 'color: #0a95ff'); } }, debug: (message) => { if (typeof message === 'object') { console.log(message); } else { - console.log(`EccDS: ${message}`); + console.log(`%c EccDS: ${message}`, 'color: #bada55'); } }, error: (message) => {