From 17fc642f86b571354253a72adb2889ec8f1dd3db Mon Sep 17 00:00:00 2001 From: Md Khairul Islam Date: Sat, 27 Sep 2025 11:35:35 +0600 Subject: [PATCH] update basic structure --- _genonce.sh | 2 + _updatePublisher.bat | 15 +- _updatePublisher.sh | 17 +- ...nologyCapabilities...tx.fhir.org.r42.cache | 12222 ++++++++++++++++ input-cache/txcache/all-systems.cache | 645 +- input-cache/txcache/cs-externals.json | 9 +- .../http___not-a-known-code-system.cache | 53 +- input-cache/txcache/loinc.cache | 5538 ++++++- input-cache/txcache/mimetypes.cache | 391 + input-cache/txcache/servers.ini | 1 + input-cache/txcache/snomed.cache | 56 +- input-cache/txcache/ucum.cache | 135 +- ...-231f071a-56b9-47ca-8acb-2192bff20983.json | 1 + ...-451ccadb-a963-4381-b188-f997b6e38463.json | 1 + input-cache/txcache/vs-externals.json | 15 + input/fsh/codeSystems/valueSet.fsh | 0 input/fsh/patient-profile.fsh | 93 + local-template/content/.index.db | Bin 0 -> 12288 bytes local-template/content/.index.json | 4 + local-template/content/assets/.index.db | Bin 0 -> 12288 bytes local-template/content/assets/.index.json | 4 + .../content/assets/images/.index.db | Bin 0 -> 12288 bytes .../content/assets/images/.index.json | 4 + local-template/includes/.index.db | Bin 0 -> 12288 bytes local-template/includes/.index.json | 4 + local-template/package/.index.db | Bin 0 -> 12288 bytes local-template/package/.index.json | 4 + 27 files changed, 19201 insertions(+), 13 deletions(-) create mode 100644 input-cache/txcache/.terminologyCapabilities...tx.fhir.org.r42.cache create mode 100644 input-cache/txcache/mimetypes.cache create mode 100644 input-cache/txcache/vs-231f071a-56b9-47ca-8acb-2192bff20983.json create mode 100644 input-cache/txcache/vs-451ccadb-a963-4381-b188-f997b6e38463.json create mode 100644 input-cache/txcache/vs-externals.json create mode 100644 input/fsh/codeSystems/valueSet.fsh create mode 100644 input/fsh/patient-profile.fsh create mode 100644 local-template/content/.index.db create mode 100644 local-template/content/.index.json create mode 100644 local-template/content/assets/.index.db create mode 100644 local-template/content/assets/.index.json create mode 100644 local-template/content/assets/images/.index.db create mode 100644 local-template/content/assets/images/.index.json create mode 100644 local-template/includes/.index.db create mode 100644 local-template/includes/.index.json create mode 100644 local-template/package/.index.db create mode 100644 local-template/package/.index.json diff --git a/_genonce.sh b/_genonce.sh index 38efcb4..4f981f0 100755 --- a/_genonce.sh +++ b/_genonce.sh @@ -14,6 +14,8 @@ fi echo "$txoption" +export JAVA_TOOL_OPTIONS="$JAVA_TOOL_OPTIONS -Dfile.encoding=UTF-8" + publisher=$input_cache_path/$publisher_jar if test -f "$publisher"; then java -jar $publisher -ig . $txoption $* diff --git a/_updatePublisher.bat b/_updatePublisher.bat index 67aebf5..10fee38 100644 --- a/_updatePublisher.bat +++ b/_updatePublisher.bat @@ -8,6 +8,8 @@ SET input_cache_path=%CD%\input-cache\ SET skipPrompts=false SET scriptdlroot=https://raw.githubusercontent.com/HL7/ig-publisher-scripts/main +SET build_bat_url=%scriptdlroot%/_build.bat +SET build_sh_url=%scriptdlroot%/_build.sh SET update_bat_url=%scriptdlroot%/_updatePublisher.bat SET gen_bat_url=%scriptdlroot%/_genonce.bat SET gencont_bat_url=%scriptdlroot%/_gencontinuous.bat @@ -20,7 +22,7 @@ IF "%~1"=="/f" SET skipPrompts=y ECHO. ECHO Checking internet connection... -PING tx.fhir.org -4 -n 1 -w 1000 | FINDSTR TTL && GOTO isonline +PING tx.fhir.org -4 -n 1 -w 4000 | FINDSTR TTL && GOTO isonline ECHO We're offline, nothing to do... GOTO end @@ -69,6 +71,7 @@ IF DEFINED FORCE ( IF "%skipPrompts%"=="y" ( SET create=Y ) ELSE ( + ECHO Will place publisher jar here: %input_cache_path%%publisher_jar% SET /p create="Ok? (Y/N) " ) IF /I "%create%"=="Y" ( @@ -211,6 +214,16 @@ goto end start copy /y "_updatePublisher.new.bat" "_updatePublisher.bat" ^&^& del "_updatePublisher.new.bat" ^&^& exit +:dl_script_7 +ECHO Updating _build.bat +call POWERSHELL -command if ('System.Net.WebClient' -as [type]) {(new-object System.Net.WebClient).DownloadFile(\"%build_bat_url%\",\"_build.new.bat\") } else { Invoke-WebRequest -Uri "%update_bat_url%" -Outfile "_build.new.bat" } +if %ERRORLEVEL% == 0 goto upd_script_6 +echo "Errors encountered during download: %errorlevel%" +goto end +:upd_script_6 +start copy /y "_build.new.bat" "_build.bat" ^&^& del "_build.new.bat" ^&^& exit + + :end diff --git a/_updatePublisher.sh b/_updatePublisher.sh index f127f66..6a97fe0 100755 --- a/_updatePublisher.sh +++ b/_updatePublisher.sh @@ -12,6 +12,8 @@ gencont_bat_url=$scriptdlroot/_gencontinuous.bat gencont_sh_url=$scriptdlroot/_gencontinuous.sh gen_sh_url=$scriptdlroot/_genonce.sh update_sh_url=$scriptdlroot/_updatePublisher.sh +build_sh_url=$scriptdlroot/_build.sh +build_bat_url=$scriptdlroot/_build.bat skipPrompts=false FORCE=false @@ -103,6 +105,16 @@ if [[ $skipPrompts != true ]]; then if [[ $skipPrompts == true ]] || [[ $response =~ ^[yY].*$ ]]; then echo "Downloading most recent scripts " + curl -L $build_bat_url -o /tmp/_build.new + cp /tmp/_build.new _build.bat + rm /tmp/_build.new + + + curl -L $build_sh_url -o /tmp/_build.new + cp /tmp/_build.new _build.sh + chmod +x _build.sh + rm /tmp/_build.new + curl -L $update_bat_url -o /tmp/_updatePublisher.new cp /tmp/_updatePublisher.new _updatePublisher.bat rm /tmp/_updatePublisher.new @@ -117,13 +129,16 @@ if [[ $skipPrompts == true ]] || [[ $response =~ ^[yY].*$ ]]; then curl -L $gencont_sh_url -o /tmp/_gencontinuous.new cp /tmp/_gencontinuous.new _gencontinuous.sh + chmod +x _gencontinuous.sh rm /tmp/_gencontinuous.new curl -L $gen_sh_url -o /tmp/_genonce.new cp /tmp/_genonce.new _genonce.sh + chmod +x _genonce.sh rm /tmp/_genonce.new curl -L $update_sh_url -o /tmp/_updatePublisher.new cp /tmp/_updatePublisher.new _updatePublisher.sh + chmod +x _updatePublisher.sh rm /tmp/_updatePublisher.new -fi +fi \ No newline at end of file diff --git a/input-cache/txcache/.terminologyCapabilities...tx.fhir.org.r42.cache b/input-cache/txcache/.terminologyCapabilities...tx.fhir.org.r42.cache new file mode 100644 index 0000000..96c32a9 --- /dev/null +++ b/input-cache/txcache/.terminologyCapabilities...tx.fhir.org.r42.cache @@ -0,0 +1,12222 @@ +{ + "resourceType" : "TerminologyCapabilities", + "id" : "FhirServer", + "url" : "http://tx.fhir.org/r4/TerminologyCapabilities/tx", + "version" : "2.0.0", + "name" : "FHIRReferenceServerTerminologyCapabilities", + "title" : "FHIR Reference Server Terminology Capability Statement", + "status" : "active", + "date" : "2025-09-27T05:17:54.094Z", + "contact" : [{ + "telecom" : [{ + "system" : "other", + "value" : "http://healthintersections.com.au/" + }] + }], + "description" : "Standard Terminology Capability Statement for the open source Reference FHIR Server provided by Health Intersections", + "kind" : "instance", + "codeSystem" : [{ + "uri" : "http://cap.org/eCP", + "version" : [{ + "code" : "4.000.001" + }] + }, + { + "uri" : "http://cds-hooks.hl7.org/CodeSystem/indicator", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://devices.fhir.org/CodeSystem/MDC-concept-status" + }, + { + "uri" : "http://devices.fhir.org/CodeSystem/MDC-designation-use" + }, + { + "uri" : "http://dicom.nema.org/resources/ontology/DCM", + "version" : [{ + "code" : "01" + }] + }, + { + "uri" : "http://dicom.nema.org/resources/ontology/DCM", + "version" : [{ + "code" : "2025.3.20250714" + }] + }, + { + "uri" : "http://fdasis.nlm.nih.gov", + "version" : [{ + "code" : "2024-06-22" + }] + }, + { + "uri" : "http://healthit.gov/nhin/purposeofuse", + "version" : [{ + "code" : "2.0" + }] + }, + { + "uri" : "http://hl7.org/fhir/abstract-types", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/account-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/action-cardinality-behavior", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/action-condition-kind", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/action-grouping-behavior", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/action-participant-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/action-precheck-behavior", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/action-relationship-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/action-required-behavior", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/action-selection-behavior", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/additionalmaterials", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/address-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/address-use", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/administrative-gender", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/adverse-event-actuality", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/allergy-intolerance-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/allergy-intolerance-criticality", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/allergy-intolerance-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/animal-genderstatus", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/animal-species", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/appointmentstatus", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/assert-direction-codes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/assert-operator-codes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/assert-response-code-types", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/asset-availability", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/audit-event-action", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/audit-event-outcome", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/binding-strength", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/bundle-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/capability-statement-kind", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/care-plan-activity-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/care-team-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/chargeitem-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/claim-use", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/code-search-support", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/example", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/medicationrequest-intent", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/medicationrequest-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/medication-statement-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/medication-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/summary", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/task-code", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/codesystem-content-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/codesystem-hierarchy-meaning", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/compartment-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/composition-attestation-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/composition-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/concept-map-equivalence", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/conceptmap-unmapped-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/concept-properties", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/concept-property-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/concept-subsumption-outcome", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/conditional-delete-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/conditional-read-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/consent-data-meaning", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/consentperformer", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/consent-provision-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/consent-state-codes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/constraint-severity", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contact-point-system", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contact-point-use", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-action-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-asset-context", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-asset-scope", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-asset-subtype", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-asset-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-decision-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-definition-subtype", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-definition-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-expiration-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-legalstate", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-party-role", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-publicationstatus", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-scope", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-security-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-security-classification", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-security-control", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contract-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/contributor-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/data-types", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/days-of-week", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/definition-resource-types", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/detectedissue-severity", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/device-action", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/device-definition-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/device-nametype", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/device-statement-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/device-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/diagnostic-report-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/discriminator-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/document-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/document-reference-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/document-relationship-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/eligibilityrequest-purpose", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/eligibilityresponse-purpose", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/encounter-location-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/encounter-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/endpoint-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/episode-of-care-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/event-capability-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/event-resource-types", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/event-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/event-timing", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/examplescenario-actor-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/ex-claimitemtype", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/ex-fdi", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/ex-onsettype", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/ex-oralprostho", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/ex-pharmaservice", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/explanationofbenefit-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/exposure-state", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/expression-language", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/ex-servicemodifier", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/ex-serviceproduct", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/extension-context-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/extra-activity-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/ex-udi", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/feeding-device", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/FHIR-version", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/filter-operator", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/flag-priority-code", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/flag-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/fm-conditions", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/fm-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/gender-identity", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/goal-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/goal-status-reason", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/graph-compartment-rule", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/graph-compartment-use", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/group-measure", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/group-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/guidance-response-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/guide-page-generation", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/guide-parameter-code", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/history-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/http-operations", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/http-verb", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/identifier-use", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/identity-assuranceLevel", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/imagingstudy-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/intervention", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/invoice-priceComponentType", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/invoice-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/issue-severity", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/issue-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/item-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/knowledge-resource-types", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/language-preference-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/linkage-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/link-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/list-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/list-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/location-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/location-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/map-context-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/map-group-type-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/map-input-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/map-model-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/map-source-list-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/map-target-list-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/map-transform", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/measure-report-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/measure-report-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/message-events", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/messageheader-response-request", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/message-significance-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/metric-calibration-state", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/metric-calibration-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/metric-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/metric-color", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/metric-operational-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/name-use", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/namingsystem-identifier-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/namingsystem-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/narrative-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/network-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/note-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/observation-range-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/observation-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/operation-kind", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/operation-parameter-use", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/organization-role", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/orientation-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/participantrequired", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/participationstatus", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/permitted-data-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/practitioner-specialty", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/procedure-progress-status-code", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/product-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/product-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/product-storage-scale", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/property-representation", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/provenance-entity-role", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/provenance-participant-role", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/publication-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/quality-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/quantity-comparator", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-answers-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-display-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-enable-behavior", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-enable-operator", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-item-control", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/reaction-event-severity", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/reason-medication-not-given", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/reference-handling-policy", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/reference-version-rules", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/related-artifact-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/relationship", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/relation-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/remittance-outcome", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/report-action-result-codes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/report-participant-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/report-result-codes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/report-status-codes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/repository-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/request-intent", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/request-priority", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/request-resource-types", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/request-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/research-element-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/research-study-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/research-subject-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/resource-aggregation-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/resource-slicing-rules", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/resource-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/resource-types", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/resource-validation-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/response-code", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/restful-capability-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/restful-interaction", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/search-comparator", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/search-entry-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/search-modifier-code", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/search-param-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/search-xpath-usage", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/secondary-finding", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/sequence-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/sid/cvx", + "version" : [{ + "code" : "20250715" + }] + }, + { + "uri" : "http://hl7.org/fhir/sid/ex-icd-10-procedures", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/sid/icd-10", + "version" : [{ + "code" : "2019-covid-expanded" + }] + }, + { + "uri" : "http://hl7.org/fhir/sid/icd-10-cm", + "version" : [{ + "code" : "2024" + }] + }, + { + "uri" : "http://hl7.org/fhir/sid/icd-9-cm", + "version" : [{ + "code" : "2015" + }] + }, + { + "uri" : "http://hl7.org/fhir/sid/icf", + "version" : [{ + "code" : "2001a" + }] + }, + { + "uri" : "http://hl7.org/fhir/sid/icf", + "version" : [{ + "code" : "2017a" + }] + }, + { + "uri" : "http://hl7.org/fhir/sid/mvx", + "version" : [{ + "code" : "20201030" + }] + }, + { + "uri" : "http://hl7.org/fhir/sid/ndc" + }, + { + "uri" : "http://hl7.org/fhir/slotstatus", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/sort-direction", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/spdx-license", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/spdx-license", + "version" : [{ + "code" : "84728b7" + }] + }, + { + "uri" : "http://hl7.org/fhir/specimen-contained-preference", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/specimen-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/strand-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/structure-definition-kind", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/subscription-channel-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/subscription-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/substance-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/supplydelivery-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/supplyrequest-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/task-intent", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/task-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/transaction-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/trigger-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/type-derivation-rule", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/udi-entry-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/unknown-content-code", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/us/core/CodeSystem/careplan-category", + "version" : [{ + "code" : "8.0.0-ballot" + }] + }, + { + "uri" : "http://hl7.org/fhir/us/core/CodeSystem/condition-category", + "version" : [{ + "code" : "8.0.0-ballot" + }] + }, + { + "uri" : "http://hl7.org/fhir/us/core/CodeSystem/us-core-category", + "version" : [{ + "code" : "8.0.0-ballot" + }] + }, + { + "uri" : "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", + "version" : [{ + "code" : "8.0.0-ballot" + }] + }, + { + "uri" : "http://hl7.org/fhir/us/core/CodeSystem/us-core-provenance-participant-type", + "version" : [{ + "code" : "8.0.0-ballot" + }] + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/assemble-expectation", + "version" : [{ + "code" : "4.0.0-ballot" + }] + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/chf-codes", + "version" : [{ + "code" : "4.0.0-ballot" + }] + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/collapsible", + "version" : [{ + "code" : "4.0.0-ballot" + }] + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/CSPHQ9", + "version" : [{ + "code" : "4.0.0-ballot" + }] + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/entryMode", + "version" : [{ + "code" : "4.0.0-ballot" + }] + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/keyboardType", + "version" : [{ + "code" : "4.0.0-ballot" + }] + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/launchContext", + "version" : [{ + "code" : "4.0.0-ballot" + }] + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/observation-extract-relationship", + "version" : [{ + "code" : "4.0.0-ballot" + }] + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/questionnaire-answer-constraint", + "version" : [{ + "code" : "4.0.0-ballot" + }] + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/temp", + "version" : [{ + "code" : "4.0.0-ballot" + }] + }, + { + "uri" : "http://hl7.org/fhir/variable-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/versioning-policy", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/vision-base-codes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/vision-eye-codes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://hl7.org/fhir/w3c-provenance-activity-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", + "version" : [{ + "code" : "1.4.0" + }] + }, + { + "uri" : "http://loinc.org", + "version" : [{ + "code" : "2.81" + }] + }, + { + "uri" : "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl" + }, + { + "uri" : "http://nucc.org/provider-taxonomy", + "version" : [{ + "code" : "22.1" + }] + }, + { + "uri" : "http://radlex.org", + "version" : [{ + "code" : "4.1.0" + }] + }, + { + "uri" : "http://snomed.info/sct" + }, + { + "uri" : "http://snomed.info/sct", + "version" : [{ + "code" : "http://snomed.info/sct/11000146104/version/20240930" + }] + }, + { + "uri" : "http://snomed.info/sct", + "version" : [{ + "code" : "http://snomed.info/sct/11000172109/version/20231115" + }] + }, + { + "uri" : "http://snomed.info/sct", + "version" : [{ + "code" : "http://snomed.info/sct/2011000195101/version/20230607" + }] + }, + { + "uri" : "http://snomed.info/sct", + "version" : [{ + "code" : "http://snomed.info/sct/20611000087101/version/20220930" + }] + }, + { + "uri" : "http://snomed.info/sct", + "version" : [{ + "code" : "http://snomed.info/sct/32506021000036107/version/20230731" + }] + }, + { + "uri" : "http://snomed.info/sct", + "version" : [{ + "code" : "http://snomed.info/sct/45991000052106/version/20220531" + }] + }, + { + "uri" : "http://snomed.info/sct", + "version" : [{ + "code" : "http://snomed.info/sct/45991000052106/version/20231130" + }] + }, + { + "uri" : "http://snomed.info/sct", + "version" : [{ + "code" : "http://snomed.info/sct/554471000005108/version/20250331" + }] + }, + { + "uri" : "http://snomed.info/sct", + "version" : [{ + "code" : "http://snomed.info/sct/731000124108/version/20250301" + }] + }, + { + "uri" : "http://snomed.info/sct", + "version" : [{ + "code" : "http://snomed.info/sct/827022005/version/20241216" + }] + }, + { + "uri" : "http://snomed.info/sct", + "version" : [{ + "code" : "http://snomed.info/sct/83821000000107/version/20230412" + }] + }, + { + "uri" : "http://snomed.info/sct", + "version" : [{ + "code" : "http://snomed.info/sct/900000000000207008/version/20240201" + }] + }, + { + "uri" : "http://snomed.info/sct", + "version" : [{ + "code" : "http://snomed.info/sct/900000000000207008/version/20240801" + }] + }, + { + "uri" : "http://snomed.info/sct", + "version" : [{ + "code" : "http://snomed.info/sct/900000000000207008/version/20250201" + }] + }, + { + "uri" : "http://snomed.info/sct", + "version" : [{ + "code" : "http://snomed.info/xsct/900000000000207008/version/20250814" + }] + }, + { + "uri" : "http://standardterms.edqm.eu", + "version" : [{ + "code" : "5 February 2025" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/accepting-patients", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/action-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/action-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/activity-definition-category", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/activity-definition-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ADAToothSurfaceCodes", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ADAUniversalToothDesignationSystem", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adjudication", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adjudication", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adjudication-error", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adjudication-error", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adjudication-reason", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adjudication-reason", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/admit-source", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/admit-source", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-category", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-causality-assess", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-causality-assess", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-causality-method", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-causality-method", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-outcome", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-seriousness", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-seriousness", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-severity", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-severity", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/allerg-intol-substance-exp-risk", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/allerg-intol-substance-exp-risk", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/applicability", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/applicability", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/appointment-cancellation-reason", + "version" : [{ + "code" : "2.1.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/appointment-cancellation-reason", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/appropriateness-score", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/artifact-contribution-instance-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/artifact-identifier-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/artifact-relationship-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/artifact-url-classifier", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/artifact-version-policy-codes", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/attribute-estimate-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/audit-entity-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/audit-entity-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/audit-event-outcome", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/audit-event-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/audit-event-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/basic-resource-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/basic-resource-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-network", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-network", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-term", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-term", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-unit", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-unit", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/can-push-updates", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/can-push-updates", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/care-service-accessibility", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/catalogType", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/catalogType", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/cdshooks-indicator", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/certainty-rating", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/certainty-subcomponent-rating", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/certainty-subcomponent-rating", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/certainty-subcomponent-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/certainty-subcomponent-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/certainty-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/characteristic-method", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/chargeitem-billingcodes", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/chargeitem-billingcodes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/choice-list-orientation", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/choice-list-orientation", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/chromosome-human", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/chromosome-human", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/citation-artifact-classifier", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/citation-classification-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/citation-summary-style", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/cited-artifact-abstract-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/cited-artifact-classification-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/cited-artifact-contribution-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/cited-artifact-part-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/cited-artifact-status-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/cited-medium", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claimcareteamrole", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claimcareteamrole", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claim-exception", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claim-exception", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claim-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claim-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/codesystem-altcode-kind", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/codesystem-altcode-kind", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/common-tags", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/common-tags", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/communication-category", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/communication-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/communication-not-done-reason", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/communication-not-done-reason", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/communication-topic", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/communication-topic", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/composite-measure-scoring", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/composite-measure-scoring", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/composition-altcode-kind", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/composition-altcode-kind", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/conceptdomains", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-category", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-clinical", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-clinical", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-state", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-state", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-ver-status", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-ver-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/conformance-expectation", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/conformance-expectation", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentaction", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentaction", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentcategorycodes", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentcategorycodes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentpolicycodes", + "version" : [{ + "code" : "3.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentpolicycodes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentscope", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentscope", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentverification", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contactentity-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contactentity-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/container-cap", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/container-cap", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractaction", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractaction", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractactorrole", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractactorrole", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contract-content-derivative", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contract-content-derivative", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contract-data-meaning", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contract-data-meaning", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractsignertypecodes", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractsignertypecodes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractsubtypecodes", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractsubtypecodes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contracttermsubtypecodes", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contracttermsubtypecodes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contracttermtypecodes", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contracttermtypecodes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contract-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contract-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contributor-role", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contributor-summary-source", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contributor-summary-style", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contributor-summary-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/copy-number-event", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/copy-number-event", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverage-class", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverage-class", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverage-copay-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverage-copay-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverageeligibilityresponse-ex-auth-support", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverageeligibilityresponse-ex-auth-support", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverage-selfpay", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverage-selfpay", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/cql-access-modifier", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/data-absent-reason", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/data-absent-reason", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/definition-status", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/definition-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/definition-topic", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/definition-topic", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/definition-use", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/definition-use", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/devicealert-activationState", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/devicealert-priority", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/device-status-reason", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/device-status-reason", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/diagnosis-role", + "version" : [{ + "code" : "1.1.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/diagnosis-role", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/diagnosistype", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/dicom-audit-lifecycle", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/dicom-audit-lifecycle", + "version" : [{ + "code" : "20100826" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/diet", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/diet", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/directness", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/discharge-disposition", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/discharge-disposition", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/dose-rate-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/dose-rate-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/effect-estimate-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/encounter-special-arrangements", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/encounter-special-arrangements", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/encounter-subject-status", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/encounter-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/encounter-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/endpoint-connection-type", + "version" : [{ + "code" : "2.1.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/endpoint-connection-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/endpoint-payload-type", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/endpoint-payload-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/entformula-additive", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/entformula-additive", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/episodeofcare-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/episodeofcare-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/evidence-quality", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/evidence-quality", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/evidence-variant-state", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-claimsubtype", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-claimsubtype", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-coverage-financial-exception", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-coverage-financial-exception", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-diagnosis-on-admission", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-diagnosis-on-admission", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-diagnosisrelatedgroup", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-diagnosisrelatedgroup", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/expansion-parameter-source", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/expansion-parameter-source", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/expansion-processing-rule", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/expansion-processing-rule", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-payee-resource-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-payee-resource-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-paymenttype", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-paymenttype", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-procedure-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-procedure-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-programcode", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-programcode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-providerqualification", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-providerqualification", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-relatedclaimrelationship", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-relatedclaimrelationship", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-revenue-center", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-revenue-center", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-serviceplace", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-serviceplace", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-tooth", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-tooth", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/extra-security-role-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/extra-security-role-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-USCLS", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-USCLS", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-visionprescriptionproduct", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-visionprescriptionproduct", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/failure-action", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/failure-action", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/FDI-surface", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/FDI-surface", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/financialtaskcode", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/financialtaskcode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/financialtaskinputtype", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/financialtaskinputtype", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/flag-category", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/flag-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/forms-codes", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/forms-codes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/fundsreserve", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/fundsreserve", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-acceptance-status", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-acceptance-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-achievement", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-achievement", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-category", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-priority", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-priority", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-relationship-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-relationship-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/guide-parameter-code", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/handling-condition", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/handling-condition", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/history-absent-reason", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/history-absent-reason", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/hl7-document-format-codes", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/hl7TermMaintInfra", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/hl7-work-group", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/hl7-work-group", + "version" : [{ + "code" : "8.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/icd-o-3", + "version" : [{ + "code" : "2000" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ICHContextOfUse" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ILRSpeakingSkillScale", + "version" : [{ + "code" : "May 2021 Edition" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-evaluation-dose-status", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-evaluation-dose-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-evaluation-dose-status-reason", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-evaluation-dose-status-reason", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-funding-source", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-funding-source", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-origin", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-origin", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-program-eligibility", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-program-eligibility", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-recommendation-status", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-recommendation-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-subpotent-reason", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-subpotent-reason", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/implantStatus", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/implantStatus", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/insurance-coverage-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/insuranceplan-plan-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/insurance-plan-type", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/insurance-plan-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/insurance-product-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/iso-21089-lifecycle" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/iso-21089-lifecycle", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/library-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/library-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/list-empty-reason", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/list-empty-reason", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/list-example-use-codes", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/list-example-use-codes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/list-order", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/list-order", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/match-grade", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/match-grade", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-aggregate-method", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-data-usage", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-data-usage", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-improvement-notation", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-improvement-notation", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-population", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-population", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-scoring", + "version" : [{ + "code" : "4.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-scoring", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-supplemental-data", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-type", + "version" : [{ + "code" : "3.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/med-admin-perform-function", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/med-admin-perform-function", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/media-category", + "version" : [{ + "code" : "4.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/media-modality", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/media-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medical-management-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medication-admin-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medication-admin-location", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medication-admin-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationdispense-performer-function", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationdispense-performer-function", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationdispense-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-characteristic", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-characteristic", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-package-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-package-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-status", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-admin-location", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-category", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-status-reason", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-status-reason", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medication-statement-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medication-usage-admin-location", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/message-reasons-encounter", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/message-reasons-encounter", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/message-transport", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/missingtoothreason", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/missingtoothreason", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/modifiers", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/modifiers", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/name-assembly-order", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/name-assembly-order", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ndh-healthcare-service-category", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/need", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/need", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/nutrition-intake-category", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/object-role", + "version" : [{ + "code" : "1.1.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/object-role", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/observation-category", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/observation-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/observation-statistics", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/observation-statistics", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/operation-outcome", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/operation-outcome", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/organization-affiliation-role", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/organization-affiliation-role-for-hie", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/organization-alias-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/organization-type", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/organization-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/parameter-group", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/parameter-group", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/participant-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/participant-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/payeetype", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/payeetype", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/payment-adjustment-reason", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/payment-adjustment-reason", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/paymentstatus", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/paymentstatus", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/payment-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/payment-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/plan-definition-type", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/plan-definition-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/practitioner-role", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/practitioner-role", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/precision-estimate-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/primary-source-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/primary-source-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/procedure-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/processpriority", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/processpriority", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/professional-credential-status", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/program", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/program", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "version" : [{ + "code" : "1.1.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/published-in-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/push-type-available", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/push-type-available", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/question-max-occurs", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/question-max-occurs", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/questionnaire-usage-mode", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/questionnaire-usage-mode", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/reaction-event-certainty", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/reaction-event-certainty", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/reason-medication-given", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/reason-medication-given", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/recommendation-strength", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/recommendation-strength", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/referencerange-meaning", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/referencerange-meaning", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/rejection-criteria", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/rejection-criteria", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-objective-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-objective-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-phase", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-phase", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-prim-purp-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-prim-purp-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-reason-stopped", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-reason-stopped", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-subject-milestone", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-subject-state", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-subject-state-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/resource-security-category", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/resource-security-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/resource-type-link", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/resource-type-link", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/restful-security-service", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/risk-estimate-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/risk-probability", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/risk-probability", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/security-source-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/security-source-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-category", + "version" : [{ + "code" : "1.1.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-delivery-method", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-provision-conditions", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-provision-conditions", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-referral-method", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-referral-method", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-type", + "version" : [{ + "code" : "1.1.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/sex-parameter-for-clinical-use", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/smart-capabilities", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/smart-capabilities", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/software-system-type-codes", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/special-values", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/special-values", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/standards-status", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/standards-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/state-change-reason", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/statistic-model-code", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/statistic-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/study-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/study-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscriber-relationship", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscriber-relationship", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-channel-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-error", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-status-at-event", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-tag", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-tag", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/substance-category", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/substance-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/supply-item-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/supply-item-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/supply-kind", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/supply-kind", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/supplyrequest-reason", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/supplyrequest-reason", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/synthesis-type", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/synthesis-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/testscript-operation-codes", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/testscript-operation-codes", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/testscript-profile-destination-types", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/testscript-profile-destination-types", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/testscript-profile-origin-types", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/testscript-profile-origin-types", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/title-type", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/triggerEventID", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/usage-context-type", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/usage-context-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/utg-concept-properties", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0001", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0001", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0002", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0002", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0003", + "version" : [{ + "code" : "2.13.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0003", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0004", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0004", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0005", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0006", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0006", + "version" : [{ + "code" : "2.1|0006" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0006", + "version" : [{ + "code" : "2.4|0006" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0007", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0007", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0008", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0008", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0009", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0009", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0012", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0012", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0017", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0017", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0023", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0027", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0027", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0033", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0033", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0034", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0034", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0038", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0038", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0043", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0048", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0048", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0052", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0052", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0061", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0061", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0062", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0062", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0063", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0063", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0065", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0065", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0066", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0066", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0069", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0069", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0070", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0070", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0074", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0074", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0076", + "version" : [{ + "code" : "2.12.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0076", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0078", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0080", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0080", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0083", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0083", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0085", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0085", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0091", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0091", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0092", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0092", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0098", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0098", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0100", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0100", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0102", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0102", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0103", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0103", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0104", + "version" : [{ + "code" : "2.12.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0104", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0105", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0105", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0106", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0106", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0107", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0107", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0108", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0108", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0109", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0109", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0116", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0116", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0119", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0119", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0121", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0121", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0122", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0122", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0123", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0123", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0124", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0124", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0126", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0126", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0127", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0127", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0128", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0128", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0130", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0130", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0131", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0131", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0133", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0133", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0135", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0135", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0136", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0137", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0137", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0140", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0140", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0141", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0142", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0142", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0144", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0144", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0145", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0145", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0146", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0146", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0147", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0147", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0148", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0148", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0149", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0149", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0150", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0150", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0153", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0155", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0155", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0156", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0156", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0157", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0157", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0158", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0158", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0159", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0159", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0160", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0160", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0161", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0161", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0162", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0162", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0163", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0163", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0164", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0164", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0165", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0165", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0166", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0166", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0167", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0167", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0168", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0168", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0169", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0169", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0170", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0170", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0173", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0173", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0174", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0174", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0175", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0175", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0177", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0177", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0178", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0178", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0179", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0179", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0180", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0180", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0181", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0181", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0183", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0183", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0185", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0185", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0187", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0187", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0189", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0189", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0190", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0190", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0191", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0191", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0193", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0193", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0200", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0200", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0201", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0201", + "version" : [{ + "code" : "4.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0202", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0202", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "version" : [{ + "code" : "5.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0204", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0204", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0205", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0205", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0206", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0206", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0207", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0207", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0208", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0208", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0209", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0209", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0210", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0210", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0211", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0211", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0213", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0213", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0214", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0214", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0215", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0215", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0216", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0216", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0217", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0217", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0220", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0220", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0223", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0223", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0224", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0224", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0225", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0225", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0227", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0228", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0228", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0229", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0230", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0230", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0231", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0231", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0232", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0232", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0234", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0234", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0235", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0235", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0236", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0236", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0237", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0237", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0238", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0238", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0239", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0239", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0240", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0240", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0241", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0241", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0242", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0242", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0243", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0243", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0247", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0247", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0248", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0248", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0250", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0250", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0251", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0251", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0252", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0252", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0253", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0253", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0254", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0254", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0255", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0255", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0256", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0256", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0257", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0257", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0258", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0258", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0259", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0260", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0260", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0261", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0261", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0262", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0262", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0263", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0263", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0265", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0265", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0267", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0267", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0268", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0268", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0269", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0269", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0270", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0270", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0271", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0271", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0272", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0272", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0273", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0273", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0275", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0275", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0276", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0276", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0277", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0277", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0278", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0278", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0279", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0279", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0280", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0280", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0281", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0281", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0282", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0282", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0283", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0283", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0284", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0284", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0286", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0286", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0287", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0287", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0290", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0290", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0291", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0291", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0292", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0294", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0294", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0298", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0298", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0299", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0299", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0305", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0305", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0309", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0309", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0311", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0311", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0315", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0315", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0316", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0316", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0317", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0317", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0321", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0321", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0322", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0322", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0323", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0323", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0324", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0324", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0325", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0325", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0326", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0326", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0329", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0329", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0330", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0330", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0331", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0331", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0332", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0332", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0334", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0334", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0335", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0335", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0336", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0336", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0337", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0337", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0338", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0339", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0339", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0344", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0344", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0350", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0351", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0353", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0354", + "version" : [{ + "code" : "2.10.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0354", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0355", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0355", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0356", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0356", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0357", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0357", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0359", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0359", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0360", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0360", + "version" : [{ + "code" : "2.3.1|0360" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0360", + "version" : [{ + "code" : "2.7|0360" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0363", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0364", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0364", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0365", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0365", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0366", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0366", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0367", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0367", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0368", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0368", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0369", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0369", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0370", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0370", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0371", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0371", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0372", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0372", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0373", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0373", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0374", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0374", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0375", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0375", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0376", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0376", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0377", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0377", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0383", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0383", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0384", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0384", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0387", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0387", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0388", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0388", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0389", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0389", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0391", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0391", + "version" : [{ + "code" : "2.4|0391" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0391", + "version" : [{ + "code" : "2.6|0391" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0392", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0392", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0393", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0393", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0394", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0394", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0395", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0395", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0396", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0396", + "version" : [{ + "code" : "4.1.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0397", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0397", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0398", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0398", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0401", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0401", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0402", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0402", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0403", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0403", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0404", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0404", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0406", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0406", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0409", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0409", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0411", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0415", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0415", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0416", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0416", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0417", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0417", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0418", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0418", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0421", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0421", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0422", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0422", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0423", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0423", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0424", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0424", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0425", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0425", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0426", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0426", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0427", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0427", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0428", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0428", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0429", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0429", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0430", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0430", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0431", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0431", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0432", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0432", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0433", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0433", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0434", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0434", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0435", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0435", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0436", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0436", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0437", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0437", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0438", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0438", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0440", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0440", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0441", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0441", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0442", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0442", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0443", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0443", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0444", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0444", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0445", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0445", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0450", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0450", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0455", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0456", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0457", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0457", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0459", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0460", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0465", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0465", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0466", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0466", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0468", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0468", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0469", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0469", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0470", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0470", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0472", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0472", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0473", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0473", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0474", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0474", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0475", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0475", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0477", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0477", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0478", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0478", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0480", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0480", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0482", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0482", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0483", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0483", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0484", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0484", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0485", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0485", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0487", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0487", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0488", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0488", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0489", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0489", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0490", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0490", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0491", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0491", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0492", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0492", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0493", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0493", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0494", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0494", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0495", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0495", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0496", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0496", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0497", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0497", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0498", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0498", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0499", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0499", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0500", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0500", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0501", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0501", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0502", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0502", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0503", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0503", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0504", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0504", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0505", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0505", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0506", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0506", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0507", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0507", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0508", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0508", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0510", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0510", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0511", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0511", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0513", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0513", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0514", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0514", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0516", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0516", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0517", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0517", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0518", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0518", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0520", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0520", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0523", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0523", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0524", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0524", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0527", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0527", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0528", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0528", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0529", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0529", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0530", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0530", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0532", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0534", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0534", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0535", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0535", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0536", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0536", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0538", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0538", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0540", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0540", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0544", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0544", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0547", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0547", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0548", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0548", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0550", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0550", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0553", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0553", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0554", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0554", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0555", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0555", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0556", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0556", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0557", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0557", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0558", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0558", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0559", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0559", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0560", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0561", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0561", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0562", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0562", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0564", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0564", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0565", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0565", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0566", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0566", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0569", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0569", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0570", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0570", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0571", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0571", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0572", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0572", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0615", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0615", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0616", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0616", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0617", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0617", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0618", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0618", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0625", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0625", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0634", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0634", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0642", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0642", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0651", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0651", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0653", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0653", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0657", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0657", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0659", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0659", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0667", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0667", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0669", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0669", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0682", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0682", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0702", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0702", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0717", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0717", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0719", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0725", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0728", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0728", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0731", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0731", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0734", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0734", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0739", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0739", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0742", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0742", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0749", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0749", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0755", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0755", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0757", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0757", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0759", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0759", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0761", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0761", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0763", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0763", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0776", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0776", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0778", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0778", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0790", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0790", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0793", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0793", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0806", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0806", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0818", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0818", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0834", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0834", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0868", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0868", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0871", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0871", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0881", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0881", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0882", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0882", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0894", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0894", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0895", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0904", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0904", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0905", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0905", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0906", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0906", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0907", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0907", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0909", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0909", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0912", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0912", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0914", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0914", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0916", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0916", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0917", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0917", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0918", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0918", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0919", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0919", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0920", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0920", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0921", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0921", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0922", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0922", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0923", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0923", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0924", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0924", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0925", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0925", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0926", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0926", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0927", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0927", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0933", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0933", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0935", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0935", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0936", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0937", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0938", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0939", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0940", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0942", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0945", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0946", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0948", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0949", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0950", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0951", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0970", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0971", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-4000", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-4000", + "version" : [{ + "code" : "2.9" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-tables", + "version" : [{ + "code" : "6.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementCondition", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementCondition", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementDetailCode", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementDetailCode", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementDetailType", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementDetailType", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementType", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementType", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActClass", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActClass", + "version" : [{ + "code" : "4.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "version" : [{ + "code" : "9.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActExposureLevelCode", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActExposureLevelCode", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActInvoiceElementModifier", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActInvoiceElementModifier", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActMood", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActMood", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActPriority", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActPriority", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActReason", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActReason", + "version" : [{ + "code" : "3.1.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipCheckpoint", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipCheckpoint", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipJoin", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipJoin", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipSplit", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipSplit", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipSubset", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipSubset", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipType", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipType", + "version" : [{ + "code" : "4.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActSite", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActSite", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActStatus", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActStatus", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActUncertainty", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActUncertainty", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActUSPrivacyLaw", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActUSPrivacyLaw", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AddressPartType", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AddressPartType", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AddressUse", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AddressUse", + "version" : [{ + "code" : "3.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AmericanIndianAlaskaNativeLanguages", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AmericanIndianAlaskaNativeLanguages", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Calendar", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Calendar", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CalendarCycle", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CalendarCycle", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CalendarType", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CalendarType", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Charset", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Charset", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CodeSystem", + "version" : [{ + "code" : "2.2.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CodeSystemType", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CodingRationale", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CodingRationale", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CommunicationFunctionType", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CommunicationFunctionType", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CompressionAlgorithm", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CompressionAlgorithm", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ConceptCodeRelationship", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ConceptGenerality", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ConceptProperty", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ConceptStatus", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Confidentiality", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Confidentiality", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContainerCap", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContainerCap", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContainerSeparator", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContainerSeparator", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContentProcessingMode", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContentProcessingMode", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContextControl", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContextControl", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Country", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Currency", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DataOperation", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DataOperation", + "version" : [{ + "code" : "5.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DataType", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Dentition", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Dentition", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DeviceAlertLevel", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DeviceAlertLevel", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DocumentCompletion", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DocumentCompletion", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DocumentStorage", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DocumentStorage", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EditStatus", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EducationLevel", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EducationLevel", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EmployeeJobClass", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EmployeeJobClass", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterAccident", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterAcuity", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterAdmissionSource", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterAdmissionSource", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterReferralSource", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterSpecialCourtesy", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterSpecialCourtesy", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityClass", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityClass", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityCode", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityCode", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityDeterminer", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityDeterminer", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityHandling", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityHandling", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartQualifier", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartQualifier", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartQualifierR2", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartQualifierR2", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartType", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartType", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartTypeR2", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartTypeR2", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNameUse", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNameUse", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNameUseR2", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNameUseR2", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityRisk", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityRisk", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityStatus", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityStatus", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EquipmentAlertLevel", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EquipmentAlertLevel", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Ethnicity", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Ethnicity", + "version" : [{ + "code" : "4.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ExposureMode", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ExposureMode", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-GenderStatus", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-GenderStatus", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-GTSAbbreviation", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-GTSAbbreviation", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HealthcareProviderTaxonomyHIPAA", + "version" : [{ + "code" : "3.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7ApprovalStatus", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7ApprovalStatus", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7CMETAttribution", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7CMETAttribution", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7CommitteeIDInRIM", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7ConformanceInclusion", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7ContextConductionStyle", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7ContextConductionStyle", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7DefinedRoseProperty", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7DocumentFormatCodes", + "version" : [{ + "code" : "4.1.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7ITSType", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7ITSType", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7ITSVersionCode", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7ITSVersionCode", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7PublishingDomain", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7PublishingDomain", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7PublishingSection", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7PublishingSection", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7PublishingSubSection", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7PublishingSubSection", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7Realm", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7Realm", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7StandardVersionCode", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7StandardVersionCode", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7UpdateMode", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7UpdateMode", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7V3Conformance", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7V3Conformance", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7VoteResolution", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7VoteResolution", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HtmlLinkType", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HtmlLinkType", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-IdentifierReliability", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-IdentifierReliability", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-IdentifierScope", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-IdentifierScope", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-IntegrityCheckAlgorithm", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-IntegrityCheckAlgorithm", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ISO3166-1retired", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ISO3166-2retired", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ISO3166-3retired", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-iso4217-HL7", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityMode", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityMode", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityProficiency", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityProficiency", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LivingArrangement", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LivingArrangement", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LocalMarkupIgnore", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LocalMarkupIgnore", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LocalRemoteControlState", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LocalRemoteControlState", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ManagedParticipationStatus", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ManagedParticipationStatus", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ManufacturerModelNameExample", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MapRelationship", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MapRelationship", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MaterialForm", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MaterialType", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MDFAttributeType", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MdfHmdMetSourceType", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MdfHmdRowType", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MdfRmimRowType", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MDFSubjectAreaPrefix", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-mediaType", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MessageCondition", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MessageWaitingPriority", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MessageWaitingPriority", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ModifyIndicator", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ModifyIndicator", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationCategory", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationCategory", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationMethod", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationMethod", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationValue", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationValue", + "version" : [{ + "code" : "4.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-OrganizationNameType", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParameterizedDataType", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationFunction", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationFunction", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationMode", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationMode", + "version" : [{ + "code" : "4.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationSignature", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationSignature", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "version" : [{ + "code" : "5.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PatientImportance", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PatientImportance", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PaymentTerms", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PaymentTerms", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PersonDisabilityType", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PersonDisabilityType", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-policyHolderRole", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PostalAddressUse", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ProbabilityDistributionType", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ProbabilityDistributionType", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ProcessingID", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ProcessingID", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ProcessingMode", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ProcessingMode", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryParameterValue", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryParameterValue", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryPriority", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryPriority", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryQuantityUnit", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryRequestLimit", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryRequestLimit", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryResponse", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryResponse", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryStatusCode", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryStatusCode", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Race", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Race", + "version" : [{ + "code" : "4.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RelationalOperator", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RelationalOperator", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RelationshipConjunction", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RelationshipConjunction", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ReligiousAffiliation", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ReligiousAffiliation", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ResponseLevel", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ResponseLevel", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ResponseModality", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ResponseModality", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ResponseMode", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ResponseMode", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleClass", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleClass", + "version" : [{ + "code" : "4.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleLinkStatus", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleLinkStatus", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleLinkType", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleLinkType", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleStatus", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleStatus", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Sequencing", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Sequencing", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SetOperator", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SetOperator", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SoftwareNameExample", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SpecimenType", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SpecimenType", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-styleType", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-styleType", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-substanceAdminSubstitution", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-substanceAdminSubstitution", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SubstitutionCondition", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SubstitutionCondition", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableCellHorizontalAlign", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableCellHorizontalAlign", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableCellScope", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableCellScope", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableCellVerticalAlign", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableCellVerticalAlign", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableFrame", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableFrame", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableRules", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableRules", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TargetAwareness", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TargetAwareness", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TelecommunicationAddressUse", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TelecommunicationCapabilities", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TelecommunicationCapabilities", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TimingEvent", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TimingEvent", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TransmissionRelationshipTypeCode", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TransmissionRelationshipTypeCode", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TribalEntityUS", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TribalEntityUS", + "version" : [{ + "code" : "4.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-triggerEventID", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-URLScheme", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-VaccineManufacturer", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-VaccineManufacturer", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-VaccineType", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-VocabularyDomainQualifier", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-WorkClassificationODH", + "version" : [{ + "code" : "2018-08-12" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-WorkClassificationODH", + "version" : [{ + "code" : "3.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/validation-process", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/validation-process", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/validation-status", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/validation-status", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/validation-type", + "version" : [{ + "code" : "1.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/validation-type", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/variable-role", + "version" : [{ + "code" : "2.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/variable-role-subtype", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/variant-state", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/variant-state", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/verificationresult-communication-method", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/verificationresult-communication-method", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/virtual-healthcare-delivery-method", + "version" : [{ + "code" : "1.0.0" + }] + }, + { + "uri" : "http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-status-reason", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "http://unitsofmeasure.org", + "version" : [{ + "code" : "2.2" + }] + }, + { + "uri" : "http://unstats.un.org/unsd/methods/m49/m49.htm" + }, + { + "uri" : "http://varnomen.hgvs.org", + "version" : [{ + "code" : "2.0" + }] + }, + { + "uri" : "http://www.ada.org/snodent", + "version" : [{ + "code" : "2.1.0" + }] + }, + { + "uri" : "http://www.ama-assn.org/go/cpt", + "version" : [{ + "code" : "2023" + }] + }, + { + "uri" : "http://www.cms.gov/Medicare/Coding/ICD10", + "version" : [{ + "code" : "2.0.1" + }] + }, + { + "uri" : "http://www.nlm.nih.gov/research/umls/rxnorm", + "version" : [{ + "code" : "??" + }] + }, + { + "uri" : "http://www.whocc.no/atc", + "version" : [{ + "code" : "2025" + }] + }, + { + "uri" : "https://fhir-terminology.ohdsi.org", + "version" : [{ + "code" : "20240716" + }] + }, + { + "uri" : "https://nahdo.org/sopt", + "version" : [{ + "code" : "9.2" + }] + }, + { + "uri" : "https://www.cdc.gov/nhsn/cdaportal/terminology/codesystem/cdcnhsn.html", + "version" : [{ + "code" : "2023-04" + }] + }, + { + "uri" : "https://www.cdc.gov/nhsn/cdaportal/terminology/codesystem/hsloc.html", + "version" : [{ + "code" : "2022" + }] + }, + { + "uri" : "https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code_Set", + "version" : [{ + "code" : "20240502" + }] + }, + { + "uri" : "https://www.cms.gov/Medicare/Medicare-Fee-for-Service-Payment/HospitalAcqCond/Coding", + "version" : [{ + "code" : "07/14/2020" + }] + }, + { + "uri" : "https://www.humanservices.gov.au/organisations/health-professionals/enablers/air-vaccine-code-formats", + "version" : [{ + "code" : "20210222" + }] + }, + { + "uri" : "https://www.iana.org/time-zones", + "version" : [{ + "code" : "20210124" + }] + }, + { + "uri" : "https://www.usps.com/" + }, + { + "uri" : "urn:ietf:bcp:13" + }, + { + "uri" : "urn:ietf:bcp:47" + }, + { + "uri" : "urn:ietf:rfc:3986", + "version" : [{ + "code" : "n/a" + }] + }, + { + "uri" : "urn:iso:std:iso:11073:10101", + "version" : [{ + "code" : "2024-12-05" + }] + }, + { + "uri" : "urn:iso:std:iso:3166:-2", + "version" : [{ + "code" : "2021" + }] + }, + { + "uri" : "urn:iso:std:iso:3166", + "version" : [{ + "code" : "2018" + }] + }, + { + "uri" : "urn:iso:std:iso:3166", + "version" : [{ + "code" : "20210120" + }] + }, + { + "uri" : "urn:iso:std:iso:4217" + }, + { + "uri" : "urn:iso-astm:E1762-95:2013", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "urn:oid:1.2.36.1.2001.1001.101.104.16592", + "version" : [{ + "code" : "4.0.1" + }] + }, + { + "uri" : "urn:oid:1.2.36.1.2001.1005.17" + }, + { + "uri" : "urn:oid:2.16.840.1.113883.2.9.6.2.7", + "version" : [{ + "code" : "ISCO-08" + }] + }, + { + "uri" : "urn:oid:2.16.840.1.113883.3.1937.98.5.8" + }, + { + "uri" : "urn:oid:2.16.840.1.113883.6.238", + "version" : [{ + "code" : "1.2" + }] + }], + "expansion" : { + "parameter" : [{ + "name" : "cache-id", + "documentation" : "This server supports caching terminology resources between calls. Clients only need to send value sets and codesystems once; there after they are automatically in scope for calls with the same cache-id. The cache is retained for 30 min from last call" + }, + { + "name" : "tx-resource", + "documentation" : "Additional valuesets needed for evaluation e.g. value sets referred to from the import statement of the value set being expanded" + }, + { + "name" : "_incomplete" + }, + { + "name" : "abstract" + }, + { + "name" : "activeOnly" + }, + { + "name" : "check-system-version" + }, + { + "name" : "count" + }, + { + "name" : "default-to-latest-version" + }, + { + "name" : "displayLanguage" + }, + { + "name" : "excludeNested" + }, + { + "name" : "excludeNotForUI" + }, + { + "name" : "excludePostCoordinated" + }, + { + "name" : "force-system-version" + }, + { + "name" : "inactive" + }, + { + "name" : "includeAlternateCodes" + }, + { + "name" : "includeDefinition" + }, + { + "name" : "includeDesignations" + }, + { + "name" : "incomplete-ok" + }, + { + "name" : "limitedExpansion" + }, + { + "name" : "mode", + "documentation" : "=lenient-display-validation" + }, + { + "name" : "no-cache" + }, + { + "name" : "offset" + }, + { + "name" : "profile" + }, + { + "name" : "property" + }, + { + "name" : "system-version" + }, + { + "name" : "valueSetMode", + "documentation" : "= CHECK_MEMBERSHIP_ONLY | NO_MEMBERSHIP_CHECK" + }] + } +} \ No newline at end of file diff --git a/input-cache/txcache/all-systems.cache b/input-cache/txcache/all-systems.cache index 4c9b3fb..b3118db 100644 --- a/input-cache/txcache/all-systems.cache +++ b/input-cache/txcache/all-systems.cache @@ -503,7 +503,6 @@ v: { "code" : "001", "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", "server" : "http://tx.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -527,7 +526,6 @@ v: { "code" : "001", "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", "server" : "http://tx.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -570,6 +568,649 @@ v: { "code" : "001", "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", "server" : "http://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "code" : "001" + }] +}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "World", + "code" : "001", + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://example.org/some-system", + "code" : "01", + "display" : "keyword 1" +}, "url": "http://hl7.org/fhir/ValueSet/definition-use", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "code" : "01", + "system" : "http://example.org/some-system", + "severity" : "error", + "error" : "A definition for CodeSystem 'http://example.org/some-system' could not be found, so the code cannot be validated; The provided code 'http://example.org/some-system#01 ('keyword 1')' was not found in the value set 'http://hl7.org/fhir/ValueSet/definition-use|4.0.1'", + "class" : "UNKNOWN", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "http://example.org/some-system", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-message-id", + "valueString" : "UNKNOWN_CODESYSTEM" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "https://tx.fhir.org/r4" + }], + "severity" : "error", + "code" : "not-found", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "not-found" + }], + "text" : "A definition for CodeSystem 'http://example.org/some-system' could not be found, so the code cannot be validated" + }, + "location" : ["Coding.system"], + "expression" : ["Coding.system"] + }, + { + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-message-id", + "valueString" : "None_of_the_provided_codes_are_in_the_value_set_one" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "https://tx.fhir.org/r4" + }], + "severity" : "error", + "code" : "code-invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "not-in-vs" + }], + "text" : "The provided code 'http://example.org/some-system#01 ('keyword 1')' was not found in the value set 'http://hl7.org/fhir/ValueSet/definition-use|4.0.1'" + }, + "location" : ["Coding.code"], + "expression" : ["Coding.code"] + }] +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://example.org/some-system", + "code" : "01", + "display" : "keyword 2" +}, "url": "http://hl7.org/fhir/ValueSet/definition-use", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "code" : "01", + "system" : "http://example.org/some-system", + "severity" : "error", + "error" : "A definition for CodeSystem 'http://example.org/some-system' could not be found, so the code cannot be validated; The provided code 'http://example.org/some-system#01 ('keyword 2')' was not found in the value set 'http://hl7.org/fhir/ValueSet/definition-use|4.0.1'", + "class" : "UNKNOWN", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "http://example.org/some-system", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-message-id", + "valueString" : "UNKNOWN_CODESYSTEM" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "https://tx.fhir.org/r4" + }], + "severity" : "error", + "code" : "not-found", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "not-found" + }], + "text" : "A definition for CodeSystem 'http://example.org/some-system' could not be found, so the code cannot be validated" + }, + "location" : ["Coding.system"], + "expression" : ["Coding.system"] + }, + { + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-message-id", + "valueString" : "None_of_the_provided_codes_are_in_the_value_set_one" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "https://tx.fhir.org/r4" + }], + "severity" : "error", + "code" : "code-invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "not-in-vs" + }], + "text" : "The provided code 'http://example.org/some-system#01 ('keyword 2')' was not found in the value set 'http://hl7.org/fhir/ValueSet/definition-use|4.0.1'" + }, + "location" : ["Coding.code"], + "expression" : ["Coding.code"] + }] +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "text/cql" +}, "valueSet" :{ + "resourceType" : "ValueSet", + "compose" : { + "include" : [{ + "system" : "urn:ietf:bcp:13" + }] + } +}, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "text/cql", + "code" : "text/cql", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "text/cql" +}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "text/cql", + "code" : "text/cql", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "application/elm+xml" +}, "valueSet" :{ + "resourceType" : "ValueSet", + "compose" : { + "include" : [{ + "system" : "urn:ietf:bcp:13" + }] + } +}, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "application/elm+xml", + "code" : "application/elm+xml", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "application/elm+xml" +}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "application/elm+xml", + "code" : "application/elm+xml", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "application/elm+json" +}, "valueSet" :{ + "resourceType" : "ValueSet", + "compose" : { + "include" : [{ + "system" : "urn:ietf:bcp:13" + }] + } +}, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "application/elm+json", + "code" : "application/elm+json", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "application/elm+json" +}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "application/elm+json", + "code" : "application/elm+json", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "image/png" +}, "valueSet" :{ + "resourceType" : "ValueSet", + "compose" : { + "include" : [{ + "system" : "urn:ietf:bcp:13" + }] + } +}, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "image/png", + "code" : "image/png", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "image/png" +}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "image/png", + "code" : "image/png", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "text/x-sql" +}, "valueSet" :{ + "resourceType" : "ValueSet", + "compose" : { + "include" : [{ + "system" : "urn:ietf:bcp:13" + }] + } +}, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "text/x-sql", + "code" : "text/x-sql", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "text/x-sql" +}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "text/x-sql", + "code" : "text/x-sql", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "code" : "001" + }] +}, "url": "http://hl7.org/fhir/5.0/ValueSet/jurisdiction", "version": "5.0.0", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "World", + "code" : "001", + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-message-id", + "valueString" : "MSG_DEPRECATED" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "https://tx.fhir.org/r4" + }], + "severity" : "information", + "code" : "business-rule", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "status-check" + }], + "text" : "Reference to deprecated ValueSet http://hl7.org/fhir/5.0/ValueSet/jurisdiction|5.0.0" + } + }] +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "application/pdf" +}, "valueSet" :{ + "resourceType" : "ValueSet", + "compose" : { + "include" : [{ + "system" : "urn:ietf:bcp:13" + }] + } +}, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "application/pdf", + "code" : "application/pdf", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "application/pdf" +}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "application/pdf", + "code" : "application/pdf", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "image/jpeg" +}, "valueSet" :{ + "resourceType" : "ValueSet", + "compose" : { + "include" : [{ + "system" : "urn:ietf:bcp:13" + }] + } +}, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "image/jpeg", + "code" : "image/jpeg", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "image/jpeg" +}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "image/jpeg", + "code" : "image/jpeg", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "code" : "001" + }] +}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction", "version": "4.0.1", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "World", + "code" : "001", + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "server" : "https://tx.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" diff --git a/input-cache/txcache/cs-externals.json b/input-cache/txcache/cs-externals.json index 7294ebe..5cc1863 100644 --- a/input-cache/txcache/cs-externals.json +++ b/input-cache/txcache/cs-externals.json @@ -1,3 +1,10 @@ { - "http://not-a-known-code-system|2.36" : null + "http://not-a-known-code-system" : null, + "http://example.org/some-system|null" : null, + "urn:ietf:bcp:13|null" : null, + "http://unstats.un.org/unsd/methods/m49/m49.htm|null" : null, + "http://example.org/system/code/sections|null" : null, + "http://example.org/system/code/questions|null" : null, + "http://not-a-known-code-system|2.36" : null, + "http://example.org/some-id-type-system|null" : null } diff --git a/input-cache/txcache/http___not-a-known-code-system.cache b/input-cache/txcache/http___not-a-known-code-system.cache index 315a0a8..47c09fb 100644 --- a/input-cache/txcache/http___not-a-known-code-system.cache +++ b/input-cache/txcache/http___not-a-known-code-system.cache @@ -39,7 +39,6 @@ v: { "error" : "A definition for CodeSystem 'http://not-a-known-code-system' version '2.36' could not be found, so the code cannot be validated. Valid versions: []", "class" : "CODESYSTEM_UNSUPPORTED_VERSION", "server" : "http://tx.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -82,7 +81,6 @@ v: { "error" : "A definition for CodeSystem 'http://not-a-known-code-system' version '2.36' could not be found, so the code cannot be validated. Valid versions: []", "class" : "CODESYSTEM_UNSUPPORTED_VERSION", "server" : "http://tx.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -133,3 +131,54 @@ e: { "error" : "Error from http://tx.fhir.org/r4: Unable to provide support for code system http://not-a-known-code-system version 2.36" } ------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://not-a-known-code-system", + "version" : "2.36", + "code" : "not-known-code" +}, "valueSet" :null, "langs":"en, en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "exampleOK":"true", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "code" : "not-known-code", + "system" : "http://not-a-known-code-system", + "version" : "2.36", + "severity" : "error", + "error" : "A definition for CodeSystem 'http://not-a-known-code-system' version '2.36' could not be found, so the code cannot be validated. No versions of this code system are known", + "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "http://not-a-known-code-system", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-message-id", + "valueString" : "UNKNOWN_CODESYSTEM_VERSION_NONE" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "https://tx.fhir.org/r4" + }], + "severity" : "error", + "code" : "not-found", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "not-found" + }], + "text" : "A definition for CodeSystem 'http://not-a-known-code-system' version '2.36' could not be found, so the code cannot be validated. No versions of this code system are known" + }, + "location" : ["Coding.system"], + "expression" : ["Coding.system"] + }] +} + +} +------------------------------------------------------------------------------------- diff --git a/input-cache/txcache/loinc.cache b/input-cache/txcache/loinc.cache index 1c9bf82..7cf877f 100644 --- a/input-cache/txcache/loinc.cache +++ b/input-cache/txcache/loinc.cache @@ -213,7 +213,6 @@ v: { "system" : "http://loinc.org", "version" : "2.78", "server" : "http://tx.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -236,7 +235,6 @@ v: { "system" : "http://loinc.org", "version" : "2.78", "server" : "http://tx.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -259,7 +257,6 @@ v: { "system" : "http://loinc.org", "version" : "2.78", "server" : "http://tx.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -282,10 +279,5543 @@ v: { "system" : "http://loinc.org", "version" : "2.78", "server" : "http://tx.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } } ------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8480-6" +}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Systolic blood pressure", + "code" : "8480-6", + "system" : "http://loinc.org", + "version" : "2.81", + "server" : "https://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8462-4" +}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Diastolic blood pressure", + "code" : "8462-4", + "system" : "http://loinc.org", + "version" : "2.81", + "server" : "https://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8480-6" +}, "valueSet" :null, "langs":"de", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Systolischer Blutdruck", + "code" : "8480-6", + "system" : "http://loinc.org", + "version" : "2.81", + "server" : "https://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8462-4" +}, "valueSet" :null, "langs":"de", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Diastolischer Blutdruck", + "code" : "8462-4", + "system" : "http://loinc.org", + "version" : "2.81", + "server" : "https://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8480-6" +}, "valueSet" :null, "langs":"fr", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Systolic blood pressure", + "code" : "8480-6", + "system" : "http://loinc.org", + "version" : "2.81", + "server" : "https://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8462-4" +}, "valueSet" :null, "langs":"fr", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Diastolic blood pressure", + "code" : "8462-4", + "system" : "http://loinc.org", + "version" : "2.81", + "server" : "https://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "85354-9" +}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Blood pressure panel with all children optional", + "code" : "85354-9", + "system" : "http://loinc.org", + "version" : "2.81", + "server" : "https://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8480-6" +}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Systolic blood pressure", + "code" : "8480-6", + "system" : "http://loinc.org", + "version" : "2.81", + "server" : "https://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8462-4" +}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Diastolic blood pressure", + "code" : "8462-4", + "system" : "http://loinc.org", + "version" : "2.81", + "server" : "https://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "85354-9" +}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Blood pressure panel with all children optional", + "code" : "85354-9", + "system" : "http://loinc.org", + "version" : "2.81", + "server" : "https://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8480-6" +}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Systolic blood pressure", + "code" : "8480-6", + "system" : "http://loinc.org", + "version" : "2.81", + "server" : "https://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8462-4" +}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Diastolic blood pressure", + "code" : "8462-4", + "system" : "http://loinc.org", + "version" : "2.81", + "server" : "https://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "85354-9" +}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Blood pressure panel with all children optional", + "code" : "85354-9", + "system" : "http://loinc.org", + "version" : "2.81", + "server" : "https://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"hierarchical" : false, "valueSet" :{ + "resourceType" : "ValueSet", + "compose" : { + "inactive" : true, + "include" : [{ + "system" : "http://loinc.org" + }] + } +}}#### +e: { + "from-server" : true, + "error" : "Error from https://tx.fhir.org/r4: The value set '' expansion has too many codes to display (>10000)" +} +------------------------------------------------------------------------------------- +{"hierarchical" : false, "url": "http://hl7.org/fhir/ValueSet/observation-codes", "version": "4.0.1"}#### +e: { + "source" : tx.fhir.org, + "valueSet" : { + "resourceType" : "ValueSet", + "meta" : { + "lastUpdated" : "2019-11-01T09:29:23.356+11:00", + "profile" : ["http://hl7.org/fhir/StructureDefinition/shareablevalueset"] + }, + "url" : "http://hl7.org/fhir/ValueSet/observation-codes", + "identifier" : [{ + "system" : "urn:ietf:rfc:3986", + "value" : "urn:oid:2.16.840.1.113883.4.642.3.396" + }], + "version" : "4.0.1", + "name" : "LOINCCodes", + "title" : "LOINC Codes", + "status" : "draft", + "experimental" : false, + "date" : "2019-11-01T09:29:23+11:00", + "expansion" : { + "identifier" : "urn:uuid:065e3389-1aa8-40fd-afaa-e378baea3a98", + "timestamp" : "2025-09-27T05:21:43.750Z", + "offset" : 0, + "parameter" : [{ + "name" : "limitedExpansion", + "valueBoolean" : true + }, + { + "name" : "excludeNested", + "valueBoolean" : true + }, + { + "name" : "offset", + "valueInteger" : 0 + }, + { + "name" : "count", + "valueInteger" : 1000 + }, + { + "name" : "used-codesystem", + "valueUri" : "http://loinc.org|2.81" + }, + { + "name" : "version", + "valueUri" : "http://loinc.org|2.81" + }], + "contains" : [{ + "system" : "http://loinc.org", + "code" : "100000-9", + "display" : "Health informatics pioneer and the father of LOINC" + }, + { + "system" : "http://loinc.org", + "code" : "100001-7", + "display" : "Health informatics pioneer and cofounder of LOINC" + }, + { + "system" : "http://loinc.org", + "code" : "100002-5", + "display" : "Specimen care is maintained" + }, + { + "system" : "http://loinc.org", + "code" : "100003-3", + "display" : "Team communication is maintained throughout care" + }, + { + "system" : "http://loinc.org", + "code" : "100004-1", + "display" : "Demonstrates knowledge of the expected psychosocial responses to the procedure" + }, + { + "system" : "http://loinc.org", + "code" : "100005-8", + "display" : "Demonstrates knowledge of nutritional management related to the procedure" + }, + { + "system" : "http://loinc.org", + "code" : "100006-6", + "display" : "Demonstrates knowledge of medication management" + }, + { + "system" : "http://loinc.org", + "code" : "100007-4", + "display" : "Demonstrates knowledge of pain management" + }, + { + "system" : "http://loinc.org", + "code" : "10000-8", + "display" : "R wave duration in lead AVR" + }, + { + "system" : "http://loinc.org", + "code" : "100008-2", + "display" : "Demonstrates knowledge of wound management" + }, + { + "system" : "http://loinc.org", + "code" : "100009-0", + "display" : "Demonstrates knowledge of the procedure and expected results" + }, + { + "system" : "http://loinc.org", + "code" : "100010-8", + "display" : "No injury related to procedure equipment, medical supplies, or instrumentation" + }, + { + "system" : "http://loinc.org", + "code" : "100011-6", + "display" : "No injury related to an electrical source" + }, + { + "system" : "http://loinc.org", + "code" : "100012-4", + "display" : "Participates in decisions affecting the patient's plan of care" + }, + { + "system" : "http://loinc.org", + "code" : "100013-2", + "display" : "Participates in the discharge process" + }, + { + "system" : "http://loinc.org", + "code" : "100014-0", + "display" : "Psychosocial health is maintained at or improved from baseline" + }, + { + "system" : "http://loinc.org", + "code" : "100015-7", + "display" : "No injury related to positioning due to care or procedure" + }, + { + "system" : "http://loinc.org", + "code" : "10001-6", + "display" : "R wave duration in lead I" + }, + { + "system" : "http://loinc.org", + "code" : "100016-5", + "display" : "No injury related to a laser source" + }, + { + "system" : "http://loinc.org", + "code" : "100017-3", + "display" : "Perioperative nursing data set outcomes panel [PNDS]" + }, + { + "system" : "http://loinc.org", + "code" : "100018-1", + "display" : "Hospice care Note" + }, + { + "system" : "http://loinc.org", + "code" : "100019-9", + "display" : "ALK gene mutations found [Identifier] in Blood or Tissue by Molecular genetics method Nominal" + }, + { + "system" : "http://loinc.org", + "code" : "100020-7", + "display" : "GNA11 gene mutations found [Identifier] in Blood or Tissue by Molecular genetics method Nominal" + }, + { + "system" : "http://loinc.org", + "code" : "100021-5", + "display" : "GNAQ gene mutations found [Identifier] in Blood or Tissue by Molecular genetics method Nominal" + }, + { + "system" : "http://loinc.org", + "code" : "100022-3", + "display" : "IDH1 gene mutations found [Identifier] in Blood or Tissue by Molecular genetics method Nominal" + }, + { + "system" : "http://loinc.org", + "code" : "100023-1", + "display" : "IDH2 gene mutations found [Identifier] in Blood or Tissue by Molecular genetics method Nominal" + }, + { + "system" : "http://loinc.org", + "code" : "10002-4", + "display" : "R wave duration in lead II" + }, + { + "system" : "http://loinc.org", + "code" : "100024-9", + "display" : "SETBP1 gene mutations found [Identifier] in Blood or Tissue by Molecular genetics method Nominal" + }, + { + "system" : "http://loinc.org", + "code" : "100025-6", + "display" : "SRSF2 gene mutations found [Identifier] in Blood or Tissue by Molecular genetics method Nominal" + }, + { + "system" : "http://loinc.org", + "code" : "100026-4", + "display" : "MET gene mutations found [Identifier] in Blood or Tissue by Molecular genetics method Nominal" + }, + { + "system" : "http://loinc.org", + "code" : "100027-2", + "display" : "SMAD4 gene mutations found [Identifier] in Blood or Tissue by Molecular genetics method Nominal" + }, + { + "system" : "http://loinc.org", + "code" : "100028-0", + "display" : "FBXW7 gene mutations found [Identifier] in Blood or Tissue by Molecular genetics method Nominal" + }, + { + "system" : "http://loinc.org", + "code" : "100029-8", + "display" : "Cancer related multigene analysis in Plasma cell-free DNA by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100030-6", + "display" : "Axis I: Temporal aspects score [Mainz Pain Staging System]" + }, + { + "system" : "http://loinc.org", + "code" : "100031-4", + "display" : "Axis II: Spatial aspects score [Mainz Pain Staging System]" + }, + { + "system" : "http://loinc.org", + "code" : "10003-2", + "display" : "R wave duration in lead III" + }, + { + "system" : "http://loinc.org", + "code" : "100032-2", + "display" : "Axis III: Drug taking behavior score [Mainz Pain Staging System]" + }, + { + "system" : "http://loinc.org", + "code" : "100033-0", + "display" : "Axis IV: Utilization of the health care system score [Mainz Pain Staging System]" + }, + { + "system" : "http://loinc.org", + "code" : "100034-8", + "display" : "Provider of automated external defibrillator use" + }, + { + "system" : "http://loinc.org", + "code" : "100035-5", + "display" : "Exam finding location of Chest" + }, + { + "system" : "http://loinc.org", + "code" : "100036-3", + "display" : "Exam finding location of Lung" + }, + { + "system" : "http://loinc.org", + "code" : "100037-1", + "display" : "Patient contact disposition EMS unit" + }, + { + "system" : "http://loinc.org", + "code" : "100038-9", + "display" : "Patient evaluation disposition EMS unit" + }, + { + "system" : "http://loinc.org", + "code" : "100039-7", + "display" : "Crew disposition for patient care EMS unit" + }, + { + "system" : "http://loinc.org", + "code" : "10004-0", + "display" : "R wave duration in lead V1" + }, + { + "system" : "http://loinc.org", + "code" : "100040-5", + "display" : "Patient transport disposition EMS unit" + }, + { + "system" : "http://loinc.org", + "code" : "100041-3", + "display" : "Aminoglycoside [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100042-1", + "display" : "Atovaquone [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100043-9", + "display" : "Azithromycin+Ethambutol [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100044-7", + "display" : "Cefcapene [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100045-4", + "display" : "Cefozopran [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100046-2", + "display" : "Cefquinome [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100047-0", + "display" : "Cefteram [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100048-8", + "display" : "Clarithromycin+Ethambutol [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100049-6", + "display" : "Eravacycline [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100050-4", + "display" : "Erythromycin+Ethambutol [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100051-2", + "display" : "Ethambutol+rifAMPin [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100052-0", + "display" : "Flomoxef [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100053-8", + "display" : "Fluoroquinolone [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100054-6", + "display" : "Gamithromycin [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100055-3", + "display" : "Optochin [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100056-1", + "display" : "Panipenem [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "10005-7", + "display" : "R wave duration in lead V2" + }, + { + "system" : "http://loinc.org", + "code" : "100057-9", + "display" : "Prothionamide [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100058-7", + "display" : "Prulifloxacin [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100059-5", + "display" : "Rifapentine [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100060-3", + "display" : "Tildipirosin [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100061-1", + "display" : "Tosufloxacin [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100062-9", + "display" : "Standard Dermatology Outcome Measures panel" + }, + { + "system" : "http://loinc.org", + "code" : "100063-7", + "display" : "Primary skin concern" + }, + { + "system" : "http://loinc.org", + "code" : "100064-5", + "display" : "Itch severity Reporting Period - Reported" + }, + { + "system" : "http://loinc.org", + "code" : "10006-5", + "display" : "R wave duration in lead V3" + }, + { + "system" : "http://loinc.org", + "code" : "100065-2", + "display" : "Satisfied with treatment" + }, + { + "system" : "http://loinc.org", + "code" : "100066-0", + "display" : "Specular microscopy panel" + }, + { + "system" : "http://loinc.org", + "code" : "100067-8", + "display" : "Eye Image magnification" + }, + { + "system" : "http://loinc.org", + "code" : "100068-6", + "display" : "Right eye Fixation point [Angle]" + }, + { + "system" : "http://loinc.org", + "code" : "100069-4", + "display" : "Left eye Fixation point [Angle]" + }, + { + "system" : "http://loinc.org", + "code" : "100070-2", + "display" : "Right cornea Cell density" + }, + { + "system" : "http://loinc.org", + "code" : "100071-0", + "display" : "Left cornea Cell density" + }, + { + "system" : "http://loinc.org", + "code" : "100072-8", + "display" : "Right cornea Coefficient of variation" + }, + { + "system" : "http://loinc.org", + "code" : "10007-3", + "display" : "R wave duration in lead V4" + }, + { + "system" : "http://loinc.org", + "code" : "100073-6", + "display" : "Left cornea Coefficient of variation" + }, + { + "system" : "http://loinc.org", + "code" : "100074-4", + "display" : "Right cornea Hexagonality" + }, + { + "system" : "http://loinc.org", + "code" : "100075-1", + "display" : "Left cornea Hexagonality" + }, + { + "system" : "http://loinc.org", + "code" : "100076-9", + "display" : "Right cornea Endothelial cells counted" + }, + { + "system" : "http://loinc.org", + "code" : "100077-7", + "display" : "Left cornea Endothelial cells counted" + }, + { + "system" : "http://loinc.org", + "code" : "100078-5", + "display" : "Right cornea Endothelial cell area.min" + }, + { + "system" : "http://loinc.org", + "code" : "100079-3", + "display" : "Left cornea Endothelial cell area.min" + }, + { + "system" : "http://loinc.org", + "code" : "100080-1", + "display" : "Right cornea Endothelial cell area.max" + }, + { + "system" : "http://loinc.org", + "code" : "10008-1", + "display" : "R wave duration in lead V5" + }, + { + "system" : "http://loinc.org", + "code" : "100081-9", + "display" : "Left cornea Endothelial cell area.max" + }, + { + "system" : "http://loinc.org", + "code" : "100082-7", + "display" : "Right cornea Endothelial cell area.mean" + }, + { + "system" : "http://loinc.org", + "code" : "100083-5", + "display" : "Left cornea Endothelial cell area.mean" + }, + { + "system" : "http://loinc.org", + "code" : "100084-3", + "display" : "Right cornea Cell area.standard deviation" + }, + { + "system" : "http://loinc.org", + "code" : "100085-0", + "display" : "Left cornea Cell area.standard deviation" + }, + { + "system" : "http://loinc.org", + "code" : "100086-8", + "display" : "Right cornea Type of Analysis method by Specular microscopy" + }, + { + "system" : "http://loinc.org", + "code" : "100087-6", + "display" : "Toxocara canis 24-35kD IgG Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100088-4", + "display" : "Taenia solium larva Ab bands panel - Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100089-2", + "display" : "Taenia solium larva 6-8kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "1000-9", + "display" : "DBG Ab [Presence] in Serum or Plasma from Blood product unit" + }, + { + "system" : "http://loinc.org", + "code" : "100090-0", + "display" : "Taenia solium larva 45kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100091-8", + "display" : "Trypanosoma cruzi Ab [Units/volume] in Serum by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100092-6", + "display" : "Trypanosoma cruzi Ab bands panel - Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100093-4", + "display" : "Trypanosoma cruzi 15-16kD IgG Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100094-2", + "display" : "Trypanosoma cruzi 21-22kD IgG Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100095-9", + "display" : "Trypanosoma cruzi 27-28kD IgG Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100096-7", + "display" : "Trypanosoma cruzi 42kD IgG Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100097-5", + "display" : "Trypanosoma cruzi 45-47kD IgG Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100098-3", + "display" : "Trypanosoma cruzi 120-200kD IgG Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "10009-9", + "display" : "R wave duration in lead V6" + }, + { + "system" : "http://loinc.org", + "code" : "100099-1", + "display" : "Trypanosoma cruzi 160kD IgG Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100100-7", + "display" : "Fasciola sp IgG Ab [Presence] in Serum by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100101-5", + "display" : "Fasciola sp 8-9kD IgG Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100102-3", + "display" : "Fasciola sp 27-28kD IgG Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100103-1", + "display" : "Fasciola sp 60kD IgG Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100104-9", + "display" : "Fasciola sp 42kD IgG Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100105-6", + "display" : "Filaria IgG and IgM panel - Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100106-4", + "display" : "Filaria IgG Ab [Presence] in Serum by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "10010-7", + "display" : "R' wave amplitude in lead AVF" + }, + { + "system" : "http://loinc.org", + "code" : "100107-2", + "display" : "Leishmania sp IgG Ab [Presence] in Serum by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100108-0", + "display" : "Leishmania sp IgG Ab [Units/volume] in Serum by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100109-8", + "display" : "Leishmania sp Ab bands panel - Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100110-6", + "display" : "Leishmania sp 14kD IgG Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100111-4", + "display" : "Leishmania sp 16kD IgG Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100112-2", + "display" : "Fasciola sp Ab bands panel - Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100113-0", + "display" : "Helicobacter pylori Ab panel - Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100114-8", + "display" : "Toxoplasma gondii 30kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "10011-5", + "display" : "R' wave amplitude in lead AVL" + }, + { + "system" : "http://loinc.org", + "code" : "100115-5", + "display" : "Toxoplasma gondii 31kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100116-3", + "display" : "Toxoplasma gondii 33kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100117-1", + "display" : "Toxoplasma gondii 40kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100118-9", + "display" : "Toxoplasma gondii 41kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100119-7", + "display" : "Toxoplasma gondii 45kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100120-5", + "display" : "Chlamydia trachomatis Ab panel - Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100121-3", + "display" : "Chlamydia trachomatis IgA Ab [Presence] in Serum by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100122-1", + "display" : "Chlamydophila pneumoniae Ab panel - Serum" + }, + { + "system" : "http://loinc.org", + "code" : "10012-3", + "display" : "R' wave amplitude in lead AVR" + }, + { + "system" : "http://loinc.org", + "code" : "100123-9", + "display" : "Chlamydophila pneumoniae IgA Ab [Presence] in Serum by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100124-7", + "display" : "Chlamydophila pneumoniae IgA Ab [Units/volume] in Serum by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100125-4", + "display" : "Chlamydophila psittaci Ab panel - Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100126-2", + "display" : "Bordetella pertussis Ab.IgG panel - Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100127-0", + "display" : "Campylobacter sp Ab panel - Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100128-8", + "display" : "Cryptococcus sp Ag panel - Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100129-6", + "display" : "Schistosoma sp Ab [Titer] in Serum by Hemagglutination" + }, + { + "system" : "http://loinc.org", + "code" : "100130-4", + "display" : "Schistosoma mansoni Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "10013-1", + "display" : "R' wave amplitude in lead I" + }, + { + "system" : "http://loinc.org", + "code" : "100131-2", + "display" : "Schistosoma sp 8kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100132-0", + "display" : "Schistosoma sp 9kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100133-8", + "display" : "Schistosoma sp 10kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100134-6", + "display" : "Schistosoma sp 11kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100135-3", + "display" : "Schistosoma sp 12-13kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100136-1", + "display" : "Schistosoma sp 14-15kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100137-9", + "display" : "Schistosoma sp 15-16kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100138-7", + "display" : "Schistosoma sp 18-19kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100139-5", + "display" : "Schistosoma sp 22-24kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100140-3", + "display" : "Schistosoma sp 30-34kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100141-1", + "display" : "Schistosoma sp 65kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100142-9", + "display" : "Schistosoma sp 70kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100143-7", + "display" : "Schistosoma sp 80kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100144-5", + "display" : "Schistosoma sp 95kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100145-2", + "display" : "Schistosoma sp 110kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100146-0", + "display" : "Schistosoma sp 120kD Ab [Presence] in Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100147-8", + "display" : "Toxoplasma gondii Ab bands panel - Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "100148-6", + "display" : "Schistosoma sp Ab bands panel - Serum by Immunoblot" + }, + { + "system" : "http://loinc.org", + "code" : "10014-9", + "display" : "R' wave amplitude in lead II" + }, + { + "system" : "http://loinc.org", + "code" : "100149-4", + "display" : "6-oxo-piperidine-2-carboxylate and 6(R+S)-oxo-propylpiperidine-2-carboxylate panel - Urine and Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100150-2", + "display" : "6(R+S)-oxo-propylpiperidine-2-carboxylate [Moles/volume] in Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100151-0", + "display" : "6-oxo-piperidine-2-carboxylate [Moles/volume] in Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100152-8", + "display" : "6-oxo-piperidine-2-carboxylate/Creatinine [Molar ratio] in Urine" + }, + { + "system" : "http://loinc.org", + "code" : "100153-6", + "display" : "6(R+S)-oxo-propylpiperidine-2-carboxylate/Creatinine [Molar ratio] in Urine" + }, + { + "system" : "http://loinc.org", + "code" : "100154-4", + "display" : "Specimen collection supervision level" + }, + { + "system" : "http://loinc.org", + "code" : "100155-1", + "display" : "Left cornea Type of Analysis method by Specular microscopy" + }, + { + "system" : "http://loinc.org", + "code" : "10015-6", + "display" : "R' wave amplitude in lead III" + }, + { + "system" : "http://loinc.org", + "code" : "100156-9", + "display" : "SARS-CoV-2 (COVID-19) variant [Type] in Specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100157-7", + "display" : "SARS-CoV-2 (COVID-19) lineage [Type] in Specimen by Sequencing" + }, + { + "system" : "http://loinc.org", + "code" : "100158-5", + "display" : "Microalbumin [Mass/volume] in Urine collected for unspecified duration" + }, + { + "system" : "http://loinc.org", + "code" : "100159-3", + "display" : "Knee Society Score pre-op panel [Knee Society Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100160-1", + "display" : "Knee replacement" + }, + { + "system" : "http://loinc.org", + "code" : "100161-9", + "display" : "Charnley Functional Classification" + }, + { + "system" : "http://loinc.org", + "code" : "100162-7", + "display" : "Knee alignment W standing X-ray measured" + }, + { + "system" : "http://loinc.org", + "code" : "100163-5", + "display" : "Knee medial AndOr lateral instability W full extension" + }, + { + "system" : "http://loinc.org", + "code" : "10016-4", + "display" : "R' wave amplitude in lead V1" + }, + { + "system" : "http://loinc.org", + "code" : "100164-3", + "display" : "Knee AP instability W 90 degree flexion" + }, + { + "system" : "http://loinc.org", + "code" : "100165-0", + "display" : "Knee range of motion" + }, + { + "system" : "http://loinc.org", + "code" : "100166-8", + "display" : "Flexion contracture range of Knee" + }, + { + "system" : "http://loinc.org", + "code" : "100167-6", + "display" : "Extensor lag range of Knee" + }, + { + "system" : "http://loinc.org", + "code" : "100168-4", + "display" : "Knee pain severity with level walking" + }, + { + "system" : "http://loinc.org", + "code" : "100169-2", + "display" : "Knee pain severity with stairs or inclines" + }, + { + "system" : "http://loinc.org", + "code" : "1001-7", + "display" : "DBG Ab [Presence] in Serum or Plasma from Donor" + }, + { + "system" : "http://loinc.org", + "code" : "100170-0", + "display" : "Knee feels normal" + }, + { + "system" : "http://loinc.org", + "code" : "100171-8", + "display" : "Satisfaction with level of knee pain while sitting" + }, + { + "system" : "http://loinc.org", + "code" : "10017-2", + "display" : "R' wave amplitude in lead V2" + }, + { + "system" : "http://loinc.org", + "code" : "100172-6", + "display" : "Satisfaction with level of knee pain while lying in bed" + }, + { + "system" : "http://loinc.org", + "code" : "100173-4", + "display" : "Satisfaction with knee function while getting out of bed" + }, + { + "system" : "http://loinc.org", + "code" : "100174-2", + "display" : "Satisfaction with knee function while performing light household duties" + }, + { + "system" : "http://loinc.org", + "code" : "100175-9", + "display" : "Satisfaction with knee function while performing recreational activities" + }, + { + "system" : "http://loinc.org", + "code" : "100176-7", + "display" : "Expect surgery to relieve pain" + }, + { + "system" : "http://loinc.org", + "code" : "100177-5", + "display" : "Expect surgery will improve ability to perform activities of daily living" + }, + { + "system" : "http://loinc.org", + "code" : "100178-3", + "display" : "Expect surgery will improve ability to perform leisure, recreational, or sports activities" + }, + { + "system" : "http://loinc.org", + "code" : "100179-1", + "display" : "Walk without assistive mobility devices" + }, + { + "system" : "http://loinc.org", + "code" : "10018-0", + "display" : "R' wave amplitude in lead V3" + }, + { + "system" : "http://loinc.org", + "code" : "100180-9", + "display" : "Assistive mobility devices used" + }, + { + "system" : "http://loinc.org", + "code" : "100181-7", + "display" : "Assistive mobility devices used due to health condition" + }, + { + "system" : "http://loinc.org", + "code" : "100182-5", + "display" : "Duration of standing before sitting due to knee discomfort" + }, + { + "system" : "http://loinc.org", + "code" : "100183-3", + "display" : "Duration of walking before stopping due to knee discomfort" + }, + { + "system" : "http://loinc.org", + "code" : "100184-1", + "display" : "How bothersome is knee when walking on an uneven surface" + }, + { + "system" : "http://loinc.org", + "code" : "100185-8", + "display" : "How bothersome is knee when turning or pivoting leg" + }, + { + "system" : "http://loinc.org", + "code" : "100186-6", + "display" : "How bothersome is knee when climbing up or down a flight of stairs" + }, + { + "system" : "http://loinc.org", + "code" : "100187-4", + "display" : "How bothersome is knee when getting up from a low seat without armrests" + }, + { + "system" : "http://loinc.org", + "code" : "100188-2", + "display" : "How bothersome is knee when getting into or out of a car" + }, + { + "system" : "http://loinc.org", + "code" : "100189-0", + "display" : "How bothersome is knee when moving laterally" + }, + { + "system" : "http://loinc.org", + "code" : "100190-8", + "display" : "How bothersome is knee when climbing a ladder or step stool" + }, + { + "system" : "http://loinc.org", + "code" : "100191-6", + "display" : "How bothersome is knee when carrying a bag for one block" + }, + { + "system" : "http://loinc.org", + "code" : "100192-4", + "display" : "How bothersome is knee when squatting" + }, + { + "system" : "http://loinc.org", + "code" : "100193-2", + "display" : "How bothersome is knee when kneeling" + }, + { + "system" : "http://loinc.org", + "code" : "100194-0", + "display" : "How bothersome is knee when running" + }, + { + "system" : "http://loinc.org", + "code" : "100195-7", + "display" : "Pain severity--during activity" + }, + { + "system" : "http://loinc.org", + "code" : "100196-5", + "display" : "Pre-op total score [Knee Society Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100197-3", + "display" : "Exercise activity and pain severity panel" + }, + { + "system" : "http://loinc.org", + "code" : "10019-8", + "display" : "R' wave amplitude in lead V4" + }, + { + "system" : "http://loinc.org", + "code" : "100198-1", + "display" : "Pre-op objective knee indicators score [Knee Society Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100199-9", + "display" : "Pre-op symptoms score [Knee Society Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100200-5", + "display" : "Pre-op patient expectations score [Knee Society Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100201-3", + "display" : "Pre-op functional activities score [Knee Society Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100202-1", + "display" : "Pre-op discretionary knee activities score [Knee Society Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100203-9", + "display" : "Knee Society Score post-op panel [Knee Society Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100204-7", + "display" : "Accuracy of pre-surgery expectations of pain relief" + }, + { + "system" : "http://loinc.org", + "code" : "100205-4", + "display" : "Accuracy of pre-surgery expectations to perform activities of daily living" + }, + { + "system" : "http://loinc.org", + "code" : "10020-6", + "display" : "R' wave amplitude in lead V5" + }, + { + "system" : "http://loinc.org", + "code" : "100206-2", + "display" : "Accuracy of pre-surgery expectations to perform leisure, recreational, or sports activities" + }, + { + "system" : "http://loinc.org", + "code" : "100207-0", + "display" : "Post-op total score [Knee Society Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100208-8", + "display" : "Post-op objective knee indicators score [Knee Society Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100209-6", + "display" : "Post-op symptoms score [Knee Society Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100210-4", + "display" : "Post-op patient expectations score [Knee Society Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100211-2", + "display" : "Post-op functional activities score [Knee Society Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100212-0", + "display" : "Post-op discretionary knee activities score [Knee Society Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100213-8", + "display" : "Prostate cancer multigene analysis in Blood or Tissue by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "10021-4", + "display" : "R' wave amplitude in lead V6" + }, + { + "system" : "http://loinc.org", + "code" : "100214-6", + "display" : "Dental model prior authorization Document" + }, + { + "system" : "http://loinc.org", + "code" : "100215-3", + "display" : "Episode of care medical records Document Transplant surgery" + }, + { + "system" : "http://loinc.org", + "code" : "100216-1", + "display" : "Surgical synoptic report" + }, + { + "system" : "http://loinc.org", + "code" : "100217-9", + "display" : "Synoptic report Document Surgical oncology" + }, + { + "system" : "http://loinc.org", + "code" : "100218-7", + "display" : "Surgical oncology of colon cancer synoptic report" + }, + { + "system" : "http://loinc.org", + "code" : "100219-5", + "display" : "Surgical oncology of melanoma cancer synoptic report" + }, + { + "system" : "http://loinc.org", + "code" : "100220-3", + "display" : "Surgical oncology of breast cancer synoptic report" + }, + { + "system" : "http://loinc.org", + "code" : "100221-1", + "display" : "Surgical oncology of thyroid cancer synoptic report" + }, + { + "system" : "http://loinc.org", + "code" : "10022-2", + "display" : "R' wave duration in lead AVF" + }, + { + "system" : "http://loinc.org", + "code" : "100222-9", + "display" : "Surgical oncology of pancreas cancer synoptic report" + }, + { + "system" : "http://loinc.org", + "code" : "100223-7", + "display" : "Physical findings of Retina Narrative" + }, + { + "system" : "http://loinc.org", + "code" : "100224-5", + "display" : "Cardiac left ventricular segmental wall motion by echo panel" + }, + { + "system" : "http://loinc.org", + "code" : "100225-2", + "display" : "Bone density quantitative ultrasound study" + }, + { + "system" : "http://loinc.org", + "code" : "100226-0", + "display" : "Small bowel capsule endoscopy study Document" + }, + { + "system" : "http://loinc.org", + "code" : "100227-8", + "display" : "Colon capsule endoscopy study Document" + }, + { + "system" : "http://loinc.org", + "code" : "100228-6", + "display" : "Upper gastrointestinal capsule endoscopy study Document" + }, + { + "system" : "http://loinc.org", + "code" : "100229-4", + "display" : "Endoscopic ultrasound study Document" + }, + { + "system" : "http://loinc.org", + "code" : "10023-0", + "display" : "R' wave duration in lead AVL" + }, + { + "system" : "http://loinc.org", + "code" : "100230-2", + "display" : "Routine prenatal assessment panel" + }, + { + "system" : "http://loinc.org", + "code" : "100231-0", + "display" : "Endobronchial ultrasound study" + }, + { + "system" : "http://loinc.org", + "code" : "100232-8", + "display" : "Impacts of Events Scale-Revised panel" + }, + { + "system" : "http://loinc.org", + "code" : "100233-6", + "display" : "Reminders brought back feelings about adverse event" + }, + { + "system" : "http://loinc.org", + "code" : "100234-4", + "display" : "Trouble staying asleep" + }, + { + "system" : "http://loinc.org", + "code" : "100235-1", + "display" : "Other things triggered persistent thoughts about adverse event" + }, + { + "system" : "http://loinc.org", + "code" : "100236-9", + "display" : "Felt irritable AndOr angry" + }, + { + "system" : "http://loinc.org", + "code" : "100237-7", + "display" : "Avoided getting upset when unintentionally thought about adverse event" + }, + { + "system" : "http://loinc.org", + "code" : "100238-5", + "display" : "Thought about adverse event unintentionally" + }, + { + "system" : "http://loinc.org", + "code" : "100239-3", + "display" : "Felt as if adverse event did not happen" + }, + { + "system" : "http://loinc.org", + "code" : "100240-1", + "display" : "Avoided reminders of adverse event" + }, + { + "system" : "http://loinc.org", + "code" : "100241-9", + "display" : "Experienced mental images of adverse event" + }, + { + "system" : "http://loinc.org", + "code" : "100242-7", + "display" : "Easily startled" + }, + { + "system" : "http://loinc.org", + "code" : "100243-5", + "display" : "Tried to not think of adverse event" + }, + { + "system" : "http://loinc.org", + "code" : "100244-3", + "display" : "Aware of feelings about adverse event, but did not address them" + }, + { + "system" : "http://loinc.org", + "code" : "100245-0", + "display" : "Feelings about adverse event were numb" + }, + { + "system" : "http://loinc.org", + "code" : "100246-8", + "display" : "Acted or felt the same as during adverse event" + }, + { + "system" : "http://loinc.org", + "code" : "100247-6", + "display" : "Trouble falling asleep" + }, + { + "system" : "http://loinc.org", + "code" : "10024-8", + "display" : "R' wave duration in lead AVR" + }, + { + "system" : "http://loinc.org", + "code" : "100248-4", + "display" : "Waves of strong feelings about adverse event" + }, + { + "system" : "http://loinc.org", + "code" : "100249-2", + "display" : "Tried to remove adverse event from memory" + }, + { + "system" : "http://loinc.org", + "code" : "1002-5", + "display" : "DBG Ab [Presence] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100250-0", + "display" : "Trouble concentrating" + }, + { + "system" : "http://loinc.org", + "code" : "100251-8", + "display" : "Reminders of adverse event caused physical reactions" + }, + { + "system" : "http://loinc.org", + "code" : "100252-6", + "display" : "Had dreams about adverse event" + }, + { + "system" : "http://loinc.org", + "code" : "100253-4", + "display" : "Felt watchful and on-guard" + }, + { + "system" : "http://loinc.org", + "code" : "100254-2", + "display" : "Tried not to talk about adverse event" + }, + { + "system" : "http://loinc.org", + "code" : "10025-5", + "display" : "R' wave duration in lead I" + }, + { + "system" : "http://loinc.org", + "code" : "100255-9", + "display" : "Total score [Impact of Event Scale-Revised]" + }, + { + "system" : "http://loinc.org", + "code" : "100256-7", + "display" : "Fallen in last 6 months" + }, + { + "system" : "http://loinc.org", + "code" : "100257-5", + "display" : "Feel unsteady when standing or walking" + }, + { + "system" : "http://loinc.org", + "code" : "100258-3", + "display" : "History of fall related injury" + }, + { + "system" : "http://loinc.org", + "code" : "100259-1", + "display" : "Aware of tactile sensations" + }, + { + "system" : "http://loinc.org", + "code" : "100260-9", + "display" : "Easy to describe thoughts AndOr feelings" + }, + { + "system" : "http://loinc.org", + "code" : "100261-7", + "display" : "Critical of own thoughts AndOr feelings" + }, + { + "system" : "http://loinc.org", + "code" : "100262-5", + "display" : "Able to notice distressing thoughts AndOr feelings without having to react" + }, + { + "system" : "http://loinc.org", + "code" : "10026-3", + "display" : "R' wave duration in lead II" + }, + { + "system" : "http://loinc.org", + "code" : "100263-3", + "display" : "Easily distracted" + }, + { + "system" : "http://loinc.org", + "code" : "100264-1", + "display" : "Able to notice thoughts AndOr feelings without being overwhelmed" + }, + { + "system" : "http://loinc.org", + "code" : "100265-8", + "display" : "Aware of dietary intake impact on self" + }, + { + "system" : "http://loinc.org", + "code" : "100266-6", + "display" : "Difficult to describe thoughts AndOr feelings" + }, + { + "system" : "http://loinc.org", + "code" : "100267-4", + "display" : "Aware of auditory stimuli" + }, + { + "system" : "http://loinc.org", + "code" : "100268-2", + "display" : "Able to avoid immediate reaction in difficult situations" + }, + { + "system" : "http://loinc.org", + "code" : "100269-0", + "display" : "Do things without paying attention" + }, + { + "system" : "http://loinc.org", + "code" : "100270-8", + "display" : "Recover quickly from distressing thoughts AndOr images" + }, + { + "system" : "http://loinc.org", + "code" : "10027-1", + "display" : "R' wave duration in lead III" + }, + { + "system" : "http://loinc.org", + "code" : "100271-6", + "display" : "Aware of olfactory stimuli" + }, + { + "system" : "http://loinc.org", + "code" : "100272-4", + "display" : "Aware of visual stimuli" + }, + { + "system" : "http://loinc.org", + "code" : "100273-2", + "display" : "Aware of emotions affect on thoughts AndOr behavior" + }, + { + "system" : "http://loinc.org", + "code" : "100274-0", + "display" : "Observing score [FFMQ]" + }, + { + "system" : "http://loinc.org", + "code" : "100275-7", + "display" : "Describing score [FFMQ]" + }, + { + "system" : "http://loinc.org", + "code" : "100276-5", + "display" : "Acting with awareness score [FFMQ]" + }, + { + "system" : "http://loinc.org", + "code" : "100277-3", + "display" : "Nonjudging score [FFMQ]" + }, + { + "system" : "http://loinc.org", + "code" : "100278-1", + "display" : "Nonreactivity score [FFMQ]" + }, + { + "system" : "http://loinc.org", + "code" : "100279-9", + "display" : "Total score [FFMQ]" + }, + { + "system" : "http://loinc.org", + "code" : "100280-7", + "display" : "Five Facet Mindfulness Questionnaire panel [FFMQ]" + }, + { + "system" : "http://loinc.org", + "code" : "100281-5", + "display" : "D Ab [Units/volume] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100282-3", + "display" : "Vaccine exemption certificate" + }, + { + "system" : "http://loinc.org", + "code" : "100283-1", + "display" : "Harris Hip Score panel [Harris Hip Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100284-9", + "display" : "Walking - functional ability" + }, + { + "system" : "http://loinc.org", + "code" : "100285-6", + "display" : "Comfortable seated position" + }, + { + "system" : "http://loinc.org", + "code" : "100286-4", + "display" : "Able to board public transportation" + }, + { + "system" : "http://loinc.org", + "code" : "100287-2", + "display" : "Put on shoes and socks" + }, + { + "system" : "http://loinc.org", + "code" : "100288-0", + "display" : "Absence of deformity score [Harris Hip Score]" + }, + { + "system" : "http://loinc.org", + "code" : "10028-9", + "display" : "R' wave duration in lead V1" + }, + { + "system" : "http://loinc.org", + "code" : "100289-8", + "display" : "Absence of hip deformity measurements" + }, + { + "system" : "http://loinc.org", + "code" : "100290-6", + "display" : "Range of motion score [Harris Hip Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100291-4", + "display" : "Total score [Harris Hip Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100292-2", + "display" : "Pre-op patient satisfaction score [Knee Society Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100293-0", + "display" : "Hip Flexion range of motion" + }, + { + "system" : "http://loinc.org", + "code" : "100294-8", + "display" : "Hip Abduction range of motion" + }, + { + "system" : "http://loinc.org", + "code" : "100295-5", + "display" : "Hip Adduction range of motion" + }, + { + "system" : "http://loinc.org", + "code" : "100296-3", + "display" : "Hip External rotation range of motion" + }, + { + "system" : "http://loinc.org", + "code" : "10029-7", + "display" : "R' wave duration in lead V2" + }, + { + "system" : "http://loinc.org", + "code" : "100297-1", + "display" : "Hip Internal rotation range of motion" + }, + { + "system" : "http://loinc.org", + "code" : "100298-9", + "display" : "Repetition count" + }, + { + "system" : "http://loinc.org", + "code" : "100299-7", + "display" : "Post-op patient satisfaction score [Knee Society Score]" + }, + { + "system" : "http://loinc.org", + "code" : "100300-3", + "display" : "End time Unspecified body region" + }, + { + "system" : "http://loinc.org", + "code" : "100301-1", + "display" : "Start time Unspecified body region" + }, + { + "system" : "http://loinc.org", + "code" : "100302-9", + "display" : "Time period start and end panel Unspecified body region" + }, + { + "system" : "http://loinc.org", + "code" : "100303-7", + "display" : "Condition certainty of presence" + }, + { + "system" : "http://loinc.org", + "code" : "100304-5", + "display" : "Flights climbed [#] Reporting Period" + }, + { + "system" : "http://loinc.org", + "code" : "10030-5", + "display" : "R' wave duration in lead V3" + }, + { + "system" : "http://loinc.org", + "code" : "100305-2", + "display" : "IDH1 gene exon 4 targeted mutation analysis [Presence] in Blood or Marrow by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100306-0", + "display" : "IDH2 gene exon 4 targeted mutation analysis [Presence] in Blood or Marrow by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100307-8", + "display" : "Behavioral screening elder mistreatment" + }, + { + "system" : "http://loinc.org", + "code" : "100308-6", + "display" : "Need help getting to essential places" + }, + { + "system" : "http://loinc.org", + "code" : "100309-4", + "display" : "Activity support person" + }, + { + "system" : "http://loinc.org", + "code" : "100310-2", + "display" : "Reliability of support person" + }, + { + "system" : "http://loinc.org", + "code" : "100311-0", + "display" : "Need help to make sure there is enough food, medicines or any other things needed in house" + }, + { + "system" : "http://loinc.org", + "code" : "100312-8", + "display" : "Person or persons that makes sure there is enough food, medicines or any other things needed in house" + }, + { + "system" : "http://loinc.org", + "code" : "10031-3", + "display" : "R' wave duration in lead V4" + }, + { + "system" : "http://loinc.org", + "code" : "100313-6", + "display" : "Need help with household things such as cook meals, help feed, or provide correct medicines each day" + }, + { + "system" : "http://loinc.org", + "code" : "100314-4", + "display" : "Need help with house cleaning or yard work" + }, + { + "system" : "http://loinc.org", + "code" : "100315-1", + "display" : "Need help getting out of bed, showered, or dressed" + }, + { + "system" : "http://loinc.org", + "code" : "100316-9", + "display" : "Need help to make sure bills get paid" + }, + { + "system" : "http://loinc.org", + "code" : "100317-7", + "display" : "Relationship of usual support person for daily activities" + }, + { + "system" : "http://loinc.org", + "code" : "100318-5", + "display" : "Have help with finances AndOr financial decisions" + }, + { + "system" : "http://loinc.org", + "code" : "100319-3", + "display" : "Relationship of financial support person" + }, + { + "system" : "http://loinc.org", + "code" : "100320-1", + "display" : "Financial support person usually asks for permission before making decisions" + }, + { + "system" : "http://loinc.org", + "code" : "10032-1", + "display" : "R' wave duration in lead V5" + }, + { + "system" : "http://loinc.org", + "code" : "100321-9", + "display" : "Financial support person usually makes good decisions about finances" + }, + { + "system" : "http://loinc.org", + "code" : "100322-7", + "display" : "Have access to paperwork for financial decisions made" + }, + { + "system" : "http://loinc.org", + "code" : "100323-5", + "display" : "Financial support person forged signature" + }, + { + "system" : "http://loinc.org", + "code" : "100324-3", + "display" : "Coercion of financial support person for signing a document in order to get money or possessions" + }, + { + "system" : "http://loinc.org", + "code" : "100325-0", + "display" : "Experienced theft by support person" + }, + { + "system" : "http://loinc.org", + "code" : "100326-8", + "display" : "Money spent or property sold without permission" + }, + { + "system" : "http://loinc.org", + "code" : "100327-6", + "display" : "Stranger forged signature for financial gain" + }, + { + "system" : "http://loinc.org", + "code" : "100328-4", + "display" : "Stranger forced document signature for financial gain" + }, + { + "system" : "http://loinc.org", + "code" : "100329-2", + "display" : "Feared for safety due to verbal attack" + }, + { + "system" : "http://loinc.org", + "code" : "1003-3", + "display" : "Indirect antiglobulin test.complement specific reagent [Presence] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100330-0", + "display" : "Felt humiliated due to ridicule" + }, + { + "system" : "http://loinc.org", + "code" : "100331-8", + "display" : "Coerced to do something" + }, + { + "system" : "http://loinc.org", + "code" : "100332-6", + "display" : "Ignored by close friend or relative for extended period" + }, + { + "system" : "http://loinc.org", + "code" : "100333-4", + "display" : "Physically hit or threatened" + }, + { + "system" : "http://loinc.org", + "code" : "100334-2", + "display" : "Been physically hurt with some degree of injury" + }, + { + "system" : "http://loinc.org", + "code" : "100335-9", + "display" : "Coerced sexual activity" + }, + { + "system" : "http://loinc.org", + "code" : "100336-7", + "display" : "Coerced touching of private body parts of self or others" + }, + { + "system" : "http://loinc.org", + "code" : "100337-5", + "display" : "Coerced to undress or expose private body area" + }, + { + "system" : "http://loinc.org", + "code" : "100338-3", + "display" : "Photographed in any degree of nudity without consent" + }, + { + "system" : "http://loinc.org", + "code" : "10033-9", + "display" : "R' wave duration in lead V6" + }, + { + "system" : "http://loinc.org", + "code" : "100339-1", + "display" : "Experienced attempted physical restraint" + }, + { + "system" : "http://loinc.org", + "code" : "100340-9", + "display" : "Range of motion panel Hip" + }, + { + "system" : "http://loinc.org", + "code" : "100341-7", + "display" : "Rubella virus IgG Ab index [Units/volume] in Serum and CSF" + }, + { + "system" : "http://loinc.org", + "code" : "100342-5", + "display" : "Volatile Organic Compounds associated with SARS-CoV-2 infection [Presence] in Exhaled gas by Gas chromatography-mass spectrometry" + }, + { + "system" : "http://loinc.org", + "code" : "100343-3", + "display" : "Influenza virus B RNA [Presence] in Saliva (oral fluid) by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100344-1", + "display" : "Influenza virus A RNA [Presence] in Saliva (oral fluid) by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100345-8", + "display" : "Influenza virus A and B and SARS-CoV-2 (COVID-19) RNA panel - Specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100346-6", + "display" : "Clotting time.extrinsic coagulation system activated.platelets inhibited of Blood by Rotational TEG" + }, + { + "system" : "http://loinc.org", + "code" : "10034-7", + "display" : "S wave amplitude in lead AVF" + }, + { + "system" : "http://loinc.org", + "code" : "100347-4", + "display" : "Clot formation.extrinsic coagulation system activated.platelets inhibited [Time] in Blood by Rotational TEG" + }, + { + "system" : "http://loinc.org", + "code" : "100348-2", + "display" : "Model for end-stage liver disease sodium score" + }, + { + "system" : "http://loinc.org", + "code" : "100349-0", + "display" : "US.doppler Penis vessels W vasodilator IV" + }, + { + "system" : "http://loinc.org", + "code" : "100350-8", + "display" : "Sesamum indicum 1 IgE Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100351-6", + "display" : "Pioglitazone [Presence] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100352-4", + "display" : "Rosiglitazone [Presence] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100353-2", + "display" : "Norwalk Community Health Center Screening Tool [NCHC]" + }, + { + "system" : "http://loinc.org", + "code" : "10035-4", + "display" : "S wave amplitude in lead AVL" + }, + { + "system" : "http://loinc.org", + "code" : "100354-0", + "display" : "Frequency of participating in multi-modal communication without assistance" + }, + { + "system" : "http://loinc.org", + "code" : "100355-7", + "display" : "Frequency of participating in spoken language expression communication without assistance" + }, + { + "system" : "http://loinc.org", + "code" : "100356-5", + "display" : "Chlamydia trachomatis and Neisseria gonorrhoeae and Trichomonas vaginalis DNA [Identifier] in Specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100357-3", + "display" : "Naloxone [Presence] in Cord tissue by Screen method" + }, + { + "system" : "http://loinc.org", + "code" : "100358-1", + "display" : "Phentermine [Presence] in Cord tissue by Screen method" + }, + { + "system" : "http://loinc.org", + "code" : "100359-9", + "display" : "Gliadin 33 mer peptide [Mass/volume] in Stool by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100360-7", + "display" : "Brief Resilience Scale panel [BRS]" + }, + { + "system" : "http://loinc.org", + "code" : "100361-5", + "display" : "Quickly recover from bad events" + }, + { + "system" : "http://loinc.org", + "code" : "10036-2", + "display" : "S wave amplitude in lead AVR" + }, + { + "system" : "http://loinc.org", + "code" : "100362-3", + "display" : "Difficulty making it through stressful events" + }, + { + "system" : "http://loinc.org", + "code" : "100363-1", + "display" : "Easily recover from a stressful event" + }, + { + "system" : "http://loinc.org", + "code" : "100364-9", + "display" : "Difficulty recovering from bad events" + }, + { + "system" : "http://loinc.org", + "code" : "100365-6", + "display" : "Easily recover from difficulties" + }, + { + "system" : "http://loinc.org", + "code" : "100366-4", + "display" : "Lengthy recovery from setbacks" + }, + { + "system" : "http://loinc.org", + "code" : "100367-2", + "display" : "Total Score BRS" + }, + { + "system" : "http://loinc.org", + "code" : "100368-0", + "display" : "Amino Acids Urea Cycle Panel - Serum or Plasma by LC/MS/MS" + }, + { + "system" : "http://loinc.org", + "code" : "100369-8", + "display" : "NM Thyroid gland Views W Tl-201 IV" + }, + { + "system" : "http://loinc.org", + "code" : "10037-0", + "display" : "S wave amplitude in lead I" + }, + { + "system" : "http://loinc.org", + "code" : "100370-6", + "display" : "Orthopoxvirus DNA [Identifier] in Specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100371-4", + "display" : "Titin Ab [Units/volume] in Serum by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100372-2", + "display" : "Abiraterone [Mass/volume] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100373-0", + "display" : "Eucheuma IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100374-8", + "display" : "Aloe vera IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100375-5", + "display" : "Anise IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100376-3", + "display" : "Bamboo sprouts IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100377-1", + "display" : "Goat cheese IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100378-9", + "display" : "Sheep cheese IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100379-7", + "display" : "Leeks IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100380-5", + "display" : "Red cabbage IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100381-3", + "display" : "Peppermint IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100382-1", + "display" : "FDA package insert REMS addressed risk" + }, + { + "system" : "http://loinc.org", + "code" : "100383-9", + "display" : "Monkeypox virus DNA [Presence] in Specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100384-7", + "display" : "Turnip IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100385-4", + "display" : "Corn salad IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100386-2", + "display" : "Rosemary IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100387-0", + "display" : "Poppy Seed IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "10038-8", + "display" : "S wave amplitude in lead II" + }, + { + "system" : "http://loinc.org", + "code" : "100388-8", + "display" : "Cocoa IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100389-6", + "display" : "Pistachio IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100390-4", + "display" : "Sunflower Seed IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100391-2", + "display" : "Dates IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100392-0", + "display" : "Duck meat IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100393-8", + "display" : "Allergen Mushroom mix 2 (Xerocomus, Boletus) IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100394-6", + "display" : "Astacoidea IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100395-3", + "display" : "Carob IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "10039-6", + "display" : "S wave amplitude in lead III" + }, + { + "system" : "http://loinc.org", + "code" : "100396-1", + "display" : "Rapeseed IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100397-9", + "display" : "Goat Meat IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100398-7", + "display" : "Goose meat IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100399-5", + "display" : "Ostrich meat IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100400-1", + "display" : "Quail meat IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100401-9", + "display" : "Rabbit meat IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100402-7", + "display" : "Venison meat IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100403-5", + "display" : "Guineafowl IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "10040-4", + "display" : "S wave amplitude in lead V1" + }, + { + "system" : "http://loinc.org", + "code" : "100404-3", + "display" : "Horse meat IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100405-0", + "display" : "Kefir IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100406-8", + "display" : "Butter IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100407-6", + "display" : "Camembert cheese IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100408-4", + "display" : "Emmental cheese IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100409-2", + "display" : "Processed cheese IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "1004-1", + "display" : "Direct antiglobulin test.complement specific reagent [Presence] on Red Blood Cells" + }, + { + "system" : "http://loinc.org", + "code" : "100410-0", + "display" : "Curd cheese IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100411-8", + "display" : "Sugar Beet IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "10041-2", + "display" : "S wave amplitude in lead V2" + }, + { + "system" : "http://loinc.org", + "code" : "100412-6", + "display" : "Chinese cabbage IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100413-4", + "display" : "Fennel Fresh IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100414-2", + "display" : "Gourd IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100415-9", + "display" : "Kale IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100416-7", + "display" : "Savoy cabbage IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100417-5", + "display" : "Vitis sp leaf IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100418-3", + "display" : "Liquorice IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100419-1", + "display" : "Snow pea IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "10042-0", + "display" : "S wave amplitude in lead V3" + }, + { + "system" : "http://loinc.org", + "code" : "100420-9", + "display" : "Fava bean IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100421-7", + "display" : "Chickpea IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100422-5", + "display" : "Common Chicory IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100423-3", + "display" : "Allergy Mushroom Mix 1 (Button + oyster + Shiitaki + chanterelle mushroom) IgG Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100424-1", + "display" : "8(9)-Cholestenol [Mass/volume] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100425-8", + "display" : "DiHydro T-Mas [Mass/volume] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100426-6", + "display" : "Squalene [Mass/volume] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100427-4", + "display" : "Stigmasterol [Mass/volume] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100428-2", + "display" : "Carnitine free and total and acylcarnitine panel - Urine" + }, + { + "system" : "http://loinc.org", + "code" : "100429-0", + "display" : "LRBA deficiency panel - Blood" + }, + { + "system" : "http://loinc.org", + "code" : "100430-8", + "display" : "Cells.LRBA+/Cells.CD3+CD14-CD45+ in Blood by Flow cytometry (FC)" + }, + { + "system" : "http://loinc.org", + "code" : "100431-6", + "display" : "Cells.CD3+CD14-CD45+.LRBA mean fluorescence intensity in Blood by Flow cytometry (FC)" + }, + { + "system" : "http://loinc.org", + "code" : "100432-4", + "display" : "Cells.LRBA+/Cells.CD3-CD14-CD19+CD45+ in Blood by Flow cytometry (FC)" + }, + { + "system" : "http://loinc.org", + "code" : "100433-2", + "display" : "Cells.CD3-CD14-CD19+CD45+.LRBA mean fluorescence intensity in Blood by Flow cytometry (FC)" + }, + { + "system" : "http://loinc.org", + "code" : "100434-0", + "display" : "Orthopoxvirus.non-variola DNA [Presence] in Specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100435-7", + "display" : "Glial fibrillary acidic protein [Mass/volume] in Serum by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100436-5", + "display" : "Ubiquitin carboxyl-terminal hydrolase-L1 [Mass/volume] in Serum by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100437-3", + "display" : "Norsufentanil [Mass/volume] in Urine by Confirmatory method" + }, + { + "system" : "http://loinc.org", + "code" : "10043-8", + "display" : "S wave amplitude in lead V4" + }, + { + "system" : "http://loinc.org", + "code" : "100438-1", + "display" : "Adolescent medicine Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100439-9", + "display" : "Allergy and Immunology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100440-7", + "display" : "Allergy Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100441-5", + "display" : "Attending Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100442-3", + "display" : "Audiology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100443-1", + "display" : "Bariatric surgery Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100444-9", + "display" : "Blood banking and transfusion medicine Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100445-6", + "display" : "Bone Marrow Transplant Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10044-6", + "display" : "S wave amplitude in lead V5" + }, + { + "system" : "http://loinc.org", + "code" : "100446-4", + "display" : "Breastfeeding Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100447-2", + "display" : "Burn management Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100448-0", + "display" : "Cardiac surgery Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100449-8", + "display" : "Cardiopulmonary Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100450-6", + "display" : "Child and adolescent psychiatry Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100451-4", + "display" : "Chiropractic medicine Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100452-2", + "display" : "Clinical cardiac electrophysiology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10045-3", + "display" : "S wave amplitude in lead V6" + }, + { + "system" : "http://loinc.org", + "code" : "100453-0", + "display" : "Clinical genetics Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100454-8", + "display" : "Clinical neurophysiology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100455-5", + "display" : "Clinical pathology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100456-3", + "display" : "Colon and rectal surgery Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100457-1", + "display" : "Consultant Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100458-9", + "display" : "Outpatient COVID-19 Intubation Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100459-7", + "display" : "Outpatient COVID-19 Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100460-5", + "display" : "Dermatology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10046-1", + "display" : "S wave duration in lead AVF" + }, + { + "system" : "http://loinc.org", + "code" : "100461-3", + "display" : "Developmental-behavioral pediatrics Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100462-1", + "display" : "Dialysis and Therapeutic apheresis Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100463-9", + "display" : "Eating disorders Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100464-7", + "display" : "Endocrinology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100465-4", + "display" : "Family medicine Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100466-2", + "display" : "Gastroenterology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100467-0", + "display" : "Geriatric medicine Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100468-8", + "display" : "Gynecologic oncology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100469-6", + "display" : "Gynecology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100470-4", + "display" : "Healthcare navigator Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100471-2", + "display" : "Heart failure Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100472-0", + "display" : "Heart failure+Transplant cardiology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100473-8", + "display" : "Hematology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100474-6", + "display" : "Hematology+Medical oncology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100475-3", + "display" : "Hepatology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100476-1", + "display" : "Immunology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100477-9", + "display" : "Infectious disease Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100478-7", + "display" : "Internal medicine Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10047-9", + "display" : "S wave duration in lead AVL" + }, + { + "system" : "http://loinc.org", + "code" : "100479-5", + "display" : "Interventional cardiology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100480-3", + "display" : "Interventional radiology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100481-1", + "display" : "Outpatient Mechanical circulatory support Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100482-9", + "display" : "Medical Aid in Dying Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100483-7", + "display" : "Mental health Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100484-5", + "display" : "Multi-specialty program Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100485-2", + "display" : "Neonatal perinatal medicine Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100486-0", + "display" : "Nephrology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10048-7", + "display" : "S wave duration in lead AVR" + }, + { + "system" : "http://loinc.org", + "code" : "100487-8", + "display" : "Neurological surgery Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100488-6", + "display" : "Neurology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100489-4", + "display" : "Neurology with special qualifications in child neurology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100490-2", + "display" : "Nurse practitioner Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100491-0", + "display" : "Nurse Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100492-8", + "display" : "Nutrition and dietetics Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100493-6", + "display" : "Obstetrics and Gynecology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100494-4", + "display" : "Obstetrics Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10049-5", + "display" : "S wave duration in lead I" + }, + { + "system" : "http://loinc.org", + "code" : "100495-1", + "display" : "Occupational therapy Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100496-9", + "display" : "Oncology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100497-7", + "display" : "Ophthalmology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100498-5", + "display" : "Optometry Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100499-3", + "display" : "Oral and Maxillofacial Surgery Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100500-8", + "display" : "Orthopaedic surgery Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100501-6", + "display" : "Orthotics prosthetics Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100502-4", + "display" : "Otolaryngology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10050-3", + "display" : "S wave duration in lead II" + }, + { + "system" : "http://loinc.org", + "code" : "100503-2", + "display" : "Pain medicine Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100504-0", + "display" : "Palliative care Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100505-7", + "display" : "Pediatric cardiology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100506-5", + "display" : "Pediatric dermatology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100507-3", + "display" : "Pediatric endocrinology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100508-1", + "display" : "Pediatric gastroenterology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100509-9", + "display" : "Pediatric hematology-oncology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100510-7", + "display" : "Pediatric infectious diseases Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10051-1", + "display" : "S wave duration in lead III" + }, + { + "system" : "http://loinc.org", + "code" : "100511-5", + "display" : "Pediatric otolaryngology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100512-3", + "display" : "Pediatric pulmonology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100513-1", + "display" : "Pediatric rheumatology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100514-9", + "display" : "Pediatric surgery Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100515-6", + "display" : "Pediatric transplant hepatology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100516-4", + "display" : "Pediatric urology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100517-2", + "display" : "Pharmacogenomics Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100518-0", + "display" : "Physical medicine and rehab Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100519-8", + "display" : "Physical therapy Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100520-6", + "display" : "Plastic surgery Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100521-4", + "display" : "Podiatry Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100522-2", + "display" : "Psychiatry Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100523-0", + "display" : "Psychology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100524-8", + "display" : "Pulmonary Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100525-5", + "display" : "Radiation oncology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100526-3", + "display" : "Radiology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100527-1", + "display" : "Recreational therapy Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100528-9", + "display" : "Reproductive endocrinology and infertility Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10052-9", + "display" : "S wave duration in lead V1" + }, + { + "system" : "http://loinc.org", + "code" : "100529-7", + "display" : "Research Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100530-5", + "display" : "Rheumatology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100531-3", + "display" : "Sleep medicine Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100532-1", + "display" : "Social worker Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100533-9", + "display" : "Solid Organ Transplant Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100534-7", + "display" : "Speech-language pathology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100535-4", + "display" : "Spinal surgery Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100536-2", + "display" : "Sports medicine Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10053-7", + "display" : "S wave duration in lead V2" + }, + { + "system" : "http://loinc.org", + "code" : "100537-0", + "display" : "Surgery of the hand Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100538-8", + "display" : "Telehealth+Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100539-6", + "display" : "Thromboembolism Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100540-4", + "display" : "Transplant surgery Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100541-2", + "display" : "Trauma Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100542-0", + "display" : "Urology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100543-8", + "display" : "Vascular neurology Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100544-6", + "display" : "Vascular surgery Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10054-5", + "display" : "S wave duration in lead V3" + }, + { + "system" : "http://loinc.org", + "code" : "100545-3", + "display" : "Wound care management Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100546-1", + "display" : "Wound, Ostomy, and Continence Care Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100547-9", + "display" : "Adolescent medicine Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100548-7", + "display" : "Allergy and Immunology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100549-5", + "display" : "Allergy Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100550-3", + "display" : "Attending Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100551-1", + "display" : "Audiology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10055-2", + "display" : "S wave duration in lead V4" + }, + { + "system" : "http://loinc.org", + "code" : "100552-9", + "display" : "Bariatric surgery Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100553-7", + "display" : "Blood banking and transfusion medicine Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100554-5", + "display" : "Bone Marrow Transplant Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100555-2", + "display" : "Breastfeeding Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100556-0", + "display" : "Burn management Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100557-8", + "display" : "Cardiac surgery Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100558-6", + "display" : "Cardiopulmonary Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100559-4", + "display" : "Child and adolescent psychiatry Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10056-0", + "display" : "S wave duration in lead V5" + }, + { + "system" : "http://loinc.org", + "code" : "100560-2", + "display" : "Clinical cardiac electrophysiology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100561-0", + "display" : "Clinical genetics Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100562-8", + "display" : "Clinical neurophysiology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100563-6", + "display" : "Clinical pathology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100564-4", + "display" : "Colon and rectal surgery Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100565-1", + "display" : "Consultant Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100566-9", + "display" : "Dentistry Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100567-7", + "display" : "Dermatology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100568-5", + "display" : "Developmental-behavioral pediatrics Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100569-3", + "display" : "Dialysis and Therapeutic apheresis Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100570-1", + "display" : "Eating disorders Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100571-9", + "display" : "Endocrinology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100572-7", + "display" : "Family medicine Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100573-5", + "display" : "Gastroenterology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100574-3", + "display" : "General medicine Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100575-0", + "display" : "Geriatric medicine Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100576-8", + "display" : "Gynecologic oncology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100577-6", + "display" : "Gynecology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10057-8", + "display" : "S wave duration in lead V6" + }, + { + "system" : "http://loinc.org", + "code" : "100578-4", + "display" : "Healthcare navigator Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100579-2", + "display" : "Heart failure Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "1005-8", + "display" : "Indirect antiglobulin test.IgG specific reagent [Presence] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100580-0", + "display" : "Heart failure+Transplant cardiology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100581-8", + "display" : "Hematology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100582-6", + "display" : "Hematology+Medical oncology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100583-4", + "display" : "Hepatology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100584-2", + "display" : "Immunology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100585-9", + "display" : "Infectious disease Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10058-6", + "display" : "S' wave amplitude in lead AVF" + }, + { + "system" : "http://loinc.org", + "code" : "100586-7", + "display" : "Internal medicine Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100587-5", + "display" : "Interventional cardiology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100588-3", + "display" : "Interventional radiology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100589-1", + "display" : "Hospital Mechanical circulatory support Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100590-9", + "display" : "Medical Aid in Dying Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100591-7", + "display" : "Mental health Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100592-5", + "display" : "Multi-specialty program Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100593-3", + "display" : "Neonatal perinatal medicine Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10059-4", + "display" : "S' wave amplitude in lead AVL" + }, + { + "system" : "http://loinc.org", + "code" : "100594-1", + "display" : "Nephrology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100595-8", + "display" : "Neurological surgery Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100596-6", + "display" : "Neurology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100597-4", + "display" : "Neurology with special qualifications in child neurology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100598-2", + "display" : "Nurse practitioner Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100599-0", + "display" : "Nurse Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100600-6", + "display" : "Nutrition and dietetics Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100601-4", + "display" : "Obstetrics and Gynecology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10060-2", + "display" : "S' wave amplitude in lead AVR" + }, + { + "system" : "http://loinc.org", + "code" : "100602-2", + "display" : "Obstetrics Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100603-0", + "display" : "Occupational therapy Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100604-8", + "display" : "Oncology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100605-5", + "display" : "Ophthalmology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100606-3", + "display" : "Oral and Maxillofacial Surgery Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100607-1", + "display" : "Orthopaedic surgery Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100608-9", + "display" : "Orthotics prosthetics Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100609-7", + "display" : "Otolaryngology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10061-0", + "display" : "S' wave amplitude in lead I" + }, + { + "system" : "http://loinc.org", + "code" : "100610-5", + "display" : "Pain medicine Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100611-3", + "display" : "Palliative care Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100612-1", + "display" : "Pastoral care Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100613-9", + "display" : "Pediatric cardiology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100614-7", + "display" : "Pediatric dermatology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100615-4", + "display" : "Pediatric endocrinology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100616-2", + "display" : "Pediatric gastroenterology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100617-0", + "display" : "Pediatric hematology-oncology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100618-8", + "display" : "Pediatric infectious diseases Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100619-6", + "display" : "Pediatric otolaryngology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100620-4", + "display" : "Pediatric pulmonology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100621-2", + "display" : "Pediatric rheumatology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100622-0", + "display" : "Pediatric surgery Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100623-8", + "display" : "Pediatric transplant hepatology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100624-6", + "display" : "Pharmacogenomics Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100625-3", + "display" : "Pharmacology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100626-1", + "display" : "Physical medicine and rehab Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100627-9", + "display" : "Physical therapy Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10062-8", + "display" : "S' wave amplitude in lead II" + }, + { + "system" : "http://loinc.org", + "code" : "100628-7", + "display" : "Plastic surgery Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100629-5", + "display" : "Podiatry Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100630-3", + "display" : "Psychology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100631-1", + "display" : "Radiation oncology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100632-9", + "display" : "Radiology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100633-7", + "display" : "Rapid response team Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100634-5", + "display" : "Recreational therapy Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100635-2", + "display" : "Reproductive endocrinology and infertility Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10063-6", + "display" : "S' wave amplitude in lead III" + }, + { + "system" : "http://loinc.org", + "code" : "100636-0", + "display" : "Research Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100637-8", + "display" : "Rheumatology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100638-6", + "display" : "Sleep medicine Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100639-4", + "display" : "Social worker Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100640-2", + "display" : "Solid Organ Transplant Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100641-0", + "display" : "Speech-language pathology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100642-8", + "display" : "Spinal surgery Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100643-6", + "display" : "Surgery of the hand Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10064-4", + "display" : "S' wave amplitude in lead V1" + }, + { + "system" : "http://loinc.org", + "code" : "100644-4", + "display" : "Thromboembolism Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100645-1", + "display" : "Trauma Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100646-9", + "display" : "Urology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100647-7", + "display" : "Vascular neurology Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100648-5", + "display" : "Vascular surgery Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100649-3", + "display" : "Wound care management Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100650-1", + "display" : "Wound, Ostomy, and Continence Care Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "10065-1", + "display" : "S' wave amplitude in lead V2" + }, + { + "system" : "http://loinc.org", + "code" : "100651-9", + "display" : "Hospital COVID-19 Intubation Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100652-7", + "display" : "Pure tone bone conduction threshold audiometry panel" + }, + { + "system" : "http://loinc.org", + "code" : "100653-5", + "display" : "Pure tone air conduction threshold audiometry panel" + }, + { + "system" : "http://loinc.org", + "code" : "100654-3", + "display" : "Pyruvate kinase M2 [Presence] in Stool" + }, + { + "system" : "http://loinc.org", + "code" : "100655-0", + "display" : "XR Sella turcica Lateral" + }, + { + "system" : "http://loinc.org", + "code" : "100656-8", + "display" : "Maternal and fetal medicine Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100657-6", + "display" : "Maternal and fetal medicine Telephone encounter+Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100658-4", + "display" : "Hospital COVID-19 Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100659-2", + "display" : "Maternal and fetal medicine Hospital Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "1006-6", + "display" : "Direct antiglobulin test.IgG specific reagent [Interpretation] on Red Blood Cells" + }, + { + "system" : "http://loinc.org", + "code" : "100660-0", + "display" : "Maternal and fetal medicine Telephone encounter+Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100661-8", + "display" : "Psychiatry Outpatient Progress note" + }, + { + "system" : "http://loinc.org", + "code" : "100662-6", + "display" : "Cortisol free and total panel - Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100663-4", + "display" : "TPMT gene c.460G>A and c.719A>G [Presence] in Blood by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100664-2", + "display" : "NUDT15 gene c.50_55dup and c.415C>T [Presence] in Blood by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100665-9", + "display" : "NUDT15 gene c.415C>T [Presence] in Blood by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100666-7", + "display" : "NUDT15 gene c.416G>A [Presence] in Blood by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100667-5", + "display" : "NUDT15 gene c.52G>A [Presence] in Blood by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100668-3", + "display" : "NUDT15 gene c.50_55dup [Presence] in Blood by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "10066-9", + "display" : "S' wave amplitude in lead V3" + }, + { + "system" : "http://loinc.org", + "code" : "100669-1", + "display" : "NUDT15 gene c.50_55del [Presence] in Blood by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100670-9", + "display" : "RHD gene allele [Identifier] in Plasma cell-free DNA Nominal--fetus" + }, + { + "system" : "http://loinc.org", + "code" : "100671-7", + "display" : "Aspergillus sp DNA [Presence] in Blood by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100672-5", + "display" : "Aspergillus fumigatus DNA [Presence] in Blood by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100673-3", + "display" : "Aspergillus terreus DNA [Presence] in Blood by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100674-1", + "display" : "BK virus DNA [Log #/volume] (viral load) in Blood by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100675-8", + "display" : "Cytomegalovirus DNA [Units/volume] (viral load) in Blood by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100676-6", + "display" : "Cytomegalovirus DNA [log units/volume] (viral load) in Blood by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "10067-7", + "display" : "S' wave amplitude in lead V4" + }, + { + "system" : "http://loinc.org", + "code" : "100677-4", + "display" : "Epstein Barr virus DNA [Log #/volume] (viral load) in Serum or Plasma by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100678-2", + "display" : "Epstein Barr virus DNA [Log #/volume] (viral load) in Blood by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100679-0", + "display" : "Herpes virus 6 DNA [Log #/volume] (viral load) in Serum or Plasma by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100680-8", + "display" : "Herpes virus 6 DNA [Log #/volume] (viral load) in Blood by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100681-6", + "display" : "Herpes virus 7 DNA [Log #/volume] (viral load) in Serum or Plasma by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100682-4", + "display" : "Herpes virus 7 DNA [Log #/volume] (viral load) in Blood by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100683-2", + "display" : "Herpes virus 8 DNA [Log #/volume] (viral load) in Serum or Plasma by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100684-0", + "display" : "Herpes virus 8 DNA [Log #/volume] (viral load) in Blood by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "10068-5", + "display" : "S' wave amplitude in lead V5" + }, + { + "system" : "http://loinc.org", + "code" : "100685-7", + "display" : "JC virus DNA [Log #/volume] (viral load) in Serum or Plasma by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100686-5", + "display" : "JC virus DNA [Log #/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100687-3", + "display" : "JC virus DNA [Log #/volume] (viral load) in Urine by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100688-1", + "display" : "Parvovirus B19 DNA [Log #/volume] (viral load) in Blood by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100689-9", + "display" : "Toxoplasma gondii DNA [Log #/volume] in Serum or Plasma by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100690-7", + "display" : "Toxoplasma gondii DNA [Log #/volume] in Cerebral spinal fluid by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100691-5", + "display" : "Varicella zoster virus DNA [Log #/volume] (viral load) in Blood by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100692-3", + "display" : "Varicella zoster virus DNA [Log #/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "10069-3", + "display" : "S' wave amplitude in lead V6" + }, + { + "system" : "http://loinc.org", + "code" : "100693-1", + "display" : "Pneumocystis jirovecii DNA [Log #/volume] in Respiratory system specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100694-9", + "display" : "SMN1 gene silent carrier analysis [Presence] in Blood or Tissue by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100695-6", + "display" : "Genetic disease analysis overall carrier interpretation in Blood or Tissue by Molecular genetics method Narrative" + }, + { + "system" : "http://loinc.org", + "code" : "100696-4", + "display" : "CTNS related multigene analysis [Identifier] in Bodyfluid and Serum or Plasma by Molecular genetics method Nominal" + }, + { + "system" : "http://loinc.org", + "code" : "100697-2", + "display" : "Interventional radiology Outpatient Note" + }, + { + "system" : "http://loinc.org", + "code" : "100698-0", + "display" : "Social Determinants of Health screening report Document" + }, + { + "system" : "http://loinc.org", + "code" : "100699-8", + "display" : "Rifabutin+Ethambutol [Susceptibility]" + }, + { + "system" : "http://loinc.org", + "code" : "100700-4", + "display" : "Trichomonas vaginalis DNA [Presence] in Urethra by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "10070-1", + "display" : "S' wave duration in lead AVF" + }, + { + "system" : "http://loinc.org", + "code" : "100701-2", + "display" : "Trichomonas vaginalis rRNA [Presence] in Urethra by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100702-0", + "display" : "Mycoplasma genitalium rRNA [Presence] in Urethra by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100703-8", + "display" : "Mycoplasma genitalium rRNA [Presence] in Urine by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100704-6", + "display" : "Mycoplasma genitalium rRNA [Presence] in Cervix by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100705-3", + "display" : "Mycoplasma genitalium rRNA [Presence] in Anorectal by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100706-1", + "display" : "Mycoplasma genitalium rRNA [Presence] in Specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100707-9", + "display" : "Granulocytes [#/volume] in Peritoneal dialysis fluid by Automated count" + }, + { + "system" : "http://loinc.org", + "code" : "100708-7", + "display" : "Plasma cells/Leukocytes in Synovial fluid" + }, + { + "system" : "http://loinc.org", + "code" : "100709-5", + "display" : "Hepatocellular carcinoma risk [Score] by GAAD" + }, + { + "system" : "http://loinc.org", + "code" : "100710-3", + "display" : "Chlamydia trachomatis and Neisseria gonorrhoeae rRNA panel - Throat by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100711-1", + "display" : "Borrelia burgdorferi.VlsE1+pepC10 Ab [Units/volume] in Serum by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100712-9", + "display" : "Brexpiprazole [Mass/volume] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100713-7", + "display" : "Cariprazine [Mass/volume] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100714-5", + "display" : "Guanfacine [Mass/volume] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100715-2", + "display" : "Prothipendyl [Mass/volume] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100716-0", + "display" : "Prostate specific Ag [Mass/volume] in DBS" + }, + { + "system" : "http://loinc.org", + "code" : "100717-8", + "display" : "FCGR3A gene.p.Phe176Val [Presence] in Blood or Tissue by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100718-6", + "display" : "Undersea and hyperbaric medicine Discharge summary" + }, + { + "system" : "http://loinc.org", + "code" : "10071-9", + "display" : "S' wave duration in lead AVL" + }, + { + "system" : "http://loinc.org", + "code" : "100719-4", + "display" : "Surgical oncology Discharge summary" + }, + { + "system" : "http://loinc.org", + "code" : "100720-2", + "display" : "Reproductive endocrinology and infertility Discharge summary" + }, + { + "system" : "http://loinc.org", + "code" : "100721-0", + "display" : "Community health care Discharge summary" + }, + { + "system" : "http://loinc.org", + "code" : "100722-8", + "display" : "Integrative medicine Discharge summary" + }, + { + "system" : "http://loinc.org", + "code" : "100723-6", + "display" : "Sports medicine Discharge summary" + }, + { + "system" : "http://loinc.org", + "code" : "100724-4", + "display" : "Diabetology Discharge summary" + }, + { + "system" : "http://loinc.org", + "code" : "100725-1", + "display" : "Optometry Discharge summary" + }, + { + "system" : "http://loinc.org", + "code" : "100726-9", + "display" : "Podiatry Discharge summary" + }, + { + "system" : "http://loinc.org", + "code" : "10072-7", + "display" : "S' wave duration in lead AVR" + }, + { + "system" : "http://loinc.org", + "code" : "100727-7", + "display" : "Chiropractic medicine Discharge summary" + }, + { + "system" : "http://loinc.org", + "code" : "100728-5", + "display" : "Cardiac surgery Discharge summary" + }, + { + "system" : "http://loinc.org", + "code" : "100729-3", + "display" : "Breastfeeding Discharge summary" + }, + { + "system" : "http://loinc.org", + "code" : "100730-1", + "display" : "Transplant surgery Discharge summary" + }, + { + "system" : "http://loinc.org", + "code" : "100731-9", + "display" : "Urgent care center Discharge summary" + }, + { + "system" : "http://loinc.org", + "code" : "100732-7", + "display" : "Cholesterol.in lipoprotein (little a) and Cholesterol.in LDL panel - Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100733-5", + "display" : "Cholesterol in LDL [Mass/volume] in Serum by calculation --corrected for Cholesterol.in lipoprotein (little a)" + }, + { + "system" : "http://loinc.org", + "code" : "100734-3", + "display" : "traMADol and Metabolites Panel - Urine by Confirmatory method" + }, + { + "system" : "http://loinc.org", + "code" : "10073-5", + "display" : "S' wave duration in lead I" + }, + { + "system" : "http://loinc.org", + "code" : "100735-0", + "display" : "Mannose-6-phosphate isomerase and phosphomannomutase 1 panel - Leukocytes" + }, + { + "system" : "http://loinc.org", + "code" : "100736-8", + "display" : "Acylcarnitine Analysis Post Mortem in Specimen Document" + }, + { + "system" : "http://loinc.org", + "code" : "100737-6", + "display" : "Alkaline phosphatase.macromolecular [Presence] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100738-4", + "display" : "Alanine aminotransferase.macromolecular [Presence] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100739-2", + "display" : "Aspartate aminotransferase.macromolecular [Presence] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "1007-4", + "display" : "Direct antiglobulin test.polyspecific reagent [Presence] on Red Blood Cells" + }, + { + "system" : "http://loinc.org", + "code" : "100740-0", + "display" : "Amylase.macromolecular [Presence] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100741-8", + "display" : "Gamma glutamyl transferase.macromolecular [Presence] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100742-6", + "display" : "Lactate dehydrogenase.macromolecular [Presence] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "10074-3", + "display" : "S' wave duration in lead II" + }, + { + "system" : "http://loinc.org", + "code" : "100743-4", + "display" : "Lipase.macromolecular [Presence] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100744-2", + "display" : "Alpha-1-acid glycoprotein [Mass/volume] in Serum or Plasma by Electrophoresis" + }, + { + "system" : "http://loinc.org", + "code" : "100745-9", + "display" : "Chloride [Moles/volume] in Mixed venous blood" + }, + { + "system" : "http://loinc.org", + "code" : "100746-7", + "display" : "Glucose [Moles/volume] in Mixed venous blood" + }, + { + "system" : "http://loinc.org", + "code" : "100747-5", + "display" : "Legionella serogroup panel - Specimen" + }, + { + "system" : "http://loinc.org", + "code" : "100748-3", + "display" : "Legionella spp [Presence] in Specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100749-1", + "display" : "Legionella pneumophila serogroup 1 [Presence] in Specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "10075-0", + "display" : "S' wave duration in lead III" + }, + { + "system" : "http://loinc.org", + "code" : "100750-9", + "display" : "Legionella pneumophila non-serogroup 1 [Presence] in Specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100751-7", + "display" : "Galactose-alpha-1,3-galactose (Alpha-Gal) panel - Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100752-5", + "display" : "Exacerbating factors - Reported" + }, + { + "system" : "http://loinc.org", + "code" : "100753-3", + "display" : "Alleviating factors - Reported" + }, + { + "system" : "http://loinc.org", + "code" : "100754-1", + "display" : "Platelet disorders multigene analysis in Blood or Tissue by Sequencing" + }, + { + "system" : "http://loinc.org", + "code" : "100755-8", + "display" : "Oligoclonal bands [#] in Serum or Plasma by Isoelectric focusing" + }, + { + "system" : "http://loinc.org", + "code" : "100756-6", + "display" : "Oligoclonal bands [Interpretation] in Cerebral spinal fluid by Isoelectric focusing" + }, + { + "system" : "http://loinc.org", + "code" : "100757-4", + "display" : "Protein fractions.oligoclonal bands panel - Serum and CSF by Isoelectric focusing" + }, + { + "system" : "http://loinc.org", + "code" : "100758-2", + "display" : "Estimated lung age by based on clinical data" + }, + { + "system" : "http://loinc.org", + "code" : "100759-0", + "display" : "Inspiratory reserve [Volume] Respiratory system by Spirometry" + }, + { + "system" : "http://loinc.org", + "code" : "100760-8", + "display" : "XR Radius and Ulna - left Single view" + }, + { + "system" : "http://loinc.org", + "code" : "100761-6", + "display" : "PALB2 gene targeted mutation analysis in Blood or Tissue by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100762-4", + "display" : "HBA2 gene.c.377T>C [Presence] in Blood by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100763-2", + "display" : "Mycobacterium sp comparative reaction interpretation Narrative" + }, + { + "system" : "http://loinc.org", + "code" : "100764-0", + "display" : "Mycobacterium bovis reaction wheal [Diameter] Qualitative --3 days post dose mammalian tuberculin intradermal" + }, + { + "system" : "http://loinc.org", + "code" : "100765-7", + "display" : "Homocysteine and methylmalonate and methylcitrate panel - DBS" + }, + { + "system" : "http://loinc.org", + "code" : "100766-5", + "display" : "Center for Epidemiologic Studies Depression Scale panel [CES-D]" + }, + { + "system" : "http://loinc.org", + "code" : "100767-3", + "display" : "Bothered by things that are not usually bothersome" + }, + { + "system" : "http://loinc.org", + "code" : "10076-8", + "display" : "S' wave duration in lead V1" + }, + { + "system" : "http://loinc.org", + "code" : "100768-1", + "display" : "Poor appetite" + }, + { + "system" : "http://loinc.org", + "code" : "100769-9", + "display" : "Unhappy even with help from my family or friends" + }, + { + "system" : "http://loinc.org", + "code" : "100770-7", + "display" : "Feeling just as good as others" + }, + { + "system" : "http://loinc.org", + "code" : "100771-5", + "display" : "Trouble focusing" + }, + { + "system" : "http://loinc.org", + "code" : "100772-3", + "display" : "Feeling depressed" + }, + { + "system" : "http://loinc.org", + "code" : "100773-1", + "display" : "Feeling everything is too much of an effort" + }, + { + "system" : "http://loinc.org", + "code" : "100774-9", + "display" : "Feeling hopeful about the future" + }, + { + "system" : "http://loinc.org", + "code" : "100775-6", + "display" : "Feeling life had been a failure" + }, + { + "system" : "http://loinc.org", + "code" : "10077-6", + "display" : "S' wave duration in lead V2" + }, + { + "system" : "http://loinc.org", + "code" : "100776-4", + "display" : "Feeling fearful" + }, + { + "system" : "http://loinc.org", + "code" : "100777-2", + "display" : "Restless sleep" + }, + { + "system" : "http://loinc.org", + "code" : "100778-0", + "display" : "Feeling happy" + }, + { + "system" : "http://loinc.org", + "code" : "100779-8", + "display" : "Quieter than usual" + }, + { + "system" : "http://loinc.org", + "code" : "100780-6", + "display" : "Feeling lonely" + }, + { + "system" : "http://loinc.org", + "code" : "100781-4", + "display" : "People were unfriendly" + }, + { + "system" : "http://loinc.org", + "code" : "100782-2", + "display" : "Enjoying life" + }, + { + "system" : "http://loinc.org", + "code" : "100783-0", + "display" : "Crying spells" + }, + { + "system" : "http://loinc.org", + "code" : "10078-4", + "display" : "S' wave duration in lead V3" + }, + { + "system" : "http://loinc.org", + "code" : "100784-8", + "display" : "Feeling sad" + }, + { + "system" : "http://loinc.org", + "code" : "100785-5", + "display" : "Feeling people dislike me" + }, + { + "system" : "http://loinc.org", + "code" : "100786-3", + "display" : "Lack of energy" + }, + { + "system" : "http://loinc.org", + "code" : "100787-1", + "display" : "Total Score CES-D" + }, + { + "system" : "http://loinc.org", + "code" : "100788-9", + "display" : "Stemphylium botryosum IgG4 Ab [Mass/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100789-7", + "display" : "Rhizopus nigricans IgG4 Ab [Mass/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100790-5", + "display" : "Lepidoglyphus destructor IgG Ab [Mass/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100791-3", + "display" : "Hamster epithelium IgG Ab [Mass/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "10079-2", + "display" : "S' wave duration in lead V4" + }, + { + "system" : "http://loinc.org", + "code" : "100792-1", + "display" : "Forsythia IgE Ab [Units/volume] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100793-9", + "display" : "Testosterone [Mass/volume] in Body fluid" + }, + { + "system" : "http://loinc.org", + "code" : "100794-7", + "display" : "Follitropin [Units/volume] in Body fluid" + }, + { + "system" : "http://loinc.org", + "code" : "100795-4", + "display" : "S100 calcium binding protein B [Mass/volume] in Body fluid" + }, + { + "system" : "http://loinc.org", + "code" : "100796-2", + "display" : "Thyroglobulin [Mass/volume] in Body fluid" + }, + { + "system" : "http://loinc.org", + "code" : "100797-0", + "display" : "Testosterone Free [Mass/volume] in Serum --1st specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100798-8", + "display" : "Testosterone Free [Mass/volume] in Serum --2nd specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100799-6", + "display" : "21-Deoxycortisol [Mass/volume] in Serum --1st specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100-8", + "display" : "Cefoperazone [Susceptibility] by Minimum inhibitory concentration (MIC)" + }, + { + "system" : "http://loinc.org", + "code" : "10080-0", + "display" : "S' wave duration in lead V5" + }, + { + "system" : "http://loinc.org", + "code" : "100800-2", + "display" : "21-Deoxycortisol [Mass/volume] in Serum --2nd specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100801-0", + "display" : "21-Deoxycortisol [Mass/volume] in Serum --3rd specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100802-8", + "display" : "21-Deoxycortisol [Mass/volume] in Serum --4th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100803-6", + "display" : "21-Deoxycortisol [Mass/volume] in Serum --5th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100804-4", + "display" : "Vasopressin [Moles/volume] in Plasma --1st specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100805-1", + "display" : "Vasopressin [Moles/volume] in Plasma --2nd specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100806-9", + "display" : "Vasopressin [Moles/volume] in Plasma --3rd specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100807-7", + "display" : "Vasopressin [Moles/volume] in Plasma --4th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100808-5", + "display" : "Vasopressin [Moles/volume] in Plasma --5th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100809-3", + "display" : "Vasopressin [Moles/volume] in Plasma --6th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100810-1", + "display" : "Vasopressin [Moles/volume] in Plasma --7th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100811-9", + "display" : "Vasopressin [Moles/volume] in Plasma --8th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100812-7", + "display" : "Vasopressin [Moles/volume] in Plasma --9th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100813-5", + "display" : "Vasopressin [Moles/volume] in Plasma --10th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100814-3", + "display" : "Vasopressin [Moles/volume] in Plasma --11th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100815-0", + "display" : "Vasopressin [Moles/volume] in Plasma --12th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100816-8", + "display" : "Glucagon [Mass/volume] in Serum or Plasma --6th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100817-6", + "display" : "Glucagon [Mass/volume] in Serum or Plasma --7th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "10081-8", + "display" : "S' wave duration in lead V6" + }, + { + "system" : "http://loinc.org", + "code" : "100818-4", + "display" : "Renin [Mass/volume] in Plasma --1st specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100819-2", + "display" : "Renin [Mass/volume] in Plasma --2nd specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "1008-2", + "display" : "Indirect antiglobulin test.polyspecific reagent [Presence] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100820-0", + "display" : "Renin [Mass/volume] in Plasma --3rd specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100821-8", + "display" : "National POLST form: portable medical order panel" + }, + { + "system" : "http://loinc.org", + "code" : "100822-6", + "display" : "Cardiopulmonary resuscitation orders" + }, + { + "system" : "http://loinc.org", + "code" : "100823-4", + "display" : "Initial portable medical treatment orders" + }, + { + "system" : "http://loinc.org", + "code" : "100824-2", + "display" : "Additional portable medical orders or instructions" + }, + { + "system" : "http://loinc.org", + "code" : "100825-9", + "display" : "Medically assisted nutrition orders" + }, + { + "system" : "http://loinc.org", + "code" : "10082-6", + "display" : "ST initial amplitude 6 ms in lead AVF" + }, + { + "system" : "http://loinc.org", + "code" : "100826-7", + "display" : "Portable medical order AndOr advance directive review" + }, + { + "system" : "http://loinc.org", + "code" : "100827-5", + "display" : "Portable medical order discussion participants" + }, + { + "system" : "http://loinc.org", + "code" : "100828-3", + "display" : "Portable medical order administrative information" + }, + { + "system" : "http://loinc.org", + "code" : "100829-1", + "display" : "Renin [Mass/volume] in Plasma --4th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100830-9", + "display" : "Alpha subunit free [Units/volume] in Serum or Plasma --1st specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100831-7", + "display" : "Alpha subunit free [Units/volume] in Serum or Plasma --2nd specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100832-5", + "display" : "Alpha subunit free [Units/volume] in Serum or Plasma --3rd specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100833-3", + "display" : "Alpha subunit free [Units/volume] in Serum or Plasma --4th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "10083-4", + "display" : "ST initial amplitude 6 ms in lead AVL" + }, + { + "system" : "http://loinc.org", + "code" : "100834-1", + "display" : "Alpha subunit free [Units/volume] in Serum or Plasma --5th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100835-8", + "display" : "Alpha subunit free [Units/volume] in Serum or Plasma --6th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100836-6", + "display" : "Alpha subunit free [Units/volume] in Serum or Plasma --7th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100837-4", + "display" : "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma --9th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100838-2", + "display" : "Testosterone [Mass/volume] in Serum or Plasma --9th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100839-0", + "display" : "Vitamin A/Retinol binding protein [Ratio] in Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100840-8", + "display" : "IgE [Units/volume] in Body fluid" + }, + { + "system" : "http://loinc.org", + "code" : "100841-6", + "display" : "Zinc finger protein of the cerebellum 4 Ab [Presence] in Cerebral spinal fluid by Line blot" + }, + { + "system" : "http://loinc.org", + "code" : "10084-2", + "display" : "ST initial amplitude 6 ms in lead AVR" + }, + { + "system" : "http://loinc.org", + "code" : "100842-4", + "display" : "Nonalcoholic steatohepatitis score in Serum or Plasma Calculated by FAST" + }, + { + "system" : "http://loinc.org", + "code" : "100843-2", + "display" : "Liver fibrosis score in Serum or Plasma by Calculated.Agile3+" + }, + { + "system" : "http://loinc.org", + "code" : "100844-0", + "display" : "Liver fibrosis score in Serum or Plasma by Calculated.Agile4" + }, + { + "system" : "http://loinc.org", + "code" : "100845-7", + "display" : "Neurofascin155 IgG4 Ab [Presence] in Serum by Flow cytometry (FC)" + }, + { + "system" : "http://loinc.org", + "code" : "100846-5", + "display" : "Dengue virus 1+2+3+4 nsP1 IgG Ab [Presence] in Serum or Plasma by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100847-3", + "display" : "Gas and ammonia panel - Arterial blood" + }, + { + "system" : "http://loinc.org", + "code" : "100848-1", + "display" : "Cell count and Differential panel - Amniotic fluid by Manual count" + }, + { + "system" : "http://loinc.org", + "code" : "100849-9", + "display" : "Leukocytes [#/volume] in Amniotic fluid by Manual count" + }, + { + "system" : "http://loinc.org", + "code" : "100850-7", + "display" : "Neutrophils [#/volume] in Amniotic fluid by Manual count" + }, + { + "system" : "http://loinc.org", + "code" : "100851-5", + "display" : "Other cells [#/volume] in Amniotic fluid by Manual count" + }, + { + "system" : "http://loinc.org", + "code" : "100852-3", + "display" : "NM Bones Views for metastasis W Sr-89 IV" + }, + { + "system" : "http://loinc.org", + "code" : "100853-1", + "display" : "NM Pericardial space Views for effusion" + }, + { + "system" : "http://loinc.org", + "code" : "100854-9", + "display" : "Lymphocytes/cells in Blood mononuclear cells by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100855-6", + "display" : "CD3 cells/cells in Blood mononuclear cells" + }, + { + "system" : "http://loinc.org", + "code" : "100856-4", + "display" : "CD3+CD4+ (T4 helper) cells/cells in Blood mononuclear cells" + }, + { + "system" : "http://loinc.org", + "code" : "100857-2", + "display" : "CD3+CD8+ (T8 suppressor) cells/cells in Blood mononuclear cells" + }, + { + "system" : "http://loinc.org", + "code" : "100858-0", + "display" : "Cells.CD4+CD154+/CD4 cells in Blood --after stimulation with SARS-CoV-2 Spike peptide" + }, + { + "system" : "http://loinc.org", + "code" : "10085-9", + "display" : "ST initial amplitude 6 ms in lead I" + }, + { + "system" : "http://loinc.org", + "code" : "100859-8", + "display" : "Cells.CD4.Interferon gamma-expressing/CD4 cells in Blood --after stimulation with SARS-CoV-2 Spike peptide" + }, + { + "system" : "http://loinc.org", + "code" : "100860-6", + "display" : "Cells.CD4.Tumor necrosis factor alfa-expressing/CD4 cells in Blood --after stimulation with SARS-CoV-2 Spike peptide" + }, + { + "system" : "http://loinc.org", + "code" : "100861-4", + "display" : "Cells.CD4+CD154+/CD4 cells in Blood --after stimulation with SARS-CoV-2 Nucleocapsid peptide" + }, + { + "system" : "http://loinc.org", + "code" : "100862-2", + "display" : "Cells.CD4.Interferon gamma-expressing/CD4 cells in Blood --after stimulation with SARS-CoV-2 Nucleocapsid peptide" + }, + { + "system" : "http://loinc.org", + "code" : "100863-0", + "display" : "Cells.CD4.Tumor necrosis factor alfa-expressing/CD4 cells in Blood --after stimulation with SARS-CoV-2 Nucleocapsid peptide" + }, + { + "system" : "http://loinc.org", + "code" : "100864-8", + "display" : "Giardia lamblia bg gene [Genotype] in Specimen by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100865-5", + "display" : "Avian schistosomes DNA [Presence] in Specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100866-3", + "display" : "Febrile antibody profile in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "10086-7", + "display" : "ST initial amplitude 6 ms in lead II" + }, + { + "system" : "http://loinc.org", + "code" : "100867-1", + "display" : "Campylobacter jejuni+coli+lari+upsaliensis Ag [Presence] in Stool by Rapid immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100868-9", + "display" : "Cryptosporidium sp 18S-LC2 rRNA [Genotype] in Specimen by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100869-7", + "display" : "Cryptosporidium gp60 gene [Type] in Specimen by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100870-5", + "display" : "Cryptosporidium 18S rRNA [Genotype] in Specimen by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100871-3", + "display" : "Giardia lamblia gdh gene [Genotype] in Specimen by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100872-1", + "display" : "Bacteria producing polysaccharide from sucrose [Presence] in Isolate" + }, + { + "system" : "http://loinc.org", + "code" : "100873-9", + "display" : "Giardia lamblia tpi gene [Genotype] in Specimen by Molecular genetics method" + }, + { + "system" : "http://loinc.org", + "code" : "100874-7", + "display" : "Basidiobolus sp [Presence] in Specimen" + }, + { + "system" : "http://loinc.org", + "code" : "10087-5", + "display" : "ST initial amplitude 6 ms in lead III" + }, + { + "system" : "http://loinc.org", + "code" : "100875-4", + "display" : "Fetal Heart Document limited US" + }, + { + "system" : "http://loinc.org", + "code" : "100876-2", + "display" : "Fetal Heart Document US" + }, + { + "system" : "http://loinc.org", + "code" : "100877-0", + "display" : "US Heart Transesophageal during surgery" + }, + { + "system" : "http://loinc.org", + "code" : "100878-8", + "display" : "Endoscopic ultrasound study Upper GI tract Document" + }, + { + "system" : "http://loinc.org", + "code" : "100879-6", + "display" : "US Guidance for cryoablation of Breast - right" + }, + { + "system" : "http://loinc.org", + "code" : "100880-4", + "display" : "US Guidance for cryoablation of Breast - left" + }, + { + "system" : "http://loinc.org", + "code" : "100881-2", + "display" : "MR Guidance for cryoablation of Bone" + }, + { + "system" : "http://loinc.org", + "code" : "100882-0", + "display" : "MR Peritoneum W contrast percutaneous intraperitoneal" + }, + { + "system" : "http://loinc.org", + "code" : "10088-3", + "display" : "ST initial amplitude 6 ms in lead V1" + }, + { + "system" : "http://loinc.org", + "code" : "100883-8", + "display" : "MR Guidance for biopsy of Kidney - left" + }, + { + "system" : "http://loinc.org", + "code" : "100884-6", + "display" : "MR Guidance for biopsy of Kidney - right" + }, + { + "system" : "http://loinc.org", + "code" : "100885-3", + "display" : "Parapoxvirus DNA [Presence] in Specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100886-1", + "display" : "Orf virus DNA [Presence] in Specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100887-9", + "display" : "Pseudocowpox virus DNA [Presence] in Specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100888-7", + "display" : "Monkeypox virus clade II DNA [Presence] in Specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100889-5", + "display" : "Monkeypox virus clade I DNA [Presence] in Specimen by NAA with probe detection" + }, + { + "system" : "http://loinc.org", + "code" : "100890-3", + "display" : "Poxvirus DNA panel" + }, + { + "system" : "http://loinc.org", + "code" : "10089-1", + "display" : "ST initial amplitude 6 ms in lead V2" + }, + { + "system" : "http://loinc.org", + "code" : "100891-1", + "display" : "Orthopoxvirus IgG Ab [Presence] in Serum or Plasma by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100892-9", + "display" : "Orthopoxvirus IgM Ab [Presence] in Serum or Plasma by Immunoassay" + }, + { + "system" : "http://loinc.org", + "code" : "100893-7", + "display" : "Orthopoxvirus IgG and IgM Ab panel - Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100894-5", + "display" : "Recommended screening frequency Narrative" + }, + { + "system" : "http://loinc.org", + "code" : "100895-2", + "display" : "Rickettsia conorii IgG and IgM [Interpretation] in Serum" + }, + { + "system" : "http://loinc.org", + "code" : "100896-0", + "display" : "Vasopressin [Moles/volume] in Plasma --13th specimen post XXX challenge" + }, + { + "system" : "http://loinc.org", + "code" : "100897-8", + "display" : "Staphylococcus aureus [Presence] in Specimen by Organism specific culture" + }, + { + "system" : "http://loinc.org", + "code" : "100898-6", + "display" : "Lipid panel - Serum or Plasma" + }, + { + "system" : "http://loinc.org", + "code" : "100899-4", + "display" : "Enterobacteriaceae.extended spectrum beta lactamase resistance phenotype [Identifier] in Specimen by Organism specific culture" + }] + } +}, + "error" : "" +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "85354-9" +}, "valueSet" :null, "langs":"en, en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Blood pressure panel with all children optional", + "code" : "85354-9", + "system" : "http://loinc.org", + "version" : "2.81", + "server" : "https://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8480-6" +}, "valueSet" :null, "langs":"en, en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Systolic blood pressure", + "code" : "8480-6", + "system" : "http://loinc.org", + "version" : "2.81", + "server" : "https://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8462-4" +}, "valueSet" :null, "langs":"en, en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Diastolic blood pressure", + "code" : "8462-4", + "system" : "http://loinc.org", + "version" : "2.81", + "server" : "https://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "5792-7" +}, "valueSet" :{ + "resourceType" : "ValueSet" +}, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"true", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "code" : "5792-7", + "system" : "http://loinc.org", + "severity" : "error", + "error" : "The provided code 'http://loinc.org#5792-7' was not found in the value set 'http://hl7.org/fhir/ValueSet/religious-affiliation'", + "class" : "UNKNOWN", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-message-id", + "valueString" : "None_of_the_provided_codes_are_in_the_value_set_one" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "https://tx.fhir.org/r4" + }], + "severity" : "error", + "code" : "code-invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "not-in-vs" + }], + "text" : "The provided code 'http://loinc.org#5792-7' was not found in the value set 'http://hl7.org/fhir/ValueSet/religious-affiliation'" + }, + "location" : ["Coding.code"], + "expression" : ["Coding.code"] + }] +} + +} +------------------------------------------------------------------------------------- diff --git a/input-cache/txcache/mimetypes.cache b/input-cache/txcache/mimetypes.cache new file mode 100644 index 0000000..76c2753 --- /dev/null +++ b/input-cache/txcache/mimetypes.cache @@ -0,0 +1,391 @@ +------------------------------------------------------------------------------------- +{"code" : { + "system" : "urn:ietf:bcp:13", + "code" : "text/cql" +}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "text/cql", + "code" : "text/cql", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "urn:ietf:bcp:13", + "code" : "application/elm+xml" +}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "application/elm+xml", + "code" : "application/elm+xml", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "urn:ietf:bcp:13", + "code" : "application/elm+json" +}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "application/elm+json", + "code" : "application/elm+json", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "urn:ietf:bcp:13", + "code" : "text/cql" +}, "valueSet" :null, "langs":"de", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "text/cql", + "code" : "text/cql", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "urn:ietf:bcp:13", + "code" : "application/elm+xml" +}, "valueSet" :null, "langs":"de", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "application/elm+xml", + "code" : "application/elm+xml", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "urn:ietf:bcp:13", + "code" : "application/elm+json" +}, "valueSet" :null, "langs":"de", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "application/elm+json", + "code" : "application/elm+json", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "urn:ietf:bcp:13", + "code" : "text/cql" +}, "valueSet" :null, "langs":"fr", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "text/cql", + "code" : "text/cql", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "urn:ietf:bcp:13", + "code" : "application/elm+xml" +}, "valueSet" :null, "langs":"fr", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "application/elm+xml", + "code" : "application/elm+xml", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "urn:ietf:bcp:13", + "code" : "application/elm+json" +}, "valueSet" :null, "langs":"fr", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "application/elm+json", + "code" : "application/elm+json", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "urn:ietf:bcp:13", + "code" : "image/png" +}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "image/png", + "code" : "image/png", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "urn:ietf:bcp:13", + "code" : "image/png" +}, "valueSet" :null, "langs":"de", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "image/png", + "code" : "image/png", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "urn:ietf:bcp:13", + "code" : "image/png" +}, "valueSet" :null, "langs":"fr", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "image/png", + "code" : "image/png", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "urn:ietf:bcp:13", + "code" : "text/x-sql" +}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "text/x-sql", + "code" : "text/x-sql", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "urn:ietf:bcp:13", + "code" : "text/x-sql" +}, "valueSet" :null, "langs":"de", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "text/x-sql", + "code" : "text/x-sql", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "urn:ietf:bcp:13", + "code" : "text/x-sql" +}, "valueSet" :null, "langs":"fr", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "text/x-sql", + "code" : "text/x-sql", + "system" : "urn:ietf:bcp:13", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- diff --git a/input-cache/txcache/servers.ini b/input-cache/txcache/servers.ini index 067e83a..f4f273e 100644 --- a/input-cache/txcache/servers.ini +++ b/input-cache/txcache/servers.ini @@ -1,3 +1,4 @@ [servers] tx.fhir.org.r4 = http://tx.fhir.org/r4 +..tx.fhir.org.r42 = https://tx.fhir.org/r4 diff --git a/input-cache/txcache/snomed.cache b/input-cache/txcache/snomed.cache index 1184ce9..bec41a2 100644 --- a/input-cache/txcache/snomed.cache +++ b/input-cache/txcache/snomed.cache @@ -102,7 +102,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -126,6 +125,61 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://snomed.info/sct", + "code" : "194828000", + "display" : "Angina (disorder)" +}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Angina", + "code" : "194828000", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20250201", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://snomed.info/sct", + "code" : "22298006", + "display" : "Myocardial infarction (disorder)" +}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "Myocardial infarction", + "code" : "22298006", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20250201", + "server" : "https://tx.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" diff --git a/input-cache/txcache/ucum.cache b/input-cache/txcache/ucum.cache index 0962dba..7f0e573 100644 --- a/input-cache/txcache/ucum.cache +++ b/input-cache/txcache/ucum.cache @@ -103,7 +103,6 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -126,6 +125,140 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://unitsofmeasure.org", + "code" : "mm[Hg]" +}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "mm[Hg]", + "code" : "mm[Hg]", + "system" : "http://unitsofmeasure.org", + "version" : "2.2", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://unitsofmeasure.org", + "code" : "mm[Hg]" +}, "valueSet" :null, "langs":"de", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "mm[Hg]", + "code" : "mm[Hg]", + "system" : "http://unitsofmeasure.org", + "version" : "2.2", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://unitsofmeasure.org", + "code" : "mm[Hg]" +}, "valueSet" :null, "langs":"fr", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "mm[Hg]", + "code" : "mm[Hg]", + "system" : "http://unitsofmeasure.org", + "version" : "2.2", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://unitsofmeasure.org", + "code" : "mo" +}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "mo", + "code" : "mo", + "system" : "http://unitsofmeasure.org", + "version" : "2.2", + "server" : "https://tx.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://unitsofmeasure.org", + "code" : "mm[Hg]" +}, "url": "http://hl7.org/fhir/ValueSet/ucum-vitals-common", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "x-system-cache-id", + "valueString" : "dc8fd4bc-091a-424a-8a3b-6198ef146891" + }, + { + "name" : "defaultDisplayLanguage", + "valueCode" : "en" + }] +}}#### +v: { + "display" : "mm[Hg]", + "code" : "mm[Hg]", + "system" : "http://unitsofmeasure.org", + "version" : "2.2", + "server" : "https://tx.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" diff --git a/input-cache/txcache/vs-231f071a-56b9-47ca-8acb-2192bff20983.json b/input-cache/txcache/vs-231f071a-56b9-47ca-8acb-2192bff20983.json new file mode 100644 index 0000000..85c603e --- /dev/null +++ b/input-cache/txcache/vs-231f071a-56b9-47ca-8acb-2192bff20983.json @@ -0,0 +1 @@ +{"resourceType":"ValueSet","id":"2.16.840.1.113883.3.117.1.7.1.292","meta":{"versionId":"34","lastUpdated":"2023-12-21T17:43:03.000-05:00","profile":["http://hl7.org/fhir/StructureDefinition/shareablevalueset","http://hl7.org/fhir/us/cqfmeasures/StructureDefinition/computable-valueset-cqfm","http://hl7.org/fhir/us/cqfmeasures/StructureDefinition/publishable-valueset-cqfm"]},"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/valueset-author","valueContactDetail":{"name":"TJC EH Author"}},{"url":"http://hl7.org/fhir/StructureDefinition/valueset-keyWord","valueString":"PC-01,PC-02,STK-02,STK-03,STK-05,VTE-01,VTE-02"},{"url":"http://hl7.org/fhir/StructureDefinition/resource-lastReviewDate","valueDate":"2025-01-21"},{"url":"http://hl7.org/fhir/StructureDefinition/valueset-effectiveDate","valueDate":"2021-06-11"}],"url":"http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.117.1.7.1.292","identifier":[{"system":"urn:ietf:rfc:3986","value":"urn:oid:2.16.840.1.113883.3.117.1.7.1.292"}],"version":"20210611","name":"EmergencyDepartmentVisit","title":"Emergency Department Visit","status":"active","experimental":false,"date":"2021-06-11T01:02:23-04:00","publisher":"TJC EH Steward","jurisdiction":[{"coding":[{"system":"urn:iso:std:iso:3166","code":"US"}]}],"purpose":"(Clinical Focus: The purpose of this value set is to represent concepts for encounters in the emergency department (ED).),(Data Element Scope: This value set may use a model element related to Encounter.),(Inclusion Criteria: Includes concepts that represent an encounter ocurring in the emergency department (ED).),(Exclusion Criteria: Excludes concepts that represent services not performed in the emergency department, including critical care and observation services.)","compose":{"include":[{"system":"http://snomed.info/sct","concept":[{"code":"4525004","display":"Emergency department patient visit (procedure)"}]}]},"expansion":{"identifier":"urn:uuid:243b94ce-fe00-4f5c-987e-ca17f47b3b52","timestamp":"2025-05-23T21:48:36-04:00","total":1,"contains":[{"system":"http://snomed.info/sct","version":"http://snomed.info/sct/731000124108/version/20250301","code":"4525004","display":"Emergency department patient visit (procedure)"}]}} \ No newline at end of file diff --git a/input-cache/txcache/vs-451ccadb-a963-4381-b188-f997b6e38463.json b/input-cache/txcache/vs-451ccadb-a963-4381-b188-f997b6e38463.json new file mode 100644 index 0000000..54f9c50 --- /dev/null +++ b/input-cache/txcache/vs-451ccadb-a963-4381-b188-f997b6e38463.json @@ -0,0 +1 @@ +{"resourceType":"ValueSet","id":"2.16.840.1.113883.3.666.5.307","meta":{"versionId":"33","lastUpdated":"2023-12-21T17:43:03.000-05:00","profile":["http://hl7.org/fhir/StructureDefinition/shareablevalueset","http://hl7.org/fhir/us/cqfmeasures/StructureDefinition/computable-valueset-cqfm","http://hl7.org/fhir/us/cqfmeasures/StructureDefinition/publishable-valueset-cqfm"]},"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/valueset-author","valueContactDetail":{"name":"Lantana EH Author"}},{"url":"http://hl7.org/fhir/StructureDefinition/resource-lastReviewDate","valueDate":"2025-02-11"},{"url":"http://hl7.org/fhir/StructureDefinition/valueset-effectiveDate","valueDate":"2020-03-07"}],"url":"http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.666.5.307","identifier":[{"system":"urn:ietf:rfc:3986","value":"urn:oid:2.16.840.1.113883.3.666.5.307"}],"version":"20200307","name":"EncounterInpatient","title":"Encounter Inpatient","status":"active","experimental":false,"date":"2020-03-07T01:00:21-05:00","publisher":"Lantana EH Steward","jurisdiction":[{"coding":[{"system":"urn:iso:std:iso:3166","code":"US"}]}],"purpose":"(Clinical Focus: The purpose of this value set is to represent concepts of inpatient hospitalization encounters.),(Data Element Scope: This value set may use a model element related to Encounter.),(Inclusion Criteria: Includes concepts that represent an encounter for inpatient hospitalizations.),(Exclusion Criteria: No exclusions.)","compose":{"include":[{"system":"http://snomed.info/sct","concept":[{"code":"183452005","display":"Emergency hospital admission (procedure)"},{"code":"32485007","display":"Hospital admission (procedure)"},{"code":"8715000","display":"Hospital admission, elective (procedure)"}]}]},"expansion":{"identifier":"urn:uuid:ff554fd6-3c2d-4a13-98fe-3928f42f85b6","timestamp":"2025-05-23T22:55:07-04:00","total":3,"contains":[{"system":"http://snomed.info/sct","version":"http://snomed.info/sct/731000124108/version/20250301","code":"183452005","display":"Emergency hospital admission (procedure)"},{"system":"http://snomed.info/sct","version":"http://snomed.info/sct/731000124108/version/20250301","code":"32485007","display":"Hospital admission (procedure)"},{"system":"http://snomed.info/sct","version":"http://snomed.info/sct/731000124108/version/20250301","code":"8715000","display":"Hospital admission, elective (procedure)"}]}} \ No newline at end of file diff --git a/input-cache/txcache/vs-externals.json b/input-cache/txcache/vs-externals.json new file mode 100644 index 0000000..b14157a --- /dev/null +++ b/input-cache/txcache/vs-externals.json @@ -0,0 +1,15 @@ +{ + "http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.117.1.7.1.292" : { + "server" : "http://tx.fhir.org/r4", + "filename" : "vs-231f071a-56b9-47ca-8acb-2192bff20983.json" + }, + "http://hl7.org/fhir/ValueSet/religious-affiliation" : null, + "http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.666.5.307" : { + "server" : "http://tx.fhir.org/r4", + "filename" : "vs-451ccadb-a963-4381-b188-f997b6e38463.json" + }, + "TBD" : null, + "http://not-a-known-code-system|2.36" : null, + "http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.464.1003.101.12.1053" : null, + "http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.464.1003.101.12.1082" : null +} diff --git a/input/fsh/codeSystems/valueSet.fsh b/input/fsh/codeSystems/valueSet.fsh new file mode 100644 index 0000000..e69de29 diff --git a/input/fsh/patient-profile.fsh b/input/fsh/patient-profile.fsh new file mode 100644 index 0000000..50c97a2 --- /dev/null +++ b/input/fsh/patient-profile.fsh @@ -0,0 +1,93 @@ +// @Name: Profile +// @Description: Example of a profile of the Patient resource. This example includes a few of the most commonly used constraints and documentation features of FHIR profiles. + +Profile: PatientProfile +Id: patient-profile +Parent: Patient +Title: "Patient Profile for Bangladesh" +Description: "Profile of Patient Bangladesh Standard" + +// ----- Begin rules: + +// Require at least one value inside the name element +* name 2..* +// === 1. Declare slicing on name by 'use' === +* name ^slicing.discriminator.type = #value +* name ^slicing.discriminator.path = "system" +* name ^slicing.rules = #open +* name ^slicing.description = "Slice name by use (official for English, usual for Bangla)" + +// === 2. Define slices === +* name contains + nameEnglish 1..1 MS and // slice alias for English name + nameBangla 1..1 MS // slice alias for Bangla name + +// === 3. Constrain English (official) name === +* name[nameEnglish].use = #en (exactly) +* name[nameEnglish].given 0..* +* name[nameEnglish].family 0..1 +* name[nameEnglish] ^short = "Legal name (English/Romanized)" +* name[nameEnglish] ^definition = "Official name as registered in government documents." + + +// === 4. Constrain Bangla name === +* name[nameBangla].use = #bn (exactly) +* name[nameBangla].given 0..* +* name[nameBangla].family 0..1 +* name[nameBangla] ^short = "নাম (বাংলা)" +* name[nameBangla] ^definition = "Patient's name written in Bengali script." + + +////////////////////// + +* identifier 1..* +* identifier ^slicing.discriminator.type = #value +* identifier ^slicing.discriminator.path = "system" +* identifier ^slicing.rules = #open +* identifier ^slicing.ordered = false +* identifier ^slicing.description = "Slice based on the type of identifier." +* identifier contains + NID 0..1 and + BRN 0..1 and + UID 0..1 + +* identifier[NID].system = "http://dghs.gov.bd/identifier/nid" +* identifier[NID].type.coding.code = #NID +* identifier[NID].type.coding.system = "http://terminology.hl7.org/CodeSystem/v2-0203" +* identifier[NID].type.text = "Organization identifier" + +* identifier[BRN].system = "http://dghs.gov.bd/identifier/brn" +* identifier[BRN].type.coding.code = #BRN +* identifier[BRN].type.coding.system = "http://terminology.hl7.org/CodeSystem/v2-0203" +* identifier[BRN].type.text = "Organization identifier" + + +* identifier[UID].system = "http://dghs.gov.bd/identifier/uid" +* identifier[UID].type.coding.code = #UID +* identifier[UID].type.coding.system = "http://terminology.hl7.org/CodeSystem/v2-0203" +* identifier[UID].type.text = "Organization identifier" + + +// Mark elements as MustSupport +// * name and name.given and name.family MS +// * name ^short = "dak nam" +// * name ^definition = "Official name (i.e., legal name) of the patient, corresponding to official in [this value set](https://www.hl7.org/fhir/valueset-name-use.html)." + +// The contents of ^comment are also displayed on the "Detailed Descriptions" tab +// in the built Implementation Guide. +* birthDate ^comment = "If exact date of birth is partially or completely unknown, Implementers SHALL populate this element with the date of birth information listed on the patient's government-issued identification." + +// Do not allow gender to be included. +* gender 1..1 + +// Require a value from a specific value set be used for an element +* maritalStatus from http://hl7.org/fhir/ValueSet/marital-status + +// Restrict something[x] to a specific type -- in this case only allowing dateTime to be used +* deceased[x] only dateTime + +// Religion using standard HL7 extension +* extension contains http://hl7.org/fhir/StructureDefinition/patient-religion named religion 0..1 +* extension[religion] ^short = "ধর্ম (Religion)" +* extension[religion] ^definition = "The patient's religious affiliation." +* extension[religion].valueCodeableConcept from http://hl7.org/fhir/ValueSet/religious-affiliation \ No newline at end of file diff --git a/local-template/content/.index.db b/local-template/content/.index.db new file mode 100644 index 0000000000000000000000000000000000000000..f4572f232c9608285db2943b368a10c287197cb8 GIT binary patch literal 12288 zcmeI#K}*9h7zW^E%9KI3frnjl8Ehbm2zqtS3S)I@*9~?WaYih3?M&05XTgJi%D?5& zW?Qfn$4*|x8)&q^`+?~3sbI?y&bgdCbIE$Q9_tMp=g=yd7VmAQ zr~Ngh^SJ8Iud-ZWAcJiFyTURa3K{!RXr|=jt{-NX&&R9RTG!oAX0t#{MW|vuCEwkS zLX~Fgx`#YSL|>RZ-+d*dKj+H4d_KN&J2x$N#Jcu~HH>t#d0r^ix^+s@eTmojB}mWm zW1gsJQI8F`{*L35Y^Bfj`}!Yc>04FbFdzT{2tWV=5P$##AOHafKmY;|*j9m(-WbmR d+xmI2F9<*Y0uX=z1Rwwb2tWV=5P-l!;0FYFoRa_m literal 0 HcmV?d00001 diff --git a/local-template/content/.index.json b/local-template/content/.index.json new file mode 100644 index 0000000..7ee6e2c --- /dev/null +++ b/local-template/content/.index.json @@ -0,0 +1,4 @@ +{ + "index-version" : 2, + "files" : [] +} diff --git a/local-template/content/assets/.index.db b/local-template/content/assets/.index.db new file mode 100644 index 0000000000000000000000000000000000000000..f4572f232c9608285db2943b368a10c287197cb8 GIT binary patch literal 12288 zcmeI#K}*9h7zW^E%9KI3frnjl8Ehbm2zqtS3S)I@*9~?WaYih3?M&05XTgJi%D?5& zW?Qfn$4*|x8)&q^`+?~3sbI?y&bgdCbIE$Q9_tMp=g=yd7VmAQ zr~Ngh^SJ8Iud-ZWAcJiFyTURa3K{!RXr|=jt{-NX&&R9RTG!oAX0t#{MW|vuCEwkS zLX~Fgx`#YSL|>RZ-+d*dKj+H4d_KN&J2x$N#Jcu~HH>t#d0r^ix^+s@eTmojB}mWm zW1gsJQI8F`{*L35Y^Bfj`}!Yc>04FbFdzT{2tWV=5P$##AOHafKmY;|*j9m(-WbmR d+xmI2F9<*Y0uX=z1Rwwb2tWV=5P-l!;0FYFoRa_m literal 0 HcmV?d00001 diff --git a/local-template/content/assets/.index.json b/local-template/content/assets/.index.json new file mode 100644 index 0000000..7ee6e2c --- /dev/null +++ b/local-template/content/assets/.index.json @@ -0,0 +1,4 @@ +{ + "index-version" : 2, + "files" : [] +} diff --git a/local-template/content/assets/images/.index.db b/local-template/content/assets/images/.index.db new file mode 100644 index 0000000000000000000000000000000000000000..f4572f232c9608285db2943b368a10c287197cb8 GIT binary patch literal 12288 zcmeI#K}*9h7zW^E%9KI3frnjl8Ehbm2zqtS3S)I@*9~?WaYih3?M&05XTgJi%D?5& zW?Qfn$4*|x8)&q^`+?~3sbI?y&bgdCbIE$Q9_tMp=g=yd7VmAQ zr~Ngh^SJ8Iud-ZWAcJiFyTURa3K{!RXr|=jt{-NX&&R9RTG!oAX0t#{MW|vuCEwkS zLX~Fgx`#YSL|>RZ-+d*dKj+H4d_KN&J2x$N#Jcu~HH>t#d0r^ix^+s@eTmojB}mWm zW1gsJQI8F`{*L35Y^Bfj`}!Yc>04FbFdzT{2tWV=5P$##AOHafKmY;|*j9m(-WbmR d+xmI2F9<*Y0uX=z1Rwwb2tWV=5P-l!;0FYFoRa_m literal 0 HcmV?d00001 diff --git a/local-template/content/assets/images/.index.json b/local-template/content/assets/images/.index.json new file mode 100644 index 0000000..7ee6e2c --- /dev/null +++ b/local-template/content/assets/images/.index.json @@ -0,0 +1,4 @@ +{ + "index-version" : 2, + "files" : [] +} diff --git a/local-template/includes/.index.db b/local-template/includes/.index.db new file mode 100644 index 0000000000000000000000000000000000000000..f4572f232c9608285db2943b368a10c287197cb8 GIT binary patch literal 12288 zcmeI#K}*9h7zW^E%9KI3frnjl8Ehbm2zqtS3S)I@*9~?WaYih3?M&05XTgJi%D?5& zW?Qfn$4*|x8)&q^`+?~3sbI?y&bgdCbIE$Q9_tMp=g=yd7VmAQ zr~Ngh^SJ8Iud-ZWAcJiFyTURa3K{!RXr|=jt{-NX&&R9RTG!oAX0t#{MW|vuCEwkS zLX~Fgx`#YSL|>RZ-+d*dKj+H4d_KN&J2x$N#Jcu~HH>t#d0r^ix^+s@eTmojB}mWm zW1gsJQI8F`{*L35Y^Bfj`}!Yc>04FbFdzT{2tWV=5P$##AOHafKmY;|*j9m(-WbmR d+xmI2F9<*Y0uX=z1Rwwb2tWV=5P-l!;0FYFoRa_m literal 0 HcmV?d00001 diff --git a/local-template/includes/.index.json b/local-template/includes/.index.json new file mode 100644 index 0000000..7ee6e2c --- /dev/null +++ b/local-template/includes/.index.json @@ -0,0 +1,4 @@ +{ + "index-version" : 2, + "files" : [] +} diff --git a/local-template/package/.index.db b/local-template/package/.index.db new file mode 100644 index 0000000000000000000000000000000000000000..f4572f232c9608285db2943b368a10c287197cb8 GIT binary patch literal 12288 zcmeI#K}*9h7zW^E%9KI3frnjl8Ehbm2zqtS3S)I@*9~?WaYih3?M&05XTgJi%D?5& zW?Qfn$4*|x8)&q^`+?~3sbI?y&bgdCbIE$Q9_tMp=g=yd7VmAQ zr~Ngh^SJ8Iud-ZWAcJiFyTURa3K{!RXr|=jt{-NX&&R9RTG!oAX0t#{MW|vuCEwkS zLX~Fgx`#YSL|>RZ-+d*dKj+H4d_KN&J2x$N#Jcu~HH>t#d0r^ix^+s@eTmojB}mWm zW1gsJQI8F`{*L35Y^Bfj`}!Yc>04FbFdzT{2tWV=5P$##AOHafKmY;|*j9m(-WbmR d+xmI2F9<*Y0uX=z1Rwwb2tWV=5P-l!;0FYFoRa_m literal 0 HcmV?d00001 diff --git a/local-template/package/.index.json b/local-template/package/.index.json new file mode 100644 index 0000000..7ee6e2c --- /dev/null +++ b/local-template/package/.index.json @@ -0,0 +1,4 @@ +{ + "index-version" : 2, + "files" : [] +}