plan_executor 1.0.2 → 1.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +3 -2
- data/Gemfile +3 -6
- data/Gemfile.lock +52 -48
- data/README.md +2 -2
- data/fixtures/attachment/ccda_pdf.pdf +0 -0
- data/fixtures/attachment/ccda_pdf_base64.txt +2489 -0
- data/fixtures/attachment/ccda_structured.xml +1976 -0
- data/fixtures/attachment/ccda_unstructured.xml +2563 -0
- data/fixtures/daf/conformance-daf-query-responder.xml +2024 -193
- data/fixtures/diagnostic_report/diagnosticreport-familyhistory-create.xml +67 -0
- data/fixtures/diagnostic_report/diagnosticreport-hlatyping-create.xml +64 -0
- data/fixtures/diagnostic_report/diagnosticreport-pathologyreport-create.xml +312 -0
- data/fixtures/diagnostic_report/dr-100.xml +3 -3
- data/fixtures/diagnostic_report/dr-200.xml +5 -5
- data/fixtures/diagnostic_report/dr-300.xml +3 -3
- data/fixtures/diagnostic_report/dr-400.xml +3 -3
- data/fixtures/{diagnostic_order → diagnostic_request}/do-100.xml +57 -64
- data/fixtures/diagnostic_request/do-200.xml +73 -0
- data/fixtures/{diagnostic_order → diagnostic_request}/do-300.xml +73 -91
- data/{lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder → fixtures/diagnostic_request}/do-400.xml +74 -88
- data/fixtures/family_member_history/familymemberhistory-familyhistory-create.xml +27 -0
- data/fixtures/financial/claim-example-oral-average.xml +199 -0
- data/fixtures/financial/claim-example-oral-orthoplan.xml +298 -0
- data/fixtures/financial/claim-example.xml +98 -0
- data/fixtures/financial/eligibilityrequest-example.xml +40 -0
- data/fixtures/observation/obs-401.xml +7 -17
- data/fixtures/observation/obs-402.xml +7 -17
- data/fixtures/observation/obs-403.xml +4 -29
- data/fixtures/observation/obs-407.xml +4 -11
- data/fixtures/observation/observation-datawarehouse-create.xml +72 -0
- data/fixtures/observation/observation-familyhistory-create.xml +61 -0
- data/fixtures/observation/observation-germline-create.xml +72 -0
- data/fixtures/observation/observation-register-create.xml +72 -0
- data/fixtures/patch/medicationrequest-simple.xml +16 -0
- data/fixtures/patient/patient-example-updated.xml +1 -7
- data/fixtures/patient/patient-example-us-extensions.xml +119 -0
- data/fixtures/patient/patient-example.xml +46 -27
- data/fixtures/patient/patient-familyhistory-create.xml +45 -0
- data/fixtures/patient/patient-register-create.xml +47 -0
- data/fixtures/practitioner/practitioner-register-create.xml +32 -0
- data/fixtures/record/condition-example-f201-fever.xml +54 -49
- data/fixtures/record/condition-example-f205-infection.xml +16 -15
- data/fixtures/record/diagnosticreport-example-f201-brainct.xml +45 -18
- data/fixtures/record/encounter-example-f201-20130404.xml +42 -15
- data/fixtures/record/encounter-example-f202-20130128.xml +57 -15
- data/fixtures/record/observation-example-f202-temperature.xml +85 -60
- data/fixtures/record/organization-example-f201-aumc.xml +87 -4
- data/fixtures/record/organization-example-f203-bumc.xml +53 -4
- data/fixtures/record/patient-example-f201-roel.xml +108 -8
- data/fixtures/record/practitioner-example-f201-ab.xml +73 -14
- data/fixtures/record/procedure-example-f201-tpf.xml +39 -9
- data/fixtures/scheduling/slot-simple.xml +1 -1
- data/fixtures/sequence/sequence-register-create.xml +31 -0
- data/fixtures/specimen/spec-100.xml +8 -8
- data/fixtures/specimen/spec-400.xml +11 -11
- data/fixtures/specimen/spec-uslab-example1.xml +11 -11
- data/fixtures/specimen/specimen-familyhistory-create.xml +54 -0
- data/fixtures/specimen/specimen-register-create.xml +49 -0
- data/fixtures/terminology/codesystem-data-types.json +230 -0
- data/fixtures/terminology/codesystem-resource-types.json +482 -0
- data/fixtures/terminology/codesystem-simple.xml +129 -0
- data/fixtures/terminology/conceptmap-example.xml +141 -0
- data/fixtures/terminology/v2-codesystem.json +1297 -0
- data/fixtures/terminology/v2-valueset.json +16 -0
- data/fixtures/terminology/valueset-defined-types.json +25 -0
- data/fixtures/terminology/valueset-example.xml +111 -0
- data/fixtures/validation/observation.profile.xml +1534 -253
- data/fixtures/validation/observations/observation-example.xml +66 -0
- data/lib/FHIR_structure.json +129 -82
- data/lib/daf_resource_generator.rb +7 -7
- data/lib/data/resources.rb +50 -30
- data/lib/ext/client.rb +2 -2
- data/lib/plan_executor.rb +6 -1
- data/lib/resource_generator.rb +413 -212
- data/lib/tasks/tasks.rake +151 -20
- data/lib/tests/assertions.rb +24 -18
- data/lib/tests/base_test.rb +17 -3
- data/lib/tests/suites/argonaut_provider_connectathon_test.rb +234 -0
- data/lib/tests/suites/base_suite.rb +7 -3
- data/lib/tests/suites/connectathon_attachment_track_test.rb +124 -0
- data/lib/tests/suites/connectathon_audit_track.rb +113 -69
- data/lib/tests/suites/connectathon_care_plan_track.rb +237 -0
- data/lib/tests/suites/connectathon_fetch_patient_record.rb +40 -39
- data/lib/tests/suites/connectathon_financial_track.rb +231 -23
- data/lib/tests/suites/connectathon_genomics_track_test.rb +255 -0
- data/lib/tests/suites/connectathon_lab_order_track.rb +131 -104
- data/lib/tests/suites/connectathon_patch_track.rb +125 -0
- data/lib/tests/suites/connectathon_patient_track.rb +75 -68
- data/lib/tests/suites/connectathon_profile_validation.rb +9 -8
- data/lib/tests/suites/connectathon_scheduling_track.rb +127 -70
- data/lib/tests/suites/connectathon_terminology_track.rb +211 -34
- data/lib/tests/suites/daf_profiles_test.rb +112 -72
- data/lib/tests/suites/format_test.rb +113 -255
- data/lib/tests/suites/history_test.rb +72 -68
- data/lib/tests/suites/read_test.rb +31 -27
- data/lib/tests/suites/resource_test.rb +283 -85
- data/lib/tests/suites/search_test.rb +5 -3
- data/lib/tests/suites/search_test_robust.rb +8 -76
- data/lib/tests/suites/sprinkler_search_test.rb +104 -84
- data/lib/tests/suites/suite_engine.rb +17 -23
- data/lib/tests/suites/transaction_test.rb +117 -174
- data/lib/tests/testscripts/base_testscript.rb +425 -189
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Client Assigned Id/connectathon-14-patient-base-client-id-json.xml +517 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Client Assigned Id/connectathon-14-patient-base-client-id-xml.xml +517 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Client Assigned Id/connectathon-14-patient-bonus-client-id-json.xml +648 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Client Assigned Id/connectathon-14-patient-bonus-client-id-xml.xml +648 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/README.html +68 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Server Assigned Id/connectathon-14-patient-base-server-id-json.xml +515 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Server Assigned Id/connectathon-14-patient-base-server-id-xml.xml +515 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Server Assigned Id/connectathon-14-patient-bonus-server-id-json.xml +645 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Server Assigned Id/connectathon-14-patient-bonus-server-id-xml.xml +642 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/_reference/capabilities/PatientCapabilityStatement.xml +43 -0
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-PeterChalmers-min.json +1 -3
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-PeterChalmers-min.xml +0 -0
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-PeterChalmers.json +5 -10
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-PeterChalmers.xml +5 -5
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-bonus-PeterChalmers-min.json +1 -3
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-bonus-PeterChalmers-min.xml +0 -0
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-bonus-PeterChalmers.json +5 -10
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-bonus-PeterChalmers.xml +4 -5
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/_reference/resources/patient-create-client-id-PeterChalmers.json +96 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/_reference/resources/patient-create-client-id-PeterChalmers.xml +103 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/_reference/resources/patient-create-client-id-bonus-PeterChalmers.json +104 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/_reference/resources/patient-create-client-id-bonus-PeterChalmers.xml +108 -0
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-PeterChalmers-min.json +1 -3
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-PeterChalmers-min.xml +0 -0
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-PeterChalmers.json +6 -10
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-PeterChalmers.xml +6 -5
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus1-PeterChalmers-min.json +1 -3
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus1-PeterChalmers-min.xml +0 -0
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus1-PeterChalmers.json +7 -11
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus1-PeterChalmers.xml +5 -5
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus2-PeterChalmers-min.json +2 -4
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus2-PeterChalmers-min.xml +1 -1
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus2-PeterChalmers.json +7 -11
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus2-PeterChalmers.xml +8 -7
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/01-RegisterPatient/connectathon-14-patient-fhirclient-01-register-client-id-xml.xml +306 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/01-RegisterPatient/connectathon-14-patient-fhirclient-01-register-server-id-xml.xml +317 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/02-PatientUpdate/connectathon-14-patient-fhirclient-02-update-client-id-xml.xml +346 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/02-PatientUpdate/connectathon-14-patient-fhirclient-02-update-server-id-xml.xml +385 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/capabilities/PatientCapabilityStatement.json +50 -0
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient/_reference/conformance/PatientConformance.xml → scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/capabilities/PatientCapabilityStatement.xml} +10 -2
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-create-client-id.json +21 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-create-client-id.xml +15 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-create-server-id.json +20 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-create-server-id.xml +14 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-update-client-id.json +21 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-update-client-id.xml +15 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-update-server-id.json +20 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-update-server-id.xml +14 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/01-RegisterPatient/connectathon-14-patient-fhirserver-01-register-client-id-json.xml +262 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/01-RegisterPatient/connectathon-14-patient-fhirserver-01-register-client-id-xml.xml +262 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/01-RegisterPatient/connectathon-14-patient-fhirserver-01-register-server-id-json.xml +273 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/01-RegisterPatient/connectathon-14-patient-fhirserver-01-register-server-id-xml.xml +273 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/02-PatientUpdate/connectathon-14-patient-fhirserver-02-update-client-id-json.xml +290 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/02-PatientUpdate/connectathon-14-patient-fhirserver-02-update-client-id-xml.xml +290 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/02-PatientUpdate/connectathon-14-patient-fhirserver-02-update-server-id-json.xml +326 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/02-PatientUpdate/connectathon-14-patient-fhirserver-02-update-server-id-xml.xml +326 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/03-PatientRead/connectathon-14-patient-fhirserver-03-read-client-id-json.xml +247 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/03-PatientRead/connectathon-14-patient-fhirserver-03-read-client-id-xml.xml +247 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/03-PatientRead/connectathon-14-patient-fhirserver-03-read-server-id-json.xml +282 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/03-PatientRead/connectathon-14-patient-fhirserver-03-read-server-id-xml.xml +281 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/04-PatientHistory/connectathon-14-patient-fhirserver-04-history-client-id-json.xml +330 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/04-PatientHistory/connectathon-14-patient-fhirserver-04-history-client-id-xml.xml +330 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/04-PatientHistory/connectathon-14-patient-fhirserver-04-history-server-id-json.xml +366 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/04-PatientHistory/connectathon-14-patient-fhirserver-04-history-server-id-xml.xml +366 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/05-PatientVRead/connectathon-14-patient-fhirserver-05-vread-client-id-json.xml +527 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/05-PatientVRead/connectathon-14-patient-fhirserver-05-vread-client-id-xml.xml +527 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/05-PatientVRead/connectathon-14-patient-fhirserver-05-vread-server-id-json.xml +519 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/05-PatientVRead/connectathon-14-patient-fhirserver-05-vread-server-id-xml.xml +519 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/06-PatientSearching/connectathon-14-patient-fhirserver-06-search-client-id-json.xml +290 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/06-PatientSearching/connectathon-14-patient-fhirserver-06-search-client-id-xml.xml +290 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/06-PatientSearching/connectathon-14-patient-fhirserver-06-search-server-id-json.xml +288 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/06-PatientSearching/connectathon-14-patient-fhirserver-06-search-server-id-xml.xml +288 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/07-PatientDeletion/connectathon-14-patient-fhirserver-07-delete-client-id-json.xml +252 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/07-PatientDeletion/connectathon-14-patient-fhirserver-07-delete-client-id-xml.xml +252 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/07-PatientDeletion/connectathon-14-patient-fhirserver-07-delete-server-id-json.xml +284 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/07-PatientDeletion/connectathon-14-patient-fhirserver-07-delete-server-id-xml.xml +284 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/99-PatientAll/connectathon-14-patient-fhirserver-99-all-client-id-json.xml +897 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/99-PatientAll/connectathon-14-patient-fhirserver-99-all-client-id-xml.xml +897 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/99-PatientAll/connectathon-14-patient-fhirserver-99-all-server-id-json.xml +963 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/99-PatientAll/connectathon-14-patient-fhirserver-99-all-server-id-xml.xml +963 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/capabilities/PatientCapabilityStatement.json +50 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/capabilities/PatientCapabilityStatement.xml +42 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-create-client-id.json +86 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-create-client-id.xml +62 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-create-server-id.json +85 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-create-server-id.xml +61 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-update-client-id.json +86 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-update-client-id.xml +62 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-update-server-id.json +86 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-update-server-id.xml +62 -0
- data/lib/tests/testscripts/scripts/spec/_reference/resources/patient-example-update.json +145 -0
- data/lib/tests/testscripts/scripts/spec/_reference/resources/patient-example.json +146 -0
- data/lib/tests/testscripts/scripts/spec/testscript-example-history.xml +191 -0
- data/lib/tests/testscripts/scripts/spec/testscript-example-multisystem.xml +190 -0
- data/lib/tests/testscripts/scripts/spec/testscript-example-readtest.xml +178 -0
- data/lib/tests/testscripts/scripts/spec/testscript-example-rule.xml +266 -0
- data/lib/tests/testscripts/scripts/spec/testscript-example-search.xml +177 -0
- data/lib/tests/testscripts/scripts/spec/testscript-example-update.xml +163 -0
- data/lib/tests/testscripts/scripts/spec/testscript-example.xml +228 -0
- data/lib/tests/testscripts/testscript_engine.rb +36 -22
- data/logs/.keep +0 -0
- data/plan_executor.gemspec +11 -3
- data/test/test_helper.rb +3 -3
- data/test/unit/fixtures_test.rb +24 -24
- data/test/unit/metadata_test.rb +19 -9
- data/test/unit/resource_generator_test.rb +20 -0
- metadata +244 -249
- data/fixtures/diagnostic_order/do-200.xml +0 -121
- data/fixtures/diagnostic_order/do-400.xml +0 -88
- data/fixtures/financial/claim-example-average.xml +0 -168
- data/fixtures/financial/claim-example-simple.xml +0 -67
- data/fixtures/order/order-100.xml +0 -61
- data/fixtures/order/order-200.xml +0 -61
- data/fixtures/order/order-300.xml +0 -61
- data/fixtures/order/order-400.xml +0 -61
- data/fixtures/order_response/ordresp-100.xml +0 -79
- data/fixtures/order_response/ordresp-110.xml +0 -79
- data/fixtures/order_response/ordresp-200.xml +0 -79
- data/fixtures/order_response/ordresp-210.xml +0 -79
- data/fixtures/order_response/ordresp-300.xml +0 -79
- data/fixtures/order_response/ordresp-310.xml +0 -79
- data/fixtures/order_response/ordresp-400.xml +0 -79
- data/fixtures/order_response/ordresp-410.xml +0 -79
- data/fixtures/patient/patient-example-us-extensions(us01).xml +0 -81
- data/fixtures/patient/patient-format-example.xml +0 -101
- data/fixtures/validation/observations/observation-example(example).xml +0 -50
- data/lib/tests/suites/argonaut_resprint_1_test.rb +0 -260
- data/lib/tests/suites/argonaut_resprint_2_test.rb +0 -369
- data/lib/tests/suites/argonaut_resprint_3_test.rb +0 -309
- data/lib/tests/suites/argonaut_sprint_1_test.rb +0 -187
- data/lib/tests/suites/argonaut_sprint_2_test.rb +0 -115
- data/lib/tests/suites/argonaut_sprint_3_test.rb +0 -208
- data/lib/tests/suites/argonaut_sprint_4_test.rb +0 -335
- data/lib/tests/suites/argonaut_sprint_5_test.rb +0 -196
- data/lib/tests/suites/argonaut_sprint_6_test.rb +0 -243
- data/lib/tests/suites/argonaut_sprint_7_test.rb +0 -161
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Client Assigned Id/track1-patient-base-client-id-json.xml +0 -348
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Client Assigned Id/track1-patient-base-client-id-xml.xml +0 -348
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Client Assigned Id/track1-patient-bonus-client-id-json.xml +0 -420
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Client Assigned Id/track1-patient-bonus-client-id-xml.xml +0 -420
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/README.html +0 -68
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Server Assigned Id/track1-patient-base-server-id-json.xml +0 -352
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Server Assigned Id/track1-patient-base-server-id-xml.xml +0 -352
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Server Assigned Id/track1-patient-bonus-server-id-json.xml +0 -421
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Server Assigned Id/track1-patient-bonus-server-id-xml.xml +0 -421
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/C-CDA_R2-1_CCD-ussg.xml +0 -3414
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-A1-empty-on-instance.xml +0 -9
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-A2-empty-by-ref.xml +0 -15
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-A3-empty-by-identifier.xml +0 -13
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-A4-empty-by-contained.xml +0 -15
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-B1-CCDA-on-instance.xml +0 -15
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-B2-CCDA-by-ref.xml +0 -21
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-B3-CCDA-by-identifier.xml +0 -19
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-B4-CCDA-by-contained.xml +0 -21
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/questionnaire-sdc-profile-example-ussg-fht.xml +0 -3905
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/questionnaireresponse-expected-ussg-fht-CCDA.xml +0 -190
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/questionnaireresponse-expected-ussg-fht-empty.xml +0 -177
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/track11-sdc-prepop-xml.xml +0 -142
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Expand/Client Assigned Id/track2-ts-suite1-expand-client-id.xml +0 -925
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Expand/Client Assigned Id/track2-ts-suite2-expand-filter-client-id.xml +0 -930
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Expand/Server Assigned Id/track2-ts-suite1-expand-server-id.xml +0 -953
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Expand/Server Assigned Id/track2-ts-suite2-expand-filter-server-id.xml +0 -958
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Lookup/track2-ts-suite5-loinc-lookup-xml.xml +0 -224
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Lookup/track2-ts-suite5-snomed-lookup-xml.xml +0 -224
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/README.html +0 -85
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Translate/track2-ts-suite6-translate-xml.xml +0 -224
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Validate-code/Client Assigned Id/track2-ts-suite3-validate-code-client-id.xml +0 -1807
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Validate-code/Client Assigned Id/track2-ts-suite4-validate-code-client-id.xml +0 -714
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Validate-code/Server Assigned Id/track2-ts-suite3-validate-code-server-id.xml +0 -1835
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Validate-code/Server Assigned Id/track2-ts-suite4-validate-code-server-id.xml +0 -742
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ConceptMapSuite6Conformance.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite1Conformance.xml +0 -17
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite2Conformance.xml +0 -17
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite3Conformance.xml +0 -14
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite4Conformance.xml +0 -14
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite5Conformance.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-2-a.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-2-b.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-3-a.xml +0 -13
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-3-b.xml +0 -13
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-4-a.xml +0 -15
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-4-b.xml +0 -15
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/lookup-loinc-input-5-2.xml +0 -10
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/lookup-loinc-input-5-3.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/lookup-snomed-input-5-2.xml +0 -10
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/lookup-snomed-input-5-3.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/translate-conceptmap-input-6-2.xml +0 -14
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/translate-conceptmap-input-6-3.xml +0 -15
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-1-expand-min.xml +0 -47
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-1-filter-min.xml +0 -23
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-2-expand-min.xml +0 -132
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-2-filter-min.xml +0 -38
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-3-expand-min.xml +0 -252
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-3-filter-min.xml +0 -58
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-4-expand-min.xml +0 -57
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-4-filter-min.xml +0 -28
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-1-expand-min.xml +0 -347
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-1-filter-min.xml +0 -33
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-2-expand-min.xml +0 -637
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-2-filter-min.xml +0 -33
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-3-filter-min.xml +0 -58
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/lookup-loinc-min.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/lookup-snomed-min.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/suite3-invalid-min.xml +0 -10
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/suite3-valid-min.xml +0 -7
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/suite4-invalid-min.xml +0 -10
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/suite4-valid-min.xml +0 -7
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/translate-conceptmap-min.xml +0 -17
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-1.xml +0 -55
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-2.xml +0 -122
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-3.xml +0 -222
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-4.xml +0 -65
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/intensional-case-1.xml +0 -31
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/intensional-case-2.xml +0 -31
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/intensional-case-3.xml +0 -31
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/translate-conceptmap-case-1.xml +0 -145
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/conformance/DecisionSupportServiceModule-Evaluate.xml +0 -17
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-incomplete-request-payload.xml +0 -26
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-incomplete-response-min-payload.xml +0 -7
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-incomplete-response-payload.xml +0 -332
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-malformed-request-payload.xml +0 -28
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-malformed-response-min-payload.xml +0 -7
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-malformed-response-payload.xml +0 -20
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-request-payload.xml +0 -28
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-response-min-payload.xml +0 -7
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-response-payload.xml +0 -332
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-unauthorized-request-payload.xml +0 -28
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-unauthorized-response-min-payload.xml +0 -7
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-unauthorized-response-payload.xml +0 -8
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/gao-assessment-request-payload.xml +0 -176
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/gao-assessment-response-payload-min.xml +0 -32
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/gao-assessment-response-payload.xml +0 -80
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/track3-cds-evaluate-cdc-immunization.xml +0 -290
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/track3-cds-evaluate-gao-profile.xml +0 -110
- data/lib/tests/testscripts/xml/Connectathon11/Track6-FHIR-Genomics/Client_Assigned_Id/TestScript_FHIR-Genomics.xml +0 -170
- data/lib/tests/testscripts/xml/Connectathon11/Track6-FHIR-Genomics/_reference/resources/sequence-example-1.xml +0 -31
- data/lib/tests/testscripts/xml/Connectathon11/Track6-FHIR-Genomics/_reference/resources/sequence-example-2.xml +0 -31
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Actors.png +0 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Client_Assigned_Id/track7-laborder100-xml.xml +0 -590
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Client_Assigned_Id/track7-laborder200-xml.xml +0 -587
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Client_Assigned_Id/track7-laborder300-xml.xml +0 -612
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Client_Assigned_Id/track7-laborder400-xml.xml +0 -635
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Peer-to-Peer/track7-laborder100-peer2peer-xml.xml +0 -752
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Thumbs.db +0 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/conformance/LabOrderLabReport-CreateDeleteReadUpdate.xml +0 -187
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/conformance/html.xslt +0 -45
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-100-update.xml +0 -64
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-100.xml +0 -64
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-200-update.xml +0 -121
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-200.xml +0 -121
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-300-update.xml +0 -91
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-300.xml +0 -91
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-400-update.xml +0 -88
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticReport/dr-100.xml +0 -96
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticReport/dr-200.xml +0 -125
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticReport/dr-300.xml +0 -132
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticReport/dr-400.xml +0 -121
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-100.xml +0 -58
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-101.xml +0 -58
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-200.xml +0 -125
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-300.xml +0 -106
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-301.xml +0 -106
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-302.xml +0 -106
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-303.xml +0 -106
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-304.xml +0 -106
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-400.xml +0 -87
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-401.xml +0 -95
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-402.xml +0 -95
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-403.xml +0 -84
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-404.xml +0 -84
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-405.xml +0 -83
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-406.xml +0 -83
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-407.xml +0 -70
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-408.xml +0 -84
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-uslab-example5.xml +0 -102
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Order/order-100.xml +0 -61
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Order/order-200.xml +0 -61
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Order/order-300.xml +0 -61
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Order/order-400.xml +0 -61
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-100.xml +0 -79
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-110.xml +0 -79
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-200.xml +0 -79
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-210.xml +0 -79
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-300.xml +0 -79
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-310.xml +0 -79
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-400.xml +0 -79
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-410.xml +0 -79
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Organization/org-uslab-example3.xml +0 -49
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Patient/patient-uslab-example1.xml +0 -44
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Practitioner/pract-uslab-example1.xml +0 -18
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Practitioner/pract-uslab-example3.xml +0 -36
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Specimen/Thumbs.db +0 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Specimen/spec-100.xml +0 -65
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Specimen/spec-400.xml +0 -70
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Specimen/spec-uslab-example1.xml +0 -82
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Testscript 1 Document.txt +0 -122
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Testscript 2 Document.txt +0 -103
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Testscript 3 Document.txt +0 -201
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Testscript 4 Document.txt +0 -310
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/_reference/conformance/MedicationStatementCreate.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/_reference/conformance/PatientSearchType.xml +0 -15
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/_reference/resources/medicationstatement-create.json +0 -39
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/_reference/resources/medicationstatement-patch.json +0 -3
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/track9-patch-medicationstatement-json-if-match.xml +0 -321
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/track9-patch-medicationstatement-json.xml +0 -303
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/track9-patch-peer2peer-patient-json.xml +0 -235
- data/test/fixtures/testscript-example.xml +0 -202
- data/test/fixtures/testscript-history.xml +0 -143
- data/test/fixtures/testscript-readtest.xml +0 -272
- data/test/fixtures/testscript-search.xml +0 -282
- data/test/fixtures/testscript-update.xml +0 -147
- data/test/unit/argonaut_sprint6_test.rb +0 -31
- data/test/unit/argonaut_sprint7_test.rb +0 -21
- data/test/unit/basic_test.rb +0 -27
- data/test/unit/fetch_patient_record_test.rb +0 -357
- data/test/unit/financial_test.rb +0 -41
@@ -0,0 +1,129 @@
|
|
1
|
+
<CodeSystem xmlns="http://hl7.org/fhir">
|
2
|
+
<meta>
|
3
|
+
<profile value="http://hl7.org/fhir/StructureDefinition/codesystem-shareable-definition"/>
|
4
|
+
</meta>
|
5
|
+
<text>
|
6
|
+
<status value="generated"/>
|
7
|
+
<div xmlns="http://www.w3.org/1999/xhtml">
|
8
|
+
<p>CodeSystem "ACME Codes for Cholesterol": This is an example code system that
|
9
|
+
includes
|
10
|
+
all the codes for serum cholesterol defined by ACME inc.</p>
|
11
|
+
<p>Developed by: FHIR project team (example)</p>
|
12
|
+
<p>Published for testing on 28-Jan 2016</p>
|
13
|
+
<p>This code system defines all the ACME codes for serum cholesterol:</p>
|
14
|
+
<table class="grid">
|
15
|
+
<tr>
|
16
|
+
<td>
|
17
|
+
<b>Code</b>
|
18
|
+
</td>
|
19
|
+
<td>
|
20
|
+
<b>Display</b>
|
21
|
+
</td>
|
22
|
+
<td>
|
23
|
+
<b>Definition</b>
|
24
|
+
</td>
|
25
|
+
</tr>
|
26
|
+
<tr>
|
27
|
+
<td>chol-mmol</td>
|
28
|
+
<td>SChol (mmol/L)</td>
|
29
|
+
<td>Serum Cholesterol, in mmol/L</td>
|
30
|
+
</tr>
|
31
|
+
<tr>
|
32
|
+
<td>chol-mass</td>
|
33
|
+
<td>SChol (mg/L)</td>
|
34
|
+
<td>Serum Cholesterol, in mg/L</td>
|
35
|
+
</tr>
|
36
|
+
<tr>
|
37
|
+
<td>chol</td>
|
38
|
+
<td>SChol</td>
|
39
|
+
<td>Serum Cholesterol</td>
|
40
|
+
</tr>
|
41
|
+
</table>
|
42
|
+
</div>
|
43
|
+
</text>
|
44
|
+
|
45
|
+
<!--
|
46
|
+
for this example, we use a real URI, since this example does have a canonical address
|
47
|
+
at which it's posted. Alternatively, We could have used an OID, or a UUID
|
48
|
+
|
49
|
+
note that since we give a literal URL here, there's an expectation
|
50
|
+
that accessing that URL will give some form of representation of
|
51
|
+
the full code system, or a pointer about how to get more infomration.
|
52
|
+
|
53
|
+
This is not an absolute requirement, but it may be enforced by some
|
54
|
+
servers - for instance, the HL7 valueset registry will. -->
|
55
|
+
<url value="http://hl7.org/fhir/CodeSystem/example-crucible"/>
|
56
|
+
<!-- an imaginary identifier. This is a non FHIR identifier - might be used in a
|
57
|
+
v2 context (though you always need to translate namespaces for v2) -->
|
58
|
+
<identifier>
|
59
|
+
<system value="http://acme.com/identifiers/codesystems"/>
|
60
|
+
<value value="internal-cholesterol-inl"/>
|
61
|
+
</identifier>
|
62
|
+
<!-- for version, we are going to simply use the day of publication. This is also
|
63
|
+
arbitrary - whatever is here is what people use to refer to the version.
|
64
|
+
Could also be a UUID too. Note that you should change the identify of the code
|
65
|
+
system, not the version, if existing codes are redefined (e.g. don't do that!) -->
|
66
|
+
<version value="20160128"/>
|
67
|
+
|
68
|
+
<name value="ACME Codes for Cholesterol in Serum/Plasma"/>
|
69
|
+
<status value="draft"/>
|
70
|
+
<experimental value="true"/>
|
71
|
+
<publisher value="HL7 International"/>
|
72
|
+
<contact>
|
73
|
+
<name value="FHIR project team"/>
|
74
|
+
<telecom>
|
75
|
+
<system value="other"/>
|
76
|
+
<value value="http://hl7.org/fhir"/>
|
77
|
+
</telecom>
|
78
|
+
</contact>
|
79
|
+
<date value="2016-01-28"/>
|
80
|
+
<description value="This is an example code system that includes all the ACME codes for serum/plasma cholesterol
|
81
|
+
from v2.36."/>
|
82
|
+
|
83
|
+
<!-- it's often unstated - are codes case sensitive or not. And
|
84
|
+
it can be the cause of operational or clinical safety problems.
|
85
|
+
So FHIR requires that it always be specified. -->
|
86
|
+
<caseSensitive value="true"/>
|
87
|
+
<content value="complete"/>
|
88
|
+
<!--
|
89
|
+
ACME's defined definitions. Note that these are not
|
90
|
+
*good* definitions - but they are very commonly the kind
|
91
|
+
of definitions that are encountered in production
|
92
|
+
-->
|
93
|
+
<concept>
|
94
|
+
<code value="chol-mmol"/>
|
95
|
+
<display value="SChol (mmol/L)"/>
|
96
|
+
<definition value="Serum Cholesterol, in mmol/L"/>
|
97
|
+
<designation>
|
98
|
+
<use>
|
99
|
+
<system value="http://acme.com/config/fhir/codesystems/internal"/>
|
100
|
+
<code value="internal-label"/>
|
101
|
+
</use>
|
102
|
+
<value value="From ACME POC Testing"/>
|
103
|
+
</designation>
|
104
|
+
</concept>
|
105
|
+
<concept>
|
106
|
+
<code value="chol-mass"/>
|
107
|
+
<display value="SChol (mg/L)"/>
|
108
|
+
<definition value="Serum Cholesterol, in mg/L"/>
|
109
|
+
<designation>
|
110
|
+
<use>
|
111
|
+
<system value="http://acme.com/config/fhir/codesystems/internal"/>
|
112
|
+
<code value="internal-label"/>
|
113
|
+
</use>
|
114
|
+
<value value="From Paragon Labs"/>
|
115
|
+
</designation>
|
116
|
+
</concept>
|
117
|
+
<concept>
|
118
|
+
<code value="chol"/>
|
119
|
+
<display value="SChol"/>
|
120
|
+
<definition value="Serum Cholesterol"/>
|
121
|
+
<designation>
|
122
|
+
<use>
|
123
|
+
<system value="http://acme.com/config/fhir/codesystems/internal"/>
|
124
|
+
<code value="internal-label"/>
|
125
|
+
</use>
|
126
|
+
<value value="Obdurate Labs uses this with both kinds of units..."/>
|
127
|
+
</designation>
|
128
|
+
</concept>
|
129
|
+
</CodeSystem>
|
@@ -0,0 +1,141 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
|
3
|
+
<ConceptMap xmlns="http://hl7.org/fhir">
|
4
|
+
<id value="101"/>
|
5
|
+
<text>
|
6
|
+
<status value="generated"/>
|
7
|
+
<div xmlns="http://www.w3.org/1999/xhtml">
|
8
|
+
<h2>FHIR/v3 Address Use Mapping (http://hl7.org/fhir/ConceptMap/101)</h2>
|
9
|
+
<p>Mapping from
|
10
|
+
<a href="valueset-address-use.html">http://hl7.org/fhir/ValueSet/address-use</a> to
|
11
|
+
<a href="v3/AddressUse/vs.html">http://hl7.org/fhir/ValueSet/v3-AddressUse</a>
|
12
|
+
</p>
|
13
|
+
<p>DRAFT (not intended for production usage). Published on Jun 13, 2012 by HL7, Inc (FHIR project team (example):
|
14
|
+
<a href="http://hl7.org/fhir">http://hl7.org/fhir</a>). Creative Commons 0
|
15
|
+
</p>
|
16
|
+
<div>
|
17
|
+
<p>A mapping between the FHIR and HL7 v3 AddressUse Code systems</p>
|
18
|
+
|
19
|
+
</div>
|
20
|
+
<br/>
|
21
|
+
<table class="grid">
|
22
|
+
<tr>
|
23
|
+
<td>
|
24
|
+
<b>Source Code</b>
|
25
|
+
</td>
|
26
|
+
<td>
|
27
|
+
<b>Equivalence</b>
|
28
|
+
</td>
|
29
|
+
<td>
|
30
|
+
<b>Destination Code</b>
|
31
|
+
</td>
|
32
|
+
<td>
|
33
|
+
<b>Comments</b>
|
34
|
+
</td>
|
35
|
+
</tr>
|
36
|
+
<tr>
|
37
|
+
<td>home (Home)</td>
|
38
|
+
<td></td>
|
39
|
+
<td>H (home address)</td>
|
40
|
+
<td/>
|
41
|
+
</tr>
|
42
|
+
<tr>
|
43
|
+
<td>home (Home)</td>
|
44
|
+
<td></td>
|
45
|
+
<td>H (home address)</td>
|
46
|
+
<td/>
|
47
|
+
</tr>
|
48
|
+
<tr>
|
49
|
+
<td>work (Work)</td>
|
50
|
+
<td></td>
|
51
|
+
<td>WP (work place)</td>
|
52
|
+
<td/>
|
53
|
+
</tr>
|
54
|
+
<tr>
|
55
|
+
<td>temp (Temporary)</td>
|
56
|
+
<td></td>
|
57
|
+
<td>TMP (temporary address)</td>
|
58
|
+
<td/>
|
59
|
+
</tr>
|
60
|
+
<tr>
|
61
|
+
<td>old (Old / Incorrect)</td>
|
62
|
+
<td>disjoint</td>
|
63
|
+
<td>BAD (bad address)</td>
|
64
|
+
<td>In the HL7 v3 AD, old is handled by the usablePeriod element, but you have to provide a time, there's no simple equivalent of flagging an address as old</td>
|
65
|
+
</tr>
|
66
|
+
</table>
|
67
|
+
</div>
|
68
|
+
</text>
|
69
|
+
<url value="http://hl7.org/fhir/ConceptMap/101"/>
|
70
|
+
<identifier>
|
71
|
+
<system value="urn:ietf:rfc:3986"/>
|
72
|
+
<value value="urn:uuid:53cd62ee-033e-414c-9f58-3ca97b5ffc3b"/>
|
73
|
+
</identifier>
|
74
|
+
<version value="20120613"/>
|
75
|
+
<name value="FHIR/v3 Address Use Mapping"/>
|
76
|
+
<status value="draft"/>
|
77
|
+
<experimental value="true"/>
|
78
|
+
<publisher value="HL7, Inc"/>
|
79
|
+
<contact>
|
80
|
+
<name value="FHIR project team (example)"/>
|
81
|
+
<telecom>
|
82
|
+
<system value="url"/>
|
83
|
+
<value value="http://hl7.org/fhir"/>
|
84
|
+
</telecom>
|
85
|
+
</contact>
|
86
|
+
<date value="2012-06-13"/>
|
87
|
+
<description value="A mapping between the FHIR and HL7 v3 AddressUse Code systems"/>
|
88
|
+
<useContext>
|
89
|
+
<code>
|
90
|
+
<system value="http://hl7.org/fhir/usage-context-type"/>
|
91
|
+
<code value="venue"/>
|
92
|
+
</code>
|
93
|
+
<valueCodeableConcept>
|
94
|
+
<text value="for CDA Usage"/>
|
95
|
+
</valueCodeableConcept>
|
96
|
+
</useContext>
|
97
|
+
<purpose value="To help implementers map from HL7 v3/CDA to FHIR"/>
|
98
|
+
<copyright value="Creative Commons 0"/>
|
99
|
+
<sourceReference>
|
100
|
+
<reference value="http://hl7.org/fhir/ValueSet/address-use"/>
|
101
|
+
</sourceReference>
|
102
|
+
<targetReference>
|
103
|
+
<reference value="http://hl7.org/fhir/ValueSet/v3-AddressUse"/>
|
104
|
+
</targetReference>
|
105
|
+
<group>
|
106
|
+
<source value="http://hl7.org/fhir/address-use"/>
|
107
|
+
<target value="http://hl7.org/fhir/v3/AddressUse"/>
|
108
|
+
<element>
|
109
|
+
<code value="home"/>
|
110
|
+
<target>
|
111
|
+
<code value="H"/>
|
112
|
+
</target>
|
113
|
+
</element>
|
114
|
+
<element>
|
115
|
+
<code value="home"/>
|
116
|
+
<target>
|
117
|
+
<code value="H"/>
|
118
|
+
</target>
|
119
|
+
</element>
|
120
|
+
<element>
|
121
|
+
<code value="work"/>
|
122
|
+
<target>
|
123
|
+
<code value="WP"/>
|
124
|
+
</target>
|
125
|
+
</element>
|
126
|
+
<element>
|
127
|
+
<code value="temp"/>
|
128
|
+
<target>
|
129
|
+
<code value="TMP"/>
|
130
|
+
</target>
|
131
|
+
</element>
|
132
|
+
<element>
|
133
|
+
<code value="old"/>
|
134
|
+
<target>
|
135
|
+
<code value="BAD"/>
|
136
|
+
<equivalence value="disjoint"/>
|
137
|
+
<comments value="In the HL7 v3 AD, old is handled by the usablePeriod element, but you have to provide a time, there's no simple equivalent of flagging an address as old"/>
|
138
|
+
</target>
|
139
|
+
</element>
|
140
|
+
</group>
|
141
|
+
</ConceptMap>
|
@@ -0,0 +1,1297 @@
|
|
1
|
+
{
|
2
|
+
"resourceType": "CodeSystem",
|
3
|
+
"url": "http://hl7.org/fhir/v2/0487",
|
4
|
+
"identifier": {
|
5
|
+
"system": "urn:ietf:rfc:3986",
|
6
|
+
"value": "urn:oid:2.16.840.1.133883.18.311"
|
7
|
+
},
|
8
|
+
"version": "2.8.2",
|
9
|
+
"name": "v2 Specimen Type",
|
10
|
+
"status": "active",
|
11
|
+
"experimental": true,
|
12
|
+
"caseSensitive": false,
|
13
|
+
"valueSet": "http://hl7.org/fhir/ValueSet/v2-0487",
|
14
|
+
"content": "complete",
|
15
|
+
"property": [
|
16
|
+
{
|
17
|
+
"code": "deprecated",
|
18
|
+
"uri": "http://hl7.org/fhir/concept-properties#deprecated",
|
19
|
+
"description": "The date at which a concept was deprecated. Concepts that are deprecated but not inactive can still be used, but their use is discouraged",
|
20
|
+
"type": "dateTime"
|
21
|
+
}
|
22
|
+
],
|
23
|
+
"concept": [
|
24
|
+
{
|
25
|
+
"code": "...",
|
26
|
+
"display": "No suggested values",
|
27
|
+
"property": [
|
28
|
+
{
|
29
|
+
"code": "deprecated",
|
30
|
+
"valueDateTime": "2007-10"
|
31
|
+
}
|
32
|
+
]
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"code": "ABS",
|
36
|
+
"display": "Abscess"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"code": "ACNE",
|
40
|
+
"display": "Tissue, Acne"
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"code": "ACNFLD",
|
44
|
+
"display": "Fluid, Acne"
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"code": "AIRS",
|
48
|
+
"display": "Air Sample"
|
49
|
+
},
|
50
|
+
{
|
51
|
+
"code": "ALL",
|
52
|
+
"display": "Allograft"
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"code": "AMN",
|
56
|
+
"display": "Amniotic fluid"
|
57
|
+
},
|
58
|
+
{
|
59
|
+
"code": "AMP",
|
60
|
+
"display": "Amputation"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"code": "ANGI",
|
64
|
+
"display": "Catheter Tip, Angio"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"code": "ARTC",
|
68
|
+
"display": "Catheter Tip, Arterial"
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"code": "ASERU",
|
72
|
+
"display": "Serum, Acute"
|
73
|
+
},
|
74
|
+
{
|
75
|
+
"code": "ASP",
|
76
|
+
"display": "Aspirate"
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"code": "ATTE",
|
80
|
+
"display": "Environment, Attest"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"code": "AUTOA",
|
84
|
+
"display": "Environmental, Autoclave Ampule"
|
85
|
+
},
|
86
|
+
{
|
87
|
+
"code": "AUTOC",
|
88
|
+
"display": "Environmental, Autoclave Capsule"
|
89
|
+
},
|
90
|
+
{
|
91
|
+
"code": "AUTP",
|
92
|
+
"display": "Autopsy"
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"code": "BBL",
|
96
|
+
"display": "Blood bag"
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"code": "BCYST",
|
100
|
+
"display": "Cyst, Baker's"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"code": "BDY",
|
104
|
+
"display": "Whole body"
|
105
|
+
},
|
106
|
+
{
|
107
|
+
"code": "BIFL",
|
108
|
+
"display": "Bile Fluid"
|
109
|
+
},
|
110
|
+
{
|
111
|
+
"code": "BITE",
|
112
|
+
"display": "Bite"
|
113
|
+
},
|
114
|
+
{
|
115
|
+
"code": "BLD",
|
116
|
+
"display": "Whole blood"
|
117
|
+
},
|
118
|
+
{
|
119
|
+
"code": "BLDA",
|
120
|
+
"display": "Blood arterial"
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"code": "BLDCO",
|
124
|
+
"display": "Cord blood"
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"code": "BLDV",
|
128
|
+
"display": "Blood venous"
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"code": "BLEB",
|
132
|
+
"display": "Bleb"
|
133
|
+
},
|
134
|
+
{
|
135
|
+
"code": "BLIST",
|
136
|
+
"display": "Blister"
|
137
|
+
},
|
138
|
+
{
|
139
|
+
"code": "BOIL",
|
140
|
+
"display": "Boil"
|
141
|
+
},
|
142
|
+
{
|
143
|
+
"code": "BON",
|
144
|
+
"display": "Bone"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"code": "BONE",
|
148
|
+
"display": "Bone",
|
149
|
+
"property": [
|
150
|
+
{
|
151
|
+
"code": "deprecated",
|
152
|
+
"valueDateTime": "2003-07"
|
153
|
+
}
|
154
|
+
]
|
155
|
+
},
|
156
|
+
{
|
157
|
+
"code": "BOWL",
|
158
|
+
"display": "Bowel contents"
|
159
|
+
},
|
160
|
+
{
|
161
|
+
"code": "BPH",
|
162
|
+
"display": "Basophils"
|
163
|
+
},
|
164
|
+
{
|
165
|
+
"code": "BPU",
|
166
|
+
"display": "Blood product unit"
|
167
|
+
},
|
168
|
+
{
|
169
|
+
"code": "BRN",
|
170
|
+
"display": "Burn"
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"code": "BRSH",
|
174
|
+
"display": "Brush"
|
175
|
+
},
|
176
|
+
{
|
177
|
+
"code": "BRTH",
|
178
|
+
"display": "Breath (use EXHLD)"
|
179
|
+
},
|
180
|
+
{
|
181
|
+
"code": "BRUS",
|
182
|
+
"display": "Brushing"
|
183
|
+
},
|
184
|
+
{
|
185
|
+
"code": "BUB",
|
186
|
+
"display": "Bubo"
|
187
|
+
},
|
188
|
+
{
|
189
|
+
"code": "BULLA",
|
190
|
+
"display": "Bulla/Bullae"
|
191
|
+
},
|
192
|
+
{
|
193
|
+
"code": "BX",
|
194
|
+
"display": "Biopsy"
|
195
|
+
},
|
196
|
+
{
|
197
|
+
"code": "CALC",
|
198
|
+
"display": "Calculus (=Stone)"
|
199
|
+
},
|
200
|
+
{
|
201
|
+
"code": "CARBU",
|
202
|
+
"display": "Carbuncle"
|
203
|
+
},
|
204
|
+
{
|
205
|
+
"code": "CAT",
|
206
|
+
"display": "Catheter"
|
207
|
+
},
|
208
|
+
{
|
209
|
+
"code": "CBITE",
|
210
|
+
"display": "Bite, Cat"
|
211
|
+
},
|
212
|
+
{
|
213
|
+
"code": "CDM",
|
214
|
+
"display": "Cardiac muscle"
|
215
|
+
},
|
216
|
+
{
|
217
|
+
"code": "CLIPP",
|
218
|
+
"display": "Clippings"
|
219
|
+
},
|
220
|
+
{
|
221
|
+
"code": "CNJT",
|
222
|
+
"display": "Conjunctiva"
|
223
|
+
},
|
224
|
+
{
|
225
|
+
"code": "CNL",
|
226
|
+
"display": "Cannula"
|
227
|
+
},
|
228
|
+
{
|
229
|
+
"code": "COL",
|
230
|
+
"display": "Colostrum"
|
231
|
+
},
|
232
|
+
{
|
233
|
+
"code": "CONE",
|
234
|
+
"display": "Biospy, Cone"
|
235
|
+
},
|
236
|
+
{
|
237
|
+
"code": "CSCR",
|
238
|
+
"display": "Scratch, Cat"
|
239
|
+
},
|
240
|
+
{
|
241
|
+
"code": "CSERU",
|
242
|
+
"display": "Serum, Convalescent"
|
243
|
+
},
|
244
|
+
{
|
245
|
+
"code": "CSF",
|
246
|
+
"display": "Cerebral spinal fluid"
|
247
|
+
},
|
248
|
+
{
|
249
|
+
"code": "CSITE",
|
250
|
+
"display": "Catheter Insertion Site"
|
251
|
+
},
|
252
|
+
{
|
253
|
+
"code": "CSMY",
|
254
|
+
"display": "Fluid, Cystostomy Tube"
|
255
|
+
},
|
256
|
+
{
|
257
|
+
"code": "CST",
|
258
|
+
"display": "Fluid, Cyst"
|
259
|
+
},
|
260
|
+
{
|
261
|
+
"code": "CSVR",
|
262
|
+
"display": "Blood, Cell Saver"
|
263
|
+
},
|
264
|
+
{
|
265
|
+
"code": "CTP",
|
266
|
+
"display": "Catheter tip"
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"code": "CUR",
|
270
|
+
"display": "Curretage"
|
271
|
+
},
|
272
|
+
{
|
273
|
+
"code": "CVM",
|
274
|
+
"display": "Cervical Mucus"
|
275
|
+
},
|
276
|
+
{
|
277
|
+
"code": "CVPS",
|
278
|
+
"display": "Site, CVP"
|
279
|
+
},
|
280
|
+
{
|
281
|
+
"code": "CVPT",
|
282
|
+
"display": "Catheter Tip, CVP"
|
283
|
+
},
|
284
|
+
{
|
285
|
+
"code": "CYN",
|
286
|
+
"display": "Nodule, Cystic"
|
287
|
+
},
|
288
|
+
{
|
289
|
+
"code": "CYST",
|
290
|
+
"display": "Cyst"
|
291
|
+
},
|
292
|
+
{
|
293
|
+
"code": "DBITE",
|
294
|
+
"display": "Bite, Dog"
|
295
|
+
},
|
296
|
+
{
|
297
|
+
"code": "DCS",
|
298
|
+
"display": "Sputum, Deep Cough"
|
299
|
+
},
|
300
|
+
{
|
301
|
+
"code": "DEC",
|
302
|
+
"display": "Ulcer, Decubitus"
|
303
|
+
},
|
304
|
+
{
|
305
|
+
"code": "DEION",
|
306
|
+
"display": "Environmental, Water (Deionized)"
|
307
|
+
},
|
308
|
+
{
|
309
|
+
"code": "DIA",
|
310
|
+
"display": "Dialysate"
|
311
|
+
},
|
312
|
+
{
|
313
|
+
"code": "DIAF",
|
314
|
+
"display": "Dialysis Fluid"
|
315
|
+
},
|
316
|
+
{
|
317
|
+
"code": "DISCHG",
|
318
|
+
"display": "Discharge"
|
319
|
+
},
|
320
|
+
{
|
321
|
+
"code": "DIV",
|
322
|
+
"display": "Diverticulum"
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"code": "DRN",
|
326
|
+
"display": "Drain"
|
327
|
+
},
|
328
|
+
{
|
329
|
+
"code": "DRNG",
|
330
|
+
"display": "Drainage, Tube"
|
331
|
+
},
|
332
|
+
{
|
333
|
+
"code": "DRNGP",
|
334
|
+
"display": "Drainage, Penrose"
|
335
|
+
},
|
336
|
+
{
|
337
|
+
"code": "DUFL",
|
338
|
+
"display": "Duodenal fluid"
|
339
|
+
},
|
340
|
+
{
|
341
|
+
"code": "EARW",
|
342
|
+
"display": "Ear wax (cerumen)"
|
343
|
+
},
|
344
|
+
{
|
345
|
+
"code": "EBRUSH",
|
346
|
+
"display": "Brush, Esophageal"
|
347
|
+
},
|
348
|
+
{
|
349
|
+
"code": "EEYE",
|
350
|
+
"display": "Environmental, Eye Wash"
|
351
|
+
},
|
352
|
+
{
|
353
|
+
"code": "EFF",
|
354
|
+
"display": "Environmental, Effluent"
|
355
|
+
},
|
356
|
+
{
|
357
|
+
"code": "EFFUS",
|
358
|
+
"display": "Effusion"
|
359
|
+
},
|
360
|
+
{
|
361
|
+
"code": "EFOD",
|
362
|
+
"display": "Environmental, Food"
|
363
|
+
},
|
364
|
+
{
|
365
|
+
"code": "EISO",
|
366
|
+
"display": "Environmental, Isolette"
|
367
|
+
},
|
368
|
+
{
|
369
|
+
"code": "ELT",
|
370
|
+
"display": "Electrode"
|
371
|
+
},
|
372
|
+
{
|
373
|
+
"code": "ENVIR",
|
374
|
+
"display": "Environmental, Unidentified Substance"
|
375
|
+
},
|
376
|
+
{
|
377
|
+
"code": "EOS",
|
378
|
+
"display": "Eosinophils"
|
379
|
+
},
|
380
|
+
{
|
381
|
+
"code": "EOTH",
|
382
|
+
"display": "Environmental, Other Substance"
|
383
|
+
},
|
384
|
+
{
|
385
|
+
"code": "ESOI",
|
386
|
+
"display": "Environmental, Soil"
|
387
|
+
},
|
388
|
+
{
|
389
|
+
"code": "ESOS",
|
390
|
+
"display": "Environmental, Solution (Sterile)"
|
391
|
+
},
|
392
|
+
{
|
393
|
+
"code": "ETA",
|
394
|
+
"display": "Aspirate, Endotrach"
|
395
|
+
},
|
396
|
+
{
|
397
|
+
"code": "ETTP",
|
398
|
+
"display": "Catheter Tip, Endotracheal"
|
399
|
+
},
|
400
|
+
{
|
401
|
+
"code": "ETTUB",
|
402
|
+
"display": "Tube, Endotracheal"
|
403
|
+
},
|
404
|
+
{
|
405
|
+
"code": "EWHI",
|
406
|
+
"display": "Environmental, Whirlpool"
|
407
|
+
},
|
408
|
+
{
|
409
|
+
"code": "EXG",
|
410
|
+
"display": "Gas, exhaled (=breath)"
|
411
|
+
},
|
412
|
+
{
|
413
|
+
"code": "EXS",
|
414
|
+
"display": "Shunt, External"
|
415
|
+
},
|
416
|
+
{
|
417
|
+
"code": "EXUDTE",
|
418
|
+
"display": "Exudate"
|
419
|
+
},
|
420
|
+
{
|
421
|
+
"code": "FAW",
|
422
|
+
"display": "Environmental, Water (Well)"
|
423
|
+
},
|
424
|
+
{
|
425
|
+
"code": "FBLOOD",
|
426
|
+
"display": "Blood, Fetal"
|
427
|
+
},
|
428
|
+
{
|
429
|
+
"code": "FGA",
|
430
|
+
"display": "Fluid, Abdomen"
|
431
|
+
},
|
432
|
+
{
|
433
|
+
"code": "FIB",
|
434
|
+
"display": "Fibroblasts"
|
435
|
+
},
|
436
|
+
{
|
437
|
+
"code": "FIST",
|
438
|
+
"display": "Fistula"
|
439
|
+
},
|
440
|
+
{
|
441
|
+
"code": "FLD",
|
442
|
+
"display": "Fluid, Other"
|
443
|
+
},
|
444
|
+
{
|
445
|
+
"code": "FLT",
|
446
|
+
"display": "Filter"
|
447
|
+
},
|
448
|
+
{
|
449
|
+
"code": "FLU",
|
450
|
+
"display": "Fluid, Body unsp"
|
451
|
+
},
|
452
|
+
{
|
453
|
+
"code": "FLUID",
|
454
|
+
"display": "Fluid"
|
455
|
+
},
|
456
|
+
{
|
457
|
+
"code": "FOLEY",
|
458
|
+
"display": "Catheter Tip, Foley"
|
459
|
+
},
|
460
|
+
{
|
461
|
+
"code": "FRS",
|
462
|
+
"display": "Fluid, Respiratory"
|
463
|
+
},
|
464
|
+
{
|
465
|
+
"code": "FSCLP",
|
466
|
+
"display": "Scalp, Fetal"
|
467
|
+
},
|
468
|
+
{
|
469
|
+
"code": "FUR",
|
470
|
+
"display": "Furuncle"
|
471
|
+
},
|
472
|
+
{
|
473
|
+
"code": "GAS",
|
474
|
+
"display": "Gas"
|
475
|
+
},
|
476
|
+
{
|
477
|
+
"code": "GASA",
|
478
|
+
"display": "Aspirate, Gastric"
|
479
|
+
},
|
480
|
+
{
|
481
|
+
"code": "GASAN",
|
482
|
+
"display": "Antrum, Gastric"
|
483
|
+
},
|
484
|
+
{
|
485
|
+
"code": "GASBR",
|
486
|
+
"display": "Brushing, Gastric"
|
487
|
+
},
|
488
|
+
{
|
489
|
+
"code": "GASD",
|
490
|
+
"display": "Drainage, Gastric"
|
491
|
+
},
|
492
|
+
{
|
493
|
+
"code": "GAST",
|
494
|
+
"display": "Fluid/contents, Gastric"
|
495
|
+
},
|
496
|
+
{
|
497
|
+
"code": "GENL",
|
498
|
+
"display": "Genital lochia"
|
499
|
+
},
|
500
|
+
{
|
501
|
+
"code": "GENV",
|
502
|
+
"display": "Genital vaginal"
|
503
|
+
},
|
504
|
+
{
|
505
|
+
"code": "GRAFT",
|
506
|
+
"display": "Graft"
|
507
|
+
},
|
508
|
+
{
|
509
|
+
"code": "GRAFTS",
|
510
|
+
"display": "Graft Site"
|
511
|
+
},
|
512
|
+
{
|
513
|
+
"code": "GRANU",
|
514
|
+
"display": "Granuloma"
|
515
|
+
},
|
516
|
+
{
|
517
|
+
"code": "GROSH",
|
518
|
+
"display": "Catheter, Groshong"
|
519
|
+
},
|
520
|
+
{
|
521
|
+
"code": "GSOL",
|
522
|
+
"display": "Solution, Gastrostomy"
|
523
|
+
},
|
524
|
+
{
|
525
|
+
"code": "GSPEC",
|
526
|
+
"display": "Biopsy, Gastric"
|
527
|
+
},
|
528
|
+
{
|
529
|
+
"code": "GT",
|
530
|
+
"display": "Tube, Gastric"
|
531
|
+
},
|
532
|
+
{
|
533
|
+
"code": "GTUBE",
|
534
|
+
"display": "Drainage Tube, Drainage (Gastrostomy)"
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"code": "HAR",
|
538
|
+
"display": "Hair"
|
539
|
+
},
|
540
|
+
{
|
541
|
+
"code": "HBITE",
|
542
|
+
"display": "Bite, Human"
|
543
|
+
},
|
544
|
+
{
|
545
|
+
"code": "HBLUD",
|
546
|
+
"display": "Blood, Autopsy"
|
547
|
+
},
|
548
|
+
{
|
549
|
+
"code": "HEMAQ",
|
550
|
+
"display": "Catheter Tip, Hemaquit"
|
551
|
+
},
|
552
|
+
{
|
553
|
+
"code": "HEMO",
|
554
|
+
"display": "Catheter Tip, Hemovac"
|
555
|
+
},
|
556
|
+
{
|
557
|
+
"code": "HERNI",
|
558
|
+
"display": "Tissue, Herniated"
|
559
|
+
},
|
560
|
+
{
|
561
|
+
"code": "HEV",
|
562
|
+
"display": "Drain, Hemovac"
|
563
|
+
},
|
564
|
+
{
|
565
|
+
"code": "HIC",
|
566
|
+
"display": "Catheter, Hickman"
|
567
|
+
},
|
568
|
+
{
|
569
|
+
"code": "HYDC",
|
570
|
+
"display": "Fluid, Hydrocele"
|
571
|
+
},
|
572
|
+
{
|
573
|
+
"code": "IBITE",
|
574
|
+
"display": "Bite, Insect"
|
575
|
+
},
|
576
|
+
{
|
577
|
+
"code": "ICYST",
|
578
|
+
"display": "Cyst, Inclusion"
|
579
|
+
},
|
580
|
+
{
|
581
|
+
"code": "IDC",
|
582
|
+
"display": "Catheter Tip, Indwelling"
|
583
|
+
},
|
584
|
+
{
|
585
|
+
"code": "IHG",
|
586
|
+
"display": "Gas, Inhaled"
|
587
|
+
},
|
588
|
+
{
|
589
|
+
"code": "ILEO",
|
590
|
+
"display": "Drainage, Ileostomy"
|
591
|
+
},
|
592
|
+
{
|
593
|
+
"code": "ILLEG",
|
594
|
+
"display": "Source of Specimen Is Illigible"
|
595
|
+
},
|
596
|
+
{
|
597
|
+
"code": "IMP",
|
598
|
+
"display": "Implant"
|
599
|
+
},
|
600
|
+
{
|
601
|
+
"code": "INCI",
|
602
|
+
"display": "Site, Incision/Surgical"
|
603
|
+
},
|
604
|
+
{
|
605
|
+
"code": "INFIL",
|
606
|
+
"display": "Infiltrate"
|
607
|
+
},
|
608
|
+
{
|
609
|
+
"code": "INS",
|
610
|
+
"display": "Insect"
|
611
|
+
},
|
612
|
+
{
|
613
|
+
"code": "INTRD",
|
614
|
+
"display": "Catheter Tip, Introducer"
|
615
|
+
},
|
616
|
+
{
|
617
|
+
"code": "ISLT",
|
618
|
+
"display": "Isolate"
|
619
|
+
},
|
620
|
+
{
|
621
|
+
"code": "IT",
|
622
|
+
"display": "Intubation tube"
|
623
|
+
},
|
624
|
+
{
|
625
|
+
"code": "IUD",
|
626
|
+
"display": "Intrauterine Device"
|
627
|
+
},
|
628
|
+
{
|
629
|
+
"code": "IVCAT",
|
630
|
+
"display": "Catheter Tip, IV"
|
631
|
+
},
|
632
|
+
{
|
633
|
+
"code": "IVFLD",
|
634
|
+
"display": "Fluid, IV"
|
635
|
+
},
|
636
|
+
{
|
637
|
+
"code": "IVTIP",
|
638
|
+
"display": "Tubing Tip, IV"
|
639
|
+
},
|
640
|
+
{
|
641
|
+
"code": "JEJU",
|
642
|
+
"display": "Drainage, Jejunal"
|
643
|
+
},
|
644
|
+
{
|
645
|
+
"code": "JNTFLD",
|
646
|
+
"display": "Fluid, Joint"
|
647
|
+
},
|
648
|
+
{
|
649
|
+
"code": "JP",
|
650
|
+
"display": "Drainage, Jackson Pratt"
|
651
|
+
},
|
652
|
+
{
|
653
|
+
"code": "KELOI",
|
654
|
+
"display": "Lavage"
|
655
|
+
},
|
656
|
+
{
|
657
|
+
"code": "KIDFLD",
|
658
|
+
"display": "Fluid, Kidney"
|
659
|
+
},
|
660
|
+
{
|
661
|
+
"code": "LAVG",
|
662
|
+
"display": "Lavage, Bronhial"
|
663
|
+
},
|
664
|
+
{
|
665
|
+
"code": "LAVGG",
|
666
|
+
"display": "Lavage, Gastric"
|
667
|
+
},
|
668
|
+
{
|
669
|
+
"code": "LAVGP",
|
670
|
+
"display": "Lavage, Peritoneal"
|
671
|
+
},
|
672
|
+
{
|
673
|
+
"code": "LAVPG",
|
674
|
+
"display": "Lavage, Pre-Bronch"
|
675
|
+
},
|
676
|
+
{
|
677
|
+
"code": "LENS1",
|
678
|
+
"display": "Contact Lens"
|
679
|
+
},
|
680
|
+
{
|
681
|
+
"code": "LENS2",
|
682
|
+
"display": "Contact Lens Case"
|
683
|
+
},
|
684
|
+
{
|
685
|
+
"code": "LESN",
|
686
|
+
"display": "Lesion"
|
687
|
+
},
|
688
|
+
{
|
689
|
+
"code": "LIQ",
|
690
|
+
"display": "Liquid, Unspecified"
|
691
|
+
},
|
692
|
+
{
|
693
|
+
"code": "LIQO",
|
694
|
+
"display": "Liquid, Other"
|
695
|
+
},
|
696
|
+
{
|
697
|
+
"code": "LNA",
|
698
|
+
"display": "Line arterial"
|
699
|
+
},
|
700
|
+
{
|
701
|
+
"code": "LNV",
|
702
|
+
"display": "Line venous"
|
703
|
+
},
|
704
|
+
{
|
705
|
+
"code": "LSAC",
|
706
|
+
"display": "Fluid, Lumbar Sac"
|
707
|
+
},
|
708
|
+
{
|
709
|
+
"code": "LYM",
|
710
|
+
"display": "Lymphocytes"
|
711
|
+
},
|
712
|
+
{
|
713
|
+
"code": "MAC",
|
714
|
+
"display": "Macrophages"
|
715
|
+
},
|
716
|
+
{
|
717
|
+
"code": "MAHUR",
|
718
|
+
"display": "Catheter Tip, Makurkour"
|
719
|
+
},
|
720
|
+
{
|
721
|
+
"code": "MAR",
|
722
|
+
"display": "Marrow"
|
723
|
+
},
|
724
|
+
{
|
725
|
+
"code": "MASS",
|
726
|
+
"display": "Mass"
|
727
|
+
},
|
728
|
+
{
|
729
|
+
"code": "MBLD",
|
730
|
+
"display": "Blood, Menstrual"
|
731
|
+
},
|
732
|
+
{
|
733
|
+
"code": "MEC",
|
734
|
+
"display": "Meconium"
|
735
|
+
},
|
736
|
+
{
|
737
|
+
"code": "MILK",
|
738
|
+
"display": "Breast milk"
|
739
|
+
},
|
740
|
+
{
|
741
|
+
"code": "MLK",
|
742
|
+
"display": "Milk"
|
743
|
+
},
|
744
|
+
{
|
745
|
+
"code": "MUCOS",
|
746
|
+
"display": "Mucosa"
|
747
|
+
},
|
748
|
+
{
|
749
|
+
"code": "MUCUS",
|
750
|
+
"display": "Mucus"
|
751
|
+
},
|
752
|
+
{
|
753
|
+
"code": "NAIL",
|
754
|
+
"display": "Nail"
|
755
|
+
},
|
756
|
+
{
|
757
|
+
"code": "NASDR",
|
758
|
+
"display": "Drainage, Nasal"
|
759
|
+
},
|
760
|
+
{
|
761
|
+
"code": "NEDL",
|
762
|
+
"display": "Needle"
|
763
|
+
},
|
764
|
+
{
|
765
|
+
"code": "NEPH",
|
766
|
+
"display": "Site, Nephrostomy"
|
767
|
+
},
|
768
|
+
{
|
769
|
+
"code": "NGASP",
|
770
|
+
"display": "Aspirate, Nasogastric"
|
771
|
+
},
|
772
|
+
{
|
773
|
+
"code": "NGAST",
|
774
|
+
"display": "Drainage, Nasogastric"
|
775
|
+
},
|
776
|
+
{
|
777
|
+
"code": "NGS",
|
778
|
+
"display": "Site, Naso/Gastric"
|
779
|
+
},
|
780
|
+
{
|
781
|
+
"code": "NODUL",
|
782
|
+
"display": "Nodule(s)"
|
783
|
+
},
|
784
|
+
{
|
785
|
+
"code": "NSECR",
|
786
|
+
"display": "Secretion, Nasal"
|
787
|
+
},
|
788
|
+
{
|
789
|
+
"code": "ORH",
|
790
|
+
"display": "Other"
|
791
|
+
},
|
792
|
+
{
|
793
|
+
"code": "ORL",
|
794
|
+
"display": "Lesion, Oral"
|
795
|
+
},
|
796
|
+
{
|
797
|
+
"code": "OTH",
|
798
|
+
"display": "Source, Other"
|
799
|
+
},
|
800
|
+
{
|
801
|
+
"code": "PACEM",
|
802
|
+
"display": "Pacemaker"
|
803
|
+
},
|
804
|
+
{
|
805
|
+
"code": "PAFL",
|
806
|
+
"display": "Pancreatic fluid"
|
807
|
+
},
|
808
|
+
{
|
809
|
+
"code": "PCFL",
|
810
|
+
"display": "Fluid, Pericardial"
|
811
|
+
},
|
812
|
+
{
|
813
|
+
"code": "PDSIT",
|
814
|
+
"display": "Site, Peritoneal Dialysis"
|
815
|
+
},
|
816
|
+
{
|
817
|
+
"code": "PDTS",
|
818
|
+
"display": "Site, Peritoneal Dialysis Tunnel"
|
819
|
+
},
|
820
|
+
{
|
821
|
+
"code": "PELVA",
|
822
|
+
"display": "Abscess, Pelvic"
|
823
|
+
},
|
824
|
+
{
|
825
|
+
"code": "PENIL",
|
826
|
+
"display": "Lesion, Penile"
|
827
|
+
},
|
828
|
+
{
|
829
|
+
"code": "PERIA",
|
830
|
+
"display": "Abscess, Perianal"
|
831
|
+
},
|
832
|
+
{
|
833
|
+
"code": "PILOC",
|
834
|
+
"display": "Cyst, Pilonidal"
|
835
|
+
},
|
836
|
+
{
|
837
|
+
"code": "PINS",
|
838
|
+
"display": "Site, Pin"
|
839
|
+
},
|
840
|
+
{
|
841
|
+
"code": "PIS",
|
842
|
+
"display": "Site, Pacemaker Insetion"
|
843
|
+
},
|
844
|
+
{
|
845
|
+
"code": "PLAN",
|
846
|
+
"display": "Plant Material"
|
847
|
+
},
|
848
|
+
{
|
849
|
+
"code": "PLAS",
|
850
|
+
"display": "Plasma"
|
851
|
+
},
|
852
|
+
{
|
853
|
+
"code": "PLB",
|
854
|
+
"display": "Plasma bag"
|
855
|
+
},
|
856
|
+
{
|
857
|
+
"code": "PLC",
|
858
|
+
"display": "Placenta"
|
859
|
+
},
|
860
|
+
{
|
861
|
+
"code": "PLEVS",
|
862
|
+
"display": "Serum, Peak Level"
|
863
|
+
},
|
864
|
+
{
|
865
|
+
"code": "PLR",
|
866
|
+
"display": "Pleural fluid (thoracentesis fluid)"
|
867
|
+
},
|
868
|
+
{
|
869
|
+
"code": "PMN",
|
870
|
+
"display": "Polymorphonuclear neutrophils"
|
871
|
+
},
|
872
|
+
{
|
873
|
+
"code": "PND",
|
874
|
+
"display": "Drainage, Penile"
|
875
|
+
},
|
876
|
+
{
|
877
|
+
"code": "POL",
|
878
|
+
"display": "Polyps"
|
879
|
+
},
|
880
|
+
{
|
881
|
+
"code": "POPGS",
|
882
|
+
"display": "Graft Site, Popliteal"
|
883
|
+
},
|
884
|
+
{
|
885
|
+
"code": "POPLG",
|
886
|
+
"display": "Graft, Popliteal"
|
887
|
+
},
|
888
|
+
{
|
889
|
+
"code": "POPLV",
|
890
|
+
"display": "Site, Popliteal Vein"
|
891
|
+
},
|
892
|
+
{
|
893
|
+
"code": "PORTA",
|
894
|
+
"display": "Catheter, Porta"
|
895
|
+
},
|
896
|
+
{
|
897
|
+
"code": "PPP",
|
898
|
+
"display": "Plasma, Platelet poor"
|
899
|
+
},
|
900
|
+
{
|
901
|
+
"code": "PROST",
|
902
|
+
"display": "Prosthetic Device"
|
903
|
+
},
|
904
|
+
{
|
905
|
+
"code": "PRP",
|
906
|
+
"display": "Plasma, Platelet rich"
|
907
|
+
},
|
908
|
+
{
|
909
|
+
"code": "PSC",
|
910
|
+
"display": "Pseudocyst"
|
911
|
+
},
|
912
|
+
{
|
913
|
+
"code": "PUNCT",
|
914
|
+
"display": "Wound, Puncture"
|
915
|
+
},
|
916
|
+
{
|
917
|
+
"code": "PUS",
|
918
|
+
"display": "Pus"
|
919
|
+
},
|
920
|
+
{
|
921
|
+
"code": "PUSFR",
|
922
|
+
"display": "Pustule"
|
923
|
+
},
|
924
|
+
{
|
925
|
+
"code": "PUST",
|
926
|
+
"display": "Pus"
|
927
|
+
},
|
928
|
+
{
|
929
|
+
"code": "QC3",
|
930
|
+
"display": "Quality Control"
|
931
|
+
},
|
932
|
+
{
|
933
|
+
"code": "RANDU",
|
934
|
+
"display": "Urine, Random"
|
935
|
+
},
|
936
|
+
{
|
937
|
+
"code": "RBC",
|
938
|
+
"display": "Erythrocytes"
|
939
|
+
},
|
940
|
+
{
|
941
|
+
"code": "RBITE",
|
942
|
+
"display": "Bite, Reptile"
|
943
|
+
},
|
944
|
+
{
|
945
|
+
"code": "RECT",
|
946
|
+
"display": "Drainage, Rectal"
|
947
|
+
},
|
948
|
+
{
|
949
|
+
"code": "RECTA",
|
950
|
+
"display": "Abscess, Rectal"
|
951
|
+
},
|
952
|
+
{
|
953
|
+
"code": "RENALC",
|
954
|
+
"display": "Cyst, Renal"
|
955
|
+
},
|
956
|
+
{
|
957
|
+
"code": "RENC",
|
958
|
+
"display": "Fluid, Renal Cyst"
|
959
|
+
},
|
960
|
+
{
|
961
|
+
"code": "RES",
|
962
|
+
"display": "Respiratory"
|
963
|
+
},
|
964
|
+
{
|
965
|
+
"code": "SAL",
|
966
|
+
"display": "Saliva"
|
967
|
+
},
|
968
|
+
{
|
969
|
+
"code": "SCAR",
|
970
|
+
"display": "Tissue, Keloid (Scar)"
|
971
|
+
},
|
972
|
+
{
|
973
|
+
"code": "SCLV",
|
974
|
+
"display": "Catheter Tip, Subclavian"
|
975
|
+
},
|
976
|
+
{
|
977
|
+
"code": "SCROA",
|
978
|
+
"display": "Abscess, Scrotal"
|
979
|
+
},
|
980
|
+
{
|
981
|
+
"code": "SECRE",
|
982
|
+
"display": "Secretion(s)"
|
983
|
+
},
|
984
|
+
{
|
985
|
+
"code": "SER",
|
986
|
+
"display": "Serum"
|
987
|
+
},
|
988
|
+
{
|
989
|
+
"code": "SHU",
|
990
|
+
"display": "Site, Shunt"
|
991
|
+
},
|
992
|
+
{
|
993
|
+
"code": "SHUNF",
|
994
|
+
"display": "Fluid, Shunt"
|
995
|
+
},
|
996
|
+
{
|
997
|
+
"code": "SHUNT",
|
998
|
+
"display": "Shunt"
|
999
|
+
},
|
1000
|
+
{
|
1001
|
+
"code": "SITE",
|
1002
|
+
"display": "Site"
|
1003
|
+
},
|
1004
|
+
{
|
1005
|
+
"code": "SKBP",
|
1006
|
+
"display": "Biopsy, Skin"
|
1007
|
+
},
|
1008
|
+
{
|
1009
|
+
"code": "SKN",
|
1010
|
+
"display": "Skin"
|
1011
|
+
},
|
1012
|
+
{
|
1013
|
+
"code": "SMM",
|
1014
|
+
"display": "Mass, Sub-Mandibular"
|
1015
|
+
},
|
1016
|
+
{
|
1017
|
+
"code": "SMN",
|
1018
|
+
"display": "Seminal fluid"
|
1019
|
+
},
|
1020
|
+
{
|
1021
|
+
"code": "SNV",
|
1022
|
+
"display": "Fluid, synovial (Joint fluid)"
|
1023
|
+
},
|
1024
|
+
{
|
1025
|
+
"code": "SPRM",
|
1026
|
+
"display": "Spermatozoa"
|
1027
|
+
},
|
1028
|
+
{
|
1029
|
+
"code": "SPRP",
|
1030
|
+
"display": "Catheter Tip, Suprapubic"
|
1031
|
+
},
|
1032
|
+
{
|
1033
|
+
"code": "SPRPB",
|
1034
|
+
"display": "Cathether Tip, Suprapubic"
|
1035
|
+
},
|
1036
|
+
{
|
1037
|
+
"code": "SPS",
|
1038
|
+
"display": "Environmental, Spore Strip"
|
1039
|
+
},
|
1040
|
+
{
|
1041
|
+
"code": "SPT",
|
1042
|
+
"display": "Sputum"
|
1043
|
+
},
|
1044
|
+
{
|
1045
|
+
"code": "SPTC",
|
1046
|
+
"display": "Sputum - coughed"
|
1047
|
+
},
|
1048
|
+
{
|
1049
|
+
"code": "SPTT",
|
1050
|
+
"display": "Sputum - tracheal aspirate"
|
1051
|
+
},
|
1052
|
+
{
|
1053
|
+
"code": "SPUT1",
|
1054
|
+
"display": "Sputum, Simulated"
|
1055
|
+
},
|
1056
|
+
{
|
1057
|
+
"code": "SPUTIN",
|
1058
|
+
"display": "Sputum, Inducted"
|
1059
|
+
},
|
1060
|
+
{
|
1061
|
+
"code": "SPUTSP",
|
1062
|
+
"display": "Sputum, Spontaneous"
|
1063
|
+
},
|
1064
|
+
{
|
1065
|
+
"code": "STER",
|
1066
|
+
"display": "Environmental, Sterrad"
|
1067
|
+
},
|
1068
|
+
{
|
1069
|
+
"code": "STL",
|
1070
|
+
"display": "Stool = Fecal"
|
1071
|
+
},
|
1072
|
+
{
|
1073
|
+
"code": "STONE",
|
1074
|
+
"display": "Stone, Kidney"
|
1075
|
+
},
|
1076
|
+
{
|
1077
|
+
"code": "SUBMA",
|
1078
|
+
"display": "Abscess, Submandibular"
|
1079
|
+
},
|
1080
|
+
{
|
1081
|
+
"code": "SUBMX",
|
1082
|
+
"display": "Abscess, Submaxillary"
|
1083
|
+
},
|
1084
|
+
{
|
1085
|
+
"code": "SUMP",
|
1086
|
+
"display": "Drainage, Sump"
|
1087
|
+
},
|
1088
|
+
{
|
1089
|
+
"code": "SUP",
|
1090
|
+
"display": "Suprapubic Tap"
|
1091
|
+
},
|
1092
|
+
{
|
1093
|
+
"code": "SUTUR",
|
1094
|
+
"display": "Suture"
|
1095
|
+
},
|
1096
|
+
{
|
1097
|
+
"code": "SWGZ",
|
1098
|
+
"display": "Catheter Tip, Swan Gantz"
|
1099
|
+
},
|
1100
|
+
{
|
1101
|
+
"code": "SWT",
|
1102
|
+
"display": "Sweat"
|
1103
|
+
},
|
1104
|
+
{
|
1105
|
+
"code": "TASP",
|
1106
|
+
"display": "Aspirate, Tracheal"
|
1107
|
+
},
|
1108
|
+
{
|
1109
|
+
"code": "TEAR",
|
1110
|
+
"display": "Tears"
|
1111
|
+
},
|
1112
|
+
{
|
1113
|
+
"code": "THRB",
|
1114
|
+
"display": "Thrombocyte (platelet)"
|
1115
|
+
},
|
1116
|
+
{
|
1117
|
+
"code": "TISS",
|
1118
|
+
"display": "Tissue"
|
1119
|
+
},
|
1120
|
+
{
|
1121
|
+
"code": "TISU",
|
1122
|
+
"display": "Tissue ulcer"
|
1123
|
+
},
|
1124
|
+
{
|
1125
|
+
"code": "TLC",
|
1126
|
+
"display": "Cathether Tip, Triple Lumen"
|
1127
|
+
},
|
1128
|
+
{
|
1129
|
+
"code": "TRAC",
|
1130
|
+
"display": "Site, Tracheostomy"
|
1131
|
+
},
|
1132
|
+
{
|
1133
|
+
"code": "TRANS",
|
1134
|
+
"display": "Transudate"
|
1135
|
+
},
|
1136
|
+
{
|
1137
|
+
"code": "TSERU",
|
1138
|
+
"display": "Serum, Trough"
|
1139
|
+
},
|
1140
|
+
{
|
1141
|
+
"code": "TSTES",
|
1142
|
+
"display": "Abscess, Testicular"
|
1143
|
+
},
|
1144
|
+
{
|
1145
|
+
"code": "TTRA",
|
1146
|
+
"display": "Aspirate, Transtracheal"
|
1147
|
+
},
|
1148
|
+
{
|
1149
|
+
"code": "TUBES",
|
1150
|
+
"display": "Tubes"
|
1151
|
+
},
|
1152
|
+
{
|
1153
|
+
"code": "TUMOR",
|
1154
|
+
"display": "Tumor"
|
1155
|
+
},
|
1156
|
+
{
|
1157
|
+
"code": "TZANC",
|
1158
|
+
"display": "Smear, Tzanck"
|
1159
|
+
},
|
1160
|
+
{
|
1161
|
+
"code": "UDENT",
|
1162
|
+
"display": "Source, Unidentified"
|
1163
|
+
},
|
1164
|
+
{
|
1165
|
+
"code": "UMED",
|
1166
|
+
"display": "Unknown Medicine"
|
1167
|
+
},
|
1168
|
+
{
|
1169
|
+
"code": "UR",
|
1170
|
+
"display": "Urine"
|
1171
|
+
},
|
1172
|
+
{
|
1173
|
+
"code": "URC",
|
1174
|
+
"display": "Urine clean catch"
|
1175
|
+
},
|
1176
|
+
{
|
1177
|
+
"code": "URINB",
|
1178
|
+
"display": "Urine, Bladder Washings"
|
1179
|
+
},
|
1180
|
+
{
|
1181
|
+
"code": "URINC",
|
1182
|
+
"display": "Urine, Catheterized"
|
1183
|
+
},
|
1184
|
+
{
|
1185
|
+
"code": "URINM",
|
1186
|
+
"display": "Urine, Midstream"
|
1187
|
+
},
|
1188
|
+
{
|
1189
|
+
"code": "URINN",
|
1190
|
+
"display": "Urine, Nephrostomy"
|
1191
|
+
},
|
1192
|
+
{
|
1193
|
+
"code": "URINP",
|
1194
|
+
"display": "Urine, Pedibag"
|
1195
|
+
},
|
1196
|
+
{
|
1197
|
+
"code": "URNS",
|
1198
|
+
"display": "Urine sediment"
|
1199
|
+
},
|
1200
|
+
{
|
1201
|
+
"code": "URT",
|
1202
|
+
"display": "Urine catheter"
|
1203
|
+
},
|
1204
|
+
{
|
1205
|
+
"code": "USCOP",
|
1206
|
+
"display": "Urine, Cystoscopy"
|
1207
|
+
},
|
1208
|
+
{
|
1209
|
+
"code": "USPEC",
|
1210
|
+
"display": "Source, Unspecified"
|
1211
|
+
},
|
1212
|
+
{
|
1213
|
+
"code": "USUB",
|
1214
|
+
"display": "Unkown substance"
|
1215
|
+
},
|
1216
|
+
{
|
1217
|
+
"code": "VASTIP",
|
1218
|
+
"display": "Catheter Tip, Vas"
|
1219
|
+
},
|
1220
|
+
{
|
1221
|
+
"code": "VENT",
|
1222
|
+
"display": "Catheter Tip, Ventricular"
|
1223
|
+
},
|
1224
|
+
{
|
1225
|
+
"code": "VITF",
|
1226
|
+
"display": "Vitreous Fluid"
|
1227
|
+
},
|
1228
|
+
{
|
1229
|
+
"code": "VOM",
|
1230
|
+
"display": "Vomitus"
|
1231
|
+
},
|
1232
|
+
{
|
1233
|
+
"code": "WASH",
|
1234
|
+
"display": "Wash"
|
1235
|
+
},
|
1236
|
+
{
|
1237
|
+
"code": "WASI",
|
1238
|
+
"display": "Washing, e.g. bronchial washing"
|
1239
|
+
},
|
1240
|
+
{
|
1241
|
+
"code": "WAT",
|
1242
|
+
"display": "Water"
|
1243
|
+
},
|
1244
|
+
{
|
1245
|
+
"code": "WB",
|
1246
|
+
"display": "Blood, Whole"
|
1247
|
+
},
|
1248
|
+
{
|
1249
|
+
"code": "WBC",
|
1250
|
+
"display": "Leukocytes"
|
1251
|
+
},
|
1252
|
+
{
|
1253
|
+
"code": "WEN",
|
1254
|
+
"display": "Wen"
|
1255
|
+
},
|
1256
|
+
{
|
1257
|
+
"code": "WICK",
|
1258
|
+
"display": "Wick"
|
1259
|
+
},
|
1260
|
+
{
|
1261
|
+
"code": "WND",
|
1262
|
+
"display": "Wound"
|
1263
|
+
},
|
1264
|
+
{
|
1265
|
+
"code": "WNDA",
|
1266
|
+
"display": "Wound abscess"
|
1267
|
+
},
|
1268
|
+
{
|
1269
|
+
"code": "WNDD",
|
1270
|
+
"display": "Wound drainage"
|
1271
|
+
},
|
1272
|
+
{
|
1273
|
+
"code": "WNDE",
|
1274
|
+
"display": "Wound exudate"
|
1275
|
+
},
|
1276
|
+
{
|
1277
|
+
"code": "WORM",
|
1278
|
+
"display": "Worm"
|
1279
|
+
},
|
1280
|
+
{
|
1281
|
+
"code": "WRT",
|
1282
|
+
"display": "Wart"
|
1283
|
+
},
|
1284
|
+
{
|
1285
|
+
"code": "WWA",
|
1286
|
+
"display": "Environmental, Water"
|
1287
|
+
},
|
1288
|
+
{
|
1289
|
+
"code": "WWO",
|
1290
|
+
"display": "Environmental, Water (Ocean)"
|
1291
|
+
},
|
1292
|
+
{
|
1293
|
+
"code": "WWT",
|
1294
|
+
"display": "Environmental, Water (Tap)"
|
1295
|
+
}
|
1296
|
+
]
|
1297
|
+
}
|