From 3763299781ab28a3796704431c9e72c5e6c91f28 Mon Sep 17 00:00:00 2001 From: sedinkinya Date: Mon, 23 May 2022 20:57:34 -0400 Subject: [PATCH 1/3] A suite of performance tests LF-2204 --- .gitignore | 2 + CHANGELOG.md | 4 + package-lock.json | 1353 +- package.json | 7 +- test/benchmark.js | 27 + test/benchmark/intersect.js | 88 + .../Minimum-Data-Set---version-3.0.R4.json | 32967 ++++++++++++++++ 7 files changed, 33898 insertions(+), 550 deletions(-) create mode 100644 test/benchmark.js create mode 100644 test/benchmark/intersect.js create mode 100644 test/resources/Minimum-Data-Set---version-3.0.R4.json diff --git a/.gitignore b/.gitignore index 15c2365..9dd5a85 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,5 @@ build .DS_Store .editorconfig Makefile +test/benchmark/prev-fhirpath +test/benchmark/results diff --git a/CHANGELOG.md b/CHANGELOG.md index c96beb9..3b0625d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ This log documents significant changes for each release. This project follows [Semantic Versioning](http://semver.org/). +## [2.14.4] - 2022-05-23 +### Added +- Suite of performance tests. + ## [2.14.3] - 2022-05-02 ### Changed - Updated to NodeJS 16. diff --git a/package-lock.json b/package-lock.json index 3b17821..d2dd927 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "fhirpath", - "version": "2.14.3", + "version": "2.14.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "fhirpath", - "version": "2.14.3", + "version": "2.14.4", "license": "MIT", "dependencies": { "@lhncbc/ucum-lhc": "^4.1.3", @@ -23,6 +23,7 @@ "@babel/eslint-parser": "^7.17.0", "@babel/preset-env": "^7.16.11", "babel-loader": "^8.2.3", + "benny": "^3.7.1", "bestzip": "^2.2.0", "copy-webpack-plugin": "^6.0.3", "eslint": "^8.10.0", @@ -36,6 +37,7 @@ "jest": "^27.3.1", "jit-grunt": "^0.10.0", "lodash": "^4.17.21", + "open": "^8.4.0", "rimraf": "^3.0.0", "tmp": "0.0.33", "webpack": "^5.11.1", @@ -60,6 +62,48 @@ "node": ">=6.0.0" } }, + "node_modules/@arrows/array": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@arrows/array/-/array-1.4.1.tgz", + "integrity": "sha512-MGYS8xi3c4tTy1ivhrVntFvufoNzje0PchjEz6G/SsWRgUKxL4tKwS6iPdO8vsaJYldagAeWMd5KRD0aX3Q39g==", + "dev": true, + "dependencies": { + "@arrows/composition": "^1.2.2" + } + }, + "node_modules/@arrows/composition": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@arrows/composition/-/composition-1.2.2.tgz", + "integrity": "sha512-9fh1yHwrx32lundiB3SlZ/VwuStPB4QakPsSLrGJFH6rCXvdrd060ivAZ7/2vlqPnEjBkPRRXOcG1YOu19p2GQ==", + "dev": true + }, + "node_modules/@arrows/dispatch": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@arrows/dispatch/-/dispatch-1.0.3.tgz", + "integrity": "sha512-v/HwvrFonitYZM2PmBlAlCqVqxrkIIoiEuy5bQgn0BdfvlL0ooSBzcPzTMrtzY8eYktPyYcHg8fLbSgyybXEqw==", + "dev": true, + "dependencies": { + "@arrows/composition": "^1.2.2" + } + }, + "node_modules/@arrows/error": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@arrows/error/-/error-1.0.2.tgz", + "integrity": "sha512-yvkiv1ay4Z3+Z6oQsUkedsQm5aFdyPpkBUQs8vejazU/RmANABx6bMMcBPPHI4aW43VPQmXFfBzr/4FExwWTEA==", + "dev": true + }, + "node_modules/@arrows/multimethod": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@arrows/multimethod/-/multimethod-1.4.1.tgz", + "integrity": "sha512-AZnAay0dgPnCJxn3We5uKiB88VL+1ZIF2SjZohLj6vqY2UyvB/sKdDnFP+LZNVsTC5lcnGPmLlRRkAh4sXkXsQ==", + "dev": true, + "dependencies": { + "@arrows/array": "^1.4.1", + "@arrows/composition": "^1.2.2", + "@arrows/error": "^1.0.2", + "fast-deep-equal": "^3.1.3" + } + }, "node_modules/@babel/code-frame": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", @@ -4057,21 +4101,6 @@ } } }, - "node_modules/@jest/core/node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/@jest/core/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -5243,6 +5272,21 @@ "url": "https://github.com/sponsors/epoberezkin" } }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -5419,6 +5463,15 @@ "node": ">=0.8" } }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/async": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", @@ -5784,6 +5837,45 @@ "tweetnacl": "^0.14.3" } }, + "node_modules/benchmark": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/benchmark/-/benchmark-2.1.4.tgz", + "integrity": "sha512-l9MlfN4M1K/H2fbhfMy3B7vJd6AGKJVQn2h6Sg/Yx+KckoUA7ewS5Vv6TjSq18ooE1kS9hhAlQRH3AkXIh/aOQ==", + "dev": true, + "dependencies": { + "lodash": "^4.17.4", + "platform": "^1.3.3" + } + }, + "node_modules/benny": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/benny/-/benny-3.7.1.tgz", + "integrity": "sha512-USzYxODdVfOS7JuQq/L0naxB788dWCiUgUTxvN+WLPt/JfcDURNNj8kN/N+uK6PDvuR67/9/55cVKGPleFQINA==", + "dev": true, + "dependencies": { + "@arrows/composition": "^1.0.0", + "@arrows/dispatch": "^1.0.2", + "@arrows/multimethod": "^1.1.6", + "benchmark": "^2.1.4", + "common-tags": "^1.8.0", + "fs-extra": "^10.0.0", + "json2csv": "^5.0.6", + "kleur": "^4.1.4", + "log-update": "^4.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/benny/node_modules/kleur": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.4.tgz", + "integrity": "sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/bestzip": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/bestzip/-/bestzip-2.2.0.tgz", @@ -5803,35 +5895,6 @@ "node": ">=10" } }, - "node_modules/bestzip/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/bestzip/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/bestzip/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/bestzip/node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -6118,6 +6181,18 @@ "node": ">=6" } }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/cliui": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", @@ -6129,35 +6204,6 @@ "wrap-ansi": "^7.0.0" } }, - "node_modules/cliui/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/cliui/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/cliui/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/clone-deep": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", @@ -6256,6 +6302,15 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, "node_modules/commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", @@ -6684,6 +6739,15 @@ "node": ">=0.10.0" } }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/define-properties": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", @@ -6917,6 +6981,12 @@ "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, "node_modules/emojis-list": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", @@ -7271,12 +7341,6 @@ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/eslint/node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, "node_modules/eslint/node_modules/glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", @@ -7674,9 +7738,9 @@ ] }, "node_modules/fast-deep-equal": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", - "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, "node_modules/fast-glob": { @@ -8039,6 +8103,41 @@ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", "dev": true }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs-extra/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/fs-extra/node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, "node_modules/fs-minipass": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", @@ -8906,6 +9005,21 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -9349,15 +9463,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-changed-files/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/jest-changed-files/node_modules/npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", @@ -9370,21 +9475,6 @@ "node": ">=8" } }, - "node_modules/jest-changed-files/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/jest-changed-files/node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", @@ -10638,12 +10728,6 @@ "node": ">= 8" } }, - "node_modules/jest-runtime/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, "node_modules/jest-runtime/node_modules/execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", @@ -10694,15 +10778,6 @@ "node": ">=8" } }, - "node_modules/jest-runtime/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-runtime/node_modules/is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", @@ -10715,15 +10790,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-runtime/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/jest-runtime/node_modules/npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", @@ -10736,21 +10802,6 @@ "node": ">=8" } }, - "node_modules/jest-runtime/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/jest-runtime/node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", @@ -10781,27 +10832,13 @@ "node": ">=8" } }, - "node_modules/jest-runtime/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runtime/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" + "has-flag": "^4.0.0" }, "engines": { "node": ">=8" @@ -11216,21 +11253,6 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-watcher/node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/jest-watcher/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -11388,12 +11410,6 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/jest/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, "node_modules/jest/node_modules/graceful-fs": { "version": "4.2.8", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", @@ -11409,15 +11425,6 @@ "node": ">=8" } }, - "node_modules/jest/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/jest/node_modules/jest-cli": { "version": "27.3.1", "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.3.1.tgz", @@ -11452,20 +11459,6 @@ } } }, - "node_modules/jest/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -11703,6 +11696,33 @@ "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", "dev": true }, + "node_modules/json2csv": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/json2csv/-/json2csv-5.0.7.tgz", + "integrity": "sha512-YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA==", + "dev": true, + "dependencies": { + "commander": "^6.1.0", + "jsonparse": "^1.3.1", + "lodash.get": "^4.4.2" + }, + "bin": { + "json2csv": "bin/json2csv.js" + }, + "engines": { + "node": ">= 10", + "npm": ">= 6.13.0" + } + }, + "node_modules/json2csv/node_modules/commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, "node_modules/json5": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", @@ -11726,6 +11746,15 @@ "graceful-fs": "^4.1.6" } }, + "node_modules/jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=", + "dev": true, + "engines": [ + "node >= 0.2.0" + ] + }, "node_modules/jsprim": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", @@ -11979,6 +12008,71 @@ "integrity": "sha1-SLtQiECfFvGCFmZkHETdGqrjzYg=", "dev": true }, + "node_modules/log-update": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-update/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/log-update/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -12075,15 +12169,6 @@ "node": ">=6" } }, - "node_modules/mem/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", @@ -12155,6 +12240,15 @@ "node": ">= 0.6" } }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/minimatch": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", @@ -12506,6 +12600,50 @@ "wrappy": "1" } }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", + "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", + "dev": true, + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open/node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/opener": { "version": "1.5.2", "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", @@ -12841,6 +12979,12 @@ "node": ">=8" } }, + "node_modules/platform": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/platform/-/platform-1.3.6.tgz", + "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==", + "dev": true + }, "node_modules/portscanner": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/portscanner/-/portscanner-2.2.0.tgz", @@ -13575,6 +13719,19 @@ "node": ">=10" } }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", @@ -13971,6 +14128,65 @@ "node": ">=8" } }, + "node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/slice-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/slice-ansi/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/source-list-map": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", @@ -14138,6 +14354,29 @@ "readable-stream": "^2.1.0" } }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -14304,21 +14543,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/terminal-link/node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/terser": { "version": "5.5.1", "resolved": "https://registry.npmjs.org/terser/-/terser-5.5.1.tgz", @@ -15281,15 +15505,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/webpack-cli/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/webpack-cli/node_modules/npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", @@ -15302,21 +15517,6 @@ "node": ">=8" } }, - "node_modules/webpack-cli/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/webpack-cli/node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", @@ -15722,35 +15922,6 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/wrap-ansi/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -15918,35 +16089,6 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/yargs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/yargs/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/yargs/node_modules/string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/yargs/node_modules/wrap-ansi": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", @@ -16025,6 +16167,48 @@ "@jridgewell/trace-mapping": "^0.3.0" } }, + "@arrows/array": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@arrows/array/-/array-1.4.1.tgz", + "integrity": "sha512-MGYS8xi3c4tTy1ivhrVntFvufoNzje0PchjEz6G/SsWRgUKxL4tKwS6iPdO8vsaJYldagAeWMd5KRD0aX3Q39g==", + "dev": true, + "requires": { + "@arrows/composition": "^1.2.2" + } + }, + "@arrows/composition": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@arrows/composition/-/composition-1.2.2.tgz", + "integrity": "sha512-9fh1yHwrx32lundiB3SlZ/VwuStPB4QakPsSLrGJFH6rCXvdrd060ivAZ7/2vlqPnEjBkPRRXOcG1YOu19p2GQ==", + "dev": true + }, + "@arrows/dispatch": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@arrows/dispatch/-/dispatch-1.0.3.tgz", + "integrity": "sha512-v/HwvrFonitYZM2PmBlAlCqVqxrkIIoiEuy5bQgn0BdfvlL0ooSBzcPzTMrtzY8eYktPyYcHg8fLbSgyybXEqw==", + "dev": true, + "requires": { + "@arrows/composition": "^1.2.2" + } + }, + "@arrows/error": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@arrows/error/-/error-1.0.2.tgz", + "integrity": "sha512-yvkiv1ay4Z3+Z6oQsUkedsQm5aFdyPpkBUQs8vejazU/RmANABx6bMMcBPPHI4aW43VPQmXFfBzr/4FExwWTEA==", + "dev": true + }, + "@arrows/multimethod": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@arrows/multimethod/-/multimethod-1.4.1.tgz", + "integrity": "sha512-AZnAay0dgPnCJxn3We5uKiB88VL+1ZIF2SjZohLj6vqY2UyvB/sKdDnFP+LZNVsTC5lcnGPmLlRRkAh4sXkXsQ==", + "dev": true, + "requires": { + "@arrows/array": "^1.4.1", + "@arrows/composition": "^1.2.2", + "@arrows/error": "^1.0.2", + "fast-deep-equal": "^3.1.3" + } + }, "@babel/code-frame": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", @@ -19049,15 +19233,6 @@ "strip-ansi": "^6.0.0" }, "dependencies": { - "ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "requires": { - "type-fest": "^0.21.3" - } - }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -20046,6 +20221,15 @@ "uri-js": "^4.2.2" } }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, "ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -20185,6 +20369,12 @@ "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", "dev": true }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true + }, "async": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", @@ -20463,6 +20653,41 @@ "tweetnacl": "^0.14.3" } }, + "benchmark": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/benchmark/-/benchmark-2.1.4.tgz", + "integrity": "sha512-l9MlfN4M1K/H2fbhfMy3B7vJd6AGKJVQn2h6Sg/Yx+KckoUA7ewS5Vv6TjSq18ooE1kS9hhAlQRH3AkXIh/aOQ==", + "dev": true, + "requires": { + "lodash": "^4.17.4", + "platform": "^1.3.3" + } + }, + "benny": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/benny/-/benny-3.7.1.tgz", + "integrity": "sha512-USzYxODdVfOS7JuQq/L0naxB788dWCiUgUTxvN+WLPt/JfcDURNNj8kN/N+uK6PDvuR67/9/55cVKGPleFQINA==", + "dev": true, + "requires": { + "@arrows/composition": "^1.0.0", + "@arrows/dispatch": "^1.0.2", + "@arrows/multimethod": "^1.1.6", + "benchmark": "^2.1.4", + "common-tags": "^1.8.0", + "fs-extra": "^10.0.0", + "json2csv": "^5.0.6", + "kleur": "^4.1.4", + "log-update": "^4.0.0" + }, + "dependencies": { + "kleur": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.4.tgz", + "integrity": "sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==", + "dev": true + } + } + }, "bestzip": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/bestzip/-/bestzip-2.2.0.tgz", @@ -20476,29 +20701,6 @@ "yargs": "^16.2.0" }, "dependencies": { - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, "which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -20717,6 +20919,15 @@ "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", "dev": true }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, "cliui": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", @@ -20726,31 +20937,6 @@ "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^7.0.0" - }, - "dependencies": { - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - } } }, "clone-deep": { @@ -20827,6 +21013,12 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, + "common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "dev": true + }, "commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", @@ -21178,6 +21370,12 @@ "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", "dev": true }, + "define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true + }, "define-properties": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", @@ -21362,6 +21560,12 @@ "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", "dev": true }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, "emojis-list": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", @@ -21585,13 +21789,7 @@ "eslint-visitor-keys": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", "dev": true }, "glob-parent": { @@ -21918,9 +22116,9 @@ "dev": true }, "fast-deep-equal": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", - "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, "fast-glob": { @@ -22213,6 +22411,35 @@ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", "dev": true }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "dependencies": { + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true + } + } + }, "fs-minipass": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", @@ -22861,6 +23088,12 @@ "has": "^1.0.3" } }, + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true + }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -23171,12 +23404,6 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, "graceful-fs": { "version": "4.2.8", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", @@ -23189,12 +23416,6 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, "jest-cli": { "version": "27.3.1", "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.3.1.tgz", @@ -23215,17 +23436,6 @@ "yargs": "^16.2.0" } }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -23309,12 +23519,6 @@ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, "npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", @@ -23324,15 +23528,6 @@ "path-key": "^3.0.0" } }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "requires": { - "mimic-fn": "^2.1.0" - } - }, "path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", @@ -24295,12 +24490,6 @@ "which": "^2.0.1" } }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, "execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", @@ -24336,24 +24525,12 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, "is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, "npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", @@ -24363,15 +24540,6 @@ "path-key": "^3.0.0" } }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "requires": { - "mimic-fn": "^2.1.0" - } - }, "path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", @@ -24393,17 +24561,6 @@ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -24724,15 +24881,6 @@ "string-length": "^4.0.1" }, "dependencies": { - "ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "requires": { - "type-fest": "^0.21.3" - } - }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -24961,6 +25109,25 @@ "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", "dev": true }, + "json2csv": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/json2csv/-/json2csv-5.0.7.tgz", + "integrity": "sha512-YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA==", + "dev": true, + "requires": { + "commander": "^6.1.0", + "jsonparse": "^1.3.1", + "lodash.get": "^4.4.2" + }, + "dependencies": { + "commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "dev": true + } + } + }, "json5": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", @@ -24978,6 +25145,12 @@ "graceful-fs": "^4.1.6" } }, + "jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=", + "dev": true + }, "jsprim": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", @@ -25193,6 +25366,55 @@ "integrity": "sha1-SLtQiECfFvGCFmZkHETdGqrjzYg=", "dev": true }, + "log-update": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", + "dev": true, + "requires": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -25265,14 +25487,6 @@ "map-age-cleaner": "^0.1.1", "mimic-fn": "^2.0.0", "p-is-promise": "^2.0.0" - }, - "dependencies": { - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - } } }, "merge-stream": { @@ -25324,6 +25538,12 @@ "mime-db": "1.44.0" } }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, "minimatch": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", @@ -25599,6 +25819,37 @@ "wrappy": "1" } }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "open": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", + "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", + "dev": true, + "requires": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "dependencies": { + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "requires": { + "is-docker": "^2.0.0" + } + } + } + }, "opener": { "version": "1.5.2", "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", @@ -25843,6 +26094,12 @@ "find-up": "^4.0.0" } }, + "platform": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/platform/-/platform-1.3.6.tgz", + "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==", + "dev": true + }, "portscanner": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/portscanner/-/portscanner-2.2.0.tgz", @@ -26437,6 +26694,16 @@ "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", "dev": true }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, "reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", @@ -26766,6 +27033,49 @@ "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + } + } + }, "source-list-map": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", @@ -26906,6 +27216,25 @@ "readable-stream": "^2.1.0" } }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + } + } + }, "strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -27029,17 +27358,6 @@ "requires": { "ansi-escapes": "^4.2.1", "supports-hyperlinks": "^2.0.0" - }, - "dependencies": { - "ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "requires": { - "type-fest": "^0.21.3" - } - } } }, "terser": { @@ -27905,12 +28223,6 @@ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, "npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", @@ -27920,15 +28232,6 @@ "path-key": "^3.0.0" } }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "requires": { - "mimic-fn": "^2.1.0" - } - }, "path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", @@ -28089,29 +28392,6 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } } } }, @@ -28252,29 +28532,6 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - } - }, "wrap-ansi": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", diff --git a/package.json b/package.json index e6782d4..ae904a9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fhirpath", - "version": "2.14.3", + "version": "2.14.4", "description": "A FHIRPath engine", "main": "src/fhirpath.js", "dependencies": { @@ -15,6 +15,7 @@ "@babel/eslint-parser": "^7.17.0", "@babel/preset-env": "^7.16.11", "babel-loader": "^8.2.3", + "benny": "^3.7.1", "bestzip": "^2.2.0", "copy-webpack-plugin": "^6.0.3", "eslint": "^8.10.0", @@ -28,6 +29,7 @@ "jest": "^27.3.1", "jit-grunt": "^0.10.0", "lodash": "^4.17.21", + "open": "^8.4.0", "rimraf": "^3.0.0", "tmp": "0.0.33", "webpack": "^5.11.1", @@ -47,7 +49,8 @@ "test:build": "cd browser-build && grunt test:e2e", "test": "npm run lint && npm run test:unit && npm run update-webdriver && npm run test:demo && npm run test:build && echo \"For tests specific to IE 11, open browser-build/test/protractor/index.html in IE 11, and confirm that the tests on that page pass.\"", "lint": "eslint src/parser/index.js src/*.js converter/", - "update-webdriver": "node node_modules/protractor/bin/webdriver-manager update" + "update-webdriver": "node node_modules/protractor/bin/webdriver-manager update", + "compare-performance": "node ./test/benchmark.js" }, "bin": { "fhirpath": "bin/fhirpath" diff --git a/test/benchmark.js b/test/benchmark.js new file mode 100644 index 0000000..b56a7ab --- /dev/null +++ b/test/benchmark.js @@ -0,0 +1,27 @@ +/** + * This file contains code to run the performance test suites. + * + * To compare performance between the latest published version and the current + * version use: + * `npm run compare-performance` + * + * You can also specify a specific version to compare with the current version, + * for example: + * `npm run compare-performance -- 2.14.0` + * + * The results will be saved in the folder `./benchmark/results` + */ +const { spawn } = require('child_process'); +const myArgs = process.argv.slice(2); +const prevVersion = myArgs.length === 1 ? '@' + myArgs[0] : '@latest'; + +const child = spawn('npm', ['i','--prefix', './test/benchmark/prev-fhirpath', 'fhirpath' + prevVersion], { + stdio: 'inherit' +}); + +child.on('exit', code => { + if (code === 0) { + // Insert performance test suites here: + require('./benchmark/intersect'); + } +}); diff --git a/test/benchmark/intersect.js b/test/benchmark/intersect.js new file mode 100644 index 0000000..dd83b09 --- /dev/null +++ b/test/benchmark/intersect.js @@ -0,0 +1,88 @@ +const b = require('benny'); +const open = require('open'); + +const previous_fhirpath = require('./prev-fhirpath/node_modules/fhirpath'); +const previous_r4_model = require('./prev-fhirpath/node_modules/fhirpath/fhir-context/r4'); +const current_fhirpath = require('../../src/fhirpath'); +const current_r4_model = require('../../fhir-context/r4'); +const _ = require('lodash'); + +const minimumDataset = require('../resources/Minimum-Data-Set---version-3.0.R4.json'); + +const bigItems = current_fhirpath.evaluate(minimumDataset,'repeat(item)', {}, current_r4_model); +const bigItemsCopy = _.cloneDeep(bigItems); +const numberOfBigItems = current_fhirpath.evaluate({}, '%items.count()', { items: bigItems }, current_r4_model)[0]; + +const smallItems = current_fhirpath.evaluate(minimumDataset,'repeat(item).repeat(code)', {}, current_r4_model); +const smallItemsCopy = _.cloneDeep(smallItems); +const numberOfSmallItems = current_fhirpath.evaluate({}, '%items.count()', { items: smallItems }, current_r4_model)[0]; + +const previousVersion = require('./prev-fhirpath/node_modules/fhirpath/package.json').version; +const currentVersion = require('../../package.json').version; + +const expression = '%items.intersect(%itemsCopy)'; + +const cases = [ + { + name: `${numberOfBigItems} big items using evaluate()`, + function: (fhirpath, model) => { + fhirpath.evaluate({}, expression, { items: bigItems, itemsCopy: bigItemsCopy }, model); + } + }, + { + name: `${numberOfBigItems} big items using compile()`, + function: (fhirpath, model, compiledFn) => { + compiledFn({}, { items: bigItems, itemsCopy: bigItemsCopy }); + } + }, + { + name: `${numberOfSmallItems} small items using evaluate()`, + function: (fhirpath, model) => { + fhirpath.evaluate({}, expression, { items: smallItems, itemsCopy: smallItemsCopy }, model); + } + }, + { + name: `${numberOfSmallItems} small items using compile()`, + function: (fhirpath, model, compiledFn) => { + compiledFn({}, { items: smallItems, itemsCopy: smallItemsCopy }); + } + } +].reduce((arr, item) => { + arr.push( + b.add( + `${item.name} [${previousVersion}]`, + item.function.bind( + this, + previous_fhirpath, + previous_r4_model, + previous_fhirpath.compile(expression, previous_r4_model) + ) + ) + ); + arr.push( + b.add( + `${item.name} [${currentVersion}]`, + item.function.bind( + this, + current_fhirpath, + current_r4_model, + current_fhirpath.compile(expression, current_r4_model) + ) + ) + ); + return arr; +}, []); + +b.suite( + 'intersect() of two collections with', + ...cases, + b.cycle(), + b.complete(), + b.configure({ + minDisplayPrecision: 2 + }), + b.save({ file: 'intersect', folder: __dirname + '/results', version: currentVersion }), + b.save({ file: 'intersect', folder: __dirname + '/results', format: 'chart.html' }), +).then(() => { + open(__dirname + '/results/intersect.chart.html'); +}); diff --git a/test/resources/Minimum-Data-Set---version-3.0.R4.json b/test/resources/Minimum-Data-Set---version-3.0.R4.json new file mode 100644 index 0000000..dbd2a98 --- /dev/null +++ b/test/resources/Minimum-Data-Set---version-3.0.R4.json @@ -0,0 +1,32967 @@ +{ + "status": "draft", + "title": "Minimum Data Set - version 3.0", + "resourceType": "Questionnaire", + "meta": { + "profile": [ + "http://hl7.org/fhir/uv/sdc/StructureDefinition/sdc-questionnaire|2.7" + ], + "tag": [ + { + "code": "lformsVersion: 29.2.1" + } + ] + }, + "item": [ + { + "type": "group", + "code": [ + { + "code": "54501-2", + "display": "Identification information", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2", + "text": "Identification information", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "58198-3", + "display": "Type of record", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/58198-3", + "text": "Type of record", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12663-3", + "display": "Add new record" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12664-1", + "display": "Modify existing record" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12665-8", + "display": "Inactivate existing record" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54581-4", + "display": "Facility provider #s", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/54581-4", + "text": "Facility provider #s", + "item": [ + { + "type": "string", + "code": [ + { + "code": "76468-8", + "display": "National Provider Identifier (NPI)", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/54581-4/76468-8", + "text": "National Provider Identifier (NPI)" + }, + { + "type": "string", + "code": [ + { + "code": "69417-4", + "display": "CMS Certification Number (CCN)", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/54581-4/69417-4", + "text": "CMS Certification Number (CCN)" + }, + { + "type": "string", + "code": [ + { + "code": "45398-5", + "display": "State provider # Facility", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/54581-4/45398-5", + "text": "State provider # Facility" + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54582-2", + "display": "Type of Provider", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/54582-2", + "text": "Type of Provider", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10882-1", + "display": "Nursing home (SNF/NF)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10883-9", + "display": "Swing bed" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54502-0", + "display": "Type of Assessment", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/54502-0", + "text": "Type of Assessment", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54583-0", + "display": "Federal OBRA reason for assessment", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/54502-0/54583-0", + "text": "Federal OBRA reason for assessment", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "01" + } + ], + "valueCoding": { + "code": "LA10-4", + "display": "Admission assessment (required by day 14)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "02" + } + ], + "valueCoding": { + "code": "LA15-3", + "display": "Quarterly review assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "03" + } + ], + "valueCoding": { + "code": "LA12-0", + "display": "Annual assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "04" + } + ], + "valueCoding": { + "code": "LA13-8", + "display": "Significant change in status assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "05" + } + ], + "valueCoding": { + "code": "LA10888-8", + "display": "Significant correction to prior comprehensive assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "06" + } + ], + "valueCoding": { + "code": "LA10889-6", + "display": "Significant correction to prior quarterly assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "99" + } + ], + "valueCoding": { + "code": "LA9-3", + "display": "None of the above" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54584-8", + "display": "PPS Assessment", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/54502-0/54584-8", + "text": "PPS Assessment", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "01" + } + ], + "valueCoding": { + "code": "LA10894-6", + "display": "5-day scheduled assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "02" + } + ], + "valueCoding": { + "code": "LA10895-3", + "display": "14-day scheduled assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "03" + } + ], + "valueCoding": { + "code": "LA10896-1", + "display": "30-day scheduled assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "04" + } + ], + "valueCoding": { + "code": "LA10897-9", + "display": "60-day scheduled assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "05" + } + ], + "valueCoding": { + "code": "LA10898-7", + "display": "90-day scheduled assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "06" + } + ], + "valueCoding": { + "code": "LA10899-5", + "display": "Readmission/return assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "07" + } + ], + "valueCoding": { + "code": "LA10900-1", + "display": "Unscheduled assessment used for PPS (OMRA, significant or clinical change, or significant correction assessment)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "99" + } + ], + "valueCoding": { + "code": "LA9-3", + "display": "None of the above" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54585-5", + "display": "PPS Other Medicare Required Assessment - OMRA", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/54502-0/54585-5", + "text": "PPS Other Medicare Required Assessment - OMRA", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12624-5", + "display": "Start of therapy assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12625-2", + "display": "End of therapy assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12626-0", + "display": "Both Start and End of therapy assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA18612-4", + "display": "Change of therapy assessment" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58107-4", + "display": "Is this a Swing Bed clinical change assessment?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/54502-0/58107-4", + "text": "Is this a Swing Bed clinical change assessment?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54587-1", + "display": "Is this assessment the first assessment (OBRA, PPS, or Discharge) since the most recent admission?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/54502-0/54587-1", + "text": "Is this assessment the first assessment (OBRA, PPS, or Discharge) since the most recent admission?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58108-2", + "display": "Entry/discharge reporting", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/54502-0/58108-2", + "text": "Entry/discharge reporting", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "01" + } + ], + "valueCoding": { + "code": "LA12627-8", + "display": "Entry tracking record" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "10" + } + ], + "valueCoding": { + "code": "LA12628-6", + "display": "Discharge assessment - return not anticipated" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "11" + } + ], + "valueCoding": { + "code": "LA12629-4", + "display": "Discharge assessment - return anticipated" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "12" + } + ], + "valueCoding": { + "code": "LA12630-2", + "display": "Death in facility tracking record" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "99" + } + ], + "valueCoding": { + "code": "LA9-3", + "display": "None of the above" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "71440-2", + "display": "Type of discharge", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/54502-0/71440-2", + "text": "Type of discharge", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA18067-1", + "display": "Planned discharge" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA18068-9", + "display": "Unplanned discharge" + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54896-6", + "display": "Submission requirement", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/54896-6", + "text": "Submission requirement", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10908-4", + "display": "Neither federal nor state required submission" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10907-6", + "display": "State but not federal required submission (FOR NURSING HOMES ONLY)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA10906-8", + "display": "Federal required submission" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54503-8", + "display": "Legal name of resident", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/54503-8", + "text": "Legal name of resident", + "item": [ + { + "type": "string", + "code": [ + { + "code": "45392-8", + "display": "Patient First name", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/54503-8/45392-8", + "text": "Patient First name" + }, + { + "type": "string", + "code": [ + { + "code": "45393-6", + "display": "Middle initial", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/54503-8/45393-6", + "text": "Middle initial" + }, + { + "type": "string", + "code": [ + { + "code": "45394-4", + "display": "Patient Last name", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/54503-8/45394-4", + "text": "Patient Last name" + }, + { + "type": "string", + "code": [ + { + "code": "45395-1", + "display": "Suffix", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/54503-8/45395-1", + "text": "Suffix" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "45966-9", + "display": "Social Security & Medicare numbers", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/45966-9", + "text": "Social Security & Medicare numbers", + "item": [ + { + "type": "string", + "code": [ + { + "code": "45396-9", + "display": "Social Security #", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/45966-9/45396-9", + "text": "Social Security #" + }, + { + "type": "string", + "code": [ + { + "code": "45397-7", + "display": "Medicare number (or comparable railroad insurance number)", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/45966-9/45397-7", + "text": "Medicare number (or comparable railroad insurance number)" + } + ] + }, + { + "type": "string", + "code": [ + { + "code": "45400-9", + "display": "Medicaid #", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/45400-9", + "text": "Medicaid #" + }, + { + "type": "choice", + "code": [ + { + "code": "46098-0", + "display": "Gender", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/46098-0", + "text": "Gender", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA2-8", + "display": "Male" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA3-6", + "display": "Female" + } + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "21112-8", + "display": "Birth date", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/54501-2/21112-8", + "text": "Birth date" + }, + { + "type": "choice", + "code": [ + { + "code": "59362-4", + "display": "Race/Ethnicity", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/59362-4", + "text": "Race/Ethnicity", + "answerOption": [ + { + "valueCoding": { + "code": "LA6155-1", + "display": "American Indian or Alaska Native" + } + }, + { + "valueCoding": { + "code": "LA6156-9", + "display": "Asian" + } + }, + { + "valueCoding": { + "code": "LA10610-6", + "display": "Black or African American" + } + }, + { + "valueCoding": { + "code": "LA6214-6", + "display": "Hispanic or Latino" + } + }, + { + "valueCoding": { + "code": "LA10611-4", + "display": "Native Hawaiian or Other Pacific Islander" + } + }, + { + "valueCoding": { + "code": "LA4457-3", + "display": "White" + } + } + ], + "item": [ + { + "text": "This term is used for reporting the combined race and ethnicity based on the Office of Management and Budget (OMB), Revisions to the Standards for the Classification of Federal Data on Race and Ethnicity (Oct. 30, 1997). It is used in many surveys and data collections, including the CMS Minimum Data Set version 3 and other CMS assessments.", + "type": "display", + "linkId": "/54501-2/59362-4-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54505-3", + "display": "Language", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/54505-3", + "text": "Language", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54588-9", + "display": "Does the resident need or want an interpreter to communicate with a doctor or health care staff?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/54505-3/54588-9", + "text": "Does the resident need or want an interpreter to communicate with a doctor or health care staff?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11137-9", + "display": "Unable to determine" + } + } + ], + "item": [ + { + "text": "Patient/resident's need or want an interpreter to communicate with a doctor or health care staff", + "type": "display", + "linkId": "/54501-2/54505-3/54588-9-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54899-0", + "display": "Preferred Language", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/54505-3/54899-0", + "text": "Preferred Language", + "answerOption": [ + { + "valueCoding": { + "code": "LA43-5", + "display": "English" + } + }, + { + "valueCoding": { + "code": "LA44-3", + "display": "Spanish" + } + }, + { + "valueCoding": { + "code": "LA4168-6", + "display": "Chinese" + } + }, + { + "valueCoding": { + "code": "LA4443-3", + "display": "Vietnamese" + } + }, + { + "valueCoding": { + "code": "LA15353-8", + "display": "Tagalog" + } + }, + { + "valueCoding": { + "code": "LA46-8", + "display": "Other" + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45404-1", + "display": "Marital status", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/45404-1", + "text": "Marital status", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA47-6", + "display": "Never married" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA48-4", + "display": "Married" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA49-2", + "display": "Widowed" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA4288-2", + "display": "Separated" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA51-8", + "display": "Divorced" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54506-1", + "display": "Optional resident items", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/54506-1", + "text": "Optional resident items", + "item": [ + { + "type": "string", + "code": [ + { + "code": "46106-1", + "display": "Medical record number", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/54506-1/46106-1", + "text": "Medical record number" + }, + { + "type": "string", + "code": [ + { + "code": "45403-3", + "display": "Room #", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/54506-1/45403-3", + "text": "Room #" + }, + { + "type": "string", + "code": [ + { + "code": "52462-9", + "display": "Name by which resident prefers to be addressed", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/54506-1/52462-9", + "text": "Name by which resident prefers to be addressed" + }, + { + "type": "choice", + "code": [ + { + "code": "21843-8", + "display": "Hx of Usual occupation", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/54506-1/21843-8", + "text": "Hx of Usual occupation", + "item": [ + { + "text": "The occupation a person has held for the longest time during his or her life, regardless of the occupation currently held.", + "type": "display", + "linkId": "/54501-2/54506-1/21843-8-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54589-7", + "display": "Preadmission Screening and Resident Review (PASRR). Has the resident been evaluated by Level II PASRR and determined to have a serious mental illness and/or mental retardation or a related condition?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/54589-7", + "text": "Preadmission Screening and Resident Review (PASRR). Has the resident been evaluated by Level II PASRR and determined to have a serious mental illness and/or mental retardation or a related condition?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA10921-7", + "display": "Not a Medicaid-certified unit" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "71441-0", + "display": "Level II Preadmission Screening and Resident Review (PASRR)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/71441-0", + "text": "Level II Preadmission Screening and Resident Review (PASRR)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "A" + } + ], + "valueCoding": { + "code": "LA18599-3", + "display": "Serious mental illness" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "B" + } + ], + "valueCoding": { + "code": "LA18600-9", + "display": "Intellectual disability (\"mental retardation\" in federal regulation)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "C" + } + ], + "valueCoding": { + "code": "LA18601-7", + "display": "Other related conditions" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "71454-3", + "display": "Conditions related to ID/DD", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/71454-3", + "text": "Conditions related to ID/DD", + "item": [ + { + "type": "group", + "code": [ + { + "code": "71452-7", + "display": "ID/DD with organic condition", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/71454-3/71452-7", + "text": "ID/DD with organic condition", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "type": "choice", + "code": [ + { + "code": "45422-3", + "display": "Down's syndrome", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/71454-3/71452-7/45422-3", + "text": "Down's syndrome", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45423-1", + "display": "Autism", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/71454-3/71452-7/45423-1", + "text": "Autism", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45424-9", + "display": "Epilepsy", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/71454-3/71452-7/45424-9", + "text": "Epilepsy", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "71455-0", + "display": "Other organic condition related to ID/DD", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/71454-3/71452-7/71455-0", + "text": "Other organic condition related to ID/DD", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "71453-5", + "display": "ID/DD with no organic condition", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/71454-3/71452-7/71453-5", + "text": "ID/DD with no organic condition", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "50786-3", + "display": "Entry Date (date of this admission/reentry into the facility)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/54501-2/50786-3", + "text": "Entry Date (date of this admission/reentry into the facility)" + }, + { + "type": "choice", + "code": [ + { + "code": "54590-5", + "display": "Type of Entry", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/54590-5", + "text": "Type of Entry", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10922-5", + "display": "Admission" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA54-2", + "display": "Reentry" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54591-3", + "display": "Entered from", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/54591-3", + "text": "Entered from", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "01" + } + ], + "valueCoding": { + "code": "LA10924-1", + "display": "Community (private home/apt., board/care, assisted living, group home)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "02" + } + ], + "valueCoding": { + "code": "LA10925-8", + "display": "Another nursing home or swing bed" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "03" + } + ], + "valueCoding": { + "code": "LA9928-8", + "display": "Acute hospital" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "04" + } + ], + "valueCoding": { + "code": "LA10064-6", + "display": "Psychiatric hospital" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "05" + } + ], + "valueCoding": { + "code": "LA10928-2", + "display": "Inpatient rehabilitation facility" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "06" + } + ], + "valueCoding": { + "code": "LA10929-0", + "display": "ID/DD facility" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "07" + } + ], + "valueCoding": { + "code": "LA6216-1", + "display": "Hospice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "09" + } + ], + "valueCoding": { + "code": "LA10000-0", + "display": "Long-Term Care Hospital (LTCH)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "99" + } + ], + "valueCoding": { + "code": "LA46-8", + "display": "Other" + } + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "52525-3", + "display": "Discharge date", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/54501-2/52525-3", + "text": "Discharge date" + }, + { + "type": "choice", + "code": [ + { + "code": "55128-3", + "display": "Discharge disposition", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/55128-3", + "text": "Discharge disposition", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "01" + } + ], + "valueCoding": { + "code": "LA10924-1", + "display": "Community (private home/apt., board/care, assisted living, group home)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "02" + } + ], + "valueCoding": { + "code": "LA10925-8", + "display": "Another nursing home or swing bed" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "03" + } + ], + "valueCoding": { + "code": "LA9928-8", + "display": "Acute hospital" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "04" + } + ], + "valueCoding": { + "code": "LA10064-6", + "display": "Psychiatric hospital" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "05" + } + ], + "valueCoding": { + "code": "LA10928-2", + "display": "Inpatient rehabilitation facility" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "06" + } + ], + "valueCoding": { + "code": "LA10929-0", + "display": "ID/DD facility" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "07" + } + ], + "valueCoding": { + "code": "LA6216-1", + "display": "Hospice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "08" + } + ], + "valueCoding": { + "code": "LA10939-9", + "display": "Deceased" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "09" + } + ], + "valueCoding": { + "code": "LA10000-0", + "display": "Long-Term Care Hospital (LTCH)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "99" + } + ], + "valueCoding": { + "code": "LA46-8", + "display": "Other" + } + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "54592-1", + "display": "Previous assessment reference date for significant correction", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/54501-2/54592-1", + "text": "Previous assessment reference date for significant correction" + }, + { + "type": "decimal", + "code": [ + { + "code": "54593-9", + "display": "Assessment reference date - observation end date", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/54501-2/54593-9", + "text": "Assessment reference date - observation end date", + "item": [ + { + "text": "The end-point of the assessment period for the CMS assessment instrument.", + "type": "display", + "linkId": "/54501-2/54593-9-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54507-9", + "display": "Medicare stay", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54501-2/54507-9", + "text": "Medicare stay", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54594-7", + "display": "Has resident had Medicare-covered stay since the most recent entry?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54501-2/54507-9/54594-7", + "text": "Has resident had Medicare-covered stay since the most recent entry?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "54595-4", + "display": "Start date of most recent Medicare stay", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/54501-2/54507-9/54595-4", + "text": "Start date of most recent Medicare stay" + }, + { + "type": "decimal", + "code": [ + { + "code": "54596-2", + "display": "End date of most recent Medicare stay", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/54501-2/54507-9/54596-2", + "text": "End date of most recent Medicare stay" + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54508-7", + "display": "Hearing, speech, and vision", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54508-7", + "text": "Hearing, speech, and vision", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54597-0", + "display": "Comatose", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54508-7/54597-0", + "text": "Comatose", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54598-8", + "display": "Hearing", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54508-7/54598-8", + "text": "Hearing", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10941-5", + "display": "Adequate - no difficulty in normal conversation, social interaction, listening to TV" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10942-3", + "display": "Minimal difficulty - difficulty in some environments (e.g. when person speaks softly or setting is noisy)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10943-1", + "display": "Moderate difficulty - speaker has to increase volume and speak distinctly" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA10944-9", + "display": "Highly impaired - absence of useful hearing" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54599-6", + "display": "Hearing Aid", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54508-7/54599-6", + "text": "Hearing Aid", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54600-2", + "display": "Speech Clarity", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54508-7/54600-2", + "text": "Speech Clarity", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10945-6", + "display": "Clear speech - distinct intelligible words" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10946-4", + "display": "Unclear speech - slurred or mumbled words" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10947-2", + "display": "No speech - absence of spoken words" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54601-0", + "display": "Makes Self Understood", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54508-7/54601-0", + "text": "Makes Self Understood", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA71-6", + "display": "Understood" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10949-8", + "display": "Usually understood - difficulty communicating some words or finishing thoughts but is able if prompted or given time" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10950-6", + "display": "Sometimes understood - ability is limited to making concrete requests" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA74-0", + "display": "Rarely/never understood" + } + } + ], + "item": [ + { + "text": "Includes verbal and non-verbal expression", + "type": "display", + "linkId": "/54508-7/54601-0-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54602-8", + "display": "Ability to understand others", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54508-7/54602-8", + "text": "Ability to understand others", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10952-2", + "display": "Understands - clear comprehension" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10953-0", + "display": "Usually understands - misses some part/intent of message but comprehends most conversation" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10954-8", + "display": "Sometimes understands - responds adequately to simple, direct communication only" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA81-5", + "display": "Rarely/never understands" + } + } + ], + "item": [ + { + "text": "Patient's ability to understand verbal content, with hearing aid or device if used", + "type": "display", + "linkId": "/54508-7/54602-8-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54603-6", + "display": "Vision", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54508-7/54603-6", + "text": "Vision", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10956-3", + "display": "Adequate - sees fine detail, such as regular print in newspapers/books" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10957-1", + "display": "Impaired - sees large print, but not regular print in newspapers/books" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10958-9", + "display": "Moderately impaired - limited vision; not able to see newspaper headlines but can identify objects" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA10959-7", + "display": "Highly impaired - object identification in question, but eyes appear to follow objects" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA10960-5", + "display": "Severely impaired - no vision or sees only light, colors or shapes; eyes do not appear to follow objects" + } + } + ], + "item": [ + { + "text": "Patient's ability to see in adequate light with glasses or other visual appliances", + "type": "display", + "linkId": "/54508-7/54603-6-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54604-4", + "display": "Corrective Lenses", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54508-7/54604-4", + "text": "Corrective Lenses", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "Corrective lenses include contacts, glasses, or a magnifying glass.", + "type": "display", + "linkId": "/54508-7/54604-4-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54509-5", + "display": "Cognitive patterns", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54509-5", + "text": "Cognitive patterns", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54605-1", + "display": "Brief interview for mental status should be conducted", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/54605-1", + "text": "Brief interview for mental status should be conducted", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11150-2", + "display": "No (resident is rarely/never understood)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "52491-8", + "display": "Brief interview for mental status", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54509-5/52491-8", + "text": "Brief interview for mental status", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "52731-7", + "display": "Repetition of three words", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/52491-8/52731-7", + "text": "Repetition of three words", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA137-2", + "display": "None" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA6306-0", + "display": "One" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA6404-3", + "display": "Two" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA6395-3", + "display": "Three" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54510-3", + "display": "Temporal orientation (orientation to year, month, and day)", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54509-5/52491-8/54510-3", + "text": "Temporal orientation (orientation to year, month, and day)", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "52732-5", + "display": "Temporal orientation - current year", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/52491-8/54510-3/52732-5", + "text": "Temporal orientation - current year", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10965-4", + "display": "Missed by > 5 years or no answer" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10966-2", + "display": "Missed by 2-5 years" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10008-3", + "display": "Missed by 1 year" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA9960-1", + "display": "Correct" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "52733-3", + "display": "Temporal orientation - current month", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/52491-8/54510-3/52733-3", + "text": "Temporal orientation - current month", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10969-6", + "display": "Missed by > 1 month or no answer" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10010-9", + "display": "Missed by 6 days to 1 month" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA9927-0", + "display": "Accurate within 5 days" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54609-3", + "display": "Temporal orientation - current day of the week", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/52491-8/54510-3/54609-3", + "text": "Temporal orientation - current day of the week", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA9981-7", + "display": "Incorrect or no answer" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA9960-1", + "display": "Correct" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "52493-4", + "display": "Recall", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54509-5/52491-8/52493-4", + "text": "Recall", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "52735-8", + "display": "Able to recall \"sock\"", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/52491-8/52493-4/52735-8", + "text": "Able to recall \"sock\"", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10974-6", + "display": "No - could not recall" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10126-3", + "display": "Yes, after cueing (\"something to wear\")" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10134-7", + "display": "Yes, no cue required" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "52736-6", + "display": "Able to recall \"blue\"", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/52491-8/52493-4/52736-6", + "text": "Able to recall \"blue\"", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10974-6", + "display": "No - could not recall" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10978-7", + "display": "Yes, after cueing (\"a color\")" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10134-7", + "display": "Yes, no cue required" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "52737-4", + "display": "Able to recall \"bed\"", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/52491-8/52493-4/52737-4", + "text": "Able to recall \"bed\"", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10974-6", + "display": "No - could not recall" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10125-5", + "display": "Yes, after cueing (\"a piece of furniture\")" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10134-7", + "display": "Yes, no cue required" + } + } + ] + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "54614-3", + "display": "Summary Score", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{score}" + } + } + ], + "required": false, + "linkId": "/54509-5/52491-8/54614-3", + "text": "Summary Score" + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54615-0", + "display": "Should the Staff Assessment for Mental Status C0700-C1000 be conducted?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/54615-0", + "text": "Should the Staff Assessment for Mental Status C0700-C1000 be conducted?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11145-2", + "display": "No (resident was able to complete interview)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11146-0", + "display": "Yes (resident was unable to complete interview)" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54895-8", + "display": "Staff assessment for mental status", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54509-5/54895-8", + "text": "Staff assessment for mental status", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54616-8", + "display": "Short-term Memory OK", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/54895-8/54616-8", + "text": "Short-term Memory OK", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA55-9", + "display": "Memory OK" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA56-7", + "display": "Memory problem" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54617-6", + "display": "Long-term memory OK", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/54895-8/54617-6", + "text": "Long-term memory OK", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA55-9", + "display": "Memory OK" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA56-7", + "display": "Memory problem" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54618-4", + "display": "Memory/Recall Ability", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54509-5/54895-8/54618-4", + "text": "Memory/Recall Ability", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54619-2", + "display": "Current season", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/54895-8/54618-4/54619-2", + "text": "Current season", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54620-0", + "display": "Location of own room", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/54895-8/54618-4/54620-0", + "text": "Location of own room", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54621-8", + "display": "Staff names and faces", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/54895-8/54618-4/54621-8", + "text": "Staff names and faces", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54622-6", + "display": "That he or she is in a nursing home", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/54895-8/54618-4/54622-6", + "text": "That he or she is in a nursing home", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54623-4", + "display": "None of the above were recalled", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/54895-8/54618-4/54623-4", + "text": "None of the above were recalled", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54624-2", + "display": "Cognitive skills for daily decision making", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/54895-8/54624-2", + "text": "Cognitive skills for daily decision making", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10985-2", + "display": "Independent - decisions consistent/reasonable" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10986-0", + "display": "Modified independence - some difficulty in new situations only" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10987-8", + "display": "Moderately impaired - decisions poor; cues/supervision required" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA10988-6", + "display": "Severely impaired - never/rarely made decisions" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54626-7", + "display": "Delirium", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54509-5/54626-7", + "text": "Delirium", + "item": [ + { + "type": "group", + "code": [ + { + "code": "54627-5", + "display": "Signs and symptoms of delirium (from CAM)", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54509-5/54626-7/54627-5", + "text": "Signs and symptoms of delirium (from CAM)", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54628-3", + "display": "Inattention. Did the resident have difficulty focusing attention (easily distracted, out of touch or difficulty following what was said)?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/54626-7/54627-5/54628-3", + "text": "Inattention. Did the resident have difficulty focusing attention (easily distracted, out of touch or difficulty following what was said)?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA61-7", + "display": "Behavior not present" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10992-8", + "display": "Behavior continuously present, does not fluctuate" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10993-6", + "display": "Behavior present, fluctuates (comes and goes, changes in severity)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54629-1", + "display": "Disorganized thinking. Was the resident's thinking disorganized or incoherent (rambling or irrelevant conversation, unclear or illogical flow of ideas, or unpredictable switching from subject to subject)?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/54626-7/54627-5/54629-1", + "text": "Disorganized thinking. Was the resident's thinking disorganized or incoherent (rambling or irrelevant conversation, unclear or illogical flow of ideas, or unpredictable switching from subject to subject)?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA61-7", + "display": "Behavior not present" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10992-8", + "display": "Behavior continuously present, does not fluctuate" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10993-6", + "display": "Behavior present, fluctuates (comes and goes, changes in severity)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54630-9", + "display": "Altered level of consciousness. Did the resident have altered level of consciousness?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/54626-7/54627-5/54630-9", + "text": "Altered level of consciousness. Did the resident have altered level of consciousness?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA61-7", + "display": "Behavior not present" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10992-8", + "display": "Behavior continuously present, does not fluctuate" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10993-6", + "display": "Behavior present, fluctuates (comes and goes, changes in severity)" + } + } + ], + "item": [ + { + "text": "This term is the CMS Assessment adaption of question 4 on the Confusion Assessment Method (CAM): \"[Altered level of consciousness] Overall, how would you rate this patient's level of consciousness? (Alert [normal]; Vigilant [hyperalert, overly sensitive to environmental stimuli, startled very easily], Lethargic [drowsy, easily aroused]; Stupor [difficult to arouse]; Coma; [unarousable]; Uncertain)\"", + "type": "display", + "linkId": "/54509-5/54626-7/54627-5/54630-9-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54631-7", + "display": "Psychomotor retardation. Did the resident have an unusually decreased level of ctivity such as sluggishness, staring into space, staying in one position, moving very slowly?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/54626-7/54627-5/54631-7", + "text": "Psychomotor retardation. Did the resident have an unusually decreased level of ctivity such as sluggishness, staring into space, staying in one position, moving very slowly?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA61-7", + "display": "Behavior not present" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10992-8", + "display": "Behavior continuously present, does not fluctuate" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10993-6", + "display": "Behavior present, fluctuates (comes and goes, changes in severity)" + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54632-5", + "display": "Acute Onset Mental Status Change - Is there evidence of an acute change in mental status from the resident's baseline?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54509-5/54626-7/54632-5", + "text": "Acute Onset Mental Status Change - Is there evidence of an acute change in mental status from the resident's baseline?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54633-3", + "display": "Mood", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54633-3", + "text": "Mood", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54634-1", + "display": "Should resident mood interview be conducted", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54634-1", + "text": "Should resident mood interview be conducted", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11150-2", + "display": "No (resident is rarely/never understood)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54635-8", + "display": "Resident mood interview (PHQ-9)", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54633-3/54635-8", + "text": "Resident mood interview (PHQ-9)", + "item": [ + { + "type": "group", + "code": [ + { + "code": "86843-0", + "display": "Symptom Presence", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86843-0", + "text": "Symptom Presence", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54636-6", + "display": "Little interest or pleasure in doing things in last 2W.presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86843-0/54636-6", + "text": "Little interest or pleasure in doing things in last 2W.presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA10996-9", + "display": "No response" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54638-2", + "display": "Feeling down, depressed or hopeless in last 2W.presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86843-0/54638-2", + "text": "Feeling down, depressed or hopeless in last 2W.presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA10996-9", + "display": "No response" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54640-8", + "display": "Trouble falling or staying asleep, or sleeping too much in last 2W.presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86843-0/54640-8", + "text": "Trouble falling or staying asleep, or sleeping too much in last 2W.presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA10996-9", + "display": "No response" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54642-4", + "display": "Feeling tired or having little energy in last 2W.presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86843-0/54642-4", + "text": "Feeling tired or having little energy in last 2W.presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA10996-9", + "display": "No response" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54644-0", + "display": "Poor appetite or overeating in last 2W.presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86843-0/54644-0", + "text": "Poor appetite or overeating in last 2W.presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA10996-9", + "display": "No response" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54646-5", + "display": "Feeling bad about yourself - or that you are a failure or have let yourself or your family down in last 2W.presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86843-0/54646-5", + "text": "Feeling bad about yourself - or that you are a failure or have let yourself or your family down in last 2W.presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA10996-9", + "display": "No response" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54648-1", + "display": "Trouble concentrating on things, such as reading the newspaper or watching television in last 2W.presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86843-0/54648-1", + "text": "Trouble concentrating on things, such as reading the newspaper or watching television in last 2W.presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA10996-9", + "display": "No response" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54650-7", + "display": "Moving or speaking so slowly that other people could have noticed. Or the opposite - being so fidgety or restless that you have been moving around a lot more than usual in last 2W.presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86843-0/54650-7", + "text": "Moving or speaking so slowly that other people could have noticed. Or the opposite - being so fidgety or restless that you have been moving around a lot more than usual in last 2W.presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA10996-9", + "display": "No response" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54652-3", + "display": "Thoughts that you would be better off dead, or of hurting yourself in some way", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86843-0/54652-3", + "text": "Thoughts that you would be better off dead, or of hurting yourself in some way", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA10996-9", + "display": "No response" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "86844-8", + "display": "Symptom Frequency", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86844-8", + "text": "Symptom Frequency", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54637-4", + "display": "Little interest or pleasure in doing things in last 2W.frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86844-8/54637-4", + "text": "Little interest or pleasure in doing things in last 2W.frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54639-0", + "display": "Feeling down, depressed or hopeless in last 2W.frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86844-8/54639-0", + "text": "Feeling down, depressed or hopeless in last 2W.frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54641-6", + "display": "Trouble falling or staying asleep, or sleeping too much in last 2W.frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86844-8/54641-6", + "text": "Trouble falling or staying asleep, or sleeping too much in last 2W.frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54643-2", + "display": "Feeling tired or having little energy in last 2W.frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86844-8/54643-2", + "text": "Feeling tired or having little energy in last 2W.frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54645-7", + "display": "Poor appetite or overeating in last 2W.frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86844-8/54645-7", + "text": "Poor appetite or overeating in last 2W.frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54647-3", + "display": "Feeling bad about yourself - or that you are a failure or have let yourself or your family down in last 2W.frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86844-8/54647-3", + "text": "Feeling bad about yourself - or that you are a failure or have let yourself or your family down in last 2W.frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54649-9", + "display": "Trouble concentrating on things, such as reading the newspaper or watching television in last 2W.frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86844-8/54649-9", + "text": "Trouble concentrating on things, such as reading the newspaper or watching television in last 2W.frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54651-5", + "display": "Moving or speaking so slowly that other people could have noticed. Or the opposite - being so fidgety or restless that you have been moving around a lot more than usual in last 2W.frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86844-8/54651-5", + "text": "Moving or speaking so slowly that other people could have noticed. Or the opposite - being so fidgety or restless that you have been moving around a lot more than usual in last 2W.frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54653-1", + "display": "Thoughts that you would be better off dead, or of hurting yourself in some way in last 2W.frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54635-8/86844-8/54653-1", + "text": "Thoughts that you would be better off dead, or of hurting yourself in some way in last 2W.frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + } + ] + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "54654-9", + "display": "Total Severity Score", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{score}" + } + } + ], + "required": false, + "linkId": "/54633-3/54654-9", + "text": "Total Severity Score" + }, + { + "type": "choice", + "code": [ + { + "code": "54655-6", + "display": "Safety Notification. Was a responsible staff or provider informed that there is a potential for resident self harm?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54655-6", + "text": "Safety Notification. Was a responsible staff or provider informed that there is a potential for resident self harm?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54657-2", + "display": "Staff assessment of resident mood (PHQ-9-OV)", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54633-3/54657-2", + "text": "Staff assessment of resident mood (PHQ-9-OV)", + "item": [ + { + "type": "group", + "code": [ + { + "code": "86833-1", + "display": "Staff assessment of resident mood (PHQ-9-OV) - symptom presence in the last 2W", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86833-1", + "text": "Staff assessment of resident mood (PHQ-9-OV) - symptom presence in the last 2W", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54658-0", + "display": "Little interest or pleasure in doing things", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86833-1/54658-0", + "text": "Little interest or pleasure in doing things", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54660-6", + "display": "Feeling or appearing down, depressed, or hopeless.Presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86833-1/54660-6", + "text": "Feeling or appearing down, depressed, or hopeless.Presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54662-2", + "display": "Trouble falling or staying asleep, or sleeping too much.Presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86833-1/54662-2", + "text": "Trouble falling or staying asleep, or sleeping too much.Presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54664-8", + "display": "Feeling tired or having little energy.Presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86833-1/54664-8", + "text": "Feeling tired or having little energy.Presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54666-3", + "display": "Poor appetite or overeating.Presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86833-1/54666-3", + "text": "Poor appetite or overeating.Presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54668-9", + "display": "Indicating that s/he feels bad about self, is a failure, or has let self or family down.presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86833-1/54668-9", + "text": "Indicating that s/he feels bad about self, is a failure, or has let self or family down.presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54670-5", + "display": "Trouble concentrating on things, such as reading the newspaper or watching television.Presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86833-1/54670-5", + "text": "Trouble concentrating on things, such as reading the newspaper or watching television.Presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54672-1", + "display": "Moving or speaking so slowly that other people have noticed. Or the opposite-being so fidgety or restless that s/he has been moving around a lot more than usual.presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86833-1/54672-1", + "text": "Moving or speaking so slowly that other people have noticed. Or the opposite-being so fidgety or restless that s/he has been moving around a lot more than usual.presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54673-9", + "display": "States that life isn't worth living, wishes for death, or attempts to harm self.Presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86833-1/54673-9", + "text": "States that life isn't worth living, wishes for death, or attempts to harm self.Presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54675-4", + "display": "Being short-tempered, easily annoyed.Presence", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86833-1/54675-4", + "text": "Being short-tempered, easily annoyed.Presence", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "86891-9", + "display": "Staff assessment of resident mood (PHQ-9-OV) - symptom frequency in the last 2W", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86891-9", + "text": "Staff assessment of resident mood (PHQ-9-OV) - symptom frequency in the last 2W", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54659-8", + "display": "Little interest or pleasure in doing things.Frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86891-9/54659-8", + "text": "Little interest or pleasure in doing things.Frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54661-4", + "display": "Feeling or appearing down, depressed, or hopeless.Frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86891-9/54661-4", + "text": "Feeling or appearing down, depressed, or hopeless.Frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54663-0", + "display": "Trouble falling or staying asleep, or sleeping too much.Frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86891-9/54663-0", + "text": "Trouble falling or staying asleep, or sleeping too much.Frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54665-5", + "display": "Feeling tired or having little energy.Frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86891-9/54665-5", + "text": "Feeling tired or having little energy.Frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54667-1", + "display": "Poor appetite or overeating.Frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86891-9/54667-1", + "text": "Poor appetite or overeating.Frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54669-7", + "display": "Indicating that s/he feels bad about self, is a failure, or has let self or family down.frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86891-9/54669-7", + "text": "Indicating that s/he feels bad about self, is a failure, or has let self or family down.frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54671-3", + "display": "Trouble concentrating on things, such as reading the newspaper or watching television.Frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86891-9/54671-3", + "text": "Trouble concentrating on things, such as reading the newspaper or watching television.Frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54904-8", + "display": "Moving or speaking so slowly that other people have noticed. Or the opposite-being so fidgety or restless that s/he has been moving around a lot more than usual.frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86891-9/54904-8", + "text": "Moving or speaking so slowly that other people have noticed. Or the opposite-being so fidgety or restless that s/he has been moving around a lot more than usual.frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54674-7", + "display": "States that life isn't worth living, wishes for death, or attempts to harm self.Frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86891-9/54674-7", + "text": "States that life isn't worth living, wishes for death, or attempts to harm self.Frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54676-2", + "display": "Being short-tempered, easily annoyed.Frequency", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54657-2/86891-9/54676-2", + "text": "Being short-tempered, easily annoyed.Frequency", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA10997-7", + "display": "Never or 1 day" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10998-5", + "display": "2-6 days (several days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10999-3", + "display": "7-11 days (half or more of the days)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11000-9", + "display": "12-14 days (nearly every day)" + } + } + ] + } + ] + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "54677-0", + "display": "Total Severity Score", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{score}" + } + } + ], + "required": false, + "linkId": "/54633-3/54677-0", + "text": "Total Severity Score" + }, + { + "type": "choice", + "code": [ + { + "code": "54655-6", + "display": "Safety Notification. Was a responsible staff or provider informed that there is a potential for resident self harm?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54633-3/54655-6", + "text": "Safety Notification. Was a responsible staff or provider informed that there is a potential for resident self harm?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54511-1", + "display": "Behavior", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54511-1", + "text": "Behavior", + "item": [ + { + "type": "group", + "code": [ + { + "code": "54512-9", + "display": "Pyschosis", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54511-1/54512-9", + "text": "Pyschosis", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54678-8", + "display": "Hallucinations", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54512-9/54678-8", + "text": "Hallucinations", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54680-4", + "display": "Delusions", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54512-9/54680-4", + "text": "Delusions", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54681-2", + "display": "None of the above", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54512-9/54681-2", + "text": "None of the above", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54513-7", + "display": "Behavioral symptoms", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54511-1/54513-7", + "text": "Behavioral symptoms", + "item": [ + { + "type": "group", + "code": [ + { + "code": "54514-5", + "display": "Behavioral symptom - presence & frequency", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54514-5", + "text": "Behavioral symptom - presence & frequency", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54682-0", + "display": "Physical behavioral symptoms directed toward others", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54514-5/54682-0", + "text": "Physical behavioral symptoms directed toward others", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11005-8", + "display": "Behavior not exhibited" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11006-6", + "display": "Behavior of this type occurred 1 to 3 days" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA94-8", + "display": "Behavior of this type occurred 4 to 6 days, but less than daily" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA95-5", + "display": "Behavior of this type occurred daily" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54683-8", + "display": "Verbal behavioral symptoms directed toward others", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54514-5/54683-8", + "text": "Verbal behavioral symptoms directed toward others", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11005-8", + "display": "Behavior not exhibited" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11006-6", + "display": "Behavior of this type occurred 1 to 3 days" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA94-8", + "display": "Behavior of this type occurred 4 to 6 days, but less than daily" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA95-5", + "display": "Behavior of this type occurred daily" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54684-6", + "display": "Other behavioral symptoms not directed toward others", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54514-5/54684-6", + "text": "Other behavioral symptoms not directed toward others", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11005-8", + "display": "Behavior not exhibited" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11006-6", + "display": "Behavior of this type occurred 1 to 3 days" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA94-8", + "display": "Behavior of this type occurred 4 to 6 days, but less than daily" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA95-5", + "display": "Behavior of this type occurred daily" + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54685-3", + "display": "Overall presence of behavioral symptoms. Were any behavioral symptoms in questions E0200 coded 1, 2 or 3?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54685-3", + "text": "Overall presence of behavioral symptoms. Were any behavioral symptoms in questions E0200 coded 1, 2 or 3?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54515-2", + "display": "Impact on resident", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54515-2", + "text": "Impact on resident", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54686-1", + "display": "Put the resident at significant risk for physical illness or injury?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54515-2/54686-1", + "text": "Put the resident at significant risk for physical illness or injury?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54687-9", + "display": "Significantly interfere with the resident's care?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54515-2/54687-9", + "text": "Significantly interfere with the resident's care?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54688-7", + "display": "Significantly interfere with the resident's participation in activities or social interactions?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54515-2/54688-7", + "text": "Significantly interfere with the resident's participation in activities or social interactions?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54516-0", + "display": "Impact on others", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54516-0", + "text": "Impact on others", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54689-5", + "display": "Put others at significant risk for physical injury?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54516-0/54689-5", + "text": "Put others at significant risk for physical injury?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54690-3", + "display": "Significantly intrude on the privacy or activity of others?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54516-0/54690-3", + "text": "Significantly intrude on the privacy or activity of others?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54691-1", + "display": "Significantly disrupt care or living environment?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54516-0/54691-1", + "text": "Significantly disrupt care or living environment?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54692-9", + "display": "Rejection of Care - Presence & Frequency. Did the resident reject evaluation or care (e.g., bloodwork, taking medications, ADL assistance) that is necessary to achieve the resident's goals for health and well-being?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54692-9", + "text": "Rejection of Care - Presence & Frequency. Did the resident reject evaluation or care (e.g., bloodwork, taking medications, ADL assistance) that is necessary to achieve the resident's goals for health and well-being?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11005-8", + "display": "Behavior not exhibited" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11006-6", + "display": "Behavior of this type occurred 1 to 3 days" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA94-8", + "display": "Behavior of this type occurred 4 to 6 days, but less than daily" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA95-5", + "display": "Behavior of this type occurred daily" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54693-7", + "display": "Wandering - Presence & Frequency. Has the resident wandered?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54693-7", + "text": "Wandering - Presence & Frequency. Has the resident wandered?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11005-8", + "display": "Behavior not exhibited" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11006-6", + "display": "Behavior of this type occurred 1 to 3 days" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA94-8", + "display": "Behavior of this type occurred 4 to 6 days, but less than daily" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA95-5", + "display": "Behavior of this type occurred daily" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54517-8", + "display": "Wandering - impact", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54517-8", + "text": "Wandering - impact", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54694-5", + "display": "Does the wandering place the resident at significant risk of getting to a potentially dangerous place (e.g., stairs, outside of the facility)?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54517-8/54694-5", + "text": "Does the wandering place the resident at significant risk of getting to a potentially dangerous place (e.g., stairs, outside of the facility)?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54695-2", + "display": "Does wandering significantly intrude on the privacy or activities of others?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54517-8/54695-2", + "text": "Does wandering significantly intrude on the privacy or activities of others?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54696-0", + "display": "Change in behavioral or other symptoms - How does resident's current behavior status, care rejection, or wandering compare to prior assessment (OBRA or PPS)?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54511-1/54513-7/54696-0", + "text": "Change in behavioral or other symptoms - How does resident's current behavior status, care rejection, or wandering compare to prior assessment (OBRA or PPS)?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11009-0", + "display": "Same" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA65-8", + "display": "Improved" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11011-6", + "display": "Worse" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11012-4", + "display": "N/A because no prior MDS assessment" + } + } + ] + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54518-6", + "display": "Preferences for customary routine and activities", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54518-6", + "text": "Preferences for customary routine and activities", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54697-8", + "display": "Should Interview for Daily and Activity Preferences be Conducted?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54697-8", + "text": "Should Interview for Daily and Activity Preferences be Conducted?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA16158-0", + "display": "No (resident is rarely/never understood and family/significant other not available)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54519-4", + "display": "Interview for daily preferences", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54518-6/54519-4", + "text": "Interview for daily preferences", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54698-6", + "display": "How important is it to you to choose what clothes to wear?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54519-4/54698-6", + "text": "How important is it to you to choose what clothes to wear?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11013-2", + "display": "Very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11014-0", + "display": "Somewhat important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11015-7", + "display": "Not very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11016-5", + "display": "Not important at all" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA11017-3", + "display": "Important, but can't do or no choice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11018-1", + "display": "No response or non-responsive" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54699-4", + "display": "How important is it to you to take care of your personal belongings or things?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54519-4/54699-4", + "text": "How important is it to you to take care of your personal belongings or things?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11013-2", + "display": "Very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11014-0", + "display": "Somewhat important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11015-7", + "display": "Not very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11016-5", + "display": "Not important at all" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA11017-3", + "display": "Important, but can't do or no choice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11018-1", + "display": "No response or non-responsive" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54700-0", + "display": "How important is it to you to choose between a tub bath, shower, bed bath, or sponge bath?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54519-4/54700-0", + "text": "How important is it to you to choose between a tub bath, shower, bed bath, or sponge bath?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11013-2", + "display": "Very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11014-0", + "display": "Somewhat important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11015-7", + "display": "Not very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11016-5", + "display": "Not important at all" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA11017-3", + "display": "Important, but can't do or no choice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11018-1", + "display": "No response or non-responsive" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54701-8", + "display": "How important is it to you to have snacks available between meals?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54519-4/54701-8", + "text": "How important is it to you to have snacks available between meals?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11013-2", + "display": "Very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11014-0", + "display": "Somewhat important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11015-7", + "display": "Not very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11016-5", + "display": "Not important at all" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA11017-3", + "display": "Important, but can't do or no choice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11018-1", + "display": "No response or non-responsive" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54702-6", + "display": "How important is it to choose your own bedtime?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54519-4/54702-6", + "text": "How important is it to choose your own bedtime?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11013-2", + "display": "Very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11014-0", + "display": "Somewhat important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11015-7", + "display": "Not very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11016-5", + "display": "Not important at all" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA11017-3", + "display": "Important, but can't do or no choice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11018-1", + "display": "No response or non-responsive" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54703-4", + "display": "How important is it to you to have your family or a close friend involved in discussions about your care?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54519-4/54703-4", + "text": "How important is it to you to have your family or a close friend involved in discussions about your care?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11013-2", + "display": "Very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11014-0", + "display": "Somewhat important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11015-7", + "display": "Not very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11016-5", + "display": "Not important at all" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA11017-3", + "display": "Important, but can't do or no choice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11018-1", + "display": "No response or non-responsive" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54704-2", + "display": "How important is it to you to be able to use the phone in private?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54519-4/54704-2", + "text": "How important is it to you to be able to use the phone in private?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11013-2", + "display": "Very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11014-0", + "display": "Somewhat important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11015-7", + "display": "Not very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11016-5", + "display": "Not important at all" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA11017-3", + "display": "Important, but can't do or no choice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11018-1", + "display": "No response or non-responsive" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54705-9", + "display": "How important is it to you to have a place to lock your things to keep them safe?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54519-4/54705-9", + "text": "How important is it to you to have a place to lock your things to keep them safe?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11013-2", + "display": "Very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11014-0", + "display": "Somewhat important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11015-7", + "display": "Not very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11016-5", + "display": "Not important at all" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA11017-3", + "display": "Important, but can't do or no choice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11018-1", + "display": "No response or non-responsive" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54520-2", + "display": "Interview for activity preferences", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54518-6/54520-2", + "text": "Interview for activity preferences", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54706-7", + "display": "How important is it to you to have books, newspapers, and magazines to read?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54520-2/54706-7", + "text": "How important is it to you to have books, newspapers, and magazines to read?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11013-2", + "display": "Very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11014-0", + "display": "Somewhat important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11015-7", + "display": "Not very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11016-5", + "display": "Not important at all" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA11017-3", + "display": "Important, but can't do or no choice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11018-1", + "display": "No response or non-responsive" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54707-5", + "display": "How important is it to you to listen to music you like?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54520-2/54707-5", + "text": "How important is it to you to listen to music you like?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11013-2", + "display": "Very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11014-0", + "display": "Somewhat important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11015-7", + "display": "Not very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11016-5", + "display": "Not important at all" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA11017-3", + "display": "Important, but can't do or no choice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11018-1", + "display": "No response or non-responsive" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54708-3", + "display": "How important is it to you to be around animals such as pets?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54520-2/54708-3", + "text": "How important is it to you to be around animals such as pets?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11013-2", + "display": "Very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11014-0", + "display": "Somewhat important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11015-7", + "display": "Not very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11016-5", + "display": "Not important at all" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA11017-3", + "display": "Important, but can't do or no choice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11018-1", + "display": "No response or non-responsive" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54709-1", + "display": "How important is it to you to keep up with the news?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54520-2/54709-1", + "text": "How important is it to you to keep up with the news?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11013-2", + "display": "Very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11014-0", + "display": "Somewhat important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11015-7", + "display": "Not very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11016-5", + "display": "Not important at all" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA11017-3", + "display": "Important, but can't do or no choice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11018-1", + "display": "No response or non-responsive" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54710-9", + "display": "How important is it to you to do things with groups of people?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54520-2/54710-9", + "text": "How important is it to you to do things with groups of people?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11013-2", + "display": "Very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11014-0", + "display": "Somewhat important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11015-7", + "display": "Not very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11016-5", + "display": "Not important at all" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA11017-3", + "display": "Important, but can't do or no choice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11018-1", + "display": "No response or non-responsive" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54711-7", + "display": "How important is it to you to do your favorite activities?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54520-2/54711-7", + "text": "How important is it to you to do your favorite activities?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11013-2", + "display": "Very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11014-0", + "display": "Somewhat important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11015-7", + "display": "Not very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11016-5", + "display": "Not important at all" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA11017-3", + "display": "Important, but can't do or no choice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11018-1", + "display": "No response or non-responsive" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54712-5", + "display": "How important is it to you to go outside to get fresh air when the weather is good?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54520-2/54712-5", + "text": "How important is it to you to go outside to get fresh air when the weather is good?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11013-2", + "display": "Very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11014-0", + "display": "Somewhat important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11015-7", + "display": "Not very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11016-5", + "display": "Not important at all" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA11017-3", + "display": "Important, but can't do or no choice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11018-1", + "display": "No response or non-responsive" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54713-3", + "display": "How important is it to you to participate in religious services or practices?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54520-2/54713-3", + "text": "How important is it to you to participate in religious services or practices?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11013-2", + "display": "Very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11014-0", + "display": "Somewhat important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11015-7", + "display": "Not very important" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11016-5", + "display": "Not important at all" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA11017-3", + "display": "Important, but can't do or no choice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11018-1", + "display": "No response or non-responsive" + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54714-1", + "display": "Primary respondent for daily and activity preferences", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54714-1", + "text": "Primary respondent for daily and activity preferences", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11019-9", + "display": "Resident" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11020-7", + "display": "Family or significant other (close friend or other representative)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11021-5", + "display": "Interview could not be completed by resident or family/significant other (\"No response\" to 3 or more items)" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54715-8", + "display": "Should the Staff Assessment of Daily and Activity Preferences be Conducted?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54715-8", + "text": "Should the Staff Assessment of Daily and Activity Preferences be Conducted?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11151-0", + "display": "No (because Interview for Daily and Activity Preferences (F0400 and F0500) was completed by resident or family/significant other)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11152-8", + "display": "Yes (because 3 or more items in Interview for Daily and Activity Preferences (F0400 and F0500) were not completed by resident or family/significant other)" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54521-0", + "display": "Staff assessment of daily and activity preferences", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54518-6/54521-0", + "text": "Staff assessment of daily and activity preferences", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54716-6", + "display": "Resident prefers choosing clothes to wear", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54716-6", + "text": "Resident prefers choosing clothes to wear", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54717-4", + "display": "Resident prefers caring for personal belongings", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54717-4", + "text": "Resident prefers caring for personal belongings", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54718-2", + "display": "Resident prefers receiving tub bath", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54718-2", + "text": "Resident prefers receiving tub bath", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54719-0", + "display": "Resident prefers receiving shower", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54719-0", + "text": "Resident prefers receiving shower", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54720-8", + "display": "Resident prefers receiving bed bath", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54720-8", + "text": "Resident prefers receiving bed bath", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54721-6", + "display": "Resident prefers receiving sponge bath", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54721-6", + "text": "Resident prefers receiving sponge bath", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54722-4", + "display": "Resident prefers snacks between meals", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54722-4", + "text": "Resident prefers snacks between meals", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54723-2", + "display": "Resident prefers staying up past 8:00 p.m.", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54723-2", + "text": "Resident prefers staying up past 8:00 p.m.", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54724-0", + "display": "Resident prefers family or significant other involvement in care discussions", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54724-0", + "text": "Resident prefers family or significant other involvement in care discussions", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54725-7", + "display": "Resident prefers use of phone in private", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54725-7", + "text": "Resident prefers use of phone in private", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54726-5", + "display": "Resident prefers place to lock personal belongings", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54726-5", + "text": "Resident prefers place to lock personal belongings", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54727-3", + "display": "Resident prefers reading books, newspapers, magazines", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54727-3", + "text": "Resident prefers reading books, newspapers, magazines", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54728-1", + "display": "Resident prefers listening to music", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54728-1", + "text": "Resident prefers listening to music", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54729-9", + "display": "Resident prefers being around animals such as pets", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54729-9", + "text": "Resident prefers being around animals such as pets", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54730-7", + "display": "Resident prefers keeping up with the news", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54730-7", + "text": "Resident prefers keeping up with the news", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54731-5", + "display": "Resident prefers doing things with groups of people", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54731-5", + "text": "Resident prefers doing things with groups of people", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54732-3", + "display": "Resident prefers participating in favorite activities", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54732-3", + "text": "Resident prefers participating in favorite activities", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54733-1", + "display": "Resident prefers spending time away from the nursing home", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54733-1", + "text": "Resident prefers spending time away from the nursing home", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54734-9", + "display": "Resident prefers spending time outdoors", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54734-9", + "text": "Resident prefers spending time outdoors", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54735-6", + "display": "Resident prefers participating in religious activities or practices", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54735-6", + "text": "Resident prefers participating in religious activities or practices", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54736-4", + "display": "Resident prefers none of the above", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54518-6/54521-0/54736-4", + "text": "Resident prefers none of the above", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54522-8", + "display": "Functional status", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54522-8", + "text": "Functional status", + "item": [ + { + "type": "group", + "code": [ + { + "code": "54523-6", + "display": "Activities of Daily Living (ADL) Assistance", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54522-8/54523-6", + "text": "Activities of Daily Living (ADL) Assistance", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "45588-1", + "display": "Bed mobility - self-performance during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45588-1", + "text": "Bed mobility - self-performance during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA12637-7", + "display": "Independent - no help or staff oversight at any time" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12638-5", + "display": "Supervision - oversight, encouragement or cueing" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12639-3", + "display": "Limited assistance - resident highly involved in activity; staff provide guided maneuvering of limbs or other non-weight-bearing assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12640-1", + "display": "Extensive assistance - resident involved in activity, staff provide weight-bearing support" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA12641-9", + "display": "Total dependence - full staff performance every time during entire 7-day period" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "7" + } + ], + "valueCoding": { + "code": "LA12642-7", + "display": "Activity occurred only once or twice - activity did occur but only once or twice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA18614-0", + "display": "Activity did not occur - activity did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45589-9", + "display": "Bed mobility - support provided during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45589-9", + "text": "Bed mobility - support provided during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA105-9", + "display": "No setup or physical help from staff" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA106-7", + "display": "Setup help only" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA107-5", + "display": "One person physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA108-3", + "display": "Two+ persons physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA109-1", + "display": "ADL activity itself did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45590-7", + "display": "Transfer - self-performance during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45590-7", + "text": "Transfer - self-performance during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA12637-7", + "display": "Independent - no help or staff oversight at any time" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12638-5", + "display": "Supervision - oversight, encouragement or cueing" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12639-3", + "display": "Limited assistance - resident highly involved in activity; staff provide guided maneuvering of limbs or other non-weight-bearing assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12640-1", + "display": "Extensive assistance - resident involved in activity, staff provide weight-bearing support" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA12641-9", + "display": "Total dependence - full staff performance every time during entire 7-day period" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "7" + } + ], + "valueCoding": { + "code": "LA12642-7", + "display": "Activity occurred only once or twice - activity did occur but only once or twice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA18614-0", + "display": "Activity did not occur - activity did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45591-5", + "display": "Transfer - support provided during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45591-5", + "text": "Transfer - support provided during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA105-9", + "display": "No setup or physical help from staff" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA106-7", + "display": "Setup help only" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA107-5", + "display": "One person physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA108-3", + "display": "Two+ persons physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA109-1", + "display": "ADL activity itself did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45592-3", + "display": "Walk in room - self-performance during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45592-3", + "text": "Walk in room - self-performance during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA12637-7", + "display": "Independent - no help or staff oversight at any time" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12638-5", + "display": "Supervision - oversight, encouragement or cueing" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12639-3", + "display": "Limited assistance - resident highly involved in activity; staff provide guided maneuvering of limbs or other non-weight-bearing assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12640-1", + "display": "Extensive assistance - resident involved in activity, staff provide weight-bearing support" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA12641-9", + "display": "Total dependence - full staff performance every time during entire 7-day period" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "7" + } + ], + "valueCoding": { + "code": "LA12642-7", + "display": "Activity occurred only once or twice - activity did occur but only once or twice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA18614-0", + "display": "Activity did not occur - activity did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45593-1", + "display": "Walk in room - support provided during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45593-1", + "text": "Walk in room - support provided during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA105-9", + "display": "No setup or physical help from staff" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA106-7", + "display": "Setup help only" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA107-5", + "display": "One person physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA108-3", + "display": "Two+ persons physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA109-1", + "display": "ADL activity itself did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45594-9", + "display": "Walk in corridor - self-performance during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45594-9", + "text": "Walk in corridor - self-performance during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA12637-7", + "display": "Independent - no help or staff oversight at any time" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12638-5", + "display": "Supervision - oversight, encouragement or cueing" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12639-3", + "display": "Limited assistance - resident highly involved in activity; staff provide guided maneuvering of limbs or other non-weight-bearing assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12640-1", + "display": "Extensive assistance - resident involved in activity, staff provide weight-bearing support" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA12641-9", + "display": "Total dependence - full staff performance every time during entire 7-day period" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "7" + } + ], + "valueCoding": { + "code": "LA12642-7", + "display": "Activity occurred only once or twice - activity did occur but only once or twice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA18614-0", + "display": "Activity did not occur - activity did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45595-6", + "display": "Walk in corridor - support provided during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45595-6", + "text": "Walk in corridor - support provided during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA105-9", + "display": "No setup or physical help from staff" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA106-7", + "display": "Setup help only" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA107-5", + "display": "One person physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA108-3", + "display": "Two+ persons physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA109-1", + "display": "ADL activity itself did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45596-4", + "display": "Locomotion on unit - self-performance during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45596-4", + "text": "Locomotion on unit - self-performance during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA12637-7", + "display": "Independent - no help or staff oversight at any time" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12638-5", + "display": "Supervision - oversight, encouragement or cueing" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12639-3", + "display": "Limited assistance - resident highly involved in activity; staff provide guided maneuvering of limbs or other non-weight-bearing assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12640-1", + "display": "Extensive assistance - resident involved in activity, staff provide weight-bearing support" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA12641-9", + "display": "Total dependence - full staff performance every time during entire 7-day period" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "7" + } + ], + "valueCoding": { + "code": "LA12642-7", + "display": "Activity occurred only once or twice - activity did occur but only once or twice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA18614-0", + "display": "Activity did not occur - activity did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45597-2", + "display": "Locomotion on unit - support provided during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45597-2", + "text": "Locomotion on unit - support provided during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA105-9", + "display": "No setup or physical help from staff" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA106-7", + "display": "Setup help only" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA107-5", + "display": "One person physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA108-3", + "display": "Two+ persons physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA109-1", + "display": "ADL activity itself did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45598-0", + "display": "Locomotion off unit - self-performance during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45598-0", + "text": "Locomotion off unit - self-performance during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA12637-7", + "display": "Independent - no help or staff oversight at any time" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12638-5", + "display": "Supervision - oversight, encouragement or cueing" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12639-3", + "display": "Limited assistance - resident highly involved in activity; staff provide guided maneuvering of limbs or other non-weight-bearing assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12640-1", + "display": "Extensive assistance - resident involved in activity, staff provide weight-bearing support" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA12641-9", + "display": "Total dependence - full staff performance every time during entire 7-day period" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "7" + } + ], + "valueCoding": { + "code": "LA12642-7", + "display": "Activity occurred only once or twice - activity did occur but only once or twice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA18614-0", + "display": "Activity did not occur - activity did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45599-8", + "display": "Locomotion off unit - support provided during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45599-8", + "text": "Locomotion off unit - support provided during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA105-9", + "display": "No setup or physical help from staff" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA106-7", + "display": "Setup help only" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA107-5", + "display": "One person physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA108-3", + "display": "Two+ persons physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA109-1", + "display": "ADL activity itself did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45600-4", + "display": "Dressing - self-performance during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45600-4", + "text": "Dressing - self-performance during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA12637-7", + "display": "Independent - no help or staff oversight at any time" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12638-5", + "display": "Supervision - oversight, encouragement or cueing" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12639-3", + "display": "Limited assistance - resident highly involved in activity; staff provide guided maneuvering of limbs or other non-weight-bearing assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12640-1", + "display": "Extensive assistance - resident involved in activity, staff provide weight-bearing support" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA12641-9", + "display": "Total dependence - full staff performance every time during entire 7-day period" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "7" + } + ], + "valueCoding": { + "code": "LA12642-7", + "display": "Activity occurred only once or twice - activity did occur but only once or twice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA18614-0", + "display": "Activity did not occur - activity did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45601-2", + "display": "Dressing - support provided during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45601-2", + "text": "Dressing - support provided during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA105-9", + "display": "No setup or physical help from staff" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA106-7", + "display": "Setup help only" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA107-5", + "display": "One person physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA108-3", + "display": "Two+ persons physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA109-1", + "display": "ADL activity itself did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45602-0", + "display": "Eating - self-performance during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45602-0", + "text": "Eating - self-performance during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA12637-7", + "display": "Independent - no help or staff oversight at any time" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12638-5", + "display": "Supervision - oversight, encouragement or cueing" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12639-3", + "display": "Limited assistance - resident highly involved in activity; staff provide guided maneuvering of limbs or other non-weight-bearing assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12640-1", + "display": "Extensive assistance - resident involved in activity, staff provide weight-bearing support" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA12641-9", + "display": "Total dependence - full staff performance every time during entire 7-day period" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "7" + } + ], + "valueCoding": { + "code": "LA12642-7", + "display": "Activity occurred only once or twice - activity did occur but only once or twice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA18614-0", + "display": "Activity did not occur - activity did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45603-8", + "display": "Eating - support provided during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45603-8", + "text": "Eating - support provided during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA105-9", + "display": "No setup or physical help from staff" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA106-7", + "display": "Setup help only" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA107-5", + "display": "One person physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA108-3", + "display": "Two+ persons physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA109-1", + "display": "ADL activity itself did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45604-6", + "display": "Toilet use - self-performance during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45604-6", + "text": "Toilet use - self-performance during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA12637-7", + "display": "Independent - no help or staff oversight at any time" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12638-5", + "display": "Supervision - oversight, encouragement or cueing" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12639-3", + "display": "Limited assistance - resident highly involved in activity; staff provide guided maneuvering of limbs or other non-weight-bearing assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12640-1", + "display": "Extensive assistance - resident involved in activity, staff provide weight-bearing support" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA12641-9", + "display": "Total dependence - full staff performance every time during entire 7-day period" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "7" + } + ], + "valueCoding": { + "code": "LA12642-7", + "display": "Activity occurred only once or twice - activity did occur but only once or twice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA18614-0", + "display": "Activity did not occur - activity did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45605-3", + "display": "Toilet use - support provided during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45605-3", + "text": "Toilet use - support provided during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA105-9", + "display": "No setup or physical help from staff" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA106-7", + "display": "Setup help only" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA107-5", + "display": "One person physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA108-3", + "display": "Two+ persons physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA109-1", + "display": "ADL activity itself did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45606-1", + "display": "Personal hygiene - self-performance during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45606-1", + "text": "Personal hygiene - self-performance during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA12637-7", + "display": "Independent - no help or staff oversight at any time" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12638-5", + "display": "Supervision - oversight, encouragement or cueing" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12639-3", + "display": "Limited assistance - resident highly involved in activity; staff provide guided maneuvering of limbs or other non-weight-bearing assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12640-1", + "display": "Extensive assistance - resident involved in activity, staff provide weight-bearing support" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA12641-9", + "display": "Total dependence - full staff performance every time during entire 7-day period" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "7" + } + ], + "valueCoding": { + "code": "LA12642-7", + "display": "Activity occurred only once or twice - activity did occur but only once or twice" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA18614-0", + "display": "Activity did not occur - activity did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45607-9", + "display": "Personal hygiene - support provided during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54523-6/45607-9", + "text": "Personal hygiene - support provided during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA105-9", + "display": "No setup or physical help from staff" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA106-7", + "display": "Setup help only" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA107-5", + "display": "One person physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA108-3", + "display": "Two+ persons physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA109-1", + "display": "ADL activity itself did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "46008-9", + "display": "Bathing", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54522-8/46008-9", + "text": "Bathing", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "45608-7", + "display": "Bathing - self-performance during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/46008-9/45608-7", + "text": "Bathing - self-performance during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA110-9", + "display": "Independent - no help provided" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA111-7", + "display": "Supervision - oversight help only" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA112-5", + "display": "Physical help limited to transfer only" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA113-3", + "display": "Physical help in part of bathing activity" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA114-1", + "display": "Total dependence" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA115-8", + "display": "Activity itself did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45609-5", + "display": "Bathing - support provided during assessment period", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/46008-9/45609-5", + "text": "Bathing - support provided during assessment period", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA105-9", + "display": "No setup or physical help from staff" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA106-7", + "display": "Setup help only" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA107-5", + "display": "One person physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA108-3", + "display": "Two+ persons physical assist" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA109-1", + "display": "ADL activity itself did not occur or family and/or non-facility staff provided care 100% of the time for that activity over the entire 7-day period" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54524-4", + "display": "Balance during transitions and walking", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54522-8/54524-4", + "text": "Balance during transitions and walking", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54749-7", + "display": "Moving from seated to standing position", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54524-4/54749-7", + "text": "Moving from seated to standing position", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11031-4", + "display": "Steady at all times" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11032-2", + "display": "Not steady, but able to stabilize without staff assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11033-0", + "display": "Not steady, only able to stabilize with staff assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA11034-8", + "display": "Activity did not occur" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54750-5", + "display": "Walking (with assistive device if used)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54524-4/54750-5", + "text": "Walking (with assistive device if used)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11031-4", + "display": "Steady at all times" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11032-2", + "display": "Not steady, but able to stabilize without staff assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11033-0", + "display": "Not steady, only able to stabilize with staff assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA11034-8", + "display": "Activity did not occur" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54751-3", + "display": "Turning around and facing the opposite direction while walking", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54524-4/54751-3", + "text": "Turning around and facing the opposite direction while walking", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11031-4", + "display": "Steady at all times" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11032-2", + "display": "Not steady, but able to stabilize without staff assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11033-0", + "display": "Not steady, only able to stabilize with staff assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA11034-8", + "display": "Activity did not occur" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54752-1", + "display": "Moving on and off toilet", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54524-4/54752-1", + "text": "Moving on and off toilet", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11031-4", + "display": "Steady at all times" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11032-2", + "display": "Not steady, but able to stabilize without staff assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11033-0", + "display": "Not steady, only able to stabilize with staff assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA11034-8", + "display": "Activity did not occur" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54753-9", + "display": "Surface-to-surface transfer", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54524-4/54753-9", + "text": "Surface-to-surface transfer", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11031-4", + "display": "Steady at all times" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11032-2", + "display": "Not steady, but able to stabilize without staff assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11033-0", + "display": "Not steady, only able to stabilize with staff assistance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "8" + } + ], + "valueCoding": { + "code": "LA11034-8", + "display": "Activity did not occur" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54525-1", + "display": "Functional limitation in range of motion", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54522-8/54525-1", + "text": "Functional limitation in range of motion", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54754-7", + "display": "Upper extremity (shoulder, elbow, wrist, hand)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54525-1/54754-7", + "text": "Upper extremity (shoulder, elbow, wrist, hand)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA9606-0", + "display": "No impairment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11036-3", + "display": "Impairment on one side" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11037-1", + "display": "Impairment on both sides" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54755-4", + "display": "Lower extremity (hip, knee, ankle, foot)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54525-1/54755-4", + "text": "Lower extremity (hip, knee, ankle, foot)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA9606-0", + "display": "No impairment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11036-3", + "display": "Impairment on one side" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11037-1", + "display": "Impairment on both sides" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54526-9", + "display": "Mobility devices", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54522-8/54526-9", + "text": "Mobility devices", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54756-2", + "display": "Cane/crutch", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54526-9/54756-2", + "text": "Cane/crutch", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54757-0", + "display": "Walker", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54526-9/54757-0", + "text": "Walker", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54758-8", + "display": "Wheelchair (manual or electric)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54526-9/54758-8", + "text": "Wheelchair (manual or electric)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54759-6", + "display": "Limb prosthesis", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54526-9/54759-6", + "text": "Limb prosthesis", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54760-4", + "display": "None of the above were used", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54526-9/54760-4", + "text": "None of the above were used", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54527-7", + "display": "Functional rehabilitation potential", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54522-8/54527-7", + "text": "Functional rehabilitation potential", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "55123-4", + "display": "Resident believes he or she is capable of increased independence in at least some ADLs", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54527-7/55123-4", + "text": "Resident believes he or she is capable of increased independence in at least some ADLs", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11137-9", + "display": "Unable to determine" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45613-7", + "display": "Direct care staff believe resident is capable of increased independence in at least some ADLs", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54522-8/54527-7/45613-7", + "text": "Direct care staff believe resident is capable of increased independence in at least some ADLs", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54528-5", + "display": "Bladder and bowel", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54528-5", + "text": "Bladder and bowel", + "item": [ + { + "type": "group", + "code": [ + { + "code": "54529-3", + "display": "Appliances", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54528-5/54529-3", + "text": "Appliances", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54762-0", + "display": "Indwelling catheter", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54528-5/54529-3/54762-0", + "text": "Indwelling catheter", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54763-8", + "display": "External catheter", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54528-5/54529-3/54763-8", + "text": "External catheter", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54764-6", + "display": "Ostomy (including suprapubic catheter, ileostomy, and colostomy)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54528-5/54529-3/54764-6", + "text": "Ostomy (including suprapubic catheter, ileostomy, and colostomy)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54765-3", + "display": "Intermittent catheterization", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54528-5/54529-3/54765-3", + "text": "Intermittent catheterization", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54766-1", + "display": "None of the above", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54528-5/54529-3/54766-1", + "text": "None of the above", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54530-1", + "display": "Urinary toileting program", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54528-5/54530-1", + "text": "Urinary toileting program", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54767-9", + "display": "Has a trial of a toileting program (e.g. scheduled toileting, prompted voiding, or bladder training) been attempted on admission/reentry or since urinary incontinence was noted in this facility?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54528-5/54530-1/54767-9", + "text": "Has a trial of a toileting program (e.g. scheduled toileting, prompted voiding, or bladder training) been attempted on admission/reentry or since urinary incontinence was noted in this facility?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11137-9", + "display": "Unable to determine" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54768-7", + "display": "Response. What was the resident's response to the trial program?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54528-5/54530-1/54768-7", + "text": "Response. What was the resident's response to the trial program?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11038-9", + "display": "No improvement" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11039-7", + "display": "Decreased wetness" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11040-5", + "display": "Completely dry (continent)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11041-3", + "display": "Unable to determine or trial in progress" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54769-5", + "display": "Current toileting program or trial. Is a toileting program (e.g. scheduled toileting, prompted voiding, or bladder training) currently being used to manage the resident's urinary continence?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54528-5/54530-1/54769-5", + "text": "Current toileting program or trial. Is a toileting program (e.g. scheduled toileting, prompted voiding, or bladder training) currently being used to manage the resident's urinary continence?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54770-3", + "display": "Urinary continence. Select the one category that best describes the resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54528-5/54770-3", + "text": "Urinary continence. Select the one category that best describes the resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11042-1", + "display": "Always continent" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11043-9", + "display": "Occasionally incontinent (less than 7 episodes of incontinence)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11044-7", + "display": "Frequently incontinent (7 or more episodes of urinary incontinence, but with at least one episode of continent voiding)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11045-4", + "display": "Always incontinent (no episodes of continent voiding)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11046-2", + "display": "Not rated, resident had a catheter (indwelling, condom), urinary ostomy, or no urine output for the entire 7 days" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54771-1", + "display": "Bowel continence. Select the one category that best describes the resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54528-5/54771-1", + "text": "Bowel continence. Select the one category that best describes the resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11042-1", + "display": "Always continent" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11048-8", + "display": "Occasionally incontinent (one episode of bowel incontinence)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11049-6", + "display": "Frequently incontinent (2 or more episodes of bowel incontinence, but at least one continent bowel movement)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11050-4", + "display": "Always incontinent (no episodes of continent bowel movements)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11051-2", + "display": "Not rated, resident had an ostomy or did not have a bowel movement for the entire 7 days" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54772-9", + "display": "Bowel Toileting Program. Is a toileting program currently being used to manage the resident's bowel continence?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54528-5/54772-9", + "text": "Bowel Toileting Program. Is a toileting program currently being used to manage the resident's bowel continence?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54773-7", + "display": "Bowel Patterns. Constipation present?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54528-5/54773-7", + "text": "Bowel Patterns. Constipation present?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54531-9", + "display": "Active disease diagnosis", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9", + "text": "Active disease diagnosis", + "item": [ + { + "type": "group", + "code": [ + { + "code": "54532-7", + "display": "Cancer", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54532-7", + "text": "Cancer", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54774-5", + "display": "Cancer", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54532-7/54774-5", + "text": "Cancer", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54533-5", + "display": "Heart/Circulation", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54533-5", + "text": "Heart/Circulation", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54775-2", + "display": "Anemia", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54533-5/54775-2", + "text": "Anemia", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "e.g., aplastic, iron deficiency pernicious, and sickle cell", + "type": "display", + "linkId": "/54531-9/54533-5/54775-2-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54776-0", + "display": "Atrial Fibrillation and Other Dysrhythmias", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54533-5/54776-0", + "text": "Atrial Fibrillation and Other Dysrhythmias", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "e.g., bradycardias and tachycardias", + "type": "display", + "linkId": "/54531-9/54533-5/54776-0-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54777-8", + "display": "Coronary Artery Disease (CAD)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54533-5/54777-8", + "text": "Coronary Artery Disease (CAD)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "e.g., angina, myocardial infarction, and atherosclerotic heart disease (ASHD)", + "type": "display", + "linkId": "/54531-9/54533-5/54777-8-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54778-6", + "display": "Deep Venous Thrombosis (DVT), Pulmonary Embolus (PE), or Pulmonary Thrombo-Embolism (PTE)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54533-5/54778-6", + "text": "Deep Venous Thrombosis (DVT), Pulmonary Embolus (PE), or Pulmonary Thrombo-Embolism (PTE)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54779-4", + "display": "Heart Failure", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54533-5/54779-4", + "text": "Heart Failure", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "e.g., congestive heart failure (CHF) and pulmonary edema", + "type": "display", + "linkId": "/54531-9/54533-5/54779-4-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54780-2", + "display": "Hypertension", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54533-5/54780-2", + "text": "Hypertension", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54781-0", + "display": "Orthostatic hypotension", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54533-5/54781-0", + "text": "Orthostatic hypotension", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54782-8", + "display": "Peripheral Vascular Disease (PVD) or Peripheral Arterial Disease (PAD)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54533-5/54782-8", + "text": "Peripheral Vascular Disease (PVD) or Peripheral Arterial Disease (PAD)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54534-3", + "display": "Gastrointestinal", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54534-3", + "text": "Gastrointestinal", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54783-6", + "display": "Cirrhosis", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54534-3/54783-6", + "text": "Cirrhosis", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54784-4", + "display": "Gastroesophageal Reflux Disease (GERD) or Ulcer", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54534-3/54784-4", + "text": "Gastroesophageal Reflux Disease (GERD) or Ulcer", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "e.g., esophageal, gastric, and peptic ulcers", + "type": "display", + "linkId": "/54531-9/54534-3/54784-4-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54785-1", + "display": "Ulcerative Colitis, Chrohn's Disease or Inflammatory Bowel Disease", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54534-3/54785-1", + "text": "Ulcerative Colitis, Chrohn's Disease or Inflammatory Bowel Disease", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54535-0", + "display": "Genitourinary", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54535-0", + "text": "Genitourinary", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54786-9", + "display": "Benign prostatic hyperplasia (BPH)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54535-0/54786-9", + "text": "Benign prostatic hyperplasia (BPH)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54787-7", + "display": "Renal Insufficiency or Renal Failure, or End-Stage Renal Disease (ESRD)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54535-0/54787-7", + "text": "Renal Insufficiency or Renal Failure, or End-Stage Renal Disease (ESRD)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58111-6", + "display": "Neurogenic Bladder", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54535-0/58111-6", + "text": "Neurogenic Bladder", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "string", + "code": [ + { + "code": "58112-4", + "display": "Obstructive Uropathy", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54535-0/58112-4", + "text": "Obstructive Uropathy" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54536-8", + "display": "Infections", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54536-8", + "text": "Infections", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "58109-0", + "display": "Multidrug-resistant organism (MDRO)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54536-8/58109-0", + "text": "Multidrug-resistant organism (MDRO)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54790-1", + "display": "Pneumonia", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54536-8/54790-1", + "text": "Pneumonia", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54791-9", + "display": "Septicemia", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54536-8/54791-9", + "text": "Septicemia", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54792-7", + "display": "Tuberculosis", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54536-8/54792-7", + "text": "Tuberculosis", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45689-7", + "display": "Urinary tract infection (UTI) (LAST 30 DAYS)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54536-8/45689-7", + "text": "Urinary tract infection (UTI) (LAST 30 DAYS)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "valueCoding": { + "code": "LA1-0", + "display": "UTD" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54794-3", + "display": "Viral Hepatitis", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54536-8/54794-3", + "text": "Viral Hepatitis", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "e.g., Hepatitis A, B, C, D and E", + "type": "display", + "linkId": "/54531-9/54536-8/54794-3-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "string", + "code": [ + { + "code": "58110-8", + "display": "Wound infection (other than foot)", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54536-8/58110-8", + "text": "Wound infection (other than foot)" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54537-6", + "display": "Metabolic", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54537-6", + "text": "Metabolic", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54795-0", + "display": "Diabetes Mellitus (DM)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54537-6/54795-0", + "text": "Diabetes Mellitus (DM)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "e.g., diabetic retinopathy, nephropathy, and neuropathy", + "type": "display", + "linkId": "/54531-9/54537-6/54795-0-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54796-8", + "display": "Hyponatremia", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54537-6/54796-8", + "text": "Hyponatremia", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54797-6", + "display": "Hyperkalemia", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54537-6/54797-6", + "text": "Hyperkalemia", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54798-4", + "display": "Hyperlipidemia", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54537-6/54798-4", + "text": "Hyperlipidemia", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "e.g., hypercholesterolemia", + "type": "display", + "linkId": "/54531-9/54537-6/54798-4-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54799-2", + "display": "Thyroid Disorder", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54537-6/54799-2", + "text": "Thyroid Disorder", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "e.g., hypothyroidism, hyperthyroidism, and Hashimoto's thyroiditis", + "type": "display", + "linkId": "/54531-9/54537-6/54799-2-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54538-4", + "display": "Musculoskeletal", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54538-4", + "text": "Musculoskeletal", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54800-8", + "display": "Arthritis", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54538-4/54800-8", + "text": "Arthritis", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "e.g., degenerative joint disease (DJD), osteoarthritis, and rheumatoid arthritis (RA)", + "type": "display", + "linkId": "/54531-9/54538-4/54800-8-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54801-6", + "display": "Osteoporosis", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54538-4/54801-6", + "text": "Osteoporosis", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54802-4", + "display": "Hip Fracture", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54538-4/54802-4", + "text": "Hip Fracture", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "any hip fracture that has a relationship to current status, treatments, monitoring (e.g., sub-capital fractures, fractures of the trochanter and femoral neck)", + "type": "display", + "linkId": "/54531-9/54538-4/54802-4-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54803-2", + "display": "Other Fracture", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54538-4/54803-2", + "text": "Other Fracture", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54539-2", + "display": "Neurological", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54539-2", + "text": "Neurological", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54804-0", + "display": "Alzheimer's Disease", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54539-2/54804-0", + "text": "Alzheimer's Disease", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54805-7", + "display": "Aphasia", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54539-2/54805-7", + "text": "Aphasia", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54806-5", + "display": "Cerebral Palsy", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54539-2/54806-5", + "text": "Cerebral Palsy", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54807-3", + "display": "Cerebrovascular Accident (CVA), Transient Ischemic Attack (TIA), or Stroke", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54539-2/54807-3", + "text": "Cerebrovascular Accident (CVA), Transient Ischemic Attack (TIA), or Stroke", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54808-1", + "display": "Dementia", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54539-2/54808-1", + "text": "Dementia", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "e.g., Lewy body dementia, vascular or multi-infarct dementia; mixed dementia; frontotemporal dementia such as Pick's disease; and dementia related to stroke, Parkinson's, or Creutzfeldt-Jakob diseases", + "type": "display", + "linkId": "/54531-9/54539-2/54808-1-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54809-9", + "display": "Hemiplegia or Hemiparesis", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54539-2/54809-9", + "text": "Hemiplegia or Hemiparesis", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54810-7", + "display": "Paraplegia", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54539-2/54810-7", + "text": "Paraplegia", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54811-5", + "display": "Quadriplegia", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54539-2/54811-5", + "text": "Quadriplegia", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54812-3", + "display": "Multiple Sclerosis (MS)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54539-2/54812-3", + "text": "Multiple Sclerosis (MS)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58113-2", + "display": "Huntington's Disease", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54539-2/58113-2", + "text": "Huntington's Disease", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54813-1", + "display": "Parkinson's Disease", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54539-2/54813-1", + "text": "Parkinson's Disease", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58114-0", + "display": "Tourette's Syndrome", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54539-2/58114-0", + "text": "Tourette's Syndrome", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54814-9", + "display": "Seizure Disorder or Epilepsy", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54539-2/54814-9", + "text": "Seizure Disorder or Epilepsy", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54815-6", + "display": "Traumatic Brain Injury (TBI)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54539-2/54815-6", + "text": "Traumatic Brain Injury (TBI)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54540-0", + "display": "Nutritional", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54540-0", + "text": "Nutritional", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54816-4", + "display": "Malnutrition (protein or calorie) or at risk for malnutrition", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54540-0/54816-4", + "text": "Malnutrition (protein or calorie) or at risk for malnutrition", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54541-8", + "display": "Psychiatric/Mood Disorder", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54541-8", + "text": "Psychiatric/Mood Disorder", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54817-2", + "display": "Anxiety Disorder", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54541-8/54817-2", + "text": "Anxiety Disorder", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54818-0", + "display": "Depression (other than Bipolar)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54541-8/54818-0", + "text": "Depression (other than Bipolar)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54819-8", + "display": "Manic Depression (bipolar Disease)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54541-8/54819-8", + "text": "Manic Depression (bipolar Disease)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "string", + "code": [ + { + "code": "58115-7", + "display": "Psychotic Disorder (other than schizophrenia)", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54541-8/58115-7", + "text": "Psychotic Disorder (other than schizophrenia)" + }, + { + "type": "choice", + "code": [ + { + "code": "54820-6", + "display": "Schizophrenia", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54541-8/54820-6", + "text": "Schizophrenia", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "e.g., schizoaffective and schizophreniform disorders", + "type": "display", + "linkId": "/54531-9/54541-8/54820-6-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54821-4", + "display": "Post-Traumatic Stress Disorder (PTSD)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54541-8/54821-4", + "text": "Post-Traumatic Stress Disorder (PTSD)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54542-6", + "display": "Pulmonary", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54542-6", + "text": "Pulmonary", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54822-2", + "display": "Asthma,Chronic Obstructive Pulmonary Disease (COPD), or Chronic Lung Disease", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54542-6/54822-2", + "text": "Asthma,Chronic Obstructive Pulmonary Disease (COPD), or Chronic Lung Disease", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "e.g., chronic bronchitis and restrictive lung diseases such as asbestosis", + "type": "display", + "linkId": "/54531-9/54542-6/54822-2-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58116-5", + "display": "Respiratory Failure", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54542-6/58116-5", + "text": "Respiratory Failure", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "e.g., chronic bronchitis and restrictive lung diseases such as asbestosis", + "type": "display", + "linkId": "/54531-9/54542-6/58116-5-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54543-4", + "display": "Vision", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54543-4", + "text": "Vision", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54823-0", + "display": "Cataracts, Glaucoma, or Macular Degeneration", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54543-4/54823-0", + "text": "Cataracts, Glaucoma, or Macular Degeneration", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54544-2", + "display": "None of Above", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54544-2", + "text": "None of Above", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54824-8", + "display": "None of the above active diagnoses within the last 7 days", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54531-9/54544-2/54824-8", + "text": "None of the above active diagnoses within the last 7 days", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54898-2", + "display": "Other", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54898-2", + "text": "Other", + "item": [ + { + "type": "group", + "code": [ + { + "code": "54545-9", + "display": "Additional diagnoses", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54898-2/54545-9", + "text": "Additional diagnoses", + "item": [ + { + "type": "string", + "code": [ + { + "code": "54546-7", + "display": "Additional Diagnosis A", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54898-2/54545-9/54546-7", + "text": "Additional Diagnosis A" + }, + { + "type": "string", + "code": [ + { + "code": "54547-5", + "display": "Additional Diagnosis B", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54898-2/54545-9/54547-5", + "text": "Additional Diagnosis B" + }, + { + "type": "string", + "code": [ + { + "code": "54548-3", + "display": "Additional Diagnosis C", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54898-2/54545-9/54548-3", + "text": "Additional Diagnosis C" + }, + { + "type": "string", + "code": [ + { + "code": "54549-1", + "display": "Additional Diagnosis D", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54898-2/54545-9/54549-1", + "text": "Additional Diagnosis D" + }, + { + "type": "string", + "code": [ + { + "code": "54550-9", + "display": "Additional Diagnosis E", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54898-2/54545-9/54550-9", + "text": "Additional Diagnosis E" + }, + { + "type": "string", + "code": [ + { + "code": "54551-7", + "display": "Additional Diagnosis F", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54898-2/54545-9/54551-7", + "text": "Additional Diagnosis F" + }, + { + "type": "string", + "code": [ + { + "code": "54552-5", + "display": "Additional Diagnosis G", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54898-2/54545-9/54552-5", + "text": "Additional Diagnosis G" + }, + { + "type": "string", + "code": [ + { + "code": "54553-3", + "display": "Additional Diagnosis H", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54898-2/54545-9/54553-3", + "text": "Additional Diagnosis H" + }, + { + "type": "string", + "code": [ + { + "code": "54554-1", + "display": "Additional Diagnosis I", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54898-2/54545-9/54554-1", + "text": "Additional Diagnosis I" + }, + { + "type": "string", + "code": [ + { + "code": "54555-8", + "display": "Additional Diagnosis J", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54531-9/54898-2/54545-9/54555-8", + "text": "Additional Diagnosis J" + } + ] + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54556-6", + "display": "Health conditions", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54556-6", + "text": "Health conditions", + "item": [ + { + "type": "group", + "code": [ + { + "code": "54557-4", + "display": "Pain Management. Complete for all residents, regardless of current pain level. At any time in the last 7 days, has the resident:", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54556-6/54557-4", + "text": "Pain Management. Complete for all residents, regardless of current pain level. At any time in the last 7 days, has the resident:", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "71447-7", + "display": "Received scheduled pain medication regimen?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54557-4/71447-7", + "text": "Received scheduled pain medication regimen?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "71448-5", + "display": "Received PRN pain medications or was offered and declined?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54557-4/71448-5", + "text": "Received PRN pain medications or was offered and declined?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "71449-3", + "display": "Received non-medication intervention for pain?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54557-4/71449-3", + "text": "Received non-medication intervention for pain?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54828-9", + "display": "Should Pain Assessment Interview be Conducted?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54828-9", + "text": "Should Pain Assessment Interview be Conducted?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11150-2", + "display": "No (resident is rarely/never understood)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54558-2", + "display": "Pain assessment interview", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54556-6/54558-2", + "text": "Pain assessment interview", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54829-7", + "display": "Pain Presence. Ask resident: \"Have you had pain or hurting any time in the last 5 days?\"", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54558-2/54829-7", + "text": "Pain Presence. Ask resident: \"Have you had pain or hurting any time in the last 5 days?\"", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11054-6", + "display": "Unable to answer" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54830-5", + "display": "Pain Frequency. Ask resident: \"How much of the time have you experienced pain or hurting over the last 5 days?\"", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54558-2/54830-5", + "text": "Pain Frequency. Ask resident: \"How much of the time have you experienced pain or hurting over the last 5 days?\"", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11055-3", + "display": "Almost constantly" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA6482-9", + "display": "Frequently" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA6483-7", + "display": "Occasionally" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA10066-1", + "display": "Rarely" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11054-6", + "display": "Unable to answer" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54559-0", + "display": "Pain effect on function", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54556-6/54558-2/54559-0", + "text": "Pain effect on function", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54831-3", + "display": "Ask resident: \"Over the past 5 days, has pain made it hard for you to sleep at night?\"", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54558-2/54559-0/54831-3", + "text": "Ask resident: \"Over the past 5 days, has pain made it hard for you to sleep at night?\"", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11054-6", + "display": "Unable to answer" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54832-1", + "display": "Ask resident: \"Over the past 7 days, have you limited your day-to-day activities because of pain?\"", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54558-2/54559-0/54832-1", + "text": "Ask resident: \"Over the past 7 days, have you limited your day-to-day activities because of pain?\"", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11054-6", + "display": "Unable to answer" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54560-8", + "display": "Pain intensity", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54556-6/54558-2/54560-8", + "text": "Pain intensity", + "item": [ + { + "type": "string", + "code": [ + { + "code": "54833-9", + "display": "Numeric Rating Scale (00-10). Ask resident: \"Please rate your worst pain over the last 5 days on a zero to ten scale, with zero being no pain and ten as the worst pain you can imagine.\" (Show resident 00-10 pain scale.)", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54556-6/54558-2/54560-8/54833-9", + "text": "Numeric Rating Scale (00-10). Ask resident: \"Please rate your worst pain over the last 5 days on a zero to ten scale, with zero being no pain and ten as the worst pain you can imagine.\" (Show resident 00-10 pain scale.)" + }, + { + "type": "choice", + "code": [ + { + "code": "54834-7", + "display": "Verbal Descriptor Scale. Ask resident: \" Please rate the intensity of your worst pain over the last 5 days.\" (Show resident verbal scale.)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54558-2/54560-8/54834-7", + "text": "Verbal Descriptor Scale. Ask resident: \" Please rate the intensity of your worst pain over the last 5 days.\" (Show resident verbal scale.)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA6752-5", + "display": "Mild" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA6751-7", + "display": "Moderate" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA6750-9", + "display": "Severe" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11063-7", + "display": "Very severe, horrible" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11054-6", + "display": "Unable to answer" + } + } + ] + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58117-3", + "display": "Should the Staff Assessment for Pain be Conducted?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/58117-3", + "text": "Should the Staff Assessment for Pain be Conducted?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54561-6", + "display": "Staff assessment for pain", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54556-6/54561-6", + "text": "Staff assessment for pain", + "item": [ + { + "type": "group", + "code": [ + { + "code": "54562-4", + "display": "Indicators of pain or possible pain", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54556-6/54561-6/54562-4", + "text": "Indicators of pain or possible pain", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54835-4", + "display": "Non-verbal sounds (crying, whining, gasping, moaning, or groaning).", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54561-6/54562-4/54835-4", + "text": "Non-verbal sounds (crying, whining, gasping, moaning, or groaning).", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54836-2", + "display": "Vocal complaints of pain (that hurts, ouch, stop).", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54561-6/54562-4/54836-2", + "text": "Vocal complaints of pain (that hurts, ouch, stop).", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54837-0", + "display": "Facial expressions (grimaces, winces, wrinkled forehead, furrowed brow, clenched teeth or jaw).", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54561-6/54562-4/54837-0", + "text": "Facial expressions (grimaces, winces, wrinkled forehead, furrowed brow, clenched teeth or jaw).", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54838-8", + "display": "Protective body movements or postures (bracing, guarding, rubbing or massaging a body part/area, clutching or holding a body part during movement).", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54561-6/54562-4/54838-8", + "text": "Protective body movements or postures (bracing, guarding, rubbing or massaging a body part/area, clutching or holding a body part during movement).", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54839-6", + "display": "None of these signs observed or documented", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54561-6/54562-4/54839-6", + "text": "None of these signs observed or documented", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58118-1", + "display": "Frequency of indicator of pain or possible pain", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54561-6/58118-1", + "text": "Frequency of indicator of pain or possible pain", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12645-0", + "display": "Indicators of pain or possible pain observed 1 to 2 days" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12646-8", + "display": "Indicators of pain or possible pain observed 3 to 4 days" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12647-6", + "display": "Indicators of pain or possible pain observed daily" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54563-2", + "display": "Other health conditions", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54556-6/54563-2", + "text": "Other health conditions", + "item": [ + { + "type": "group", + "code": [ + { + "code": "54564-0", + "display": "Shortness of Breath (dyspnea)", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54564-0", + "text": "Shortness of Breath (dyspnea)", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54841-2", + "display": "Shortness of breath or trouble breathing with exertion (e.g., walking, bathing, transferring).", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54564-0/54841-2", + "text": "Shortness of breath or trouble breathing with exertion (e.g., walking, bathing, transferring).", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54842-0", + "display": "Shortness of breath or trouble breathing when sitting at rest", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54564-0/54842-0", + "text": "Shortness of breath or trouble breathing when sitting at rest", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54843-8", + "display": "Shortness of breath or trouble breathing when lying flat", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54564-0/54843-8", + "text": "Shortness of breath or trouble breathing when lying flat", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54844-6", + "display": "None of the above", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54564-0/54844-6", + "text": "None of the above", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54845-3", + "display": "Tobacco Use", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54845-3", + "text": "Tobacco Use", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54846-1", + "display": "Prognosis", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54846-1", + "text": "Prognosis", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54847-9", + "display": "Problem conditions", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54847-9", + "text": "Problem conditions", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "45701-0", + "display": "Fever", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54847-9/45701-0", + "text": "Fever", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45708-5", + "display": "Vomiting", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54847-9/45708-5", + "text": "Vomiting", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45696-2", + "display": "Dehydrated", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54847-9/45696-2", + "text": "Dehydrated", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45703-6", + "display": "Internal bleeding", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54847-9/45703-6", + "text": "Internal bleeding", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54848-7", + "display": "None of the above", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54847-9/54848-7", + "text": "None of the above", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54849-5", + "display": "Fall history on admission", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54849-5", + "text": "Fall history on admission", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54850-3", + "display": "Did the resident fall one or more times in the last month prior to admission?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54849-5/54850-3", + "text": "Did the resident fall one or more times in the last month prior to admission?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11137-9", + "display": "Unable to determine" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54851-1", + "display": "Did the resident fall one or more times in the last 2 - 6 months prior to admission?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54849-5/54851-1", + "text": "Did the resident fall one or more times in the last 2 - 6 months prior to admission?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11137-9", + "display": "Unable to determine" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54852-9", + "display": "Did the resident have any fracture related to a fall in the 6 months prior to admission?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54849-5/54852-9", + "text": "Did the resident have any fracture related to a fall in the 6 months prior to admission?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11137-9", + "display": "Unable to determine" + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54853-7", + "display": "Has the resident had any falls since admission or the prior assessment (OBRA or PPS), whichever is more recent?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54853-7", + "text": "Has the resident had any falls since admission or the prior assessment (OBRA or PPS), whichever is more recent?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54854-5", + "display": "Number of Falls Since Admission or Prior Assessment (OBRA or PPS), Whichever is More Recent", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54854-5", + "text": "Number of Falls Since Admission or Prior Assessment (OBRA or PPS), Whichever is More Recent", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54855-2", + "display": "No injury", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54854-5/54855-2", + "text": "No injury", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA137-2", + "display": "None" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA6306-0", + "display": "One" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11073-6", + "display": "Two or more" + } + } + ], + "item": [ + { + "text": "Number of falls the patient/resident has experienced in which no evidence of any injury is noted on physical assessment by the nurse or primary care clinician, no complaints of pain or injury by the patient/resident, and no change in the patient/resident's behavior is noted after the fall.", + "type": "display", + "linkId": "/54556-6/54563-2/54854-5/54855-2-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54856-0", + "display": "Injury (except major)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54854-5/54856-0", + "text": "Injury (except major)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA137-2", + "display": "None" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA6306-0", + "display": "One" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11073-6", + "display": "Two or more" + } + } + ], + "item": [ + { + "text": "Number of falls the patient/resident has experienced that resulted in skin tears, abrasions, lacerations, superficial bruises, hematomas and sprains; or any fall-related injury that causes the patient to complain of pain.", + "type": "display", + "linkId": "/54556-6/54563-2/54854-5/54856-0-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54857-8", + "display": "Major injury", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54556-6/54563-2/54854-5/54857-8", + "text": "Major injury", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA137-2", + "display": "None" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA6306-0", + "display": "One" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11073-6", + "display": "Two or more" + } + } + ], + "item": [ + { + "text": "Number of falls the patient has experienced that resulted in bone fractures, joint dislocations, closed head injuries with altered consciousness, subdural hematoma.", + "type": "display", + "linkId": "/54556-6/54563-2/54854-5/54857-8-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54565-7", + "display": "Swallowing/Nutritional Status", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54565-7", + "text": "Swallowing/Nutritional Status", + "item": [ + { + "type": "group", + "code": [ + { + "code": "54566-5", + "display": "Swallowing disorder", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54565-7/54566-5", + "text": "Swallowing disorder", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54858-6", + "display": "Loss of liquids/solids from mouth when eating or drinking", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54565-7/54566-5/54858-6", + "text": "Loss of liquids/solids from mouth when eating or drinking", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54859-4", + "display": "Holding food in mouth/cheeks or residual food in mouth after meals", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54565-7/54566-5/54859-4", + "text": "Holding food in mouth/cheeks or residual food in mouth after meals", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54860-2", + "display": "Coughing or choking during meals or when swallowing medications", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54565-7/54566-5/54860-2", + "text": "Coughing or choking during meals or when swallowing medications", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54861-0", + "display": "Complaints of difficulty or pain with swallowing", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54565-7/54566-5/54861-0", + "text": "Complaints of difficulty or pain with swallowing", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54862-8", + "display": "None of the above", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54565-7/54566-5/54862-8", + "text": "None of the above", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54567-3", + "display": "Height and weight", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54565-7/54567-3", + "text": "Height and weight", + "item": [ + { + "type": "quantity", + "code": [ + { + "code": "3137-7", + "display": "Height (in inches).", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unitOption", + "valueCoding": { + "display": "[in_us]" + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unitOption", + "valueCoding": { + "display": "cm" + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unitOption", + "valueCoding": { + "display": "m" + } + } + ], + "required": false, + "linkId": "/54565-7/54567-3/3137-7", + "text": "Height (in inches)." + }, + { + "type": "quantity", + "code": [ + { + "code": "3141-9", + "display": "Weight (in pounds).", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unitOption", + "valueCoding": { + "display": "[lb_av]" + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unitOption", + "valueCoding": { + "display": "kg" + } + } + ], + "required": false, + "linkId": "/54565-7/54567-3/3141-9", + "text": "Weight (in pounds)." + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54863-6", + "display": "Weight loss of 5% or more in the last Mo or loss of 10% or more in last 6Mo", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54565-7/54863-6", + "text": "Weight loss of 5% or more in the last Mo or loss of 10% or more in last 6Mo", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11074-4", + "display": "No or unknown" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11075-1", + "display": "Yes, on physician-prescribed weight-loss regimen" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11076-9", + "display": "Yes, not on physician-prescribed weight-loss regimen" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "71442-8", + "display": "Weight gain", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54565-7/71442-8", + "text": "Weight gain", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA11074-4", + "display": "No or unknown" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11075-1", + "display": "Yes, on physician-prescribed weight-loss regimen" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA18603-3", + "display": "Yes, not on physician-prescribed weight-gain regimen" + } + } + ], + "item": [ + { + "text": "Gain of 5% or more in the last month or loss of 10% or more in the last 6 months", + "type": "display", + "linkId": "/54565-7/71442-8-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54568-1", + "display": "Nutritional approaches panel", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54565-7/54568-1", + "text": "Nutritional approaches panel", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "71444-4", + "display": "Nutritional Approaches. While NOT a Resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54565-7/54568-1/71444-4", + "text": "Nutritional Approaches. While NOT a Resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "A" + } + ], + "valueCoding": { + "code": "LA18604-1", + "display": "Parenteral/IV feeding" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "B" + } + ], + "valueCoding": { + "code": "LA18605-8", + "display": "Feeding tube - nasogastric or abdominal (PEG)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "Z" + } + ], + "valueCoding": { + "code": "LA9-3", + "display": "None of the above" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "71445-1", + "display": "Nutritional Approaches. While a Resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54565-7/54568-1/71445-1", + "text": "Nutritional Approaches. While a Resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "A" + } + ], + "valueCoding": { + "code": "LA18604-1", + "display": "Parenteral/IV feeding" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "B" + } + ], + "valueCoding": { + "code": "LA18605-8", + "display": "Feeding tube - nasogastric or abdominal (PEG)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "C" + } + ], + "valueCoding": { + "code": "LA18606-6", + "display": "Mechanically altered diet - require change in texture of food or liquids (e.g., pureed food, thickened liquids)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "D" + } + ], + "valueCoding": { + "code": "LA18607-4", + "display": "Therapeutic diet (e.g. low salt, diabetic, low cholesterol)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "Z" + } + ], + "valueCoding": { + "code": "LA9-3", + "display": "None of the above" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54569-9", + "display": "Percent intake by artificial route", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54565-7/54569-9", + "text": "Percent intake by artificial route", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54897-4", + "display": "Proportion of total calories the resident received through parenteral or tube feedings", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54565-7/54569-9/54897-4", + "text": "Proportion of total calories the resident received through parenteral or tube feedings", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11077-7", + "display": "25% or less" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11078-5", + "display": "26-50%" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11079-3", + "display": "51% or more" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54869-3", + "display": "Average fluid intake per day by parenteral or tube feedings", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54565-7/54569-9/54869-3", + "text": "Average fluid intake per day by parenteral or tube feedings", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11080-1", + "display": "500 cc/day or less" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11081-9", + "display": "501 cc/day or more" + } + } + ] + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54570-7", + "display": "Oral/Dental Status", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54570-7", + "text": "Oral/Dental Status", + "item": [ + { + "type": "group", + "code": [ + { + "code": "54571-5", + "display": "Dental", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54570-7/54571-5", + "text": "Dental", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54871-9", + "display": "Broken or loosely fitting full or partial denture (chipped, cracked, uncleanable, or loose)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54570-7/54571-5/54871-9", + "text": "Broken or loosely fitting full or partial denture (chipped, cracked, uncleanable, or loose)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54872-7", + "display": "No natural teeth or tooth fragment(s) (edentulous)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54570-7/54571-5/54872-7", + "text": "No natural teeth or tooth fragment(s) (edentulous)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54873-5", + "display": "Abnormal mouth tissue (ulcers, masses, oral lesions, including under denture or partial if one is worn)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54570-7/54571-5/54873-5", + "text": "Abnormal mouth tissue (ulcers, masses, oral lesions, including under denture or partial if one is worn)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54874-3", + "display": "Obvious or likely cavity or broken natural teeth", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54570-7/54571-5/54874-3", + "text": "Obvious or likely cavity or broken natural teeth", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54875-0", + "display": "Inflamed or bleeding gums or loose natural teeth", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54570-7/54571-5/54875-0", + "text": "Inflamed or bleeding gums or loose natural teeth", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54876-8", + "display": "Mouth or facial pain, discomfort or difficulty with chewing", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54570-7/54571-5/54876-8", + "text": "Mouth or facial pain, discomfort or difficulty with chewing", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58119-9", + "display": "Unable to examine", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54570-7/54571-5/58119-9", + "text": "Unable to examine", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54877-6", + "display": "None of the above were present", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54570-7/54571-5/54877-6", + "text": "None of the above were present", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54572-3", + "display": "Skin conditions", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3", + "text": "Skin conditions", + "item": [ + { + "type": "group", + "code": [ + { + "code": "54573-1", + "display": "Determination of pressure injury risk", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3/54573-1", + "text": "Determination of pressure injury risk", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54878-4", + "display": "Resident has a stage 1 or greater, a scar over bony prominence, or a non-removable dressing/device", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54573-1/54878-4", + "text": "Resident has a stage 1 or greater, a scar over bony prominence, or a non-removable dressing/device", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54879-2", + "display": "Formal assessment/tool (e.g., Braden, Norton, or other)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54573-1/54879-2", + "text": "Formal assessment/tool (e.g., Braden, Norton, or other)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "e.g., Braden, Norton, or other", + "type": "display", + "linkId": "/54572-3/54573-1/54879-2-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54880-0", + "display": "Clinical assessment", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54573-1/54880-0", + "text": "Clinical assessment", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54881-8", + "display": "None of the above", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54573-1/54881-8", + "text": "None of the above", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54882-6", + "display": "Risk of Developing Pressure Ulcers. Is resident at risk of developing pressure ulcers?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54882-6", + "text": "Risk of Developing Pressure Ulcers. Is resident at risk of developing pressure ulcers?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58214-8", + "display": "Unhealed Pressure Ulcer(s). Does this patient have one or more unhealed pressure ulcer(s) at Stage 1 or higher?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/58214-8", + "text": "Unhealed Pressure Ulcer(s). Does this patient have one or more unhealed pressure ulcer(s) at Stage 1 or higher?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54575-6", + "display": "Current number of unhealed (non-epithelialized) pressure injuries at each stage", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3/54575-6", + "text": "Current number of unhealed (non-epithelialized) pressure injuries at each stage", + "item": [ + { + "type": "group", + "code": [ + { + "code": "58215-5", + "display": "Stage 1", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3/54575-6/58215-5", + "text": "Stage 1", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "54884-2", + "display": "Number of pressure injuries - stage 1", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/58215-5/54884-2", + "text": "Number of pressure injuries - stage 1" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54576-4", + "display": "Stage 2", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54576-4", + "text": "Stage 2", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "55124-2", + "display": "Number of Stage 2 pressure ulcers", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54576-4/55124-2", + "text": "Number of Stage 2 pressure ulcers" + }, + { + "type": "decimal", + "code": [ + { + "code": "54886-7", + "display": "Number of these Stage 2 pressure ulcers that were present upon admission/reentry", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54576-4/54886-7", + "text": "Number of these Stage 2 pressure ulcers that were present upon admission/reentry" + }, + { + "type": "decimal", + "code": [ + { + "code": "58123-1", + "display": "Date of oldest stage 2 pressure injury", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54576-4/58123-1", + "text": "Date of oldest stage 2 pressure injury" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54577-2", + "display": "Stage 3", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54577-2", + "text": "Stage 3", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "55125-9", + "display": "Number of Stage 3 pressure ulcers", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54577-2/55125-9", + "text": "Number of Stage 3 pressure ulcers" + }, + { + "type": "decimal", + "code": [ + { + "code": "54887-5", + "display": "Number of these Stage 3 pressure ulcers that were present upon admission/reentry", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54577-2/54887-5", + "text": "Number of these Stage 3 pressure ulcers that were present upon admission/reentry" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54578-0", + "display": "Stage 4", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54578-0", + "text": "Stage 4", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "55126-7", + "display": "Number of Stage 4 pressure ulcers", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54578-0/55126-7", + "text": "Number of Stage 4 pressure ulcers" + }, + { + "type": "decimal", + "code": [ + { + "code": "54890-9", + "display": "Number of these Stage 4 pressure ulcers that were present upon admission/reentry", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54578-0/54890-9", + "text": "Number of these Stage 4 pressure ulcers that were present upon admission/reentry" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54579-8", + "display": "Unstageable: Known or likely but not stageable due to non-removable dressing/device", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54579-8", + "text": "Unstageable: Known or likely but not stageable due to non-removable dressing/device", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "54893-3", + "display": "Number of unstageable pressure ulcers due to non-removable dressing/device", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54579-8/54893-3", + "text": "Number of unstageable pressure ulcers due to non-removable dressing/device" + }, + { + "type": "decimal", + "code": [ + { + "code": "54894-1", + "display": "Number of these unstageable pressure ulcers that were present upon admission/reentry", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54579-8/54894-1", + "text": "Number of these unstageable pressure ulcers that were present upon admission/reentry" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55089-7", + "display": "Unstageable: Known or likely but not stageable due to coverage of wound bed by slough and/or eschar", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3/54575-6/55089-7", + "text": "Unstageable: Known or likely but not stageable due to coverage of wound bed by slough and/or eschar", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "54946-9", + "display": "Number of unstageable pressure ulcers due to coverage of wound bed by slough and/or eschar", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/55089-7/54946-9", + "text": "Number of unstageable pressure ulcers due to coverage of wound bed by slough and/or eschar" + }, + { + "type": "decimal", + "code": [ + { + "code": "54947-7", + "display": "Number of these unstageable pressure ulcers that were present upon admission/reentry", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/55089-7/54947-7", + "text": "Number of these unstageable pressure ulcers that were present upon admission/reentry" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55088-9", + "display": "Pressure injuries - unstageable with suspected deep tissue injury in evolution", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3/54575-6/55088-9", + "text": "Pressure injuries - unstageable with suspected deep tissue injury in evolution", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "54950-1", + "display": "Number of unstageable pressure ulcers with suspected deep tissue injury in evolution", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/55088-9/54950-1", + "text": "Number of unstageable pressure ulcers with suspected deep tissue injury in evolution" + }, + { + "type": "decimal", + "code": [ + { + "code": "54951-9", + "display": "Number of these unstageable ulcers that were present upon admission/reentry", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/55088-9/54951-9", + "text": "Number of these unstageable ulcers that were present upon admission/reentry" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "52477-7", + "display": "Dimensions of Unhealed Stage 3 or 4 Pressure Ulcers Or Eschar", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3/54575-6/52477-7", + "text": "Dimensions of Unhealed Stage 3 or 4 Pressure Ulcers Or Eschar", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "52728-3", + "display": "Pressure ulcer length", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "cm" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/52477-7/52728-3", + "text": "Pressure ulcer length" + }, + { + "type": "decimal", + "code": [ + { + "code": "52729-1", + "display": "Pressure ulcer width", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "cm" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/52477-7/52729-1", + "text": "Pressure ulcer width" + }, + { + "type": "decimal", + "code": [ + { + "code": "57228-9", + "display": "Pressure ulcer depth", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "cm" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/52477-7/57228-9", + "text": "Pressure ulcer depth", + "item": [ + { + "text": "Depth of same unhealed ulcer or eschar", + "type": "display", + "linkId": "/54572-3/54575-6/52477-7/57228-9-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55073-1", + "display": "Most Severe Tissue Type for Any Pressure Ulcer", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/55073-1", + "text": "Most Severe Tissue Type for Any Pressure Ulcer", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11082-7", + "display": "Epithelial tissue - new skin growing in superficial ulcer. It can be light pink and shiny, even in persons with darkly pigmented skin." + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11083-5", + "display": "Granulation tissue - pink or red tissue with shiny, moist, granular appearance" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11084-3", + "display": "Slough - yellow or white tissue that adheres to the ulcer bed in strings or thick clumps, or is mucinous" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA11085-0", + "display": "Necrotic Tissue (Eschar) - black, brown, or tan tissue that adheres firmly to the wound bed or ulcer edges, may be softer or harder than surrounding skin." + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA9-3", + "display": "None of the above" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54952-7", + "display": "Worsening in pressure injury status since last assessment (OBRA, PPS, or Discharge)", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54952-7", + "text": "Worsening in pressure injury status since last assessment (OBRA, PPS, or Discharge)", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "54953-5", + "display": "Stage 2", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54952-7/54953-5", + "text": "Stage 2" + }, + { + "type": "decimal", + "code": [ + { + "code": "54954-3", + "display": "Stage 3", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54952-7/54954-3", + "text": "Stage 3" + }, + { + "type": "decimal", + "code": [ + { + "code": "54955-0", + "display": "Stage 4", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54952-7/54955-0", + "text": "Stage 4" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54956-8", + "display": "Healed pressure injuries", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54956-8", + "text": "Healed pressure injuries", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54957-6", + "display": "Were pressure ulcers present on the prior assessment (OBRA or PPS)?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54956-8/54957-6", + "text": "Were pressure ulcers present on the prior assessment (OBRA or PPS)?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "54958-4", + "display": "Stage 2", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54956-8/54958-4", + "text": "Stage 2" + }, + { + "type": "decimal", + "code": [ + { + "code": "54959-2", + "display": "Stage 3", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54956-8/54959-2", + "text": "Stage 3" + }, + { + "type": "decimal", + "code": [ + { + "code": "54960-0", + "display": "Stage 4", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54956-8/54960-0", + "text": "Stage 4" + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "54970-9", + "display": "Number of venous and arterial ulcers. Enter the total number of venous and arterial ulcers present.", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54970-9", + "text": "Number of venous and arterial ulcers. Enter the total number of venous and arterial ulcers present." + }, + { + "type": "group", + "code": [ + { + "code": "54961-8", + "display": "Other Ulcers, Wounds and Skin Problems", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54961-8", + "text": "Other Ulcers, Wounds and Skin Problems", + "item": [ + { + "type": "string", + "code": [ + { + "code": "58228-8", + "display": "Infection of the foot", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54961-8/58228-8", + "text": "Infection of the foot", + "item": [ + { + "text": "e.g., cellulitis, purulent drainage", + "type": "display", + "linkId": "/54572-3/54575-6/54961-8/58228-8-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54963-4", + "display": "Diabetic foot ulcer(s)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54961-8/54963-4", + "text": "Diabetic foot ulcer(s)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "string", + "code": [ + { + "code": "58125-6", + "display": "Other open lesion(s) on the foot", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54961-8/58125-6", + "text": "Other open lesion(s) on the foot" + }, + { + "type": "choice", + "code": [ + { + "code": "54967-5", + "display": "Open lesion(s) other than ulcers, rashes, cuts", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54961-8/54967-5", + "text": "Open lesion(s) other than ulcers, rashes, cuts", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54966-7", + "display": "Surgical wound(s)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54961-8/54966-7", + "text": "Surgical wound(s)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54968-3", + "display": "Burn(s) (second or third degree)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54961-8/54968-3", + "text": "Burn(s) (second or third degree)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "71450-1", + "display": "Skin tear(s)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54961-8/71450-1", + "text": "Skin tear(s)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "71451-9", + "display": "Moisture associated skin damage (MASD)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54961-8/71451-9", + "text": "Moisture associated skin damage (MASD)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "i.e. incontinence (IAD), perspiration, drainage", + "type": "display", + "linkId": "/54572-3/54575-6/54961-8/71451-9-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54969-1", + "display": "None of the above were present", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54961-8/54969-1", + "text": "None of the above were present", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54971-7", + "display": "Skin and Ulcer Treatments", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54971-7", + "text": "Skin and Ulcer Treatments", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54972-5", + "display": "Pressure reducing device for chair", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54971-7/54972-5", + "text": "Pressure reducing device for chair", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54973-3", + "display": "Pressure reducing device for bed", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54971-7/54973-3", + "text": "Pressure reducing device for bed", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54974-1", + "display": "Turning/repositioning program", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54971-7/54974-1", + "text": "Turning/repositioning program", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54975-8", + "display": "Nutrition or hydration intervention to manage skin problems", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54971-7/54975-8", + "text": "Nutrition or hydration intervention to manage skin problems", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54976-6", + "display": "Pressure ulcer care", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54971-7/54976-6", + "text": "Pressure ulcer care", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54977-4", + "display": "Surgical wound care", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54971-7/54977-4", + "text": "Surgical wound care", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54978-2", + "display": "Application of nonsurgical dressings (with or without topical medications) other than to feet", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54971-7/54978-2", + "text": "Application of nonsurgical dressings (with or without topical medications) other than to feet", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54979-0", + "display": "Applications of ointments/medications other than to feet", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54971-7/54979-0", + "text": "Applications of ointments/medications other than to feet", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54980-8", + "display": "Application of dressings to feet (with or without topical medications)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54971-7/54980-8", + "text": "Application of dressings to feet (with or without topical medications)", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54981-6", + "display": "None of the above were provided", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54572-3/54575-6/54971-7/54981-6", + "text": "None of the above were provided", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55094-7", + "display": "Medications", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55094-7", + "text": "Medications", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "54982-4", + "display": "Injections", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d/(7.d)" + } + } + ], + "required": false, + "linkId": "/55094-7/54982-4", + "text": "Injections" + }, + { + "type": "group", + "code": [ + { + "code": "58217-1", + "display": "Insulin", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55094-7/58217-1", + "text": "Insulin", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "58127-2", + "display": "Insulin injections", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d/(7.d)" + } + } + ], + "required": false, + "linkId": "/55094-7/58217-1/58127-2", + "text": "Insulin injections" + }, + { + "type": "decimal", + "code": [ + { + "code": "58128-0", + "display": "Orders for insulin", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d/(7.d)" + } + } + ], + "required": false, + "linkId": "/55094-7/58217-1/58128-0", + "text": "Orders for insulin" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54983-2", + "display": "Medications Received", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55094-7/54983-2", + "text": "Medications Received", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54984-0", + "display": "Antipsychotic received in last 7D", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55094-7/54983-2/54984-0", + "text": "Antipsychotic received in last 7D", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54985-7", + "display": "Antianxiety received in last 7D", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55094-7/54983-2/54985-7", + "text": "Antianxiety received in last 7D", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54986-5", + "display": "Antidepressant received in last 7D", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55094-7/54983-2/54986-5", + "text": "Antidepressant received in last 7D", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54987-3", + "display": "Hypnotic received in last 7D", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55094-7/54983-2/54987-3", + "text": "Hypnotic received in last 7D", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54988-1", + "display": "Anticoagulant received in last 7D", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55094-7/54983-2/54988-1", + "text": "Anticoagulant received in last 7D", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "warfarin, heparin, or low-molecular weight heparin", + "type": "display", + "linkId": "/55094-7/54983-2/54988-1-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58129-8", + "display": "Antibiotic recieved in last 7D", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55094-7/54983-2/58129-8", + "text": "Antibiotic recieved in last 7D", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "string", + "code": [ + { + "code": "58130-6", + "display": "Diuretic received in last 7D", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55094-7/54983-2/58130-6", + "text": "Diuretic received in last 7D" + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54990-7", + "display": "Special treatments and procedures", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7", + "text": "Special treatments and procedures", + "item": [ + { + "type": "group", + "code": [ + { + "code": "54991-5", + "display": "Special Treatments and Programs", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/54991-5", + "text": "Special Treatments and Programs", + "item": [ + { + "type": "group", + "code": [ + { + "code": "55086-3", + "display": "Cancer Treatments", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55086-3", + "text": "Cancer Treatments", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54992-3", + "display": "Chemotherapy - while NOT a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55086-3/54992-3", + "text": "Chemotherapy - while NOT a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54993-1", + "display": "Chemotherapy - while a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55086-3/54993-1", + "text": "Chemotherapy - while a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54994-9", + "display": "Radiation - while NOT a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55086-3/54994-9", + "text": "Radiation - while NOT a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54995-6", + "display": "Radiation - while a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55086-3/54995-6", + "text": "Radiation - while a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55085-5", + "display": "Respiratory Treatments", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55085-5", + "text": "Respiratory Treatments", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54996-4", + "display": "Oxygen therapy - while NOT a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55085-5/54996-4", + "text": "Oxygen therapy - while NOT a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54997-2", + "display": "Oxygen therapy - while a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55085-5/54997-2", + "text": "Oxygen therapy - while a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54998-0", + "display": "Suctioning - while NOT a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55085-5/54998-0", + "text": "Suctioning - while NOT a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54999-8", + "display": "Suctioning - while a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55085-5/54999-8", + "text": "Suctioning - while a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55000-4", + "display": "Tracheostomy care - while NOT a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55085-5/55000-4", + "text": "Tracheostomy care - while NOT a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55001-2", + "display": "Tracheostomy care - while a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55085-5/55001-2", + "text": "Tracheostomy care - while a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55002-0", + "display": "Ventilator or respirator - while NOT a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55085-5/55002-0", + "text": "Ventilator or respirator - while NOT a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55003-8", + "display": "Ventilator or respirator - while a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55085-5/55003-8", + "text": "Ventilator or respirator - while a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55004-6", + "display": "BIPAP/CPAP machine - while NOT a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55085-5/55004-6", + "text": "BIPAP/CPAP machine - while NOT a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55005-3", + "display": "BIPAP/CPAP machine - while a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55085-5/55005-3", + "text": "BIPAP/CPAP machine - while a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55084-8", + "display": "Other", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55084-8", + "text": "Other", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "55006-1", + "display": "IV medications - while NOT a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55084-8/55006-1", + "text": "IV medications - while NOT a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55007-9", + "display": "IV medications - while a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55084-8/55007-9", + "text": "IV medications - while a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55008-7", + "display": "Transfusions - while NOT a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55084-8/55008-7", + "text": "Transfusions - while NOT a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55009-5", + "display": "Transfusions - while a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55084-8/55009-5", + "text": "Transfusions - while a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55010-3", + "display": "Dialysis - while NOT a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55084-8/55010-3", + "text": "Dialysis - while NOT a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55011-1", + "display": "Dialysis - while a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55084-8/55011-1", + "text": "Dialysis - while a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55012-9", + "display": "Hospice care - while NOT a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55084-8/55012-9", + "text": "Hospice care - while NOT a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55013-7", + "display": "Hospice care - while a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55084-8/55013-7", + "text": "Hospice care - while a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55015-2", + "display": "Respite care in last 14D - while a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55084-8/55015-2", + "text": "Respite care in last 14D - while a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55016-0", + "display": "Isolation or quarantine for active infectious disease - while NOT a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55084-8/55016-0", + "text": "Isolation or quarantine for active infectious disease - while NOT a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "Does not include standard body/fluid precautions", + "type": "display", + "linkId": "/54990-7/54991-5/55084-8/55016-0-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55017-8", + "display": "Isolation or quarantine for active infectious disease - while a resident", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/54991-5/55084-8/55017-8", + "text": "Isolation or quarantine for active infectious disease - while a resident", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ], + "item": [ + { + "text": "Does not include standard body/fluid precautions", + "type": "display", + "linkId": "/54990-7/54991-5/55084-8/55017-8-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "75795-5", + "display": "None of the above", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/54991-5/75795-5", + "text": "None of the above", + "item": [ + { + "type": "string", + "code": [ + { + "code": "59374-9", + "display": "None of above - while NOT a resident", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/54991-5/75795-5/59374-9", + "text": "None of above - while NOT a resident" + }, + { + "type": "string", + "code": [ + { + "code": "59373-1", + "display": "None of above - while a resident", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/54991-5/75795-5/59373-1", + "text": "None of above - while a resident" + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55018-6", + "display": "Influenza vaccine", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/55018-6", + "text": "Influenza vaccine", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "55019-4", + "display": "Influenza virus vaccine received in facility", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/55018-6/55019-4", + "text": "Influenza virus vaccine received in facility", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "58131-4", + "display": "Flu vaccine date", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/54990-7/55018-6/58131-4", + "text": "Flu vaccine date" + }, + { + "type": "choice", + "code": [ + { + "code": "55020-2", + "display": "If influenza vaccine not received, state reason", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/55018-6/55020-2", + "text": "If influenza vaccine not received, state reason", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12666-6", + "display": "Resident not in facility during this year's flu season" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA184-4", + "display": "Received outside of this facility" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA11091-8", + "display": "Not eligible - medical contraindication" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA186-9", + "display": "Offered and declined" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "5" + } + ], + "valueCoding": { + "code": "LA187-7", + "display": "Not offered" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "6" + } + ], + "valueCoding": { + "code": "LA12156-8", + "display": "Inability to obtain vaccine due to declared shortage" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA9-3", + "display": "None of the above" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55021-0", + "display": "Pneumococcal vaccine", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/55021-0", + "text": "Pneumococcal vaccine", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "55022-8", + "display": "Is the resident's Pneumococcal Vaccination up to date?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/55021-0/55022-8", + "text": "Is the resident's Pneumococcal Vaccination up to date?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "45956-0", + "display": "Reason pneumococcal vaccine not received", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/54990-7/55021-0/45956-0", + "text": "Reason pneumococcal vaccine not received", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11091-8", + "display": "Not eligible - medical contraindication" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA186-9", + "display": "Offered and declined" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA187-7", + "display": "Not offered" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55024-4", + "display": "Therapies", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/55024-4", + "text": "Therapies", + "item": [ + { + "type": "group", + "code": [ + { + "code": "58132-2", + "display": "Speech-language pathology and audiology services", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58132-2", + "text": "Speech-language pathology and audiology services", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "58218-9", + "display": "Speech-language pathology and audiology services - individual minutes in the last 7D", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "min" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58132-2/58218-9", + "text": "Speech-language pathology and audiology services - individual minutes in the last 7D" + }, + { + "type": "decimal", + "code": [ + { + "code": "58133-0", + "display": "Speech-language pathology and audiology services - concurrent minutes in the last 7D", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "min" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58132-2/58133-0", + "text": "Speech-language pathology and audiology services - concurrent minutes in the last 7D" + }, + { + "type": "decimal", + "code": [ + { + "code": "58134-8", + "display": "Speech-language pathology and audiology services - group minutes in the last 7D", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "min" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58132-2/58134-8", + "text": "Speech-language pathology and audiology services - group minutes in the last 7D" + }, + { + "type": "decimal", + "code": [ + { + "code": "45760-6", + "display": "Speech/language pathology and audiology services - Days", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d/(7.d)" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58132-2/45760-6", + "text": "Speech/language pathology and audiology services - Days" + }, + { + "type": "decimal", + "code": [ + { + "code": "55025-1", + "display": "Speech/language pathology and audiology services - Therapy Start Date", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58132-2/55025-1", + "text": "Speech/language pathology and audiology services - Therapy Start Date" + }, + { + "type": "decimal", + "code": [ + { + "code": "55026-9", + "display": "Speech/language pathology and audiology services - Therapy End Date", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58132-2/55026-9", + "text": "Speech/language pathology and audiology services - Therapy End Date" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "58135-5", + "display": "Occupational therapy", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58135-5", + "text": "Occupational therapy", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "58219-7", + "display": "Occupational therapy - individual minutes in the last 7D", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "min" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58135-5/58219-7", + "text": "Occupational therapy - individual minutes in the last 7D" + }, + { + "type": "decimal", + "code": [ + { + "code": "58136-3", + "display": "Occupational therapy - concurrent minutes in the last 7D", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "min" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58135-5/58136-3", + "text": "Occupational therapy - concurrent minutes in the last 7D" + }, + { + "type": "decimal", + "code": [ + { + "code": "58137-1", + "display": "Occupational therapy - group minutes in the last 7D", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "min" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58135-5/58137-1", + "text": "Occupational therapy - group minutes in the last 7D" + }, + { + "type": "decimal", + "code": [ + { + "code": "45762-2", + "display": "Occupational Therapy - Days", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d/(7.d)" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58135-5/45762-2", + "text": "Occupational Therapy - Days" + }, + { + "type": "decimal", + "code": [ + { + "code": "55027-7", + "display": "Occupational Therapy - Therapy Start Date", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58135-5/55027-7", + "text": "Occupational Therapy - Therapy Start Date" + }, + { + "type": "decimal", + "code": [ + { + "code": "55028-5", + "display": "Occupational Therapy - Therapy End Date", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58135-5/55028-5", + "text": "Occupational Therapy - Therapy End Date" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "58138-9", + "display": "Physical therapy", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58138-9", + "text": "Physical therapy", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "58220-5", + "display": "Physical therapy - individual minutes in the last 7D", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "min" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58138-9/58220-5", + "text": "Physical therapy - individual minutes in the last 7D" + }, + { + "type": "decimal", + "code": [ + { + "code": "58139-7", + "display": "Physical therapy - concurrent minutes in the last 7D", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "min" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58138-9/58139-7", + "text": "Physical therapy - concurrent minutes in the last 7D" + }, + { + "type": "decimal", + "code": [ + { + "code": "58140-5", + "display": "Physical therapy - group minutes in the last 7D", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "min" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58138-9/58140-5", + "text": "Physical therapy - group minutes in the last 7D" + }, + { + "type": "decimal", + "code": [ + { + "code": "45764-8", + "display": "Physical Therapy - Days", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d/(7.d)" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58138-9/45764-8", + "text": "Physical Therapy - Days" + }, + { + "type": "decimal", + "code": [ + { + "code": "55029-3", + "display": "Physical Therapy - Therapy Start Date", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58138-9/55029-3", + "text": "Physical Therapy - Therapy Start Date" + }, + { + "type": "decimal", + "code": [ + { + "code": "55030-1", + "display": "Physical Therapy - Therapy End Date", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58138-9/55030-1", + "text": "Physical Therapy - Therapy End Date" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "58141-3", + "display": "Respiratory therapy", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58141-3", + "text": "Respiratory therapy", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "45767-1", + "display": "Respiratory Therapy - Minutes", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "min" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58141-3/45767-1", + "text": "Respiratory Therapy - Minutes" + }, + { + "type": "decimal", + "code": [ + { + "code": "45766-3", + "display": "Respiratory Therapy - Days", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d/(7.d)" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58141-3/45766-3", + "text": "Respiratory Therapy - Days" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "58142-1", + "display": "Psychological therapy", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58142-1", + "text": "Psychological therapy", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "45852-1", + "display": "Psychological Therapy (by any licensed mental health professional) - Minutes", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "min" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58142-1/45852-1", + "text": "Psychological Therapy (by any licensed mental health professional) - Minutes" + }, + { + "type": "decimal", + "code": [ + { + "code": "45768-9", + "display": "Psychological Therapy (by any licensed mental health professional) - Days", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d/(7.d)" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58142-1/45768-9", + "text": "Psychological Therapy (by any licensed mental health professional) - Days" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "58143-9", + "display": "Recreational therapy", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58143-9", + "text": "Recreational therapy", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "55035-0", + "display": "Recreational Therapy (includes recreational and music therapy) - Minutes", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "min" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58143-9/55035-0", + "text": "Recreational Therapy (includes recreational and music therapy) - Minutes" + }, + { + "type": "decimal", + "code": [ + { + "code": "55036-8", + "display": "Recreational Therapy (includes recreational and music therapy) - Days", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d/(7.d)" + } + } + ], + "required": false, + "linkId": "/54990-7/55024-4/58143-9/55036-8", + "text": "Recreational Therapy (includes recreational and music therapy) - Days" + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55039-2", + "display": "Restorative Nursing Programs", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/55039-2", + "text": "Restorative Nursing Programs", + "item": [ + { + "type": "group", + "code": [ + { + "code": "55131-7", + "display": "Technique", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/55039-2/55131-7", + "text": "Technique", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "45859-6", + "display": "Range of motion (passive)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d" + } + } + ], + "required": false, + "linkId": "/54990-7/55039-2/55131-7/45859-6", + "text": "Range of motion (passive)" + }, + { + "type": "decimal", + "code": [ + { + "code": "45860-4", + "display": "Technique. Range of motion (active)", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d" + } + } + ], + "required": false, + "linkId": "/54990-7/55039-2/55131-7/45860-4", + "text": "Technique. Range of motion (active)" + }, + { + "type": "decimal", + "code": [ + { + "code": "45861-2", + "display": "Splint or brace assistance", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d" + } + } + ], + "required": false, + "linkId": "/54990-7/55039-2/55131-7/45861-2", + "text": "Splint or brace assistance" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55132-5", + "display": "Training and skill practice in", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/54990-7/55039-2/55132-5", + "text": "Training and skill practice in", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "45862-0", + "display": "Bed mobility", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d" + } + } + ], + "required": false, + "linkId": "/54990-7/55039-2/55132-5/45862-0", + "text": "Bed mobility" + }, + { + "type": "decimal", + "code": [ + { + "code": "45863-8", + "display": "Transfer", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d" + } + } + ], + "required": false, + "linkId": "/54990-7/55039-2/55132-5/45863-8", + "text": "Transfer" + }, + { + "type": "decimal", + "code": [ + { + "code": "45864-6", + "display": "Walking", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d" + } + } + ], + "required": false, + "linkId": "/54990-7/55039-2/55132-5/45864-6", + "text": "Walking" + }, + { + "type": "decimal", + "code": [ + { + "code": "45865-3", + "display": "Dressing and/or grooming", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d" + } + } + ], + "required": false, + "linkId": "/54990-7/55039-2/55132-5/45865-3", + "text": "Dressing and/or grooming" + }, + { + "type": "decimal", + "code": [ + { + "code": "45866-1", + "display": "Eating and/or swallowing", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d" + } + } + ], + "required": false, + "linkId": "/54990-7/55039-2/55132-5/45866-1", + "text": "Eating and/or swallowing" + }, + { + "type": "decimal", + "code": [ + { + "code": "45867-9", + "display": "Amputation/prostheses care", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d" + } + } + ], + "required": false, + "linkId": "/54990-7/55039-2/55132-5/45867-9", + "text": "Amputation/prostheses care" + }, + { + "type": "decimal", + "code": [ + { + "code": "45868-7", + "display": "Communication", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d" + } + } + ], + "required": false, + "linkId": "/54990-7/55039-2/55132-5/45868-7", + "text": "Communication" + } + ] + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "55040-0", + "display": "Physician Examinations. Over the last 14 days, on how many days did the physician (or authorized assistant or practitioner) examine the resident?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d/(14.d)" + } + } + ], + "required": false, + "linkId": "/54990-7/55040-0", + "text": "Physician Examinations. Over the last 14 days, on how many days did the physician (or authorized assistant or practitioner) examine the resident?" + }, + { + "type": "decimal", + "code": [ + { + "code": "55041-8", + "display": "Physician Orders. Over the last 14 days, on how many days did the physician (or authorized assistant or practitioner) change the resident's orders?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "d/(14.d)" + } + } + ], + "required": false, + "linkId": "/54990-7/55041-8", + "text": "Physician Orders. Over the last 14 days, on how many days did the physician (or authorized assistant or practitioner) change the resident's orders?" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55042-6", + "display": "Restraints", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55042-6", + "text": "Restraints", + "item": [ + { + "type": "group", + "code": [ + { + "code": "55043-4", + "display": "Physical restraints", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55042-6/55043-4", + "text": "Physical restraints", + "item": [ + { + "type": "group", + "code": [ + { + "code": "55129-1", + "display": "Used in Bed", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55042-6/55043-4/55129-1", + "text": "Used in Bed", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "55044-2", + "display": "Bed rail", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55042-6/55043-4/55129-1/55044-2", + "text": "Bed rail", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA157-0", + "display": "Not used" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA158-8", + "display": "Used less than daily" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA159-6", + "display": "Used daily" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55045-9", + "display": "Trunk restraint", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55042-6/55043-4/55129-1/55045-9", + "text": "Trunk restraint", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA157-0", + "display": "Not used" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA158-8", + "display": "Used less than daily" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA159-6", + "display": "Used daily" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55046-7", + "display": "Limb restraint", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55042-6/55043-4/55129-1/55046-7", + "text": "Limb restraint", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA157-0", + "display": "Not used" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA158-8", + "display": "Used less than daily" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA159-6", + "display": "Used daily" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55047-5", + "display": "Other", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55042-6/55043-4/55129-1/55047-5", + "text": "Other", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA157-0", + "display": "Not used" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA158-8", + "display": "Used less than daily" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA159-6", + "display": "Used daily" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55130-9", + "display": "Used in Chair or Out of Bed", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55042-6/55043-4/55130-9", + "text": "Used in Chair or Out of Bed", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "55048-3", + "display": "Trunk restraint", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55042-6/55043-4/55130-9/55048-3", + "text": "Trunk restraint", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA157-0", + "display": "Not used" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA158-8", + "display": "Used less than daily" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA159-6", + "display": "Used daily" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55049-1", + "display": "Limb restraint", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55042-6/55043-4/55130-9/55049-1", + "text": "Limb restraint", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA157-0", + "display": "Not used" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA158-8", + "display": "Used less than daily" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA159-6", + "display": "Used daily" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55050-9", + "display": "Chair prevents rising", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55042-6/55043-4/55130-9/55050-9", + "text": "Chair prevents rising", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA157-0", + "display": "Not used" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA158-8", + "display": "Used less than daily" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA159-6", + "display": "Used daily" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55051-7", + "display": "Other", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55042-6/55043-4/55130-9/55051-7", + "text": "Other", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA157-0", + "display": "Not used" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA158-8", + "display": "Used less than daily" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA159-6", + "display": "Used daily" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55052-5", + "display": "Participation in assessment and goal setting", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55052-5", + "text": "Participation in assessment and goal setting", + "item": [ + { + "type": "group", + "code": [ + { + "code": "55053-3", + "display": "Participation in assessment", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55052-5/55053-3", + "text": "Participation in assessment", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "55054-1", + "display": "Resident participated in assessment", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55052-5/55053-3/55054-1", + "text": "Resident participated in assessment", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55074-9", + "display": "Family or significant other participated in assessment", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55052-5/55053-3/55074-9", + "text": "Family or significant other participated in assessment", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11104-9", + "display": "No family or significant other available" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58221-3", + "display": "Guardian or legally authorized representative participated in assessment", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55052-5/55053-3/58221-3", + "text": "Guardian or legally authorized representative participated in assessment", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA12662-5", + "display": "No guardian or legally authorized representative available" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55056-6", + "display": "Resident's Overall Expectation", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55052-5/55056-6", + "text": "Resident's Overall Expectation", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "55057-4", + "display": "Resident's overall goal established during assessment process", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55052-5/55056-6/55057-4", + "text": "Resident's overall goal established during assessment process", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12648-4", + "display": "Expects to be discharged to the community" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12649-2", + "display": "Expects to remain in this facility" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12650-0", + "display": "Expects to be discharged to another facility/institution" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11107-2", + "display": "Unknown or uncertain" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55058-2", + "display": "Indicate information source for Q0300A", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55052-5/55056-6/55058-2", + "text": "Indicate information source for Q0300A", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA11019-9", + "display": "Resident" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA11116-3", + "display": "If not resident, then family or significant other" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12652-6", + "display": "If not resident, family, or significant other, then guardian or legally authorized representative" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA18613-2", + "display": "No information source available" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "58222-1", + "display": "Discharge plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55052-5/58222-1", + "text": "Discharge plan", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "58146-2", + "display": "Active discharge planning already occurring for the resident to return to the community", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55052-5/58222-1/58146-2", + "text": "Active discharge planning already occurring for the resident to return to the community", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58147-0", + "display": "What determination was made by the resident and the care planning team regarding discharge to the community?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55052-5/58222-1/58147-0", + "text": "What determination was made by the resident and the care planning team regarding discharge to the community?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA12653-4", + "display": "Determination not made" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12654-2", + "display": "Discharge to community determined to be feasible" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12655-9", + "display": "Discharge to community determined to be not feasible" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "58223-9", + "display": "Return to community", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55052-5/58223-9", + "text": "Return to community", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "58148-8", + "display": "Has the resident been asked about returning to the community?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55052-5/58223-9/58148-8", + "text": "Has the resident been asked about returning to the community?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12656-7", + "display": "Yes - previous response was \"no\"" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12657-5", + "display": "Yes - previous response was \"yes\"" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12658-3", + "display": "Yes - previous response was \"unknown\"" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58149-6", + "display": "Ask the resident (or family or significant other if resident is unable to respond): \"Do you want to talk to someone about the possibility of returning to the community?\"", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55052-5/58223-9/58149-6", + "text": "Ask the resident (or family or significant other if resident is unable to respond): \"Do you want to talk to someone about the possibility of returning to the community?\"", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "9" + } + ], + "valueCoding": { + "code": "LA11107-2", + "display": "Unknown or uncertain" + } + } + ] + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58150-4", + "display": "Referral. Has a referral been made to the Local Contact Agency?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55052-5/58150-4", + "text": "Referral. Has a referral been made to the Local Contact Agency?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA12660-9", + "display": "No - referral not needed" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA18611-6", + "display": "No - referral is or may be needed" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA18610-8", + "display": "Yes - referral made" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "58154-6", + "display": "Care Area Assessment (CAA) Summary", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6", + "text": "Care Area Assessment (CAA) Summary", + "item": [ + { + "type": "group", + "code": [ + { + "code": "58224-7", + "display": "Items from most recent prior OBRA or scheduled PPS assessment", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58224-7", + "text": "Items from most recent prior OBRA or scheduled PPS assessment", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54583-0", + "display": "Prior Assessment Federal OBRA Reason for Assessment", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58154-6/58224-7/54583-0", + "text": "Prior Assessment Federal OBRA Reason for Assessment", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "01" + } + ], + "valueCoding": { + "code": "LA10-4", + "display": "Admission assessment (required by day 14)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "02" + } + ], + "valueCoding": { + "code": "LA15-3", + "display": "Quarterly review assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "03" + } + ], + "valueCoding": { + "code": "LA12-0", + "display": "Annual assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "04" + } + ], + "valueCoding": { + "code": "LA13-8", + "display": "Significant change in status assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "05" + } + ], + "valueCoding": { + "code": "LA10888-8", + "display": "Significant correction to prior comprehensive assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "06" + } + ], + "valueCoding": { + "code": "LA10889-6", + "display": "Significant correction to prior quarterly assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "99" + } + ], + "valueCoding": { + "code": "LA9-3", + "display": "None of the above" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54584-8", + "display": "Prior Assessment PPS Reason for Assessment", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58154-6/58224-7/54584-8", + "text": "Prior Assessment PPS Reason for Assessment", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "01" + } + ], + "valueCoding": { + "code": "LA10894-6", + "display": "5-day scheduled assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "02" + } + ], + "valueCoding": { + "code": "LA10895-3", + "display": "14-day scheduled assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "03" + } + ], + "valueCoding": { + "code": "LA10896-1", + "display": "30-day scheduled assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "04" + } + ], + "valueCoding": { + "code": "LA10897-9", + "display": "60-day scheduled assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "05" + } + ], + "valueCoding": { + "code": "LA10898-7", + "display": "90-day scheduled assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "06" + } + ], + "valueCoding": { + "code": "LA10899-5", + "display": "Readmission/return assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "07" + } + ], + "valueCoding": { + "code": "LA10900-1", + "display": "Unscheduled assessment used for PPS (OMRA, significant or clinical change, or significant correction assessment)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "99" + } + ], + "valueCoding": { + "code": "LA9-3", + "display": "None of the above" + } + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "54593-9", + "display": "Prior Assessment Reference Date", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/58154-6/58224-7/54593-9", + "text": "Prior Assessment Reference Date", + "item": [ + { + "text": "The end-point of the assessment period for the CMS assessment instrument.", + "type": "display", + "linkId": "/58154-6/58224-7/54593-9-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "58151-2", + "display": "Prior assessment brief interview for mental status summary score", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{score}" + } + } + ], + "required": false, + "linkId": "/58154-6/58224-7/58151-2", + "text": "Prior assessment brief interview for mental status summary score" + }, + { + "type": "decimal", + "code": [ + { + "code": "58152-0", + "display": "Prior assessment resident mood interview (PHQ-9) total severity score", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{score}" + } + } + ], + "required": false, + "linkId": "/58154-6/58224-7/58152-0", + "text": "Prior assessment resident mood interview (PHQ-9) total severity score" + }, + { + "type": "decimal", + "code": [ + { + "code": "58153-8", + "display": "Prior assessment staff assessment of resident mood interview (PHQ-9) total severity score", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{score}" + } + } + ], + "required": false, + "linkId": "/58154-6/58224-7/58153-8", + "text": "Prior assessment staff assessment of resident mood interview (PHQ-9) total severity score" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "58155-3", + "display": "CAAs and Care Planning", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3", + "text": "CAAs and Care Planning", + "item": [ + { + "type": "group", + "code": [ + { + "code": "58156-1", + "display": "CAA Results", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1", + "text": "CAA Results", + "item": [ + { + "type": "string", + "code": [ + { + "code": "58157-9", + "display": "Delirium - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58157-9", + "text": "Delirium - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58158-7", + "display": "Delirium - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58158-7", + "text": "Delirium - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58159-5", + "display": "Cognitive loss/dementia - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58159-5", + "text": "Cognitive loss/dementia - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58160-3", + "display": "Cognitive loss/dementia - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58160-3", + "text": "Cognitive loss/dementia - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58226-2", + "display": "Visual function - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58226-2", + "text": "Visual function - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58225-4", + "display": "Visual function - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58225-4", + "text": "Visual function - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58161-1", + "display": "Communication - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58161-1", + "text": "Communication - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58162-9", + "display": "Communication - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58162-9", + "text": "Communication - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58163-7", + "display": "ADL functional/rehabilitation potential - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58163-7", + "text": "ADL functional/rehabilitation potential - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58164-5", + "display": "ADL functional/rehabilitation potential - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58164-5", + "text": "ADL functional/rehabilitation potential - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58165-2", + "display": "Urinary incontinence and indwelling catheter - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58165-2", + "text": "Urinary incontinence and indwelling catheter - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58166-0", + "display": "Urinary incontinence and indwelling catheter - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58166-0", + "text": "Urinary incontinence and indwelling catheter - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58167-8", + "display": "Psychosocial well being - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58167-8", + "text": "Psychosocial well being - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58168-6", + "display": "Psychosocial well being - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58168-6", + "text": "Psychosocial well being - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58169-4", + "display": "Mood state - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58169-4", + "text": "Mood state - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58170-2", + "display": "Mood state - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58170-2", + "text": "Mood state - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58171-0", + "display": "Behavioral symptoms - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58171-0", + "text": "Behavioral symptoms - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58172-8", + "display": "Behavioral symptoms - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58172-8", + "text": "Behavioral symptoms - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58173-6", + "display": "Activities - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58173-6", + "text": "Activities - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58174-4", + "display": "Activities - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58174-4", + "text": "Activities - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58175-1", + "display": "Falls - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58175-1", + "text": "Falls - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58176-9", + "display": "Falls - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58176-9", + "text": "Falls - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58177-7", + "display": "Nutritional status - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58177-7", + "text": "Nutritional status - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58178-5", + "display": "Nutritional status - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58178-5", + "text": "Nutritional status - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58179-3", + "display": "Feeding tube - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58179-3", + "text": "Feeding tube - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58180-1", + "display": "Feeding tube - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58180-1", + "text": "Feeding tube - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58181-9", + "display": "Dehydration/fluid maintenance - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58181-9", + "text": "Dehydration/fluid maintenance - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58182-7", + "display": "Dehydration/fluid maintenance - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58182-7", + "text": "Dehydration/fluid maintenance - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58183-5", + "display": "Dental care - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58183-5", + "text": "Dental care - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58184-3", + "display": "Dental care - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58184-3", + "text": "Dental care - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58185-0", + "display": "Pressure injury - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58185-0", + "text": "Pressure injury - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58186-8", + "display": "Pressure injury - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58186-8", + "text": "Pressure injury - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58187-6", + "display": "Psychotropic drug use - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58187-6", + "text": "Psychotropic drug use - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58188-4", + "display": "Psychotropic drug use - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58188-4", + "text": "Psychotropic drug use - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58189-2", + "display": "Physical restraints - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58189-2", + "text": "Physical restraints - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58190-0", + "display": "Physical restraints - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58190-0", + "text": "Physical restraints - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58191-8", + "display": "Pain - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58191-8", + "text": "Pain - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58192-6", + "display": "Pain - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58192-6", + "text": "Pain - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58193-4", + "display": "Return to community referral - care area triggered", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58193-4", + "text": "Return to community referral - care area triggered" + }, + { + "type": "string", + "code": [ + { + "code": "58194-2", + "display": "Return to community referral - addressed in care plan", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58194-2", + "text": "Return to community referral - addressed in care plan" + }, + { + "type": "string", + "code": [ + { + "code": "58195-9", + "display": "Date of Care Area Assessment (CAA) information", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58195-9", + "text": "Date of Care Area Assessment (CAA) information" + }, + { + "type": "string", + "code": [ + { + "code": "58196-7", + "display": "Location of Care Area Assessment (CAA) information", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58154-6/58155-3/58156-1/58196-7", + "text": "Location of Care Area Assessment (CAA) information" + } + ] + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "58197-5", + "display": "Correction request", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58197-5", + "text": "Correction request", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54582-2", + "display": "Provider type", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58197-5/54582-2", + "text": "Provider type", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA10882-1", + "display": "Nursing home (SNF/NF)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA10883-9", + "display": "Swing bed" + } + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "54503-8", + "display": "Name of Resident on existing record to be modified/inactivated", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58197-5/54503-8", + "text": "Name of Resident on existing record to be modified/inactivated", + "item": [ + { + "type": "string", + "code": [ + { + "code": "45392-8", + "display": "Patient First name", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58197-5/54503-8/45392-8", + "text": "Patient First name" + }, + { + "type": "string", + "code": [ + { + "code": "45394-4", + "display": "Patient Last name", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58197-5/54503-8/45394-4", + "text": "Patient Last name" + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "46098-0", + "display": "Gender on existing record to be modified/inactivated", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58197-5/46098-0", + "text": "Gender on existing record to be modified/inactivated", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA2-8", + "display": "Male" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA3-6", + "display": "Female" + } + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "21112-8", + "display": "Birth Date on existing record to be modified/inactived", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/58197-5/21112-8", + "text": "Birth Date on existing record to be modified/inactived" + }, + { + "type": "string", + "code": [ + { + "code": "45396-9", + "display": "Social Security Number on existing record to be modified/inactivated", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58197-5/45396-9", + "text": "Social Security Number on existing record to be modified/inactivated" + }, + { + "type": "group", + "code": [ + { + "code": "54502-0", + "display": "Type of Assessment on existing record to be modified/inactivated", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58197-5/54502-0", + "text": "Type of Assessment on existing record to be modified/inactivated", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "54583-0", + "display": "Federal OBRA reason for assessment", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58197-5/54502-0/54583-0", + "text": "Federal OBRA reason for assessment", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "01" + } + ], + "valueCoding": { + "code": "LA10-4", + "display": "Admission assessment (required by day 14)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "02" + } + ], + "valueCoding": { + "code": "LA15-3", + "display": "Quarterly review assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "03" + } + ], + "valueCoding": { + "code": "LA12-0", + "display": "Annual assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "04" + } + ], + "valueCoding": { + "code": "LA13-8", + "display": "Significant change in status assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "05" + } + ], + "valueCoding": { + "code": "LA10888-8", + "display": "Significant correction to prior comprehensive assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "06" + } + ], + "valueCoding": { + "code": "LA10889-6", + "display": "Significant correction to prior quarterly assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "99" + } + ], + "valueCoding": { + "code": "LA9-3", + "display": "None of the above" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54584-8", + "display": "PPS Assessment", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58197-5/54502-0/54584-8", + "text": "PPS Assessment", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "01" + } + ], + "valueCoding": { + "code": "LA10894-6", + "display": "5-day scheduled assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "02" + } + ], + "valueCoding": { + "code": "LA10895-3", + "display": "14-day scheduled assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "03" + } + ], + "valueCoding": { + "code": "LA10896-1", + "display": "30-day scheduled assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "04" + } + ], + "valueCoding": { + "code": "LA10897-9", + "display": "60-day scheduled assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "05" + } + ], + "valueCoding": { + "code": "LA10898-7", + "display": "90-day scheduled assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "06" + } + ], + "valueCoding": { + "code": "LA10899-5", + "display": "Readmission/return assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "07" + } + ], + "valueCoding": { + "code": "LA10900-1", + "display": "Unscheduled assessment used for PPS (OMRA, significant or clinical change, or significant correction assessment)" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "99" + } + ], + "valueCoding": { + "code": "LA9-3", + "display": "None of the above" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54585-5", + "display": "PPS Other Medicare Required Assessment - OMRA", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58197-5/54502-0/54585-5", + "text": "PPS Other Medicare Required Assessment - OMRA", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA12624-5", + "display": "Start of therapy assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA12625-2", + "display": "End of therapy assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "3" + } + ], + "valueCoding": { + "code": "LA12626-0", + "display": "Both Start and End of therapy assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "4" + } + ], + "valueCoding": { + "code": "LA18612-4", + "display": "Change of therapy assessment" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58107-4", + "display": "Is this a Swing Bed clinical change assessment?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58197-5/54502-0/58107-4", + "text": "Is this a Swing Bed clinical change assessment?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "54587-1", + "display": "Is this assessment the first assessment (OBRA, PPS, or Discharge) since the most recent admission?", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58197-5/54502-0/54587-1", + "text": "Is this assessment the first assessment (OBRA, PPS, or Discharge) since the most recent admission?", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58108-2", + "display": "Entry/discharge reporting", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58197-5/54502-0/58108-2", + "text": "Entry/discharge reporting", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "01" + } + ], + "valueCoding": { + "code": "LA12627-8", + "display": "Entry tracking record" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "10" + } + ], + "valueCoding": { + "code": "LA12628-6", + "display": "Discharge assessment - return not anticipated" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "11" + } + ], + "valueCoding": { + "code": "LA12629-4", + "display": "Discharge assessment - return anticipated" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "12" + } + ], + "valueCoding": { + "code": "LA12630-2", + "display": "Death in facility tracking record" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "99" + } + ], + "valueCoding": { + "code": "LA9-3", + "display": "None of the above" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "71440-2", + "display": "Type of discharge", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58197-5/54502-0/71440-2", + "text": "Type of discharge", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA18067-1", + "display": "Planned discharge" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "2" + } + ], + "valueCoding": { + "code": "LA18068-9", + "display": "Unplanned discharge" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "75794-8", + "display": "Date on existing record to be modified/inactivated", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58197-5/75794-8", + "text": "Date on existing record to be modified/inactivated", + "item": [ + { + "type": "decimal", + "code": [ + { + "code": "54593-9", + "display": "Assessment reference date - observation end date", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/58197-5/75794-8/54593-9", + "text": "Assessment reference date - observation end date", + "item": [ + { + "text": "The end-point of the assessment period for the CMS assessment instrument.", + "type": "display", + "linkId": "/58197-5/75794-8/54593-9-help", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "text": "Help-Button", + "coding": [ + { + "code": "help", + "display": "Help-Button", + "system": "http://hl7.org/fhir/questionnaire-item-control" + } + ] + } + } + ] + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "52525-3", + "display": "Discharge date", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/58197-5/75794-8/52525-3", + "text": "Discharge date" + }, + { + "type": "decimal", + "code": [ + { + "code": "50786-3", + "display": "Entry Date", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{mm/dd/yyyy}" + } + } + ], + "required": false, + "linkId": "/58197-5/75794-8/50786-3", + "text": "Entry Date" + } + ] + }, + { + "type": "decimal", + "code": [ + { + "code": "58200-7", + "display": "Correction number", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit", + "valueCoding": { + "display": "{#}" + } + } + ], + "required": false, + "linkId": "/58197-5/58200-7", + "text": "Correction number" + }, + { + "type": "group", + "code": [ + { + "code": "58199-1", + "display": "Reasons for modification", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58197-5/58199-1", + "text": "Reasons for modification", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "58201-5", + "display": "Transcription error", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58197-5/58199-1/58201-5", + "text": "Transcription error", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58202-3", + "display": "Data entry error", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58197-5/58199-1/58202-3", + "text": "Data entry error", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58203-1", + "display": "Item coding error", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58197-5/58199-1/58203-1", + "text": "Item coding error", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58227-0", + "display": "Software product error", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58197-5/58199-1/58227-0", + "text": "Software product error", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58204-9", + "display": "Other error requiring modification", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58197-5/58199-1/58204-9", + "text": "Other error requiring modification", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "string", + "code": [ + { + "code": "58205-6", + "display": "Other error requiring modification.other specified", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58197-5/58199-1/58205-6", + "text": "Other error requiring modification.other specified" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "58206-4", + "display": "Reasons for inactivation", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58197-5/58206-4", + "text": "Reasons for inactivation", + "item": [ + { + "type": "choice", + "code": [ + { + "code": "58207-2", + "display": "Reasons for inactivation - event did not occur", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58197-5/58206-4/58207-2", + "text": "Reasons for inactivation - event did not occur", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "58208-0", + "display": "Other error requiring error requiring inactivation", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/58197-5/58206-4/58208-0", + "text": "Other error requiring error requiring inactivation", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + }, + { + "type": "string", + "code": [ + { + "code": "58209-8", + "display": "Other error requiring error requiring inactivation.other specified", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/58197-5/58206-4/58209-8", + "text": "Other error requiring error requiring inactivation.other specified" + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55063-2", + "display": "Assessment administration", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2", + "text": "Assessment administration", + "item": [ + { + "type": "group", + "code": [ + { + "code": "55064-0", + "display": "Medicare part A billing", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/55064-0", + "text": "Medicare part A billing", + "item": [ + { + "type": "string", + "code": [ + { + "code": "55065-7", + "display": "Medicare part A - HIPPS code for billing", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/55064-0/55065-7", + "text": "Medicare part A - HIPPS code for billing" + }, + { + "type": "string", + "code": [ + { + "code": "55066-5", + "display": "RUG version code", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/55064-0/55066-5", + "text": "RUG version code" + }, + { + "type": "choice", + "code": [ + { + "code": "58421-9", + "display": "Medicare short stay assessment", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55063-2/55064-0/58421-9", + "text": "Medicare short stay assessment", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "0" + } + ], + "valueCoding": { + "code": "LA32-8", + "display": "No" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "1" + } + ], + "valueCoding": { + "code": "LA33-6", + "display": "Yes" + } + } + ] + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "59375-6", + "display": "Medicare non-therapy Part A billing", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/59375-6", + "text": "Medicare non-therapy Part A billing", + "item": [ + { + "type": "string", + "code": [ + { + "code": "58210-6", + "display": "Medicare non-therapy Part A HIPPS code", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/59375-6/58210-6", + "text": "Medicare non-therapy Part A HIPPS code" + }, + { + "type": "string", + "code": [ + { + "code": "58211-4", + "display": "RUG version code", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/59375-6/58211-4", + "text": "RUG version code" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55067-3", + "display": "State Medicaid billing", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/55067-3", + "text": "State Medicaid billing", + "item": [ + { + "type": "string", + "code": [ + { + "code": "55068-1", + "display": "RUG Case Mix group", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/55067-3/55068-1", + "text": "RUG Case Mix group" + }, + { + "type": "string", + "code": [ + { + "code": "55069-9", + "display": "RUG version code", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/55067-3/55069-9", + "text": "RUG version code" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "58422-7", + "display": "Alternate state Medicaid billing", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/58422-7", + "text": "Alternate state Medicaid billing", + "item": [ + { + "type": "string", + "code": [ + { + "code": "58212-2", + "display": "RUG Case Mix Group", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/58422-7/58212-2", + "text": "RUG Case Mix Group" + }, + { + "type": "string", + "code": [ + { + "code": "58213-0", + "display": "RUG version code", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/58422-7/58213-0", + "text": "RUG version code" + } + ] + }, + { + "type": "group", + "code": [ + { + "code": "55070-7", + "display": "Insurance billing", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/55070-7", + "text": "Insurance billing", + "item": [ + { + "type": "string", + "code": [ + { + "code": "55071-5", + "display": "RUG Case Mix group", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/55070-7/55071-5", + "text": "RUG Case Mix group" + }, + { + "type": "string", + "code": [ + { + "code": "55072-3", + "display": "RUG version code", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/55070-7/55072-3", + "text": "RUG version code" + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55083-0", + "display": "Item subset code", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55063-2/55083-0", + "text": "Item subset code", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "NCP" + } + ], + "valueCoding": { + "code": "LA11118-9", + "display": "Nursing home comprehensive assessment coupled with PPS assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "NCN" + } + ], + "valueCoding": { + "code": "LA11119-7", + "display": "Nursing home comprehensive assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "NQP" + } + ], + "valueCoding": { + "code": "LA11120-5", + "display": "Nursing home quarterly assessment coupled with PPS assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "NQN" + } + ], + "valueCoding": { + "code": "LA11121-3", + "display": "Nursing home quarterly assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "NDE" + } + ], + "valueCoding": { + "code": "LA11122-1", + "display": "Nursing home discharge coupled with EMCA" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "NDN" + } + ], + "valueCoding": { + "code": "LA11138-7", + "display": "Nursing home discharge" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "NEN" + } + ], + "valueCoding": { + "code": "LA11123-9", + "display": "Nursing home entry" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "NNP" + } + ], + "valueCoding": { + "code": "LA11124-7", + "display": "Nursing home PPS assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "NNE" + } + ], + "valueCoding": { + "code": "LA11125-4", + "display": "Nursing home EMCA" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "NNN" + } + ], + "valueCoding": { + "code": "LA11142-9", + "display": "Nursing home not OMBRA and not PPS assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "SDE" + } + ], + "valueCoding": { + "code": "LA11126-2", + "display": "Swing bed discharge coupled with EMCA" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "SDN" + } + ], + "valueCoding": { + "code": "LA11127-0", + "display": "Swing bed discharge" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "SEN" + } + ], + "valueCoding": { + "code": "LA11139-5", + "display": "Swing bed entry" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "SNP" + } + ], + "valueCoding": { + "code": "LA11128-8", + "display": "Swing bed PPS assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "SNS" + } + ], + "valueCoding": { + "code": "LA10901-9", + "display": "Swing bed clinical change assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "SNE" + } + ], + "valueCoding": { + "code": "LA11130-4", + "display": "Swing bed EMCA" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "SNN" + } + ], + "valueCoding": { + "code": "LA11141-1", + "display": "Swing bed not a PPS assessment" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "XXX" + } + ], + "valueCoding": { + "code": "LA11131-2", + "display": "Inactivation transaction" + } + } + ] + }, + { + "type": "string", + "code": [ + { + "code": "55075-6", + "display": "Version code", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/55075-6", + "text": "Version code" + }, + { + "type": "choice", + "code": [ + { + "code": "55082-2", + "display": "Transaction code", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55063-2/55082-2", + "text": "Transaction code", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "A" + } + ], + "valueCoding": { + "code": "LA11132-0", + "display": "Addition" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "M" + } + ], + "valueCoding": { + "code": "LA11133-8", + "display": "Modification" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "I" + } + ], + "valueCoding": { + "code": "LA11134-6", + "display": "Inactivation" + } + } + ] + }, + { + "type": "choice", + "code": [ + { + "code": "55076-4", + "display": "Production or test indicator", + "system": "http://loinc.org" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/questionnaire-item-control", + "code": "drop-down", + "display": "Drop down" + } + ], + "text": "Drop down" + } + } + ], + "required": false, + "linkId": "/55063-2/55076-4", + "text": "Production or test indicator", + "answerOption": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "P" + } + ], + "valueCoding": { + "code": "LA11135-3", + "display": "Product submission" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix", + "valueString": "T" + } + ], + "valueCoding": { + "code": "LA11136-1", + "display": "Test submission" + } + } + ] + }, + { + "type": "string", + "code": [ + { + "code": "55077-2", + "display": "State assigned facility submission ID", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/55077-2", + "text": "State assigned facility submission ID" + }, + { + "type": "string", + "code": [ + { + "code": "55078-0", + "display": "Federal employer tax ID", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/55078-0", + "text": "Federal employer tax ID" + }, + { + "type": "string", + "code": [ + { + "code": "55079-8", + "display": "Vendor company name", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/55079-8", + "text": "Vendor company name" + }, + { + "type": "string", + "code": [ + { + "code": "55093-9", + "display": "Vendor email address", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/55093-9", + "text": "Vendor email address" + }, + { + "type": "string", + "code": [ + { + "code": "55080-6", + "display": "Product name", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/55080-6", + "text": "Product name" + }, + { + "type": "string", + "code": [ + { + "code": "55081-4", + "display": "Product version code", + "system": "http://loinc.org" + } + ], + "required": false, + "linkId": "/55063-2/55081-4", + "text": "Product version code" + } + ] + } + ] +} From 1aabcc70ab1786abe450690b0008136708c6039f Mon Sep 17 00:00:00 2001 From: sedinkinya Date: Wed, 25 May 2022 13:06:51 -0400 Subject: [PATCH 2/3] Fixed issues found during review LF-2204 --- test/benchmark/intersect.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/benchmark/intersect.js b/test/benchmark/intersect.js index dd83b09..936b2d4 100644 --- a/test/benchmark/intersect.js +++ b/test/benchmark/intersect.js @@ -25,25 +25,25 @@ const expression = '%items.intersect(%itemsCopy)'; const cases = [ { name: `${numberOfBigItems} big items using evaluate()`, - function: (fhirpath, model) => { + testFunction: (fhirpath, model) => { fhirpath.evaluate({}, expression, { items: bigItems, itemsCopy: bigItemsCopy }, model); } }, { name: `${numberOfBigItems} big items using compile()`, - function: (fhirpath, model, compiledFn) => { + testFunction: (fhirpath, model, compiledFn) => { compiledFn({}, { items: bigItems, itemsCopy: bigItemsCopy }); } }, { name: `${numberOfSmallItems} small items using evaluate()`, - function: (fhirpath, model) => { + testFunction: (fhirpath, model) => { fhirpath.evaluate({}, expression, { items: smallItems, itemsCopy: smallItemsCopy }, model); } }, { name: `${numberOfSmallItems} small items using compile()`, - function: (fhirpath, model, compiledFn) => { + testFunction: (fhirpath, model, compiledFn) => { compiledFn({}, { items: smallItems, itemsCopy: smallItemsCopy }); } } @@ -51,7 +51,7 @@ const cases = [ arr.push( b.add( `${item.name} [${previousVersion}]`, - item.function.bind( + item.testFunction.bind( this, previous_fhirpath, previous_r4_model, @@ -62,7 +62,7 @@ const cases = [ arr.push( b.add( `${item.name} [${currentVersion}]`, - item.function.bind( + item.testFunction.bind( this, current_fhirpath, current_r4_model, From 8c1a85d01fe756deb285cf1e7b8f7d9998eeac05 Mon Sep 17 00:00:00 2001 From: sedinkinya Date: Thu, 9 Jun 2022 10:22:15 -0400 Subject: [PATCH 3/3] npm audit fix --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index d2dd927..ec3f655 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8360,9 +8360,9 @@ "devOptional": true }, "node_modules/grunt": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/grunt/-/grunt-1.5.2.tgz", - "integrity": "sha512-XCtfaIu72OyDqK24MjWiGC9SwlkuhkS1mrULr1xzuJ2XqAFhP3ZAchZGHJeSCY6mkaOXU4F7SbmmCF7xIVoC9w==", + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/grunt/-/grunt-1.5.3.tgz", + "integrity": "sha512-mKwmo4X2d8/4c/BmcOETHek675uOqw0RuA/zy12jaspWqvTp4+ZeQF1W+OTpcbncnaBsfbQJ6l0l4j+Sn/GmaQ==", "dependencies": { "dateformat": "~3.0.3", "eventemitter2": "~0.4.13", @@ -22609,9 +22609,9 @@ "devOptional": true }, "grunt": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/grunt/-/grunt-1.5.2.tgz", - "integrity": "sha512-XCtfaIu72OyDqK24MjWiGC9SwlkuhkS1mrULr1xzuJ2XqAFhP3ZAchZGHJeSCY6mkaOXU4F7SbmmCF7xIVoC9w==", + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/grunt/-/grunt-1.5.3.tgz", + "integrity": "sha512-mKwmo4X2d8/4c/BmcOETHek675uOqw0RuA/zy12jaspWqvTp4+ZeQF1W+OTpcbncnaBsfbQJ6l0l4j+Sn/GmaQ==", "requires": { "dateformat": "~3.0.3", "eventemitter2": "~0.4.13",