fhir_dstu2_models 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.codeclimate.yml +26 -0
- data/.gitignore +2 -0
- data/.rspec +2 -0
- data/.rubocop.yml +14 -0
- data/.rubocop_todo.yml +79 -0
- data/.simplecov +17 -0
- data/.travis.yml +21 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +131 -0
- data/Guardfile +50 -0
- data/README.md +57 -0
- data/Rakefile +26 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/fhir_dstu2_models.gemspec +39 -0
- data/lib/fhir_dstu2_models.rb +35 -0
- data/lib/fhir_dstu2_models/bootstrap/definitions.rb +350 -0
- data/lib/fhir_dstu2_models/bootstrap/field.rb +45 -0
- data/lib/fhir_dstu2_models/bootstrap/generator.rb +255 -0
- data/lib/fhir_dstu2_models/bootstrap/hashable.rb +137 -0
- data/lib/fhir_dstu2_models/bootstrap/json.rb +28 -0
- data/lib/fhir_dstu2_models/bootstrap/model.rb +308 -0
- data/lib/fhir_dstu2_models/bootstrap/preprocess.rb +124 -0
- data/lib/fhir_dstu2_models/bootstrap/template.rb +138 -0
- data/lib/fhir_dstu2_models/bootstrap/xml.rb +144 -0
- data/lib/fhir_dstu2_models/definitions/schema/account.xsd +72 -0
- data/lib/fhir_dstu2_models/definitions/schema/allergyintolerance.xsd +166 -0
- data/lib/fhir_dstu2_models/definitions/schema/appointment.xsd +119 -0
- data/lib/fhir_dstu2_models/definitions/schema/appointmentresponse.xsd +73 -0
- data/lib/fhir_dstu2_models/definitions/schema/auditevent.xsd +182 -0
- data/lib/fhir_dstu2_models/definitions/schema/basic.xsd +53 -0
- data/lib/fhir_dstu2_models/definitions/schema/binary.xsd +50 -0
- data/lib/fhir_dstu2_models/definitions/schema/bodysite.xsd +54 -0
- data/lib/fhir_dstu2_models/definitions/schema/bundle.xsd +162 -0
- data/lib/fhir_dstu2_models/definitions/schema/careplan.xsd +173 -0
- data/lib/fhir_dstu2_models/definitions/schema/claim.xsd +228 -0
- data/lib/fhir_dstu2_models/definitions/schema/claimresponse.xsd +226 -0
- data/lib/fhir_dstu2_models/definitions/schema/clinicalimpression.xsd +112 -0
- data/lib/fhir_dstu2_models/definitions/schema/communication.xsd +90 -0
- data/lib/fhir_dstu2_models/definitions/schema/communicationrequest.xsd +99 -0
- data/lib/fhir_dstu2_models/definitions/schema/composition.xsd +130 -0
- data/lib/fhir_dstu2_models/definitions/schema/conceptmap.xsd +116 -0
- data/lib/fhir_dstu2_models/definitions/schema/condition.xsd +114 -0
- data/lib/fhir_dstu2_models/definitions/schema/conformance.xsd +432 -0
- data/lib/fhir_dstu2_models/definitions/schema/contract.xsd +194 -0
- data/lib/fhir_dstu2_models/definitions/schema/coverage.xsd +62 -0
- data/lib/fhir_dstu2_models/definitions/schema/dataelement.xsd +101 -0
- data/lib/fhir_dstu2_models/definitions/schema/detectedissue.xsd +83 -0
- data/lib/fhir_dstu2_models/definitions/schema/device.xsd +78 -0
- data/lib/fhir_dstu2_models/definitions/schema/devicecomponent.xsd +91 -0
- data/lib/fhir_dstu2_models/definitions/schema/devicemetric.xsd +147 -0
- data/lib/fhir_dstu2_models/definitions/schema/deviceuserequest.xsd +104 -0
- data/lib/fhir_dstu2_models/definitions/schema/deviceusestatement.xsd +64 -0
- data/lib/fhir_dstu2_models/definitions/schema/diagnosticorder.xsd +124 -0
- data/lib/fhir_dstu2_models/definitions/schema/diagnosticreport.xsd +96 -0
- data/lib/fhir_dstu2_models/definitions/schema/documentmanifest.xsd +82 -0
- data/lib/fhir_dstu2_models/definitions/schema/documentreference.xsd +125 -0
- data/lib/fhir_dstu2_models/definitions/schema/eligibilityrequest.xsd +55 -0
- data/lib/fhir_dstu2_models/definitions/schema/eligibilityresponse.xsd +58 -0
- data/lib/fhir_dstu2_models/definitions/schema/encounter.xsd +170 -0
- data/lib/fhir_dstu2_models/definitions/schema/enrollmentrequest.xsd +58 -0
- data/lib/fhir_dstu2_models/definitions/schema/enrollmentresponse.xsd +58 -0
- data/lib/fhir_dstu2_models/definitions/schema/episodeofcare.xsd +97 -0
- data/lib/fhir_dstu2_models/definitions/schema/explanationofbenefit.xsd +58 -0
- data/lib/fhir_dstu2_models/definitions/schema/familymemberhistory.xsd +106 -0
- data/lib/fhir_dstu2_models/definitions/schema/fhir-all.xsd +126 -0
- data/lib/fhir_dstu2_models/definitions/schema/fhir-base.xsd +1446 -0
- data/lib/fhir_dstu2_models/definitions/schema/fhir-single.xsd +8239 -0
- data/lib/fhir_dstu2_models/definitions/schema/fhir-xhtml.xsd +1808 -0
- data/lib/fhir_dstu2_models/definitions/schema/flag.xsd +70 -0
- data/lib/fhir_dstu2_models/definitions/schema/goal.xsd +100 -0
- data/lib/fhir_dstu2_models/definitions/schema/group.xsd +101 -0
- data/lib/fhir_dstu2_models/definitions/schema/healthcareservice.xsd +120 -0
- data/lib/fhir_dstu2_models/definitions/schema/imagingobjectselection.xsd +100 -0
- data/lib/fhir_dstu2_models/definitions/schema/imagingstudy.xsd +112 -0
- data/lib/fhir_dstu2_models/definitions/schema/immunization.xsd +106 -0
- data/lib/fhir_dstu2_models/definitions/schema/immunizationrecommendation.xsd +89 -0
- data/lib/fhir_dstu2_models/definitions/schema/implementationguide.xsd +187 -0
- data/lib/fhir_dstu2_models/definitions/schema/list.xsd +101 -0
- data/lib/fhir_dstu2_models/definitions/schema/location.xsd +98 -0
- data/lib/fhir_dstu2_models/definitions/schema/media.xsd +74 -0
- data/lib/fhir_dstu2_models/definitions/schema/medication.xsd +104 -0
- data/lib/fhir_dstu2_models/definitions/schema/medicationadministration.xsd +104 -0
- data/lib/fhir_dstu2_models/definitions/schema/medicationdispense.xsd +124 -0
- data/lib/fhir_dstu2_models/definitions/schema/medicationorder.xsd +142 -0
- data/lib/fhir_dstu2_models/definitions/schema/medicationstatement.xsd +114 -0
- data/lib/fhir_dstu2_models/definitions/schema/messageheader.xsd +108 -0
- data/lib/fhir_dstu2_models/definitions/schema/namingsystem.xsd +112 -0
- data/lib/fhir_dstu2_models/definitions/schema/nutritionorder.xsd +157 -0
- data/lib/fhir_dstu2_models/definitions/schema/observation.xsd +163 -0
- data/lib/fhir_dstu2_models/definitions/schema/operationdefinition.xsd +133 -0
- data/lib/fhir_dstu2_models/definitions/schema/operationoutcome.xsd +117 -0
- data/lib/fhir_dstu2_models/definitions/schema/order.xsd +69 -0
- data/lib/fhir_dstu2_models/definitions/schema/orderresponse.xsd +75 -0
- data/lib/fhir_dstu2_models/definitions/schema/organization.xsd +68 -0
- data/lib/fhir_dstu2_models/definitions/schema/parameters.xsd +97 -0
- data/lib/fhir_dstu2_models/definitions/schema/patient.xsd +131 -0
- data/lib/fhir_dstu2_models/definitions/schema/paymentnotice.xsd +58 -0
- data/lib/fhir_dstu2_models/definitions/schema/paymentreconciliation.xsd +88 -0
- data/lib/fhir_dstu2_models/definitions/schema/person.xsd +83 -0
- data/lib/fhir_dstu2_models/definitions/schema/practitioner.xsd +85 -0
- data/lib/fhir_dstu2_models/definitions/schema/procedure.xsd +110 -0
- data/lib/fhir_dstu2_models/definitions/schema/procedurerequest.xsd +108 -0
- data/lib/fhir_dstu2_models/definitions/schema/processrequest.xsd +88 -0
- data/lib/fhir_dstu2_models/definitions/schema/processresponse.xsd +71 -0
- data/lib/fhir_dstu2_models/definitions/schema/provenance.xsd +108 -0
- data/lib/fhir_dstu2_models/definitions/schema/questionnaire.xsd +129 -0
- data/lib/fhir_dstu2_models/definitions/schema/questionnaireresponse.xsd +120 -0
- data/lib/fhir_dstu2_models/definitions/schema/referralrequest.xsd +82 -0
- data/lib/fhir_dstu2_models/definitions/schema/relatedperson.xsd +58 -0
- data/lib/fhir_dstu2_models/definitions/schema/riskassessment.xsd +78 -0
- data/lib/fhir_dstu2_models/definitions/schema/schedule.xsd +53 -0
- data/lib/fhir_dstu2_models/definitions/schema/searchparameter.xsd +89 -0
- data/lib/fhir_dstu2_models/definitions/schema/slot.xsd +71 -0
- data/lib/fhir_dstu2_models/definitions/schema/specimen.xsd +118 -0
- data/lib/fhir_dstu2_models/definitions/schema/structuredefinition.xsd +142 -0
- data/lib/fhir_dstu2_models/definitions/schema/subscription.xsd +99 -0
- data/lib/fhir_dstu2_models/definitions/schema/substance.xsd +75 -0
- data/lib/fhir_dstu2_models/definitions/schema/supplydelivery.xsd +73 -0
- data/lib/fhir_dstu2_models/definitions/schema/supplyrequest.xsd +86 -0
- data/lib/fhir_dstu2_models/definitions/schema/testscript.xsd +324 -0
- data/lib/fhir_dstu2_models/definitions/schema/valueset.xsd +221 -0
- data/lib/fhir_dstu2_models/definitions/schema/visionprescription.xsd +109 -0
- data/lib/fhir_dstu2_models/definitions/schema/xml.xsd +32 -0
- data/lib/fhir_dstu2_models/definitions/schema/xmldsig-core-schema.xsd +254 -0
- data/lib/fhir_dstu2_models/definitions/structures/extension-definitions.json +36931 -0
- data/lib/fhir_dstu2_models/definitions/structures/profiles-others.json +119617 -0
- data/lib/fhir_dstu2_models/definitions/structures/profiles-resources.json +50038 -0
- data/lib/fhir_dstu2_models/definitions/structures/profiles-types.json +6819 -0
- data/lib/fhir_dstu2_models/definitions/structures/search-parameters.json +12048 -0
- data/lib/fhir_dstu2_models/definitions/valuesets/v2-tables.json +75865 -0
- data/lib/fhir_dstu2_models/definitions/valuesets/v3-codesystems.json +42052 -0
- data/lib/fhir_dstu2_models/definitions/valuesets/valuesets.json +91793 -0
- data/lib/fhir_dstu2_models/deprecate.rb +24 -0
- data/lib/fhir_dstu2_models/examples/json/account-example.json +8 -0
- data/lib/fhir_dstu2_models/examples/json/account-questionnaire.json +686 -0
- data/lib/fhir_dstu2_models/examples/json/address-type-map-v3.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/address-use-map-v2.json +81 -0
- data/lib/fhir_dstu2_models/examples/json/address-use-map-v3.json +93 -0
- data/lib/fhir_dstu2_models/examples/json/administrative-gender-map-v2.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/administrative-gender-map-v3.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/allergyintolerance-example.json +126 -0
- data/lib/fhir_dstu2_models/examples/json/allergyintolerance-fishallergy.json +54 -0
- data/lib/fhir_dstu2_models/examples/json/allergyintolerance-medication.json +54 -0
- data/lib/fhir_dstu2_models/examples/json/allergyintolerance-questionnaire.json +939 -0
- data/lib/fhir_dstu2_models/examples/json/appointment-example-request.json +68 -0
- data/lib/fhir_dstu2_models/examples/json/appointment-example.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/appointment-example2doctors.json +55 -0
- data/lib/fhir_dstu2_models/examples/json/appointment-questionnaire.json +816 -0
- data/lib/fhir_dstu2_models/examples/json/appointmentresponse-example-req.json +35 -0
- data/lib/fhir_dstu2_models/examples/json/appointmentresponse-example.json +17 -0
- data/lib/fhir_dstu2_models/examples/json/appointmentresponse-questionnaire.json +570 -0
- data/lib/fhir_dstu2_models/examples/json/audit-event-example-login.json +52 -0
- data/lib/fhir_dstu2_models/examples/json/audit-event-example-logout.json +52 -0
- data/lib/fhir_dstu2_models/examples/json/audit-event-example-media.json +137 -0
- data/lib/fhir_dstu2_models/examples/json/audit-event-example-pixQuery.json +120 -0
- data/lib/fhir_dstu2_models/examples/json/audit-event-example-search.json +68 -0
- data/lib/fhir_dstu2_models/examples/json/audit-event-example-vread.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/auditevent-example-disclosure.json +183 -0
- data/lib/fhir_dstu2_models/examples/json/auditevent-example.json +86 -0
- data/lib/fhir_dstu2_models/examples/json/auditevent-questionnaire.json +1537 -0
- data/lib/fhir_dstu2_models/examples/json/basic-example-narrative.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/basic-example.json +68 -0
- data/lib/fhir_dstu2_models/examples/json/basic-example2.json +61 -0
- data/lib/fhir_dstu2_models/examples/json/basic-questionnaire.json +411 -0
- data/lib/fhir_dstu2_models/examples/json/binary-f006.json +6 -0
- data/lib/fhir_dstu2_models/examples/json/binary-questionnaire.json +127 -0
- data/lib/fhir_dstu2_models/examples/json/bodysite-example.json +71 -0
- data/lib/fhir_dstu2_models/examples/json/bodysite-questionnaire.json +331 -0
- data/lib/fhir_dstu2_models/examples/json/bundle-example.json +98 -0
- data/lib/fhir_dstu2_models/examples/json/bundle-questionnaire.json +840 -0
- data/lib/fhir_dstu2_models/examples/json/bundle-response.json +181 -0
- data/lib/fhir_dstu2_models/examples/json/bundle-transaction.json +348 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-GPVisit.json +181 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-f001-heart.json +112 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-f002-lung.json +112 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-f003-pharynx.json +112 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-f201-renal.json +145 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-f202-malignancy.json +155 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-f203-sepsis.json +98 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-integrated.json +575 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-pregnancy.json +299 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example.json +150 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-questionnaire.json +2537 -0
- data/lib/fhir_dstu2_models/examples/json/cholesterol-questionnaire.json +1993 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example-institutional.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example-oral-average.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example-oral-contained.json +163 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example-oral-orthoplan.json +318 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example-pharmacy.json +83 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example-professional.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example-vision-glasses.json +149 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example-vision.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example.json +79 -0
- data/lib/fhir_dstu2_models/examples/json/claimresponse-example.json +101 -0
- data/lib/fhir_dstu2_models/examples/json/clinicaldocument-questionnaire.json +1414 -0
- data/lib/fhir_dstu2_models/examples/json/clinicalimpression-example.json +72 -0
- data/lib/fhir_dstu2_models/examples/json/clinicalimpression-questionnaire.json +1794 -0
- data/lib/fhir_dstu2_models/examples/json/communication-example.json +55 -0
- data/lib/fhir_dstu2_models/examples/json/communication-questionnaire.json +1022 -0
- data/lib/fhir_dstu2_models/examples/json/communicationrequest-example.json +14 -0
- data/lib/fhir_dstu2_models/examples/json/communicationrequest-questionnaire.json +1190 -0
- data/lib/fhir_dstu2_models/examples/json/composition-example.json +152 -0
- data/lib/fhir_dstu2_models/examples/json/composition-questionnaire.json +1260 -0
- data/lib/fhir_dstu2_models/examples/json/composition-status-map-v3.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/conceptmap-example.json +112 -0
- data/lib/fhir_dstu2_models/examples/json/conceptmap-questionnaire.json +1253 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-f001-heart.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-f002-lung.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-f003-abscess.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-f201-fever.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-f202-malignancy.json +88 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-f203-sepsis.json +84 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-f204-renal.json +89 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-f205-infection.json +33 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-stroke.json +33 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example.json +61 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example2.json +35 -0
- data/lib/fhir_dstu2_models/examples/json/condition-questionnaire.json +1360 -0
- data/lib/fhir_dstu2_models/examples/json/conformance-base2.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/conformance-example.json +267 -0
- data/lib/fhir_dstu2_models/examples/json/conformance-phr-example.json +152 -0
- data/lib/fhir_dstu2_models/examples/json/conformance-terminology-server.json +241 -0
- data/lib/fhir_dstu2_models/examples/json/contact-point-system-map-v2.json +93 -0
- data/lib/fhir_dstu2_models/examples/json/contact-point-use-map-v2.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/contact-point-use-map-v3.json +104 -0
- data/lib/fhir_dstu2_models/examples/json/contract-example.json +8 -0
- data/lib/fhir_dstu2_models/examples/json/coverage-example-2.json +32 -0
- data/lib/fhir_dstu2_models/examples/json/coverage-example.json +33 -0
- data/lib/fhir_dstu2_models/examples/json/coverage-questionnaire.json +580 -0
- data/lib/fhir_dstu2_models/examples/json/data-absent-reason-map-v3.json +124 -0
- data/lib/fhir_dstu2_models/examples/json/dataelement-example.json +251 -0
- data/lib/fhir_dstu2_models/examples/json/dataelement-labtestmaster-example.json +84 -0
- data/lib/fhir_dstu2_models/examples/json/dataelement-questionnaire.json +742 -0
- data/lib/fhir_dstu2_models/examples/json/detectedissue-example-allergy.json +8 -0
- data/lib/fhir_dstu2_models/examples/json/detectedissue-example-dup.json +38 -0
- data/lib/fhir_dstu2_models/examples/json/detectedissue-example-lab.json +8 -0
- data/lib/fhir_dstu2_models/examples/json/detectedissue-example.json +52 -0
- data/lib/fhir_dstu2_models/examples/json/detectedissue-questionnaire.json +632 -0
- data/lib/fhir_dstu2_models/examples/json/detectedissue-severity-map-v3.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/device-example-f001-feedingtube.json +38 -0
- data/lib/fhir_dstu2_models/examples/json/device-example-ihe-pcd.json +28 -0
- data/lib/fhir_dstu2_models/examples/json/device-example-pacemaker.json +35 -0
- data/lib/fhir_dstu2_models/examples/json/device-example-software.json +26 -0
- data/lib/fhir_dstu2_models/examples/json/device-example.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/device-questionnaire.json +590 -0
- data/lib/fhir_dstu2_models/examples/json/devicecomponent-example-prodspec.json +135 -0
- data/lib/fhir_dstu2_models/examples/json/devicecomponent-example.json +88 -0
- data/lib/fhir_dstu2_models/examples/json/devicecomponent-questionnaire.json +591 -0
- data/lib/fhir_dstu2_models/examples/json/devicemetric-example.json +31 -0
- data/lib/fhir_dstu2_models/examples/json/devicemetric-questionnaire.json +581 -0
- data/lib/fhir_dstu2_models/examples/json/devicemetricobservation-questionnaire.json +2007 -0
- data/lib/fhir_dstu2_models/examples/json/deviceuserequest-example.json +17 -0
- data/lib/fhir_dstu2_models/examples/json/deviceuserequest-questionnaire.json +717 -0
- data/lib/fhir_dstu2_models/examples/json/deviceusestatement-example.json +17 -0
- data/lib/fhir_dstu2_models/examples/json/deviceusestatement-questionnaire.json +606 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticorder-example-di.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticorder-example-ft4.json +81 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticorder-example.json +114 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticorder-questionnaire.json +1099 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-example-dxa.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-example-f001-bloodexam.json +138 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-example-f201-brainct.json +68 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-example-f202-bloodculture.json +88 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-example-ghp.json +2582 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-example-lipids.json +231 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-example-ultrasound.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-example.json +870 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-micro1.json +1173 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-questionnaire.json +1158 -0
- data/lib/fhir_dstu2_models/examples/json/document-example-dischargesummary.json +481 -0
- data/lib/fhir_dstu2_models/examples/json/document-reference-status-map-v3.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/documentmanifest-example.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/documentmanifest-questionnaire.json +1137 -0
- data/lib/fhir_dstu2_models/examples/json/documentreference-example.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/documentreference-questionnaire.json +1530 -0
- data/lib/fhir_dstu2_models/examples/json/elementdefinition-11179-DataElement-objectClass.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/elementdefinition-11179-DataElement-objectClassProperty.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/eligibilityrequest-example.json +18 -0
- data/lib/fhir_dstu2_models/examples/json/eligibilityrequest-questionnaire.json +359 -0
- data/lib/fhir_dstu2_models/examples/json/eligibilityresponse-example.json +26 -0
- data/lib/fhir_dstu2_models/examples/json/eligibilityresponse-questionnaire.json +437 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example-f001-heart.json +98 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example-f002-lung.json +98 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example-f003-abscess.json +103 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example-f201-20130404.json +78 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example-f202-20130128.json +98 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example-f203-20130311.json +110 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example-home.json +50 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example-xcda.json +38 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example.json +13 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-questionnaire.json +1610 -0
- data/lib/fhir_dstu2_models/examples/json/enrollmentrequest-example.json +27 -0
- data/lib/fhir_dstu2_models/examples/json/enrollmentrequest-questionnaire.json +443 -0
- data/lib/fhir_dstu2_models/examples/json/enrollmentresponse-example.json +26 -0
- data/lib/fhir_dstu2_models/examples/json/enrollmentresponse-questionnaire.json +437 -0
- data/lib/fhir_dstu2_models/examples/json/episodeofcare-example.json +102 -0
- data/lib/fhir_dstu2_models/examples/json/episodeofcare-questionnaire.json +778 -0
- data/lib/fhir_dstu2_models/examples/json/explanationofbenefit-example.json +26 -0
- data/lib/fhir_dstu2_models/examples/json/explanationofbenefit-questionnaire.json +437 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-administrative-status.json +211 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-change-description.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-classification-or-context.json +243 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-contact-address.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-document-reference.json +209 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-effective-period.json +217 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-is-data-element-concept.json +230 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-registry-org.json +209 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-submitter-org.json +209 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-objectclass.json +246 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-objectclassproperty.json +246 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-permitted-value-conceptmap.json +241 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-permitted-value-valueset.json +241 -0
- data/lib/fhir_dstu2_models/examples/json/extension-allergyintolerance-duration.json +211 -0
- data/lib/fhir_dstu2_models/examples/json/extension-allergyintolerance-reasonrefuted.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-allergyintolerance-resolutionage.json +213 -0
- data/lib/fhir_dstu2_models/examples/json/extension-birthplace.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-body-site-instance.json +190 -0
- data/lib/fhir_dstu2_models/examples/json/extension-careplan-activity-title.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-communication-media.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-communication-reasonnotperformed.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/extension-communicationrequest-orderedby.json +231 -0
- data/lib/fhir_dstu2_models/examples/json/extension-communicationrequest-reasonrejected.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/extension-composition-clindoc-otherconfidentiality.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-condition-criticality.json +189 -0
- data/lib/fhir_dstu2_models/examples/json/extension-condition-dueto.json +700 -0
- data/lib/fhir_dstu2_models/examples/json/extension-condition-occurredfollowing.json +698 -0
- data/lib/fhir_dstu2_models/examples/json/extension-condition-outcome.json +199 -0
- data/lib/fhir_dstu2_models/examples/json/extension-condition-targetbodysite.json +188 -0
- data/lib/fhir_dstu2_models/examples/json/extension-conformance-expectation.json +238 -0
- data/lib/fhir_dstu2_models/examples/json/extension-conformance-prohibited.json +224 -0
- data/lib/fhir_dstu2_models/examples/json/extension-conformance-search-parameter-combination.json +669 -0
- data/lib/fhir_dstu2_models/examples/json/extension-conformance-supported-system.json +189 -0
- data/lib/fhir_dstu2_models/examples/json/extension-cqm-basedonmeasure.json +190 -0
- data/lib/fhir_dstu2_models/examples/json/extension-data-absent-reason.json +218 -0
- data/lib/fhir_dstu2_models/examples/json/extension-datadictionary.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/extension-deviceuserequest-reasonrejected.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-diagnosticorder-precondition.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-diagnosticorder-reason.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-diagnosticorder-reasonrejected.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-diagnosticreport-locationperformed.json +193 -0
- data/lib/fhir_dstu2_models/examples/json/extension-elementdefinition-allowedunits.json +244 -0
- data/lib/fhir_dstu2_models/examples/json/extension-elementdefinition-equivalence.json +217 -0
- data/lib/fhir_dstu2_models/examples/json/extension-elementdefinition-identifier.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-elementdefinition-maxvalueset.json +211 -0
- data/lib/fhir_dstu2_models/examples/json/extension-elementdefinition-minvalueset.json +211 -0
- data/lib/fhir_dstu2_models/examples/json/extension-elementdefinition-question.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/extension-encounter-associatedencounter.json +188 -0
- data/lib/fhir_dstu2_models/examples/json/extension-encounter-primarydiagnosis.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/extension-encounter-reasoncancelled.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-encounter-relatedcondition.json +506 -0
- data/lib/fhir_dstu2_models/examples/json/extension-entryformat.json +217 -0
- data/lib/fhir_dstu2_models/examples/json/extension-family-member-history-genetics-observation.json +213 -0
- data/lib/fhir_dstu2_models/examples/json/extension-family-member-history-genetics-parent.json +657 -0
- data/lib/fhir_dstu2_models/examples/json/extension-familymemberhistory-abatement.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-familymemberhistory-patient-record.json +191 -0
- data/lib/fhir_dstu2_models/examples/json/extension-familymemberhistory-severity.json +199 -0
- data/lib/fhir_dstu2_models/examples/json/extension-flag-detail.json +191 -0
- data/lib/fhir_dstu2_models/examples/json/extension-flag-priority.json +199 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsallelename.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsallelicfrequency.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsallelicstate.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsaminoacidchange.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsaminoacidchangetype.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsassessedcondition.json +222 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticschromosome.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticscigar.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticscopynumberevent.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsdnaregionname.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsdnasequencevariation.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsdnasequencevariationtype.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsgene.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsgenomebuild.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsgenomicsourceclass.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsgenomicstart.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsgenomicstop.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsobservedallele.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsproteinreferencesequenceid.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsreadcoverage.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsreferenceallele.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsresult.json +222 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsspecies.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticstranscriptreferencesequenceid.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsvariationid.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-goal-acceptance.json +794 -0
- data/lib/fhir_dstu2_models/examples/json/extension-goal-pertainstogoal.json +193 -0
- data/lib/fhir_dstu2_models/examples/json/extension-goal-reasonrejected.json +204 -0
- data/lib/fhir_dstu2_models/examples/json/extension-goal-relationship.json +607 -0
- data/lib/fhir_dstu2_models/examples/json/extension-goal-target.json +618 -0
- data/lib/fhir_dstu2_models/examples/json/extension-http-response-header.json +219 -0
- data/lib/fhir_dstu2_models/examples/json/extension-imagingstudy-radiationdose.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-imagingstudy-radiationduration.json +211 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-ad-use.json +217 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-additionallocator.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-buildingnumbersuffix.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-careof.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-censustract.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-county.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-delimiter.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-deliveryaddressline.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-deliveryinstallationarea.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-deliveryinstallationqualifier.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-deliveryinstallationtype.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-deliverymode.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-deliverymodeidentifier.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-direction.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-housenumber.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-housenumbernumeric.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-postbox.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-precinct.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-streetaddressline.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-streetname.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-streetnamebase.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-streetnametype.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-unitid.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-unittype.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-co-value.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-en-qualifier.json +224 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-nullflavor.json +232 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-preferred.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-sc-coding.json +211 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-st-language.json +213 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-st-translation.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-tel-address.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-uncertainty.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-uncertaintytype.json +219 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-verification.json +192 -0
- data/lib/fhir_dstu2_models/examples/json/extension-lipid-report-ldl-chol-calculated.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-location-alias.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/extension-mapsourcepublisher.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-markup.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-maxdecimalplaces.json +217 -0
- data/lib/fhir_dstu2_models/examples/json/extension-maxsize.json +219 -0
- data/lib/fhir_dstu2_models/examples/json/extension-maxvalue.json +248 -0
- data/lib/fhir_dstu2_models/examples/json/extension-medication-isactiveingredient.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/extension-medication-usualroute.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/extension-medicationdispense-validityperiod.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-mimetype.json +229 -0
- data/lib/fhir_dstu2_models/examples/json/extension-minlength.json +219 -0
- data/lib/fhir_dstu2_models/examples/json/extension-minvalue.json +248 -0
- data/lib/fhir_dstu2_models/examples/json/extension-observation-bodyposition.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-observation-delta.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-observation-focal-subject.json +201 -0
- data/lib/fhir_dstu2_models/examples/json/extension-openehr-administration.json +190 -0
- data/lib/fhir_dstu2_models/examples/json/extension-openehr-careplan.json +190 -0
- data/lib/fhir_dstu2_models/examples/json/extension-openehr-exposuredate.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-openehr-exposuredescription.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-openehr-exposureduration.json +210 -0
- data/lib/fhir_dstu2_models/examples/json/extension-openehr-location.json +198 -0
- data/lib/fhir_dstu2_models/examples/json/extension-openehr-management.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-openehr-test.json +202 -0
- data/lib/fhir_dstu2_models/examples/json/extension-operationoutcome-authority.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-operationoutcome-detectedissue.json +193 -0
- data/lib/fhir_dstu2_models/examples/json/extension-operationoutcome-issue-source.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-organization-alias.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/extension-organization-period.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-organization-preferredcontact.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-adoptioninfo.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-birthtime.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-cadavericdonor.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-citizenship.json +577 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-clinicaltrial.json +726 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-congregation.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-disability.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-importance.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-interpreterrequired.json +177 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-mothersmaidenname.json +207 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-mpi-match.json +189 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-nationality.json +577 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-dosetype.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-infuseover.json +212 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-maxdeliveryrate.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-maxdeliveryvolume.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-mindoseperperiod.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-rategoal.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-rateincrement.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-rateincrementinterval.json +212 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-refillsremaining.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-practitioner-animalspecies.json +190 -0
- data/lib/fhir_dstu2_models/examples/json/extension-practitioner-classification.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/extension-practitioner-primaryind.json +177 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedure-approachbodysite.json +191 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedure-causedby.json +330 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedure-incisiondatetime.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedure-method.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedure-progressstatus.json +199 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedure-targetbodysite.json +191 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedurerequest-approachbodysite.json +191 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedurerequest-authorizedby.json +191 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedurerequest-reasonrefused.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedurerequest-targetbodysite.json +191 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-allowedresource.json +219 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-category.json +217 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-choiceorientation.json +200 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-defaultvalue.json +395 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-demap.json +190 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-dereference.json +211 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-enablewhen.json +935 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-help.json +204 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-hidden.json +188 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-highrangelabel.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-instruction.json +204 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-label.json +207 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-lowrangelabel.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-maxlength.json +218 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-maxoccurs.json +223 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-minoccurs.json +223 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-questioncontrol.json +200 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-readonly.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-security.json +204 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-tooltip.json +204 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-trailing.json +204 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-units.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaireresponse-author.json +250 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaireresponse-reviewer.json +210 -0
- data/lib/fhir_dstu2_models/examples/json/extension-referralrequest-reasonrefused.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-regex.json +217 -0
- data/lib/fhir_dstu2_models/examples/json/extension-specimen-collectionpriority.json +199 -0
- data/lib/fhir_dstu2_models/examples/json/extension-specimen-isdryweight.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-specimen-sequencenumber.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-specimen-specialhandling.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-specimen-treatmenttime.json +197 -0
- data/lib/fhir_dstu2_models/examples/json/extension-structuredefinition-display-hint.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-structuredefinition-explicit-type-name.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-structuredefinition-fmm-no-warnings.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-structuredefinition-fmm.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-structuredefinition-json-type.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-structuredefinition-regex.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-structuredefinition-template-status.json +200 -0
- data/lib/fhir_dstu2_models/examples/json/extension-structuredefinition-xml-type.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-style.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/extension-stylesensitive.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-us-core-concernstatus.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-us-core-county.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-us-core-direct.json +219 -0
- data/lib/fhir_dstu2_models/examples/json/extension-us-core-ethnicity.json +198 -0
- data/lib/fhir_dstu2_models/examples/json/extension-us-core-race.json +198 -0
- data/lib/fhir_dstu2_models/examples/json/extension-us-core-religion.json +198 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-author.json +176 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-casesensitive.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-comment.json +582 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-comments.json +180 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-conceptorder.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-definition.json +180 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-deprecated.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-effectivedate.json +176 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-expansionsource.json +176 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-expirationdate.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-history.json +1292 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-keyword.json +176 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-label.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-map.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-oid.json +177 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-ordinalvalue.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-othername.json +586 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-reference.json +208 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-replacedby.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-sourcereference.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-subsumes.json +177 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-systemname.json +176 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-systemref.json +176 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-trusted-expansion.json +176 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-unclosed.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-usage.json +584 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-warning.json +176 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-workflowstatus.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/familymemberhistory-example-mother.json +40 -0
- data/lib/fhir_dstu2_models/examples/json/familymemberhistory-example.json +44 -0
- data/lib/fhir_dstu2_models/examples/json/familymemberhistory-genetic-questionnaire.json +1165 -0
- data/lib/fhir_dstu2_models/examples/json/familymemberhistory-questionnaire.json +1165 -0
- data/lib/fhir_dstu2_models/examples/json/flag-example-encounter.json +34 -0
- data/lib/fhir_dstu2_models/examples/json/flag-example.json +37 -0
- data/lib/fhir_dstu2_models/examples/json/flag-questionnaire.json +688 -0
- data/lib/fhir_dstu2_models/examples/json/genetics-questionnaire.json +2268 -0
- data/lib/fhir_dstu2_models/examples/json/goal-example.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/goal-questionnaire.json +1218 -0
- data/lib/fhir_dstu2_models/examples/json/group-example-member.json +45 -0
- data/lib/fhir_dstu2_models/examples/json/group-example.json +35 -0
- data/lib/fhir_dstu2_models/examples/json/group-questionnaire.json +963 -0
- data/lib/fhir_dstu2_models/examples/json/hdlcholesterol-questionnaire.json +1993 -0
- data/lib/fhir_dstu2_models/examples/json/healthcareservice-example.json +177 -0
- data/lib/fhir_dstu2_models/examples/json/healthcareservice-questionnaire.json +1097 -0
- data/lib/fhir_dstu2_models/examples/json/imagingobjectselection-example.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/imagingobjectselection-questionnaire.json +976 -0
- data/lib/fhir_dstu2_models/examples/json/imagingstudy-example.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/imagingstudy-questionnaire.json +1078 -0
- data/lib/fhir_dstu2_models/examples/json/immunization-example-refused.json +37 -0
- data/lib/fhir_dstu2_models/examples/json/immunization-example.json +135 -0
- data/lib/fhir_dstu2_models/examples/json/immunization-questionnaire.json +1237 -0
- data/lib/fhir_dstu2_models/examples/json/immunizationrecommendation-example.json +97 -0
- data/lib/fhir_dstu2_models/examples/json/immunizationrecommendation-questionnaire.json +812 -0
- data/lib/fhir_dstu2_models/examples/json/implementationguide-example.json +117 -0
- data/lib/fhir_dstu2_models/examples/json/implementationguide-questionnaire.json +1418 -0
- data/lib/fhir_dstu2_models/examples/json/ldlcholesterol-questionnaire.json +1993 -0
- data/lib/fhir_dstu2_models/examples/json/lipidprofile-questionnaire.json +1278 -0
- data/lib/fhir_dstu2_models/examples/json/list-example-allergies.json +45 -0
- data/lib/fhir_dstu2_models/examples/json/list-example-empty.json +34 -0
- data/lib/fhir_dstu2_models/examples/json/list-example-familyhistory-f201-roel.json +120 -0
- data/lib/fhir_dstu2_models/examples/json/list-example-familyhistory-genetics-profile.json +380 -0
- data/lib/fhir_dstu2_models/examples/json/list-example-medlist.json +64 -0
- data/lib/fhir_dstu2_models/examples/json/list-example.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/list-questionnaire.json +899 -0
- data/lib/fhir_dstu2_models/examples/json/location-example-ambulance.json +40 -0
- data/lib/fhir_dstu2_models/examples/json/location-example-hl7hq.json +62 -0
- data/lib/fhir_dstu2_models/examples/json/location-example-patients-home.json +33 -0
- data/lib/fhir_dstu2_models/examples/json/location-example-room.json +47 -0
- data/lib/fhir_dstu2_models/examples/json/location-example-ukpharmacy.json +30 -0
- data/lib/fhir_dstu2_models/examples/json/location-example.json +74 -0
- data/lib/fhir_dstu2_models/examples/json/location-extensions-Location-alias.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/location-questionnaire.json +657 -0
- data/lib/fhir_dstu2_models/examples/json/measurereport-questionnaire.json +1414 -0
- data/lib/fhir_dstu2_models/examples/json/media-example-dicom.json +92 -0
- data/lib/fhir_dstu2_models/examples/json/media-example-sound.json +26 -0
- data/lib/fhir_dstu2_models/examples/json/media-example.json +43 -0
- data/lib/fhir_dstu2_models/examples/json/media-questionnaire.json +637 -0
- data/lib/fhir_dstu2_models/examples/json/medication-admin-status-map-v3.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/medication-dispense-status-map-v3.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/medication-example-f001-combivent.json +66 -0
- data/lib/fhir_dstu2_models/examples/json/medication-example-f002-crestor.json +38 -0
- data/lib/fhir_dstu2_models/examples/json/medication-example-f003-tolbutamide.json +38 -0
- data/lib/fhir_dstu2_models/examples/json/medication-example-f004-metoprolol.json +38 -0
- data/lib/fhir_dstu2_models/examples/json/medication-example-f005-enalapril.json +38 -0
- data/lib/fhir_dstu2_models/examples/json/medication-example-f201-salmeterol.json +68 -0
- data/lib/fhir_dstu2_models/examples/json/medication-example-f202-flucloxacilline.json +29 -0
- data/lib/fhir_dstu2_models/examples/json/medication-example-f203-paracetamol.json +29 -0
- data/lib/fhir_dstu2_models/examples/json/medication-order-status-map-v3.json +102 -0
- data/lib/fhir_dstu2_models/examples/json/medication-questionnaire.json +885 -0
- data/lib/fhir_dstu2_models/examples/json/medication-statement-status-map-v3.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/medicationadministration-questionnaire.json +1190 -0
- data/lib/fhir_dstu2_models/examples/json/medicationadministrationexample1.json +41 -0
- data/lib/fhir_dstu2_models/examples/json/medicationadministrationexample2.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/medicationadministrationexample3.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/medicationdispense-questionnaire.json +1616 -0
- data/lib/fhir_dstu2_models/examples/json/medicationdispenseexample1.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/medicationdispenseexample2.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/medicationdispenseexample3.json +130 -0
- data/lib/fhir_dstu2_models/examples/json/medicationdispenseexample4.json +192 -0
- data/lib/fhir_dstu2_models/examples/json/medicationdispenseexample6.json +78 -0
- data/lib/fhir_dstu2_models/examples/json/medicationdispenseexample8.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample1.json +14 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample11.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample12.json +24 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample13.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample14.json +32 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample15.json +29 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample16.json +29 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample17.json +29 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample2.json +37 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample3.json +32 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample4.json +83 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample5.json +35 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample6.json +32 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample7.json +32 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample8.json +79 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-example-f001-combivent.json +114 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-example-f002-crestor.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-example-f003-tolbutamide.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-example-f004-metoprolol.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-example-f005-enalapril.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-example-f201-salmeterol.json +111 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-example-f202-flucloxacilline.json +86 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-example-f203-paracetamol.json +66 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-questionnaire.json +1805 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample1.json +129 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample2.json +47 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample3.json +190 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample4.json +71 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample5.json +138 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample6.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample7.json +43 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample8.json +53 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample9.json +51 -0
- data/lib/fhir_dstu2_models/examples/json/medicationstatement-questionnaire.json +1480 -0
- data/lib/fhir_dstu2_models/examples/json/medicationstatementexample1.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/medicationstatementexample2.json +33 -0
- data/lib/fhir_dstu2_models/examples/json/medicationstatementexample4.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/medicationstatementexample5.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/medicationstatementexample6.json +50 -0
- data/lib/fhir_dstu2_models/examples/json/medicationstatementexample7.json +21 -0
- data/lib/fhir_dstu2_models/examples/json/message-request-link.json +166 -0
- data/lib/fhir_dstu2_models/examples/json/message-response-link.json +209 -0
- data/lib/fhir_dstu2_models/examples/json/messageheader-example.json +64 -0
- data/lib/fhir_dstu2_models/examples/json/messageheader-questionnaire.json +1002 -0
- data/lib/fhir_dstu2_models/examples/json/name-use-map-v2.json +124 -0
- data/lib/fhir_dstu2_models/examples/json/name-use-map-v3.json +113 -0
- data/lib/fhir_dstu2_models/examples/json/namingsystem-example-id.json +61 -0
- data/lib/fhir_dstu2_models/examples/json/namingsystem-example-replaced.json +23 -0
- data/lib/fhir_dstu2_models/examples/json/namingsystem-example.json +37 -0
- data/lib/fhir_dstu2_models/examples/json/namingsystem-questionnaire.json +737 -0
- data/lib/fhir_dstu2_models/examples/json/namingsystem-registry.json +2362 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-cardiacdiet.json +145 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-diabeticdiet.json +122 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-diabeticsupplement.json +109 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-energysupplement.json +104 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-enteralbolus.json +136 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-enteralcontinuous.json +118 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-fiberrestricteddiet.json +139 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-infantenteral.json +104 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-proteinsupplement.json +77 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-pureeddiet-simple.json +119 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-pureeddiet.json +131 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-renaldiet.json +152 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-texture-modified.json +88 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-questionnaire.json +1790 -0
- data/lib/fhir_dstu2_models/examples/json/obs-genetics-example1-somatic.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/obs-genetics-example2-germline.json +142 -0
- data/lib/fhir_dstu2_models/examples/json/obs-genetics-example3-mutationlist-1.json +68 -0
- data/lib/fhir_dstu2_models/examples/json/obs-genetics-example3-mutationlist-2.json +76 -0
- data/lib/fhir_dstu2_models/examples/json/obs-genetics-example3-mutationlist-3.json +72 -0
- data/lib/fhir_dstu2_models/examples/json/obs-genetics-example3-mutationlist-4.json +72 -0
- data/lib/fhir_dstu2_models/examples/json/obs-genetics-example3-mutationlist.json +86 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-bloodpressure-cancel.json +136 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-bloodpressure.json +122 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f001-glucose.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f002-excess.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f003-co2.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f004-erythrocyte.json +89 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f005-hemoglobin.json +74 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f202-temperature.json +104 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f203-bicarbonate.json +111 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f204-creatinine.json +103 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f205-egfr.json +163 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f206-staphylococcus.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-glasgow-qa.json +99 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-glasgow.json +274 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-sample-data.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-satO2.json +67 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-unsat.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-amino-acid-change.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-assessed-condition.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-chromosome-genomicstart.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-condition-gene-dnavariant.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-condition-gene.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-dna-variant.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-gene-amino-acid-change.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-gene-dnavariant.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-gene-identifier.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-questionnaire.json +2268 -0
- data/lib/fhir_dstu2_models/examples/json/observation-relationshiptypes-map-v3.json +102 -0
- data/lib/fhir_dstu2_models/examples/json/operation-composition-document.json +46 -0
- data/lib/fhir_dstu2_models/examples/json/operation-conceptmap-closure.json +66 -0
- data/lib/fhir_dstu2_models/examples/json/operation-conceptmap-translate.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/operation-encounter-everything.json +43 -0
- data/lib/fhir_dstu2_models/examples/json/operation-list-find.json +54 -0
- data/lib/fhir_dstu2_models/examples/json/operation-messageheader-process-message.json +67 -0
- data/lib/fhir_dstu2_models/examples/json/operation-patient-everything.json +62 -0
- data/lib/fhir_dstu2_models/examples/json/operation-questionnaire-populate.json +97 -0
- data/lib/fhir_dstu2_models/examples/json/operation-resource-meta-add.json +51 -0
- data/lib/fhir_dstu2_models/examples/json/operation-resource-meta-delete.json +51 -0
- data/lib/fhir_dstu2_models/examples/json/operation-resource-meta.json +46 -0
- data/lib/fhir_dstu2_models/examples/json/operation-resource-validate.json +76 -0
- data/lib/fhir_dstu2_models/examples/json/operation-structuredefinition-questionnaire.json +78 -0
- data/lib/fhir_dstu2_models/examples/json/operation-valueset-expand.json +110 -0
- data/lib/fhir_dstu2_models/examples/json/operation-valueset-lookup.json +143 -0
- data/lib/fhir_dstu2_models/examples/json/operation-valueset-validate-code.json +149 -0
- data/lib/fhir_dstu2_models/examples/json/operationdefinition-example.json +55 -0
- data/lib/fhir_dstu2_models/examples/json/operationdefinition-questionnaire.json +1127 -0
- data/lib/fhir_dstu2_models/examples/json/operationoutcome-example-allok.json +17 -0
- data/lib/fhir_dstu2_models/examples/json/operationoutcome-example-break-the-glass.json +32 -0
- data/lib/fhir_dstu2_models/examples/json/operationoutcome-example-exception.json +17 -0
- data/lib/fhir_dstu2_models/examples/json/operationoutcome-example-searchfail.json +20 -0
- data/lib/fhir_dstu2_models/examples/json/operationoutcome-example-validationfail.json +20 -0
- data/lib/fhir_dstu2_models/examples/json/operationoutcome-example.json +21 -0
- data/lib/fhir_dstu2_models/examples/json/operationoutcome-questionnaire.json +349 -0
- data/lib/fhir_dstu2_models/examples/json/order-example-f201-physiotherapy.json +42 -0
- data/lib/fhir_dstu2_models/examples/json/order-example.json +36 -0
- data/lib/fhir_dstu2_models/examples/json/order-questionnaire.json +877 -0
- data/lib/fhir_dstu2_models/examples/json/orderresponse-example.json +35 -0
- data/lib/fhir_dstu2_models/examples/json/orderresponse-questionnaire.json +458 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-f001-burgers.json +106 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-f002-burgers-card.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-f003-burgers-ENT.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-f201-aumc.json +123 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-f203-bumc.json +78 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-gastro.json +34 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-good-health-care.json +15 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-insurer.json +15 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-lab.json +30 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example.json +43 -0
- data/lib/fhir_dstu2_models/examples/json/organization-extensions-Organization-alias.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/organization-questionnaire.json +653 -0
- data/lib/fhir_dstu2_models/examples/json/parameters-example.json +18 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-a.json +72 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-animal.json +106 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-b.json +71 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-c.json +42 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-d.json +42 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-dicom.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-f001-pieter.json +136 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-f201-roel.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-ihe-pcd.json +33 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-proband.json +44 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-us-extensions.json +83 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-xcda.json +40 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-xds.json +50 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example.json +154 -0
- data/lib/fhir_dstu2_models/examples/json/patient-examples-general.json +736 -0
- data/lib/fhir_dstu2_models/examples/json/patient-extensions-Patient-age.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/patient-extensions-Patient-birthOrderBoolean.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/patient-extensions-Patient-city.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/patient-extensions-Patient-country.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/patient-extensions-Patient-mothersMaidenName.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/patient-extensions-Patient-postalCode.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/patient-extensions-Patient-state.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/patient-glossy-example.json +54 -0
- data/lib/fhir_dstu2_models/examples/json/patient-mpi-search.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/patient-questionnaire.json +1482 -0
- data/lib/fhir_dstu2_models/examples/json/paymentnotice-example.json +25 -0
- data/lib/fhir_dstu2_models/examples/json/paymentnotice-questionnaire.json +443 -0
- data/lib/fhir_dstu2_models/examples/json/paymentreconciliation-example.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/paymentreconciliation-questionnaire.json +939 -0
- data/lib/fhir_dstu2_models/examples/json/person-example-f002-ariadne.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/person-example.json +99 -0
- data/lib/fhir_dstu2_models/examples/json/person-grahame.json +88 -0
- data/lib/fhir_dstu2_models/examples/json/person-patient-portal.json +84 -0
- data/lib/fhir_dstu2_models/examples/json/person-provider-directory.json +74 -0
- data/lib/fhir_dstu2_models/examples/json/person-questionnaire.json +704 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f001-evdb.json +115 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f002-pv.json +115 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f003-mv.json +131 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f004-rb.json +132 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f005-al.json +147 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f006-rvdb.json +115 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f007-sh.json +115 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f201-ab.json +127 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f202-lm.json +125 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f203-jvg.json +115 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f204-ce.json +81 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-xcda-author.json +19 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-xcda1.json +44 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example.json +78 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-examples-general.json +3490 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-questionnaire.json +906 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-example-biopsy.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-example-f001-heart.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-example-f002-lung.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-example-f003-abscess.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-example-f004-tracheotomy.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-example-f201-tpf.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-example-implant.json +59 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-example.json +44 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-questionnaire.json +1520 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-status-map-v3.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/procedurerequest-example.json +23 -0
- data/lib/fhir_dstu2_models/examples/json/procedurerequest-questionnaire.json +1125 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example-poll-eob.json +19 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example-poll-exclusive.json +23 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example-poll-inclusive.json +22 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example-poll-payrec.json +26 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example-poll-specific.json +22 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example-reprocess.json +28 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example-reverse.json +23 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example-status.json +25 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example.json +19 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-questionnaire.json +657 -0
- data/lib/fhir_dstu2_models/examples/json/processresponse-example.json +29 -0
- data/lib/fhir_dstu2_models/examples/json/processresponse-questionnaire.json +595 -0
- data/lib/fhir_dstu2_models/examples/json/provenance-example-sig.json +78 -0
- data/lib/fhir_dstu2_models/examples/json/provenance-example.json +103 -0
- data/lib/fhir_dstu2_models/examples/json/provenance-questionnaire.json +976 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaire-example-bluebook.json +109 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaire-example-f201-lifelines.json +86 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaire-example-gcs.json +200 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaire-example.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaire-extensions-Questionnaire-category.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaire-extensions-Questionnaire-deReference.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaire-questionnaire.json +847 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaireresponse-example-bluebook.json +164 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaireresponse-example-f201-lifelines.json +123 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaireresponse-example-gcs.json +122 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaireresponse-example.json +153 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaireresponse-questionnaire.json +1345 -0
- data/lib/fhir_dstu2_models/examples/json/referralrequest-example.json +82 -0
- data/lib/fhir_dstu2_models/examples/json/referralrequest-questionnaire.json +800 -0
- data/lib/fhir_dstu2_models/examples/json/relatedperson-example-f001-sarah.json +53 -0
- data/lib/fhir_dstu2_models/examples/json/relatedperson-example-f002-ariadne.json +61 -0
- data/lib/fhir_dstu2_models/examples/json/relatedperson-example-peter.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/relatedperson-example.json +79 -0
- data/lib/fhir_dstu2_models/examples/json/relatedperson-questionnaire.json +500 -0
- data/lib/fhir_dstu2_models/examples/json/riskassessment-example-cardiac.json +45 -0
- data/lib/fhir_dstu2_models/examples/json/riskassessment-example-population.json +8 -0
- data/lib/fhir_dstu2_models/examples/json/riskassessment-example-prognosis.json +35 -0
- data/lib/fhir_dstu2_models/examples/json/riskassessment-example.json +177 -0
- data/lib/fhir_dstu2_models/examples/json/riskassessment-questionnaire.json +945 -0
- data/lib/fhir_dstu2_models/examples/json/schedule-example.json +34 -0
- data/lib/fhir_dstu2_models/examples/json/schedule-questionnaire.json +500 -0
- data/lib/fhir_dstu2_models/examples/json/searchparameter-example-extension.json +30 -0
- data/lib/fhir_dstu2_models/examples/json/searchparameter-example.json +40 -0
- data/lib/fhir_dstu2_models/examples/json/searchparameter-questionnaire.json +621 -0
- data/lib/fhir_dstu2_models/examples/json/shareablevalueset-questionnaire.json +2194 -0
- data/lib/fhir_dstu2_models/examples/json/slot-example-busy.json +30 -0
- data/lib/fhir_dstu2_models/examples/json/slot-example-tentative.json +23 -0
- data/lib/fhir_dstu2_models/examples/json/slot-example-unavailable.json +23 -0
- data/lib/fhir_dstu2_models/examples/json/slot-example.json +23 -0
- data/lib/fhir_dstu2_models/examples/json/slot-questionnaire.json +379 -0
- data/lib/fhir_dstu2_models/examples/json/specimen-example-isolate.json +121 -0
- data/lib/fhir_dstu2_models/examples/json/specimen-example-urine.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/specimen-example.json +136 -0
- data/lib/fhir_dstu2_models/examples/json/specimen-questionnaire.json +1339 -0
- data/lib/fhir_dstu2_models/examples/json/structuredefinition-example.json +522 -0
- data/lib/fhir_dstu2_models/examples/json/structuredefinition-questionnaire.json +1117 -0
- data/lib/fhir_dstu2_models/examples/json/subscription-example-error.json +36 -0
- data/lib/fhir_dstu2_models/examples/json/subscription-example.json +30 -0
- data/lib/fhir_dstu2_models/examples/json/subscription-questionnaire.json +499 -0
- data/lib/fhir_dstu2_models/examples/json/substance-example-amoxicillin-clavulanate.json +97 -0
- data/lib/fhir_dstu2_models/examples/json/substance-example-f201-dust.json +17 -0
- data/lib/fhir_dstu2_models/examples/json/substance-example-f202-staphylococcus.json +17 -0
- data/lib/fhir_dstu2_models/examples/json/substance-example-f203-potassium.json +34 -0
- data/lib/fhir_dstu2_models/examples/json/substance-example-silver-nitrate-product.json +50 -0
- data/lib/fhir_dstu2_models/examples/json/substance-example.json +31 -0
- data/lib/fhir_dstu2_models/examples/json/substance-questionnaire.json +594 -0
- data/lib/fhir_dstu2_models/examples/json/supplydelivery-example.json +8 -0
- data/lib/fhir_dstu2_models/examples/json/supplydelivery-questionnaire.json +610 -0
- data/lib/fhir_dstu2_models/examples/json/supplyrequest-example.json +8 -0
- data/lib/fhir_dstu2_models/examples/json/supplyrequest-questionnaire.json +837 -0
- data/lib/fhir_dstu2_models/examples/json/testscript-example-multiserver.json +340 -0
- data/lib/fhir_dstu2_models/examples/json/testscript-example.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/testscript-history.json +124 -0
- data/lib/fhir_dstu2_models/examples/json/testscript-readtest.json +165 -0
- data/lib/fhir_dstu2_models/examples/json/testscript-search.json +294 -0
- data/lib/fhir_dstu2_models/examples/json/testscript-update.json +118 -0
- data/lib/fhir_dstu2_models/examples/json/triglyceride-questionnaire.json +1993 -0
- data/lib/fhir_dstu2_models/examples/json/us-core-Patient-ethnicity.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/us-core-Patient-race.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-account-status.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-actionlist.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-activity-reason.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-additionalmaterials.json +82 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-address-type.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-address-use.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-adjudication-error.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-adjudication.json +72 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-adjustment-reason.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-administrative-gender.json +99 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-age-units.json +111 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-allergy-intolerance-category.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-allergy-intolerance-criticality.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-allergy-intolerance-status.json +94 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-allergy-intolerance-type.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-allergyintolerance-substance-code.json +67 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-animal-breeds.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-animal-genderstatus.json +83 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-animal-species.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-answer-format.json +130 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-appointmentstatus.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-approach-site-codes.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-assert-direction-codes.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-assert-operator-codes.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-assert-response-code-types.json +115 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-audit-event-action.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-audit-event-outcome.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-audit-event-sub-type.json +127 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-audit-event-type.json +114 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-audit-source-type.json +99 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-basic-resource-type.json +130 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-binding-strength.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-body-site.json +53 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-bodysite-laterality.json +63 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-bodysite-relative-location.json +99 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-bundle-type.json +100 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-c80-doc-classcodes.json +236 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-c80-facilitycodes.json +372 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-c80-practice-codes.json +524 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-care-plan-activity-category.json +94 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-care-plan-activity-status.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-care-plan-activity.json +62 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-care-plan-category.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-care-plan-relationship.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-care-plan-status.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-choice-list-orientation.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-claim-exception.json +71 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-claim-modifiers.json +101 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-claim-type-link.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-claim-use-link.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-classification-or-context.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-clinical-findings.json +53 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-clinical-impression-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-communication-request-status.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-communication-status.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-composition-attestation-mode.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-composition-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-concept-map-equivalence.json +104 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-category.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-cause.json +46 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-clinical.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-code.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-outcome.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-predecessor.json +46 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-severity.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-stage.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-state.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-ver-status.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-conditional-delete-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-conformance-expectation.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-conformance-resource-status.json +100 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-conformance-statement-kind.json +76 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-consistency-type.json +67 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-constraint-severity.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contact-point-system.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contact-point-use.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contactentity-type.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-content-type.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contract-action.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contract-actorrole.json +59 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contract-signer-type.json +136 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contract-subtype.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contract-term-subtype.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contract-term-type.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contract-type.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-cpt-all.json +22 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-data-absent-reason.json +120 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-data-types.json +285 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-dataelement-sdcobjectclass.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-dataelement-sdcobjectclassproperty.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-dataelement-stringency.json +89 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-days-of-week.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-defined-types.json +52 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-designation-use.json +66 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-detectedissue-category.json +62 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-detectedissue-mitigation-action.json +52 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-detectedissue-severity.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-device-action.json +68 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-device-use-request-priority.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-device-use-request-status.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-devicestatus.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-diagnostic-order-event.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-diagnostic-order-priority.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-diagnostic-order-status.json +120 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-diagnostic-report-status.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-diagnostic-requests.json +66 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-diagnostic-service-sections.json +50 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-dicm-402-roleid.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-dicm-405-mediatype.json +82 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-dicom-cid29.json +198 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-diet-type.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-digital-media-subtype.json +116 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-digital-media-type.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-doc-classcodes.json +180 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-doc-section-codes.json +219 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-doc-typecodes.json +53 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-document-mode.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-document-reference-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-document-relationship-type.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-admit-source.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-class.json +100 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-diet.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-discharge-disposition.json +86 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-location-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-participant-type.json +98 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-priority.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-reason.json +63 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-special-arrangements.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-special-courtesy.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-state.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-type.json +66 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-enteral-route.json +74 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-entformula-additive.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-entformula-type.json +193 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-episode-of-care-status.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-event-timing.json +177 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-example-expansion.json +177 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-example-inline.json +124 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-example-intensional.json +89 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-example-yesnodontknow.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-example.json +102 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-extension-context.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-extensions-ValueSet-author.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-extensions-ValueSet-effective.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-extensions-ValueSet-end.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-extensions-ValueSet-keyword.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-extensions-ValueSet-workflow.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-filter-operator.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-flag-category.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-flag-code.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-flag-priority.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-flag-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-fm-conditions.json +61 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-focal-subject.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-food-type.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-formatcodes.json +368 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-forms.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-fundsreserve.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-goal-acceptance-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-goal-category.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-goal-priority.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-goal-relationship-type.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-goal-start-event.json +64 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-goal-status-reason.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-goal-status.json +100 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-group-type.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-guide-dependency-type.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-guide-page-kind.json +97 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-guide-resource-purpose.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-history-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-http-verb.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-icd-10.json +76 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-identifier-type.json +126 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-identifier-use.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-identity-assuranceLevel.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-immunization-reason.json +54 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-immunization-recommendation-date-criterion.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-immunization-recommendation-status.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-immunization-route.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-immunization-site.json +55 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-instance-availability.json +88 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-intervention.json +71 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-investigation-sets.json +59 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-issue-severity.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-issue-type.json +208 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-kos-title.json +277 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-ldlcholesterol-codes.json +84 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-link-type.json +88 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-list-empty-reason.json +92 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-list-example-codes.json +95 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-list-item-flag.json +81 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-list-mode.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-list-order.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-list-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-location-mode.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-location-physical-type.json +110 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-location-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-manifestation-codes.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-manifestation-or-symptom.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-marital-status.json +104 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-measurement-principle.json +110 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-media-view.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-medication-admin-status.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-medication-codes.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-medication-dispense-status.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-medication-form-codes.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-medication-order-status.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-medication-package-form-codes.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-medication-statement-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-message-conformance-event-mode.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-message-events.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-message-reason-encounter.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-message-significance-category.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-message-transport.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-metric-calibration-state.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-metric-calibration-type.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-metric-category.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-metric-color.json +95 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-metric-operational-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-missing-tooth-reason.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-modified-foodtype.json +104 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-name-part-qualifier.json +161 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-name-use.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-namingsystem-identifier-type.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-namingsystem-type.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-narrative-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-network-type.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-nhin-purposeofuse.json +419 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-no-immunization-reason.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-note-type.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-nutrient-code.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-nutrition-order-status.json +95 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-object-lifecycle.json +130 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-object-role.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-object-type.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-observation-category.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-observation-codes.json +51 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-observation-interpretation.json +45 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-observation-methods.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-observation-relationshiptypes.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-observation-status.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-observation-valueabsentreason.json +50 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-operation-kind.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-operation-outcome.json +1464 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-operation-parameter-type.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-operation-parameter-use.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-oral-prosthodontic-material.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-order-status.json +102 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-organization-type.json +108 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-parent-relationship-codes.json +62 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-participant-role.json +92 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-participantrequired.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-participantstatus.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-participationstatus.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-patient-contact-relationship.json +101 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-patient-mpi-match.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-payeetype.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-payment-status.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-payment-type.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-performer-role.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-postal-address-use.json +131 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-practitioner-role.json +74 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-practitioner-specialty.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-probability-distribution-type.json +141 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-category.json +81 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-code.json +53 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-followup.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-not-performed-reason.json +123 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-outcome.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-progress-status-codes.json +78 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-reason.json +63 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-relationship-type.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-request-priority.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-request-status.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-process-outcome.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-process-priority.json +66 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-profile-code.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-property-representation.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-provenance-agent-role.json +147 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-provenance-agent-type.json +93 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-provenance-entity-role.json +77 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-quantity-comparator.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-question-max-occurs.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-questionnaire-answers-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-questionnaire-answers.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-questionnaire-category.json +68 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-questionnaire-question-control.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-questionnaire-questions.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-questionnaire-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-questionnaire.json +2194 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-reaction-event-certainty.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-reaction-event-severity.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-reason-medication-given-codes.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-reason-medication-not-given-codes.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-referencerange-meaning.json +151 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-referralstatus.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-relatedperson-relationshiptype.json +55 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-relationship.json +66 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-remittance-outcome.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-report-codes.json +46 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-resource-aggregation-mode.json +72 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-resource-slicing-rules.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-resource-types.json +535 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-resource-validation-mode.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-response-code.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-restful-conformance-mode.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-restful-interaction.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-restful-security-service.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-risk-probability.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-route-codes.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-ruleset.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-search-entry-mode.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-search-modifier-code.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-search-param-type.json +95 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-search-xpath-usage.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-security-labels.json +48 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-service-pharmacy.json +61 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-service-product.json +61 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-service-provision-conditions.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-service-referral-method.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-service-uscls.json +146 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-signature-type.json +136 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-slotstatus.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-special-values.json +97 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-specimen-collection-method.json +103 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-specimen-collection-priority.json +76 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-specimen-container-type.json +53 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-specimen-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-specimen-treatment-procedure.json +45 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-structure-definition-kind.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-subscription-channel-type.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-subscription-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-subscription-tag.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-substance-category.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-substance-code.json +63 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-supplement-type.json +229 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-supplydelivery-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-supplydelivery-type.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-supplyrequest-kind.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-supplyrequest-reason.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-supplyrequest-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-supplyrequest-when.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-surface.json +106 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-system-restful-interaction.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-teeth.json +211 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-template-status-code.json +131 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-testscript-operation-codes.json +170 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-texture-code.json +110 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-timing-abbreviation.json +134 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-tooth.json +254 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-transaction-mode.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-type-restful-interaction.json +78 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-udi.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-units-of-time.json +115 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-unknown-content-code.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-use-context.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-usps-state.json +293 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-vaccination-protocol-dose-status-reason.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-vaccination-protocol-dose-status.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-vaccination-protocol-dose-target.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-vaccine-code.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-versioning-policy.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-vision-base-codes.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-vision-eye-codes.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-vision-product.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-xds-relationship-type.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/visionprescription-example-1.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/visionprescription-example.json +47 -0
- data/lib/fhir_dstu2_models/examples/json/visionprescription-questionnaire.json +863 -0
- data/lib/fhir_dstu2_models/examples/json/xds-example.json +252 -0
- data/lib/fhir_dstu2_models/examples/json/xdsdocumentmanifest-questionnaire.json +896 -0
- data/lib/fhir_dstu2_models/examples/json/xdsdocumentreference-questionnaire.json +1251 -0
- data/lib/fhir_dstu2_models/examples/xml/account-example(example).xml +10 -0
- data/lib/fhir_dstu2_models/examples/xml/allergyintolerance-example(allergyintolerance-example).xml +97 -0
- data/lib/fhir_dstu2_models/examples/xml/allergyintolerance-example(example).xml +96 -0
- data/lib/fhir_dstu2_models/examples/xml/allergyintolerance-example-refuted(allergyintolerance-example-refuted).xml +53 -0
- data/lib/fhir_dstu2_models/examples/xml/allergyintolerance-fishallergy(fishallergy).xml +48 -0
- data/lib/fhir_dstu2_models/examples/xml/allergyintolerance-medication(medication).xml +39 -0
- data/lib/fhir_dstu2_models/examples/xml/appointment-example(example).xml +48 -0
- data/lib/fhir_dstu2_models/examples/xml/appointment-example-request(examplereq).xml +51 -0
- data/lib/fhir_dstu2_models/examples/xml/appointment-example2doctors(2docs).xml +50 -0
- data/lib/fhir_dstu2_models/examples/xml/appointmentresponse-example(example).xml +16 -0
- data/lib/fhir_dstu2_models/examples/xml/appointmentresponse-example-req(exampleresp).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/audit-event-example-login(example-login).xml +41 -0
- data/lib/fhir_dstu2_models/examples/xml/audit-event-example-logout(example-logout).xml +41 -0
- data/lib/fhir_dstu2_models/examples/xml/audit-event-example-media(example-media).xml +114 -0
- data/lib/fhir_dstu2_models/examples/xml/audit-event-example-pixQuery(example-pixQuery).xml +93 -0
- data/lib/fhir_dstu2_models/examples/xml/audit-event-example-search(example-search).xml +53 -0
- data/lib/fhir_dstu2_models/examples/xml/audit-event-example-vread(example-rest).xml +52 -0
- data/lib/fhir_dstu2_models/examples/xml/auditevent-example(example).xml +73 -0
- data/lib/fhir_dstu2_models/examples/xml/auditevent-example-disclosure(example-disclosure).xml +146 -0
- data/lib/fhir_dstu2_models/examples/xml/basic-adverseevent-example(basic-adverseevent-example).xml +46 -0
- data/lib/fhir_dstu2_models/examples/xml/basic-example(referral).xml +60 -0
- data/lib/fhir_dstu2_models/examples/xml/basic-example-narrative(basic-example-narrative).xml +237 -0
- data/lib/fhir_dstu2_models/examples/xml/basic-example2(classModel).xml +46 -0
- data/lib/fhir_dstu2_models/examples/xml/binary-f006(f006).xml +5 -0
- data/lib/fhir_dstu2_models/examples/xml/bodysite-example(example).xml +52 -0
- data/lib/fhir_dstu2_models/examples/xml/bundle-example(bundle-example).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/bundle-response(bundle-response).xml +136 -0
- data/lib/fhir_dstu2_models/examples/xml/bundle-transaction(bundle-transaction).xml +241 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example(example).xml +123 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-GPVisit(gpvisit).xml +138 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-f001-heart(f001).xml +69 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-f002-lung(f002).xml +69 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-f003-pharynx(f003).xml +69 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-f201-renal(f201).xml +102 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-f202-malignancy(f202).xml +123 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-f203-sepsis(f203).xml +72 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-integrated(integrate).xml +516 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-pregnancy(preg).xml +228 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example(100150).xml +85 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example-institutional(960150).xml +85 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example-oral-average(100151).xml +187 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example-oral-contained(100152).xml +139 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example-oral-orthoplan(100153).xml +291 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example-pharmacy(760150).xml +85 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example-professional(860150).xml +85 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example-vision(660150).xml +85 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example-vision-glasses(660151).xml +153 -0
- data/lib/fhir_dstu2_models/examples/xml/claimresponse-example(R3500).xml +113 -0
- data/lib/fhir_dstu2_models/examples/xml/clinicalimpression-example(example).xml +46 -0
- data/lib/fhir_dstu2_models/examples/xml/communication-example(communication-example).xml +51 -0
- data/lib/fhir_dstu2_models/examples/xml/communication-example(example).xml +41 -0
- data/lib/fhir_dstu2_models/examples/xml/communicationrequest-example(communicationrequest-example).xml +30 -0
- data/lib/fhir_dstu2_models/examples/xml/communicationrequest-example(example).xml +13 -0
- data/lib/fhir_dstu2_models/examples/xml/composition-example(example).xml +167 -0
- data/lib/fhir_dstu2_models/examples/xml/conceptmap-example(101).xml +146 -0
- data/lib/fhir_dstu2_models/examples/xml/cond-uslab-example1(cond-uslab-example1).xml +26 -0
- data/lib/fhir_dstu2_models/examples/xml/cond-uslab-example2(cond-uslab-example2).xml +24 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example(condition-example).xml +57 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example(example).xml +48 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-f001-heart(f001).xml +56 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-f002-lung(f002).xml +64 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-f003-abscess(f003).xml +55 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-f201-fever(f201).xml +63 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-f202-malignancy(f202).xml +56 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-f203-sepsis(f203).xml +56 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-f204-renal(f204).xml +60 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-f205-infection(f205).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-stroke(stroke).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example2(example2).xml +30 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-base2.xml +124 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-daf-query-requestor(conformance-daf-query-requestor).xml +2506 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-ehrs-rle(conformance-ehrs-rle).xml +312 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-example(example).xml +201 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-phr-example(phr).xml +120 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-sdc-de-curator(conformance-sdc-de-curator).xml +746 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-sdc-de-registry(conformance-sdc-de-registry).xml +1245 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-sdc-form-archiver(conformance-sdc-form-archiver).xml +749 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-sdc-form-designer(conformance-sdc-form-designer).xml +1064 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-sdc-form-filler(conformance-sdc-form-filler).xml +959 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-sdc-form-manager(conformance-sdc-form-manager).xml +1182 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-sdc-form-receiver(conformance-sdc-form-receiver).xml +519 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-terminology-server(conformance-terminology-server).xml +335 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-uslaborder-orderer(conformance-uslaborder-orderer).xml +179 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-uslaborder-receiver(conformance-uslaborder-receiver).xml +179 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-uslabreport-receiver(conformance-uslabreport-receiver).xml +179 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-uslabreport-sender(conformance-uslabreport-sender).xml +179 -0
- data/lib/fhir_dstu2_models/examples/xml/contract-example(C-123).xml +29 -0
- data/lib/fhir_dstu2_models/examples/xml/coverage-example(9876B1).xml +40 -0
- data/lib/fhir_dstu2_models/examples/xml/coverage-example-2(7546D).xml +38 -0
- data/lib/fhir_dstu2_models/examples/xml/dataelement-example(gender).xml +386 -0
- data/lib/fhir_dstu2_models/examples/xml/dataelement-labtestmaster-example(prothrombin).xml +56 -0
- data/lib/fhir_dstu2_models/examples/xml/dataelement-sdc-profile-example(dataelement-sdc-profile-example).xml +44 -0
- data/lib/fhir_dstu2_models/examples/xml/dataelement-sdc-profile-example-de(dataelement-sdc-profile-example-de).xml +256 -0
- data/lib/fhir_dstu2_models/examples/xml/detectedissue-example(ddi).xml +52 -0
- data/lib/fhir_dstu2_models/examples/xml/detectedissue-example-allergy(allergy).xml +10 -0
- data/lib/fhir_dstu2_models/examples/xml/detectedissue-example-dup(duplicate).xml +39 -0
- data/lib/fhir_dstu2_models/examples/xml/detectedissue-example-lab(lab).xml +10 -0
- data/lib/fhir_dstu2_models/examples/xml/device-example(example).xml +46 -0
- data/lib/fhir_dstu2_models/examples/xml/device-example-f001-feedingtube(f001).xml +18 -0
- data/lib/fhir_dstu2_models/examples/xml/device-example-ihe-pcd(ihe-pcd).xml +25 -0
- data/lib/fhir_dstu2_models/examples/xml/device-example-pacemaker(example-pacemaker).xml +24 -0
- data/lib/fhir_dstu2_models/examples/xml/device-example-software(software).xml +17 -0
- data/lib/fhir_dstu2_models/examples/xml/devicecomponent-example(example).xml +124 -0
- data/lib/fhir_dstu2_models/examples/xml/devicecomponent-example-prodspec(example-prodspec).xml +167 -0
- data/lib/fhir_dstu2_models/examples/xml/devicemetric-example(example).xml +22 -0
- data/lib/fhir_dstu2_models/examples/xml/deviceuserequest-example(deviceuserequest-example).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/deviceuserequest-example(example).xml +17 -0
- data/lib/fhir_dstu2_models/examples/xml/deviceusestatement-example(example).xml +16 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticorder-example(diagnosticorder-example).xml +56 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticorder-example(example).xml +88 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticorder-example-di(di).xml +40 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticorder-example-ft4(ft4).xml +61 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example(101).xml +790 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example(diagnosticreport-example).xml +690 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example-dxa(102).xml +405 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example-f001-bloodexam(f001).xml +100 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example-f201-brainct(f201).xml +45 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example-f202-bloodculture(f202).xml +66 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example-ghp(ghp).xml +2312 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example-lipids(lipids).xml +214 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example-ultrasound(ultrasound).xml +41 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-micro1(micro).xml +993 -0
- data/lib/fhir_dstu2_models/examples/xml/do-uslab-example1(do-uslab-example1).xml +90 -0
- data/lib/fhir_dstu2_models/examples/xml/document-example-dischargesummary(father).xml +503 -0
- data/lib/fhir_dstu2_models/examples/xml/documentmanifest-example(example).xml +71 -0
- data/lib/fhir_dstu2_models/examples/xml/documentreference-example(example).xml +142 -0
- data/lib/fhir_dstu2_models/examples/xml/eligibilityrequest-example(52345).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/eligibilityresponse-example(E2500).xml +33 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example(encounter-example).xml +44 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example(example).xml +12 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example-f001-heart(f001).xml +84 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example-f002-lung(f002).xml +84 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example-f003-abscess(f003).xml +86 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example-f201-20130404(f201).xml +40 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example-f202-20130128(f202).xml +55 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example-f203-20130311(f203).xml +72 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example-home(home).xml +45 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example-xcda(xcda).xml +25 -0
- data/lib/fhir_dstu2_models/examples/xml/enrollmentrequest-example(22345).xml +30 -0
- data/lib/fhir_dstu2_models/examples/xml/enrollmentresponse-example(ER2500).xml +32 -0
- data/lib/fhir_dstu2_models/examples/xml/episodeofcare-example(example).xml +86 -0
- data/lib/fhir_dstu2_models/examples/xml/explanationofbenefit-example(R3500).xml +33 -0
- data/lib/fhir_dstu2_models/examples/xml/familymemberhistory-example(familymemberhistory-example).xml +51 -0
- data/lib/fhir_dstu2_models/examples/xml/familymemberhistory-example(father).xml +41 -0
- data/lib/fhir_dstu2_models/examples/xml/familymemberhistory-example-mother(mother).xml +36 -0
- data/lib/fhir_dstu2_models/examples/xml/flag-example(example).xml +35 -0
- data/lib/fhir_dstu2_models/examples/xml/flag-example(flag-example).xml +40 -0
- data/lib/fhir_dstu2_models/examples/xml/flag-example-encounter(example-encounter).xml +32 -0
- data/lib/fhir_dstu2_models/examples/xml/goal-example(example).xml +46 -0
- data/lib/fhir_dstu2_models/examples/xml/goal-example(goal-example).xml +62 -0
- data/lib/fhir_dstu2_models/examples/xml/group-example(101).xml +36 -0
- data/lib/fhir_dstu2_models/examples/xml/group-example-member(102).xml +50 -0
- data/lib/fhir_dstu2_models/examples/xml/healthcareservice-example(example).xml +135 -0
- data/lib/fhir_dstu2_models/examples/xml/imagingobjectselection-example(example).xml +45 -0
- data/lib/fhir_dstu2_models/examples/xml/imagingstudy-example(example).xml +39 -0
- data/lib/fhir_dstu2_models/examples/xml/imagingstudy-example(imagingstudy-example).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/immunization-example(example).xml +104 -0
- data/lib/fhir_dstu2_models/examples/xml/immunization-example-refused(notGiven).xml +26 -0
- data/lib/fhir_dstu2_models/examples/xml/immunizationrecommendation-example(example).xml +76 -0
- data/lib/fhir_dstu2_models/examples/xml/implementationguide-example(example).xml +77 -0
- data/lib/fhir_dstu2_models/examples/xml/list-example(example).xml +74 -0
- data/lib/fhir_dstu2_models/examples/xml/list-example-allergies(current-allergies).xml +44 -0
- data/lib/fhir_dstu2_models/examples/xml/list-example-empty(example-empty).xml +32 -0
- data/lib/fhir_dstu2_models/examples/xml/list-example-familyhistory-f201-roel(f201).xml +91 -0
- data/lib/fhir_dstu2_models/examples/xml/list-example-familyhistory-genetics-profile(genetic).xml +299 -0
- data/lib/fhir_dstu2_models/examples/xml/list-example-medlist(med-list).xml +63 -0
- data/lib/fhir_dstu2_models/examples/xml/location-example(1).xml +61 -0
- data/lib/fhir_dstu2_models/examples/xml/location-example-ambulance(amb).xml +33 -0
- data/lib/fhir_dstu2_models/examples/xml/location-example-hl7hq(hl7).xml +59 -0
- data/lib/fhir_dstu2_models/examples/xml/location-example-patients-home(ph).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/location-example-room(2).xml +38 -0
- data/lib/fhir_dstu2_models/examples/xml/location-example-ukpharmacy(ukp).xml +25 -0
- data/lib/fhir_dstu2_models/examples/xml/media-example(example).xml +37 -0
- data/lib/fhir_dstu2_models/examples/xml/media-example-dicom(1.2.840.11361907579238403408700.3.0.14.19970327150033).xml +88 -0
- data/lib/fhir_dstu2_models/examples/xml/media-example-sound(sound).xml +25 -0
- data/lib/fhir_dstu2_models/examples/xml/medication-example-f001-combivent(f001).xml +43 -0
- data/lib/fhir_dstu2_models/examples/xml/medication-example-f002-crestor(f002).xml +34 -0
- data/lib/fhir_dstu2_models/examples/xml/medication-example-f003-tolbutamide(f003).xml +34 -0
- data/lib/fhir_dstu2_models/examples/xml/medication-example-f004-metoprolol(f004).xml +34 -0
- data/lib/fhir_dstu2_models/examples/xml/medication-example-f005-enalapril(f005).xml +34 -0
- data/lib/fhir_dstu2_models/examples/xml/medication-example-f201-salmeterol(f201).xml +55 -0
- data/lib/fhir_dstu2_models/examples/xml/medication-example-f202-flucloxacilline(f202).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/medication-example-f203-paracetamol(f203).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationadministrationexample1(medadminexample01).xml +34 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationadministrationexample2(medadminexample02).xml +51 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationadministrationexample3(medadminexample03).xml +51 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationdispense-example(medicationdispense-example).xml +117 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationdispenseexample1(meddisp001).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationdispenseexample2(meddisp002).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationdispenseexample3(meddisp003).xml +108 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationdispenseexample4(meddisp004).xml +154 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationdispenseexample6(meddisp006).xml +64 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationdispenseexample8(meddisp008).xml +54 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample1(medexample001).xml +14 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample11(medexample011).xml +52 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample12(medexample012).xml +22 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample13(medexample013).xml +52 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample14(medexample014).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample15(medexample015).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample16(medexample016).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample17(medexample017).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample2(medexample002).xml +33 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample3(medexample003).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample4(medexample004).xml +71 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample5(medexample005).xml +31 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample6(medexample006).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample7(medexample007).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample8(medexample008).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example(medicationorder-example).xml +99 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example-f001-combivent(f001).xml +90 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example-f002-crestor(f002).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example-f003-tolbutamide(f003).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example-f004-metoprolol(f004).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example-f005-enalapril(f005).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example-f201-salmeterol(f201).xml +83 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example-f202-flucloxacilline(f202).xml +65 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example-f203-paracetamol(f203).xml +51 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample1(medrx001).xml +108 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample2(medrx002).xml +40 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample3(medrx003).xml +151 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample4(medrx004).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample5(medrx005).xml +111 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample6(medrx006).xml +59 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample7(medrx007).xml +44 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample8(medrx008).xml +51 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample9(medrx009).xml +47 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationstatement-example(medicationstatement-example).xml +34 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationstatementexample1(example001).xml +64 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationstatementexample2(example002).xml +30 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationstatementexample4(example004).xml +64 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationstatementexample5(example005).xml +64 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationstatementexample6(example006).xml +47 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationstatementexample7(example007).xml +22 -0
- data/lib/fhir_dstu2_models/examples/xml/message-request-link(10bb101f-a121-4264-a920-67be9cb82c74).xml +142 -0
- data/lib/fhir_dstu2_models/examples/xml/message-response-link(3a0707d3-549e-4467-b8b8-5a2ab3800efe).xml +182 -0
- data/lib/fhir_dstu2_models/examples/xml/messageheader-example(1cbdfb97-5859-48a4-8301-d54eab818d68).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/namingsystem-example(example).xml +40 -0
- data/lib/fhir_dstu2_models/examples/xml/namingsystem-example-id(example-id).xml +57 -0
- data/lib/fhir_dstu2_models/examples/xml/namingsystem-example-replaced(example-replaced).xml +27 -0
- data/lib/fhir_dstu2_models/examples/xml/namingsystem-registry(registry).xml +1768 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-cardiacdiet(cardiacdiet).xml +141 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-diabeticdiet(diabeticdiet).xml +116 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-diabeticsupplement(diabeticsupplement).xml +107 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-energysupplement(energysupplement).xml +98 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-enteralbolus(enteralbolus).xml +130 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-enteralcontinuous(enteralcontinuous).xml +126 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-fiberrestricteddiet(fiberrestricteddiet).xml +134 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-infantenteral(infantenteral).xml +108 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-proteinsupplement(proteinsupplement).xml +77 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-pureeddiet(pureeddiet).xml +117 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-pureeddiet-simple(pureeddiet-simple).xml +105 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-renaldiet(renaldiet).xml +147 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-texture-modified(texturemodified).xml +63 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-genetics-example1-somatic(genetics-example1-somatic).xml +145 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-genetics-example2-germline(genetics-example2-germline).xml +105 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-genetics-example3-mutationlist(genetics-example3-mutationlist).xml +67 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-genetics-example3-mutationlist-1(genetics-example3-mutationlist-1).xml +53 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-genetics-example3-mutationlist-2(genetics-example3-mutationlist-2).xml +59 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-genetics-example3-mutationlist-3(genetics-example3-mutationlist-3).xml +57 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-genetics-example3-mutationlist-4(genetics-example3-mutationlist-4).xml +57 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-uslab-example1(obs-uslab-example1).xml +102 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-uslab-example2(obs-uslab-example2).xml +93 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-uslab-example3(obs-uslab-example3).xml +81 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-uslab-example4(obs-uslab-example4).xml +99 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-uslab-example5(obs-uslab-example5).xml +102 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-uslab-example6(obs-uslab-example6).xml +86 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-uslab-example7(obs-uslab-example7).xml +93 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-uslab-example8(obs-uslab-example8).xml +112 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example(example).xml +60 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example(observation-example).xml +64 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-bloodpressure(blood-pressure).xml +98 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-bloodpressure-cancel(blood-pressure-cancel).xml +117 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f001-glucose(f001).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f002-excess(f002).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f003-co2(f003).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f004-erythrocyte(f004).xml +60 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f005-hemoglobin(f005).xml +57 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f202-temperature(f202).xml +71 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f203-bicarbonate(f203).xml +72 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f204-creatinine(f204).xml +64 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f205-egfr(f205).xml +110 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f206-staphylococcus(f206).xml +49 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-glasgow(glasgow).xml +235 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-glasgow-qa(gcs-qa).xml +81 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-sample-data(ekg).xml +108 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-satO2(satO2).xml +50 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-unsat(unsat).xml +53 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-composition-document.xml +87 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-conceptmap-closure.xml +146 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-conceptmap-translate.xml +437 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-encounter-everything.xml +87 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-list-find.xml +110 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-messageheader-process-message.xml +151 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-patient-everything.xml +149 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-questionnaire-populate.xml +246 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-resource-meta-add.xml +106 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-resource-meta-delete.xml +106 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-resource-meta.xml +105 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-resource-validate.xml +186 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-structuredefinition-questionnaire.xml +188 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-valueset-expand.xml +258 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-valueset-lookup.xml +338 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-valueset-validate-code.xml +356 -0
- data/lib/fhir_dstu2_models/examples/xml/operationdefinition-example(example).xml +43 -0
- data/lib/fhir_dstu2_models/examples/xml/operationoutcome-example(101).xml +18 -0
- data/lib/fhir_dstu2_models/examples/xml/operationoutcome-example-allok(allok).xml +16 -0
- data/lib/fhir_dstu2_models/examples/xml/operationoutcome-example-break-the-glass(break-the-glass).xml +29 -0
- data/lib/fhir_dstu2_models/examples/xml/operationoutcome-example-exception(exception).xml +16 -0
- data/lib/fhir_dstu2_models/examples/xml/operationoutcome-example-searchfail(searchfail).xml +17 -0
- data/lib/fhir_dstu2_models/examples/xml/operationoutcome-example-validationfail(validationfail).xml +17 -0
- data/lib/fhir_dstu2_models/examples/xml/order-example(example).xml +31 -0
- data/lib/fhir_dstu2_models/examples/xml/order-example-f201-physiotherapy(f201).xml +31 -0
- data/lib/fhir_dstu2_models/examples/xml/orderresponse-example(example).xml +52 -0
- data/lib/fhir_dstu2_models/examples/xml/org-uslab-example1(org-uslab-example1).xml +31 -0
- data/lib/fhir_dstu2_models/examples/xml/org-uslab-example2(org-uslab-example2).xml +36 -0
- data/lib/fhir_dstu2_models/examples/xml/org-uslab-example3(org-uslab-example3).xml +32 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example(hl7).xml +47 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example(organization-example).xml +68 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-f001-burgers(f001).xml +71 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-f002-burgers-card(f002).xml +48 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-f003-burgers-ENT(f003).xml +48 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-f201-aumc(f201).xml +88 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-f203-bumc(f203).xml +54 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-gastro(1).xml +33 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-good-health-care(2.16.840.1.113883.19.5).xml +16 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-insurer(2).xml +16 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-lab(1832473e-2fe0-452d-abe9-3cdb9879522f).xml +29 -0
- data/lib/fhir_dstu2_models/examples/xml/parameters-example(example).xml +16 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example(example).xml +140 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example(patient-example).xml +112 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-a(pat1).xml +55 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-animal(animal).xml +119 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-b(pat2).xml +54 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-c(pat3).xml +35 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-d(pat4).xml +35 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-dicom(dicom).xml +45 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-f001-pieter(f001).xml +85 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-f201-roel(f201).xml +116 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-ihe-pcd(ihe-pcd).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-proband(proband).xml +39 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-us-extensions(us01).xml +98 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-xcda(xcda).xml +33 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-xds(xds).xml +39 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-examples-general(b248b1b2-1686-4b94-9936-37d7a5f94b51).xml +559 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-glossy-example(glossy).xml +39 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-mpi-search(patient-mpi).xml +41 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-uslab-example1(patient-uslab-example1).xml +44 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-uslab-example2(patient-uslab-example2).xml +103 -0
- data/lib/fhir_dstu2_models/examples/xml/paymentnotice-example(77654).xml +29 -0
- data/lib/fhir_dstu2_models/examples/xml/paymentreconciliation-example(ER2500).xml +83 -0
- data/lib/fhir_dstu2_models/examples/xml/person-example(example).xml +96 -0
- data/lib/fhir_dstu2_models/examples/xml/person-example-f002-ariadne(f002).xml +39 -0
- data/lib/fhir_dstu2_models/examples/xml/person-grahame(grahame).xml +88 -0
- data/lib/fhir_dstu2_models/examples/xml/person-patient-portal(pp).xml +78 -0
- data/lib/fhir_dstu2_models/examples/xml/person-provider-directory(pd).xml +70 -0
- data/lib/fhir_dstu2_models/examples/xml/pract-uslab-example1(pract-uslab-example1).xml +18 -0
- data/lib/fhir_dstu2_models/examples/xml/pract-uslab-example2(pract-uslab-example2).xml +50 -0
- data/lib/fhir_dstu2_models/examples/xml/pract-uslab-example3(pract-uslab-example3).xml +18 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example(example).xml +62 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example(practitioner-example).xml +47 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f001-evdb(f001).xml +72 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f002-pv(f002).xml +72 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f003-mv(f003).xml +80 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f004-rb(f004).xml +81 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f005-al(f005).xml +87 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f006-rvdb(f006).xml +72 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f007-sh(f007).xml +72 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f201-ab(f201).xml +73 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f202-lm(f202).xml +63 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f203-jvg(f203).xml +59 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f204-ce(f204).xml +54 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-xcda-author(xcda-author).xml +14 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-xcda1(xcda1).xml +29 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-examples-general(3ad0687e-f477-468c-afd5-fcc2bf897809).xml +2674 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example(example).xml +35 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example(procedure-example).xml +50 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example-biopsy(biopsy).xml +43 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example-f001-heart(f001).xml +56 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example-f002-lung(f002).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example-f003-abscess(f003).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example-f004-tracheotomy(f004).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example-f201-tpf(f201).xml +55 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example-implant(example-implant).xml +41 -0
- data/lib/fhir_dstu2_models/examples/xml/procedurerequest-example(example).xml +21 -0
- data/lib/fhir_dstu2_models/examples/xml/procedurerequest-example(procedurerequest-example).xml +44 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example(1110).xml +22 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example-poll-eob(1115).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example-poll-exclusive(1113).xml +25 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example-poll-inclusive(1112).xml +24 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example-poll-payrec(1114).xml +29 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example-poll-specific(1111).xml +26 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example-reprocess(44654).xml +32 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example-reverse(87654).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example-status(87655).xml +30 -0
- data/lib/fhir_dstu2_models/examples/xml/processresponse-example(SR2500).xml +35 -0
- data/lib/fhir_dstu2_models/examples/xml/provenance-example(example).xml +86 -0
- data/lib/fhir_dstu2_models/examples/xml/provenance-example-sig(signature).xml +61 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaire-example(3141).xml +158 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaire-example-bluebook(bb).xml +95 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaire-example-f201-lifelines(f201).xml +72 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaire-example-gcs(gcs).xml +164 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaire-sdc-profile-example-cap(questionnaire-sdc-profile-example-cap).xml +537 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaire-sdc-profile-example-loinc(questionnaire-sdc-profile-example-loinc).xml +1416 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaireresponse-example(3141).xml +147 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaireresponse-example-bluebook(bb).xml +121 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaireresponse-example-f201-lifelines(f201).xml +82 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaireresponse-example-gcs(gcs).xml +70 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaireresponse-sdc-example-ussg-fht-answers.xml +1779 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaireresponse-sdc-profile-example(questionnaireresponse-sdc-profile-example).xml +116 -0
- data/lib/fhir_dstu2_models/examples/xml/referralrequest-example(example).xml +62 -0
- data/lib/fhir_dstu2_models/examples/xml/referralrequest-example(referralrequest-example).xml +65 -0
- data/lib/fhir_dstu2_models/examples/xml/relatedperson-example(benedicte).xml +77 -0
- data/lib/fhir_dstu2_models/examples/xml/relatedperson-example-f001-sarah(f001).xml +46 -0
- data/lib/fhir_dstu2_models/examples/xml/relatedperson-example-f002-ariadne(f002).xml +46 -0
- data/lib/fhir_dstu2_models/examples/xml/relatedperson-example-peter(peter).xml +66 -0
- data/lib/fhir_dstu2_models/examples/xml/riskassessment-example(genetic).xml +214 -0
- data/lib/fhir_dstu2_models/examples/xml/riskassessment-example-cardiac(cardiac).xml +107 -0
- data/lib/fhir_dstu2_models/examples/xml/riskassessment-example-population(population).xml +9 -0
- data/lib/fhir_dstu2_models/examples/xml/riskassessment-example-prognosis(prognosis).xml +30 -0
- data/lib/fhir_dstu2_models/examples/xml/schedule-example(example).xml +29 -0
- data/lib/fhir_dstu2_models/examples/xml/searchparameter-example(example).xml +25 -0
- data/lib/fhir_dstu2_models/examples/xml/searchparameter-example-extension(example-extension).xml +19 -0
- data/lib/fhir_dstu2_models/examples/xml/slot-example(example).xml +22 -0
- data/lib/fhir_dstu2_models/examples/xml/slot-example-busy(1).xml +27 -0
- data/lib/fhir_dstu2_models/examples/xml/slot-example-tentative(2).xml +22 -0
- data/lib/fhir_dstu2_models/examples/xml/slot-example-unavailable(3).xml +23 -0
- data/lib/fhir_dstu2_models/examples/xml/spec-uslab-example1(spec-uslab-example1).xml +78 -0
- data/lib/fhir_dstu2_models/examples/xml/spec-uslab-example2(spec-uslab-example2).xml +62 -0
- data/lib/fhir_dstu2_models/examples/xml/specimen-example(101).xml +107 -0
- data/lib/fhir_dstu2_models/examples/xml/specimen-example(specimen-example).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/specimen-example-isolate(isolate).xml +91 -0
- data/lib/fhir_dstu2_models/examples/xml/specimen-example-urine(vma-urine).xml +67 -0
- data/lib/fhir_dstu2_models/examples/xml/structuredefinition-example(example).xml +417 -0
- data/lib/fhir_dstu2_models/examples/xml/subscription-example(example).xml +26 -0
- data/lib/fhir_dstu2_models/examples/xml/subscription-example-error(example-error).xml +29 -0
- data/lib/fhir_dstu2_models/examples/xml/substance-example(example).xml +23 -0
- data/lib/fhir_dstu2_models/examples/xml/substance-example-amoxicillin-clavulanate(f205).xml +80 -0
- data/lib/fhir_dstu2_models/examples/xml/substance-example-f201-dust(f201).xml +10 -0
- data/lib/fhir_dstu2_models/examples/xml/substance-example-f202-staphylococcus(f202).xml +10 -0
- data/lib/fhir_dstu2_models/examples/xml/substance-example-f203-potassium(f203).xml +19 -0
- data/lib/fhir_dstu2_models/examples/xml/substance-example-silver-nitrate-product(f204).xml +35 -0
- data/lib/fhir_dstu2_models/examples/xml/supplydelivery-example(example).xml +10 -0
- data/lib/fhir_dstu2_models/examples/xml/supplyrequest-example(example).xml +10 -0
- data/lib/fhir_dstu2_models/examples/xml/testscript-example(example).xml +153 -0
- data/lib/fhir_dstu2_models/examples/xml/testscript-example-multiserver(multiserver).xml +276 -0
- data/lib/fhir_dstu2_models/examples/xml/testscript-history(history).xml +99 -0
- data/lib/fhir_dstu2_models/examples/xml/testscript-readtest(ReadTestScript).xml +133 -0
- data/lib/fhir_dstu2_models/examples/xml/testscript-search(search).xml +246 -0
- data/lib/fhir_dstu2_models/examples/xml/testscript-update(update).xml +95 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-cpt-all(cpt-all).xml +31 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-example(example-extensional).xml +111 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-example-expansion(example-expansion).xml +199 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-example-inline(example-inline).xml +197 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-example-intensional(example-intensional).xml +82 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-example-yesnodontknow(yesnodontknow).xml +108 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-nhin-purposeofuse(nhin-purposeofuse).xml +664 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-restful-interaction(restful-interaction).xml +248 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-sdc-profile-example(valueset-sdc-profile-example).xml +149 -0
- data/lib/fhir_dstu2_models/examples/xml/visionprescription-example(33123).xml +53 -0
- data/lib/fhir_dstu2_models/examples/xml/visionprescription-example-1(33124).xml +68 -0
- data/lib/fhir_dstu2_models/examples/xml/xds-example(xds).xml +215 -0
- data/lib/fhir_dstu2_models/fhir.rb +84 -0
- data/lib/fhir_dstu2_models/fhir/metadata.rb +28 -0
- data/lib/fhir_dstu2_models/fhir/resources/Account.rb +56 -0
- data/lib/fhir_dstu2_models/fhir/resources/AllergyIntolerance.rb +94 -0
- data/lib/fhir_dstu2_models/fhir/resources/Appointment.rb +82 -0
- data/lib/fhir_dstu2_models/fhir/resources/AppointmentResponse.rb +50 -0
- data/lib/fhir_dstu2_models/fhir/resources/AuditEvent.rb +208 -0
- data/lib/fhir_dstu2_models/fhir/resources/Basic.rb +44 -0
- data/lib/fhir_dstu2_models/fhir/resources/Binary.rb +30 -0
- data/lib/fhir_dstu2_models/fhir/resources/BodySite.rb +46 -0
- data/lib/fhir_dstu2_models/fhir/resources/Bundle.rb +156 -0
- data/lib/fhir_dstu2_models/fhir/resources/CarePlan.rb +186 -0
- data/lib/fhir_dstu2_models/fhir/resources/Claim.rb +332 -0
- data/lib/fhir_dstu2_models/fhir/resources/ClaimResponse.rb +398 -0
- data/lib/fhir_dstu2_models/fhir/resources/ClinicalImpression.rb +133 -0
- data/lib/fhir_dstu2_models/fhir/resources/Communication.rb +85 -0
- data/lib/fhir_dstu2_models/fhir/resources/CommunicationRequest.rb +92 -0
- data/lib/fhir_dstu2_models/fhir/resources/Composition.rb +138 -0
- data/lib/fhir_dstu2_models/fhir/resources/ConceptMap.rb +166 -0
- data/lib/fhir_dstu2_models/fhir/resources/Condition.rb +128 -0
- data/lib/fhir_dstu2_models/fhir/resources/Conformance.rb +442 -0
- data/lib/fhir_dstu2_models/fhir/resources/Contract.rb +320 -0
- data/lib/fhir_dstu2_models/fhir/resources/Coverage.rb +62 -0
- data/lib/fhir_dstu2_models/fhir/resources/DataElement.rb +106 -0
- data/lib/fhir_dstu2_models/fhir/resources/DetectedIssue.rb +76 -0
- data/lib/fhir_dstu2_models/fhir/resources/Device.rb +66 -0
- data/lib/fhir_dstu2_models/fhir/resources/DeviceComponent.rb +76 -0
- data/lib/fhir_dstu2_models/fhir/resources/DeviceMetric.rb +76 -0
- data/lib/fhir_dstu2_models/fhir/resources/DeviceUseRequest.rb +70 -0
- data/lib/fhir_dstu2_models/fhir/resources/DeviceUseStatement.rb +62 -0
- data/lib/fhir_dstu2_models/fhir/resources/DiagnosticOrder.rb +108 -0
- data/lib/fhir_dstu2_models/fhir/resources/DiagnosticReport.rb +93 -0
- data/lib/fhir_dstu2_models/fhir/resources/DocumentManifest.rb +101 -0
- data/lib/fhir_dstu2_models/fhir/resources/DocumentReference.rb +158 -0
- data/lib/fhir_dstu2_models/fhir/resources/DomainResource.rb +34 -0
- data/lib/fhir_dstu2_models/fhir/resources/EligibilityRequest.rb +48 -0
- data/lib/fhir_dstu2_models/fhir/resources/EligibilityResponse.rb +54 -0
- data/lib/fhir_dstu2_models/fhir/resources/Encounter.rb +174 -0
- data/lib/fhir_dstu2_models/fhir/resources/EnrollmentRequest.rb +54 -0
- data/lib/fhir_dstu2_models/fhir/resources/EnrollmentResponse.rb +54 -0
- data/lib/fhir_dstu2_models/fhir/resources/EpisodeOfCare.rb +98 -0
- data/lib/fhir_dstu2_models/fhir/resources/ExplanationOfBenefit.rb +54 -0
- data/lib/fhir_dstu2_models/fhir/resources/FamilyMemberHistory.rb +112 -0
- data/lib/fhir_dstu2_models/fhir/resources/Flag.rb +50 -0
- data/lib/fhir_dstu2_models/fhir/resources/Goal.rb +93 -0
- data/lib/fhir_dstu2_models/fhir/resources/Group.rb +105 -0
- data/lib/fhir_dstu2_models/fhir/resources/HealthcareService.rb +142 -0
- data/lib/fhir_dstu2_models/fhir/resources/ImagingObjectSelection.rb +138 -0
- data/lib/fhir_dstu2_models/fhir/resources/ImagingStudy.rb +132 -0
- data/lib/fhir_dstu2_models/fhir/resources/Immunization.rb +150 -0
- data/lib/fhir_dstu2_models/fhir/resources/ImmunizationRecommendation.rb +116 -0
- data/lib/fhir_dstu2_models/fhir/resources/ImplementationGuide.rb +213 -0
- data/lib/fhir_dstu2_models/fhir/resources/List.rb +84 -0
- data/lib/fhir_dstu2_models/fhir/resources/Location.rb +80 -0
- data/lib/fhir_dstu2_models/fhir/resources/Media.rb +58 -0
- data/lib/fhir_dstu2_models/fhir/resources/Medication.rb +146 -0
- data/lib/fhir_dstu2_models/fhir/resources/MedicationAdministration.rb +106 -0
- data/lib/fhir_dstu2_models/fhir/resources/MedicationDispense.rb +143 -0
- data/lib/fhir_dstu2_models/fhir/resources/MedicationOrder.rb +173 -0
- data/lib/fhir_dstu2_models/fhir/resources/MedicationStatement.rb +119 -0
- data/lib/fhir_dstu2_models/fhir/resources/MessageHeader.rb +126 -0
- data/lib/fhir_dstu2_models/fhir/resources/NamingSystem.rb +104 -0
- data/lib/fhir_dstu2_models/fhir/resources/NutritionOrder.rb +213 -0
- data/lib/fhir_dstu2_models/fhir/resources/Observation.rb +189 -0
- data/lib/fhir_dstu2_models/fhir/resources/OperationDefinition.rb +151 -0
- data/lib/fhir_dstu2_models/fhir/resources/OperationOutcome.rb +62 -0
- data/lib/fhir_dstu2_models/fhir/resources/Order.rb +75 -0
- data/lib/fhir_dstu2_models/fhir/resources/OrderResponse.rb +48 -0
- data/lib/fhir_dstu2_models/fhir/resources/Organization.rb +74 -0
- data/lib/fhir_dstu2_models/fhir/resources/Parameters.rb +119 -0
- data/lib/fhir_dstu2_models/fhir/resources/Patient.rb +168 -0
- data/lib/fhir_dstu2_models/fhir/resources/PaymentNotice.rb +54 -0
- data/lib/fhir_dstu2_models/fhir/resources/PaymentReconciliation.rb +114 -0
- data/lib/fhir_dstu2_models/fhir/resources/Person.rb +74 -0
- data/lib/fhir_dstu2_models/fhir/resources/Practitioner.rb +108 -0
- data/lib/fhir_dstu2_models/fhir/resources/Procedure.rb +124 -0
- data/lib/fhir_dstu2_models/fhir/resources/ProcedureRequest.rb +75 -0
- data/lib/fhir_dstu2_models/fhir/resources/ProcessRequest.rb +84 -0
- data/lib/fhir_dstu2_models/fhir/resources/ProcessResponse.rb +80 -0
- data/lib/fhir_dstu2_models/fhir/resources/Provenance.rb +124 -0
- data/lib/fhir_dstu2_models/fhir/resources/Questionnaire.rb +116 -0
- data/lib/fhir_dstu2_models/fhir/resources/QuestionnaireResponse.rb +149 -0
- data/lib/fhir_dstu2_models/fhir/resources/ReferralRequest.rb +66 -0
- data/lib/fhir_dstu2_models/fhir/resources/RelatedPerson.rb +54 -0
- data/lib/fhir_dstu2_models/fhir/resources/Resource.rb +26 -0
- data/lib/fhir_dstu2_models/fhir/resources/RiskAssessment.rb +90 -0
- data/lib/fhir_dstu2_models/fhir/resources/Schedule.rb +44 -0
- data/lib/fhir_dstu2_models/fhir/resources/SearchParameter.rb +84 -0
- data/lib/fhir_dstu2_models/fhir/resources/Slot.rb +50 -0
- data/lib/fhir_dstu2_models/fhir/resources/Specimen.rb +142 -0
- data/lib/fhir_dstu2_models/fhir/resources/StructureDefinition.rb +164 -0
- data/lib/fhir_dstu2_models/fhir/resources/Subscription.rb +74 -0
- data/lib/fhir_dstu2_models/fhir/resources/Substance.rb +88 -0
- data/lib/fhir_dstu2_models/fhir/resources/SupplyDelivery.rb +56 -0
- data/lib/fhir_dstu2_models/fhir/resources/SupplyRequest.rb +79 -0
- data/lib/fhir_dstu2_models/fhir/resources/TestScript.rb +446 -0
- data/lib/fhir_dstu2_models/fhir/resources/ValueSet.rb +345 -0
- data/lib/fhir_dstu2_models/fhir/resources/VisionPrescription.rb +99 -0
- data/lib/fhir_dstu2_models/fhir/types/Address.rb +38 -0
- data/lib/fhir_dstu2_models/fhir/types/Annotation.rb +29 -0
- data/lib/fhir_dstu2_models/fhir/types/Attachment.rb +34 -0
- data/lib/fhir_dstu2_models/fhir/types/BackboneElement.rb +20 -0
- data/lib/fhir_dstu2_models/fhir/types/CodeableConcept.rb +22 -0
- data/lib/fhir_dstu2_models/fhir/types/Coding.rb +28 -0
- data/lib/fhir_dstu2_models/fhir/types/ContactPoint.rb +28 -0
- data/lib/fhir_dstu2_models/fhir/types/Element.rb +18 -0
- data/lib/fhir_dstu2_models/fhir/types/ElementDefinition.rb +603 -0
- data/lib/fhir_dstu2_models/fhir/types/Extension.rb +89 -0
- data/lib/fhir_dstu2_models/fhir/types/HumanName.rb +32 -0
- data/lib/fhir_dstu2_models/fhir/types/Identifier.rb +30 -0
- data/lib/fhir_dstu2_models/fhir/types/Meta.rb +28 -0
- data/lib/fhir_dstu2_models/fhir/types/Narrative.rb +22 -0
- data/lib/fhir_dstu2_models/fhir/types/Period.rb +22 -0
- data/lib/fhir_dstu2_models/fhir/types/Quantity.rb +28 -0
- data/lib/fhir_dstu2_models/fhir/types/Range.rb +22 -0
- data/lib/fhir_dstu2_models/fhir/types/Ratio.rb +22 -0
- data/lib/fhir_dstu2_models/fhir/types/Reference.rb +22 -0
- data/lib/fhir_dstu2_models/fhir/types/SampledData.rb +32 -0
- data/lib/fhir_dstu2_models/fhir/types/Signature.rb +33 -0
- data/lib/fhir_dstu2_models/fhir/types/Timing.rb +67 -0
- data/lib/fhir_dstu2_models/fhir_ext/element_definition.rb +51 -0
- data/lib/fhir_dstu2_models/fhir_ext/structure_definition.rb +365 -0
- data/lib/fhir_dstu2_models/fhir_ext/structure_definition_compare.rb +377 -0
- data/lib/fhir_dstu2_models/fhir_ext/structure_definition_finding.rb +69 -0
- data/lib/fhir_dstu2_models/fluentpath/evaluate.rb +590 -0
- data/lib/fhir_dstu2_models/fluentpath/expression.rb +30 -0
- data/lib/fhir_dstu2_models/fluentpath/parse.rb +104 -0
- data/lib/fhir_dstu2_models/tasks/tasks.rake +141 -0
- data/lib/fhir_dstu2_models/version.rb +7 -0
- metadata +2149 -0
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
{
|
|
2
|
+
"resourceType": "DiagnosticReport",
|
|
3
|
+
"id": "102",
|
|
4
|
+
"text": {
|
|
5
|
+
"status": "generated",
|
|
6
|
+
"div": "<div>\n\t\t\t\n \n <h2>DXA BONE DENSITOMETRY</h2>\n\t\t\t\n \n <table>\n\t\t\t\t\n \n <tr>\n\t\t\t\t\t\n \n <td>NAME</td>\n\t\t\t\t\t\n \n <td>XXXXXXX</td>\n\t\t\t\t\n \n </tr>\n\t\t\t\t\n \n <tr>\n\t\t\t\t\t\n \n <td>DOB</td>\n\t\t\t\t\t\n \n <td>10/02/1974</td>\n\t\t\t\t\n \n </tr>\n\t\t\t\t\n \n <tr>\n\t\t\t\t\t\n \n <td>REFERRING DR</td>\n\t\t\t\t\t\n \n <td>Smith, Jane</td>\n\t\t\t\t\n \n </tr>\n\t\t\t\t\n \n <tr>\n\t\t\t\t\t\n \n <td>INDICATIONS</td>\n\t\t\t\t\t\n \n <td>Early menopause on estrogen levels. No period for 18 months</td>\n\t\t\t\t\n \n </tr>\n\t\t\t\t\n \n <tr>\n\t\t\t\t\t\n \n <td>PROCEDURE</td>\n\t\t\t\t\t\n \n <td>Dual energy x-ray absorptiometry (DEXA)</td>\n\t\t\t\t\n \n </tr>\n\t\t\t\n \n </table>\n\t\t\t\n \n <h3>Bone Mineral Density</h3>\n\t\t\t\n \n <table>\n\t\t\t\t\n \n <tr>\n\t\t\t\t\t\n \n <td>Scan Type</td>\n\t\t\t\t\t\n \n <td>Region</td>\n\t\t\t\t\t\n \n <td>Measured</td>\n\t\t\t\t\t\n \n <td>Age</td>\n\t\t\t\t\t\n \n <td>BMD</td>\n\t\t\t\t\t\n \n <td>T-Score</td>\n\t\t\t\t\t\n \n <td>Z-Score</td>\n\t\t\t\t\t\n \n <td>?BMD(g/cm2)</td>\n\t\t\t\t\t\n \n <td>?BMD(%)</td>\n\t\t\t\t\n \n </tr>\n\t\t\t\t\n \n <tr>\n\t\t\t\t\t\n \n <td>AP Spine</td>\n\t\t\t\t\t\n \n <td>L1-L4</td>\n\t\t\t\t\t\n \n <td>17/06/2008</td>\n\t\t\t\t\t\n \n <td>34.4</td>\n\t\t\t\t\t\n \n <td>1.148 g/cm²</td>\n\t\t\t\t\t\n \n <td>-0.4</td>\n\t\t\t\t\t\n \n <td>-0.5</td>\n\t\t\t\t\t\n \n <td>-</td>\n\t\t\t\t\t\n \n <td>-</td>\n\t\t\t\t\n \n </tr>\n\t\t\t\t\n \n <tr>\n\t\t\t\t\t\n \n <td>Left Femur</td>\n\t\t\t\t\t\n \n <td>Neck</td>\n\t\t\t\t\t\n \n <td>17/06/2008</td>\n\t\t\t\t\t\n \n <td>34.4</td>\n\t\t\t\t\t\n \n <td>0.891 g/cm²</td>\n\t\t\t\t\t\n \n <td>-1.0</td>\n\t\t\t\t\t\n \n <td>-0.9</td>\n\t\t\t\t\t\n \n <td>-</td>\n\t\t\t\t\t\n \n <td>-</td>\n\t\t\t\t\n \n </tr>\n\t\t\t\t\n \n <tr>\n\t\t\t\t\t\n \n <td>Left Femur</td>\n\t\t\t\t\t\n \n <td>Total</td>\n\t\t\t\t\t\n \n <td>17/06/2008</td>\n\t\t\t\t\t\n \n <td>34.4</td>\n\t\t\t\t\t\n \n <td>0.887 g/cm²</td>\n\t\t\t\t\t\n \n <td>-1.2</td>\n\t\t\t\t\t\n \n <td>-1.3</td>\n\t\t\t\t\t\n \n <td>-</td>\n\t\t\t\t\t\n \n <td>-</td>\n\t\t\t\t\n \n </tr>\n\t\t\t\t\n \n <tr>\n\t\t\t\t\t\n \n <td>Right Femur</td>\n\t\t\t\t\t\n \n <td>Neck</td>\n\t\t\t\t\t\n \n <td>17/06/2008</td>\n\t\t\t\t\t\n \n <td>34.4</td>\n\t\t\t\t\t\n \n <td>0.885 g/cm²</td>\n\t\t\t\t\t\n \n <td>-1.0</td>\n\t\t\t\t\t\n \n <td>-1.0</td>\n\t\t\t\t\t\n \n <td>-</td>\n\t\t\t\t\t\n \n <td>-</td>\n\t\t\t\t\n \n </tr>\n\t\t\t\t\n \n <tr>\n\t\t\t\t\t\n \n <td>Right Femur</td>\n\t\t\t\t\t\n \n <td>Total</td>\n\t\t\t\t\t\n \n <td>17/06/2008</td>\n\t\t\t\t\t\n \n <td>34.4</td>\n\t\t\t\t\t\n \n <td>0.867 g/cm²</td>\n\t\t\t\t\t\n \n <td>-1.4</td>\n\t\t\t\t\t\n \n <td>-1.4</td>\n\t\t\t\t\t\n \n <td>-</td>\n\t\t\t\t\t\n \n <td>-</td>\n\t\t\t\t\n \n </tr>\n\t\t\t\n \n </table>\n\t\t\t\n \n <p>Assessment:</p>\n\t\t\t\n \n <ul>\n\t\t\t\t\n \n <li>The Spine L1-L4 BMD is normal.</li>\n\t\t\t\t\n \n <li>The Left Femur Neck BMD is in the osteopenic range. Relative fracture risk is about 2.</li>\n\t\t\t\t\n \n <li>The Left Femur Total BMD is in the osteopenic range. Relative fracture risk is about 2.</li>\n\t\t\t\t\n \n <li>The Right Femur Neck BMD is in the osteopenic range. Relative fracture risk is about 2.</li>\n\t\t\t\t\n \n <li>The Right Femur Total BMD is in the osteopenic range. Relative fracture risk is about 2.</li>\n\t\t\t\n \n </ul>\n\t\t\t\n \n <p>\n\t\t\t\t\n \n <b>COMMENT</b>\n\t\t\t\n \n </p>\n\t\t\t\n \n <p>Osteopenia on measured BMD. The estimated 10-year probability of fracture based on present age, gender and measured BMD is less than 10%. This absolute fracture risk remains low. A follow-up assessment may be considered in 2 to 3 years to monitor the trend in BMD.</p>\n\t\t\t\n \n <p>Thank you for your referral. Dr Peter Ng 17/06/2008</p>\n\t\t\t\n \n <pre>\nNote:\nWHO classification of osteoporosis (WHO Technical Report Series 1994: 843)\n- Normal: T-score equal to -1.0 s.d. or higher\n- Osteopenia: T-score between -1.0 and -2.5 s.d.\n- Osteoporosis: T-score equal to -2.5 s.d. or lower\n- Severe/Established osteoporosis: Osteoporosis with one or more fragility fracture.\nT-score: The number of s.d. from the mean BMD for a gender-matched young adult population.\nZ-score: The number of s.d. from the mean BMD for an age-, weight- and gender-matched population.\nReference for 10-year probability of fracture risk: Kanis JA, Johnell O, Oden A, Dawson A, De Laet C, Jonsson B. Ten year probabilities of osteoporotic fractures according to BMD and diagnostic thresholds. Osteoporos.Int. 2001;12(12):989-995.\nGE LUNAR PRODIGY DENSITOMETER\n</pre>\n\t\t\n \n </div>"
|
|
7
|
+
},
|
|
8
|
+
"contained": [
|
|
9
|
+
{
|
|
10
|
+
"resourceType": "Observation",
|
|
11
|
+
"id": "r1",
|
|
12
|
+
"_id": {
|
|
13
|
+
"fhir_comments": [
|
|
14
|
+
" Here is one of the measurements above encoded as an observation for example purposes. "
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"status": "final",
|
|
18
|
+
"code": {
|
|
19
|
+
"coding": [
|
|
20
|
+
{
|
|
21
|
+
"system": "http://loinc.org",
|
|
22
|
+
"code": "24701-5",
|
|
23
|
+
"display": "Femur DXA Bone density"
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"subject": {
|
|
28
|
+
"reference": "Patient/pat2"
|
|
29
|
+
},
|
|
30
|
+
"performer": [
|
|
31
|
+
{
|
|
32
|
+
"fhir_comments": [
|
|
33
|
+
" well, actually. this isn't the patient, but it'll do for now "
|
|
34
|
+
],
|
|
35
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
36
|
+
"display": "Acme Imaging Diagnostics"
|
|
37
|
+
}
|
|
38
|
+
],
|
|
39
|
+
"valueQuantity": {
|
|
40
|
+
"value": 0.887,
|
|
41
|
+
"unit": "g/cm²",
|
|
42
|
+
"system": "http://unitsofmeasure.org",
|
|
43
|
+
"code": "g/cm-2"
|
|
44
|
+
},
|
|
45
|
+
"bodySite": {
|
|
46
|
+
"coding": [
|
|
47
|
+
{
|
|
48
|
+
"system": "http://snomed.info/sct",
|
|
49
|
+
"code": "71341001:272741003=7771000"
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"status": "final",
|
|
56
|
+
"code": {
|
|
57
|
+
"fhir_comments": [
|
|
58
|
+
" femur, laterality = left ",
|
|
59
|
+
" first, various administrative/context stuff "
|
|
60
|
+
],
|
|
61
|
+
"coding": [
|
|
62
|
+
{
|
|
63
|
+
"system": "http://loinc.org",
|
|
64
|
+
"code": "38269-7"
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"text": "DXA BONE DENSITOMETRY"
|
|
68
|
+
},
|
|
69
|
+
"subject": {
|
|
70
|
+
"reference": "Patient/pat2"
|
|
71
|
+
},
|
|
72
|
+
"effectiveDateTime": "2008-06-17",
|
|
73
|
+
"issued": "2008-06-18T09:23:00+10:00",
|
|
74
|
+
"_issued": {
|
|
75
|
+
"fhir_comments": [
|
|
76
|
+
" all this report is final "
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
"performer": {
|
|
80
|
+
"fhir_comments": [
|
|
81
|
+
" well, actually. this isn't the patient, but it'll do for now "
|
|
82
|
+
],
|
|
83
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
84
|
+
"display": "Acme Imaging Diagnostics"
|
|
85
|
+
},
|
|
86
|
+
"result": [
|
|
87
|
+
{
|
|
88
|
+
"reference": "#r1"
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"codedDiagnosis": [
|
|
92
|
+
{
|
|
93
|
+
"fhir_comments": [
|
|
94
|
+
" the imaging service marks this to help find categories of patient "
|
|
95
|
+
],
|
|
96
|
+
"coding": [
|
|
97
|
+
{
|
|
98
|
+
"system": "http://snomed.info/sct",
|
|
99
|
+
"code": "391040000",
|
|
100
|
+
"display": "At risk of osteoporotic fracture"
|
|
101
|
+
}
|
|
102
|
+
]
|
|
103
|
+
}
|
|
104
|
+
]
|
|
105
|
+
}
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
{
|
|
2
|
+
"resourceType": "DiagnosticReport",
|
|
3
|
+
"id": "f001",
|
|
4
|
+
"text": {
|
|
5
|
+
"status": "generated",
|
|
6
|
+
"div": "<div><p><b>Generated Narrative with Details</b></p><p><b>id</b>: f001</p><p><b>contained</b>: </p><p><b>identifier</b>: nr1239044 (OFFICIAL)</p><p><b>status</b>: final</p><p><b>category</b>: Haematology test <span>(Details : {SNOMED CT code '252275004' = '252275004', given as 'Haematology test'}; {http://hl7.org/fhir/v2/0074 code 'HM' = 'Hematology)</span></p><p><b>code</b>: Complete blood count (hemogram) panel - Blood by Automated count <span>(Details : {LOINC code '58410-2' = 'Complete blood count (hemogram) panel - Blood by Automated count', given as 'Complete blood count (hemogram) panel - Blood by Automated count'})</span></p><p><b>subject</b>: <a>P. van den Heuvel</a></p><p><b>effective</b>: 02/04/2013</p><p><b>issued</b>: 15/05/2013 7:32:52 PM</p><p><b>performer</b>: <a>Burgers University Medical Centre</a></p><p><b>request</b>: id: req; P. van den Heuvel; L2381 (OFFICIAL); patient almost fainted during procedure <span>(Details )</span></p><p><b>result</b>: </p><ul><li><a>Observation/f001</a></li><li><a>Observation/f002</a></li><li><a>Observation/f003</a></li><li><a>Observation/f004</a></li><li><a>Observation/f005</a></li></ul><p><b>conclusion</b>: Core lab</p></div>"
|
|
7
|
+
},
|
|
8
|
+
"contained": [
|
|
9
|
+
{
|
|
10
|
+
"resourceType": "DiagnosticOrder",
|
|
11
|
+
"id": "req",
|
|
12
|
+
"subject": {
|
|
13
|
+
"reference": "Patient/f001",
|
|
14
|
+
"display": "P. van den Heuvel"
|
|
15
|
+
},
|
|
16
|
+
"orderer": {
|
|
17
|
+
"reference": "Practitioner/f001",
|
|
18
|
+
"display": "E.van den Broek"
|
|
19
|
+
},
|
|
20
|
+
"identifier": [
|
|
21
|
+
{
|
|
22
|
+
"use": "official",
|
|
23
|
+
"system": "http://www.bmc.nl/zorgportal/identifiers/labresults",
|
|
24
|
+
"value": "L2381"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"encounter": {
|
|
28
|
+
"fhir_comments": [
|
|
29
|
+
" TODO Correcte verwijzing "
|
|
30
|
+
],
|
|
31
|
+
"reference": "Encounter/f001"
|
|
32
|
+
},
|
|
33
|
+
"reason": [
|
|
34
|
+
{
|
|
35
|
+
"text": "patient almost fainted during procedure"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"item": [
|
|
39
|
+
{
|
|
40
|
+
"code": {
|
|
41
|
+
"coding": [
|
|
42
|
+
{
|
|
43
|
+
"system": "http://loinc.org",
|
|
44
|
+
"code": "58410-2",
|
|
45
|
+
"_code": {
|
|
46
|
+
"fhir_comments": [
|
|
47
|
+
" LOINC "
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
"display": "Complete blood count (hemogram) panel - Blood by Automated count"
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
"bodySite": {
|
|
55
|
+
"coding": [
|
|
56
|
+
{
|
|
57
|
+
"system": "http://snomed.info/sct",
|
|
58
|
+
"code": "14975008",
|
|
59
|
+
"display": "Forearm structure"
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"identifier": [
|
|
68
|
+
{
|
|
69
|
+
"use": "official",
|
|
70
|
+
"system": "http://www.bmc.nl/zorgportal/identifiers/reports",
|
|
71
|
+
"value": "nr1239044"
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
"status": "final",
|
|
75
|
+
"category": {
|
|
76
|
+
"coding": [
|
|
77
|
+
{
|
|
78
|
+
"system": "http://snomed.info/sct",
|
|
79
|
+
"code": "252275004",
|
|
80
|
+
"display": "Haematology test"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"system": "http://hl7.org/fhir/v2/0074",
|
|
84
|
+
"code": "HM"
|
|
85
|
+
}
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
"code": {
|
|
89
|
+
"coding": [
|
|
90
|
+
{
|
|
91
|
+
"system": "http://loinc.org",
|
|
92
|
+
"code": "58410-2",
|
|
93
|
+
"display": "Complete blood count (hemogram) panel - Blood by Automated count"
|
|
94
|
+
}
|
|
95
|
+
]
|
|
96
|
+
},
|
|
97
|
+
"subject": {
|
|
98
|
+
"fhir_comments": [
|
|
99
|
+
" ISO 8601 "
|
|
100
|
+
],
|
|
101
|
+
"reference": "Patient/f001",
|
|
102
|
+
"display": "P. van den Heuvel"
|
|
103
|
+
},
|
|
104
|
+
"effectiveDateTime": "2013-04-02",
|
|
105
|
+
"issued": "2013-05-15T19:32:52+01:00",
|
|
106
|
+
"_issued": {
|
|
107
|
+
"fhir_comments": [
|
|
108
|
+
" OID: 2.16.840.1.113883.4.642.1.7 "
|
|
109
|
+
]
|
|
110
|
+
},
|
|
111
|
+
"performer": {
|
|
112
|
+
"reference": "Organization/f001",
|
|
113
|
+
"display": "Burgers University Medical Centre"
|
|
114
|
+
},
|
|
115
|
+
"request": [
|
|
116
|
+
{
|
|
117
|
+
"reference": "#req"
|
|
118
|
+
}
|
|
119
|
+
],
|
|
120
|
+
"result": [
|
|
121
|
+
{
|
|
122
|
+
"reference": "Observation/f001"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"reference": "Observation/f002"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"reference": "Observation/f003"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"reference": "Observation/f004"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"reference": "Observation/f005"
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
"conclusion": "Core lab"
|
|
138
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"resourceType": "DiagnosticReport",
|
|
3
|
+
"id": "f201",
|
|
4
|
+
"text": {
|
|
5
|
+
"status": "generated",
|
|
6
|
+
"div": "<div><p><b>Generated Narrative with Details</b></p><p><b>id</b>: f201</p><p><b>status</b>: final</p><p><b>category</b>: Radiology <span>(Details : {SNOMED CT code '394914008' = '394914008', given as 'Radiology'}; {http://hl7.org/fhir/v2/0074 code 'RAD' = 'Radiology)</span></p><p><b>code</b>: CT of head-neck <span>(Details : {SNOMED CT code '429858000' = '429858000', given as 'Computed tomography (CT) of head and neck'})</span></p><p><b>subject</b>: <a>Roel</a></p><p><b>effective</b>: 01/12/2012 12:00:00 PM</p><p><b>issued</b>: 01/12/2012 12:00:00 PM</p><p><b>performer</b>: <a>Blijdorp MC</a></p><p><b>imagingStudy</b>: HEAD and NECK CT DICOM imaging study</p><p><b>conclusion</b>: CT brains: large tumor sphenoid/clivus.</p><p><b>codedDiagnosis</b>: Malignant tumor of craniopharyngeal duct <span>(Details : {SNOMED CT code '188340000' = '188340000', given as 'Malignant tumor of craniopharyngeal duct'})</span></p></div>"
|
|
7
|
+
},
|
|
8
|
+
"status": "final",
|
|
9
|
+
"category": {
|
|
10
|
+
"fhir_comments": [
|
|
11
|
+
" No identifier or request details were available "
|
|
12
|
+
],
|
|
13
|
+
"coding": [
|
|
14
|
+
{
|
|
15
|
+
"fhir_comments": [
|
|
16
|
+
" The request was honored by the Department of Radiology "
|
|
17
|
+
],
|
|
18
|
+
"system": "http://snomed.info/sct",
|
|
19
|
+
"code": "394914008",
|
|
20
|
+
"display": "Radiology"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"system": "http://hl7.org/fhir/v2/0074",
|
|
24
|
+
"code": "RAD"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"code": {
|
|
29
|
+
"coding": [
|
|
30
|
+
{
|
|
31
|
+
"system": "http://snomed.info/sct",
|
|
32
|
+
"code": "429858000",
|
|
33
|
+
"display": "Computed tomography (CT) of head and neck"
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"text": "CT of head-neck"
|
|
37
|
+
},
|
|
38
|
+
"subject": {
|
|
39
|
+
"reference": "Patient/f201",
|
|
40
|
+
"display": "Roel"
|
|
41
|
+
},
|
|
42
|
+
"effectiveDateTime": "2012-12-01T12:00:00+01:00",
|
|
43
|
+
"issued": "2012-12-01T12:00:00+01:00",
|
|
44
|
+
"performer": {
|
|
45
|
+
"reference": "Organization/f203",
|
|
46
|
+
"display": "Blijdorp MC"
|
|
47
|
+
},
|
|
48
|
+
"imagingStudy": [
|
|
49
|
+
{
|
|
50
|
+
"fhir_comments": [
|
|
51
|
+
" The actual CT imagenot available - following reference used to demonstrate the usage of the element "
|
|
52
|
+
],
|
|
53
|
+
"display": "HEAD and NECK CT DICOM imaging study"
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"conclusion": "CT brains: large tumor sphenoid/clivus.",
|
|
57
|
+
"codedDiagnosis": [
|
|
58
|
+
{
|
|
59
|
+
"coding": [
|
|
60
|
+
{
|
|
61
|
+
"system": "http://snomed.info/sct",
|
|
62
|
+
"code": "188340000",
|
|
63
|
+
"display": "Malignant tumor of craniopharyngeal duct"
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
}
|
|
67
|
+
]
|
|
68
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"resourceType": "DiagnosticReport",
|
|
3
|
+
"id": "f202",
|
|
4
|
+
"text": {
|
|
5
|
+
"status": "generated",
|
|
6
|
+
"div": "<div><p><b>Generated Narrative with Details</b></p><p><b>id</b>: f202</p><p><b>contained</b>: </p><p><b>status</b>: final</p><p><b>category</b>: Laboratory test <span>(Details : {SNOMED CT code '15220000' = '15220000', given as 'Laboratory test'}; {http://hl7.org/fhir/v2/0074 code 'LAB' = 'Laboratory)</span></p><p><b>code</b>: Blood culture for bacteria, including anaerobic screen <span>(Details : {SNOMED CT code '104177005' = '104177005', given as 'Blood culture for bacteria, including anaerobic screen'})</span></p><p><b>subject</b>: <a>Roel</a></p><p><b>effective</b>: 11/03/2013 3:45:00 AM</p><p><b>issued</b>: 11/03/2013 10:28:00 AM</p><p><b>performer</b>: <a>AUMC</a></p><p><b>request</b>: id: req; Roel</p><p><b>result</b>: <a>Results for staphylococcus analysis on Roel's blood culture</a></p><p><b>conclusion</b>: Blood culture tested positive on staphylococcus aureus</p><p><b>codedDiagnosis</b>: Bacteremia due to staphylococcus <span>(Details : {SNOMED CT code '428763004' = '428763004', given as 'Bacteremia due to staphylococcus'})</span></p></div>"
|
|
7
|
+
},
|
|
8
|
+
"contained": [
|
|
9
|
+
{
|
|
10
|
+
"resourceType": "DiagnosticOrder",
|
|
11
|
+
"id": "req",
|
|
12
|
+
"subject": {
|
|
13
|
+
"reference": "Patient/f201",
|
|
14
|
+
"display": "Roel"
|
|
15
|
+
},
|
|
16
|
+
"orderer": {
|
|
17
|
+
"reference": "Practitioner/f201",
|
|
18
|
+
"display": "Dokter Bronsig"
|
|
19
|
+
},
|
|
20
|
+
"encounter": {
|
|
21
|
+
"reference": "Encounter/f203",
|
|
22
|
+
"display": "Roel's encounter on March eleventh 2013"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"status": "final",
|
|
27
|
+
"category": {
|
|
28
|
+
"coding": [
|
|
29
|
+
{
|
|
30
|
+
"fhir_comments": [
|
|
31
|
+
" Lab test "
|
|
32
|
+
],
|
|
33
|
+
"system": "http://snomed.info/sct",
|
|
34
|
+
"code": "15220000",
|
|
35
|
+
"display": "Laboratory test"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"system": "http://hl7.org/fhir/v2/0074",
|
|
39
|
+
"code": "LAB"
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"code": {
|
|
44
|
+
"coding": [
|
|
45
|
+
{
|
|
46
|
+
"system": "http://snomed.info/sct",
|
|
47
|
+
"code": "104177005",
|
|
48
|
+
"display": "Blood culture for bacteria, including anaerobic screen"
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"subject": {
|
|
53
|
+
"reference": "Patient/f201",
|
|
54
|
+
"display": "Roel"
|
|
55
|
+
},
|
|
56
|
+
"effectiveDateTime": "2013-03-11T03:45:00+01:00",
|
|
57
|
+
"issued": "2013-03-11T10:28:00+01:00",
|
|
58
|
+
"performer": {
|
|
59
|
+
"reference": "Organization/f201",
|
|
60
|
+
"display": "AUMC"
|
|
61
|
+
},
|
|
62
|
+
"request": [
|
|
63
|
+
{
|
|
64
|
+
"fhir_comments": [
|
|
65
|
+
" No identifier was available "
|
|
66
|
+
],
|
|
67
|
+
"reference": "#req"
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"result": [
|
|
71
|
+
{
|
|
72
|
+
"reference": "Observation/f206",
|
|
73
|
+
"display": "Results for staphylococcus analysis on Roel's blood culture"
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"conclusion": "Blood culture tested positive on staphylococcus aureus",
|
|
77
|
+
"codedDiagnosis": [
|
|
78
|
+
{
|
|
79
|
+
"coding": [
|
|
80
|
+
{
|
|
81
|
+
"system": "http://snomed.info/sct",
|
|
82
|
+
"code": "428763004",
|
|
83
|
+
"display": "Bacteremia due to staphylococcus"
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
}
|
|
87
|
+
]
|
|
88
|
+
}
|
|
@@ -0,0 +1,2582 @@
|
|
|
1
|
+
{
|
|
2
|
+
"resourceType": "DiagnosticReport",
|
|
3
|
+
"id": "ghp",
|
|
4
|
+
"meta": {
|
|
5
|
+
"lastUpdated": "2015-08-16T10:35:23Z"
|
|
6
|
+
},
|
|
7
|
+
"text": {
|
|
8
|
+
"fhir_comments": [
|
|
9
|
+
" ************** CBC observation panel************************ "
|
|
10
|
+
],
|
|
11
|
+
"status": "generated",
|
|
12
|
+
"div": "<div><p><b>Generated Narrative with Details</b></p><p><b>id</b>: ghp</p><p><b>meta</b>: </p><p><b>contained</b>: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , </p><p><b>identifier</b>: ghp-example</p><p><b>status</b>: final</p><p><b>code</b>: General Health Profile <span>(Details : {http://acme.com/labs/reports code 'GHP' = '??', given as 'General Health Profile'})</span></p><p><b>subject</b>: <a>Patient/pat2</a></p><p><b>effective</b>: 16/08/2015 4:40:17 PM</p><p><b>issued</b>: 17/08/2015 4:40:17 PM</p><p><b>performer</b>: <a>Acme Laboratory, Inc</a></p><p><b>specimen</b>: </p><ul><li>Red Top Tube. Generated Summary: id: rtt; Serum sample <span>(Details : {SNOMED CT code '119364003' = '119364003', given as 'Serum sample'})</span>; Patient/pat2; 20150816-00124</li><li>Lavender Top Tube. Generated Summary: id: ltt; Blood specimen with EDTA <span>(Details : {SNOMED CT code '445295009' = '445295009', given as 'Blood specimen with EDTA'})</span>; Patient/pat2; 20150816-00124</li><li>Urine Sample. Generated Summary: id: urine; Urine specimen <span>(Details : {SNOMED CT code '122575003' = '122575003', given as 'Urine specimen'})</span>; Patient/pat2; 20150816-00124</li></ul><p><b>result</b>: </p><ul><li>Chemistry Panel. Generated Summary: id: p1; status: final; Comprehensive metabolic 2000 panel - Serum or Plasma <span>(Details : {LOINC code '24323-8' = 'Comprehensive metabolic 2000 panel - Serum or Plasma', given as 'Comprehensive metabolic 2000 panel - Serum or Plasma'})</span>; effective: 16/08/2015 4:40:17 PM; issued: 17/08/2015 4:40:17 PM; Acme Laboratory, Inc</li><li>CBC. Generated Summary: id: p2; status: final; Complete blood count (hemogram) panel - Blood by Automated count <span>(Details : {LOINC code '58410-2' = 'Complete blood count (hemogram) panel - Blood by Automated count', given as 'Complete blood count (hemogram) panel - Blood by Automated count'})</span>; effective: 16/08/2015 4:40:17 PM; issued: 17/08/2015 4:40:17 PM; Acme Laboratory, Inc</li><li>Urinalysis. Generated Summary: id: p3; status: final; Urinalysis macro (dipstick) panel - Urine <span>(Details : {LOINC code '24357-6' = 'Urinalysis macro (dipstick) panel - Urine', given as 'Urinalysis macro (dipstick) panel - Urine'})</span>; effective: 16/08/2015 4:40:17 PM; issued: 17/08/2015 4:40:17 PM; Acme Laboratory, Inc</li></ul></div>"
|
|
13
|
+
},
|
|
14
|
+
"contained": [
|
|
15
|
+
{
|
|
16
|
+
"resourceType": "Specimen",
|
|
17
|
+
"id": "rtt",
|
|
18
|
+
"type": {
|
|
19
|
+
"coding": [
|
|
20
|
+
{
|
|
21
|
+
"system": "http://snomed.info/sct",
|
|
22
|
+
"code": "119364003",
|
|
23
|
+
"display": "Serum sample"
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"subject": {
|
|
28
|
+
"reference": "Patient/pat2"
|
|
29
|
+
},
|
|
30
|
+
"accessionIdentifier": {
|
|
31
|
+
"system": "http://acme.com/labs/accession-ids",
|
|
32
|
+
"value": "20150816-00124"
|
|
33
|
+
},
|
|
34
|
+
"collection": {
|
|
35
|
+
"collector": {
|
|
36
|
+
"reference": "Practitioner/f202"
|
|
37
|
+
},
|
|
38
|
+
"collectedDateTime": "2015-08-16T06:40:17Z"
|
|
39
|
+
},
|
|
40
|
+
"container": [
|
|
41
|
+
{
|
|
42
|
+
"type": {
|
|
43
|
+
"coding": [
|
|
44
|
+
{
|
|
45
|
+
"system": "http://acme.com/labs",
|
|
46
|
+
"code": "SST",
|
|
47
|
+
"display": "Serum Separator Tube"
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"resourceType": "Specimen",
|
|
56
|
+
"id": "ltt",
|
|
57
|
+
"type": {
|
|
58
|
+
"coding": [
|
|
59
|
+
{
|
|
60
|
+
"system": "http://snomed.info/sct",
|
|
61
|
+
"code": "445295009",
|
|
62
|
+
"display": "Blood specimen with EDTA"
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
"subject": {
|
|
67
|
+
"reference": "Patient/pat2"
|
|
68
|
+
},
|
|
69
|
+
"accessionIdentifier": {
|
|
70
|
+
"system": "http://acme.com/labs/accession-ids",
|
|
71
|
+
"value": "20150816-00124"
|
|
72
|
+
},
|
|
73
|
+
"collection": {
|
|
74
|
+
"collector": {
|
|
75
|
+
"reference": "Practitioner/f202"
|
|
76
|
+
},
|
|
77
|
+
"collectedDateTime": "2015-08-16T06:40:17Z"
|
|
78
|
+
},
|
|
79
|
+
"container": [
|
|
80
|
+
{
|
|
81
|
+
"type": {
|
|
82
|
+
"coding": [
|
|
83
|
+
{
|
|
84
|
+
"system": "http://acme.com/labs",
|
|
85
|
+
"code": "LTT",
|
|
86
|
+
"display": "Lavender Top Tube"
|
|
87
|
+
}
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"resourceType": "Specimen",
|
|
95
|
+
"id": "urine",
|
|
96
|
+
"type": {
|
|
97
|
+
"coding": [
|
|
98
|
+
{
|
|
99
|
+
"system": "http://snomed.info/sct",
|
|
100
|
+
"code": "122575003",
|
|
101
|
+
"display": "Urine specimen"
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
"subject": {
|
|
106
|
+
"reference": "Patient/pat2"
|
|
107
|
+
},
|
|
108
|
+
"accessionIdentifier": {
|
|
109
|
+
"system": "http://acme.com/labs/accession-ids",
|
|
110
|
+
"value": "20150816-00124"
|
|
111
|
+
},
|
|
112
|
+
"collection": {
|
|
113
|
+
"collector": {
|
|
114
|
+
"reference": "Practitioner/f202"
|
|
115
|
+
},
|
|
116
|
+
"collectedDateTime": "2015-08-16T06:40:17Z"
|
|
117
|
+
},
|
|
118
|
+
"container": [
|
|
119
|
+
{
|
|
120
|
+
"type": {
|
|
121
|
+
"coding": [
|
|
122
|
+
{
|
|
123
|
+
"system": "http://acme.com/labs",
|
|
124
|
+
"code": "UCUP",
|
|
125
|
+
"display": "100mL sterile cup"
|
|
126
|
+
}
|
|
127
|
+
]
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"resourceType": "Observation",
|
|
134
|
+
"id": "p2",
|
|
135
|
+
"status": "final",
|
|
136
|
+
"code": {
|
|
137
|
+
"coding": [
|
|
138
|
+
{
|
|
139
|
+
"system": "http://loinc.org",
|
|
140
|
+
"code": "58410-2",
|
|
141
|
+
"display": "Complete blood count (hemogram) panel - Blood by Automated count"
|
|
142
|
+
}
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
"effectiveDateTime": "2015-08-16T06:40:17Z",
|
|
146
|
+
"issued": "2015-08-17T06:40:17Z",
|
|
147
|
+
"performer": [
|
|
148
|
+
{
|
|
149
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
150
|
+
"display": "Acme Laboratory, Inc"
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
"specimen": {
|
|
154
|
+
"reference": "#ltt",
|
|
155
|
+
"display": "Lavender Top Tube"
|
|
156
|
+
},
|
|
157
|
+
"related": [
|
|
158
|
+
{
|
|
159
|
+
"type": "has-member",
|
|
160
|
+
"target": {
|
|
161
|
+
"reference": "#r1"
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"type": "has-member",
|
|
166
|
+
"target": {
|
|
167
|
+
"reference": "#r2"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"type": "has-member",
|
|
172
|
+
"target": {
|
|
173
|
+
"reference": "#r3"
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"type": "has-member",
|
|
178
|
+
"target": {
|
|
179
|
+
"reference": "#r4"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"type": "has-member",
|
|
184
|
+
"target": {
|
|
185
|
+
"reference": "#r5"
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"type": "has-member",
|
|
190
|
+
"target": {
|
|
191
|
+
"reference": "#r6"
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"type": "has-member",
|
|
196
|
+
"target": {
|
|
197
|
+
"reference": "#r7"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"type": "has-member",
|
|
202
|
+
"target": {
|
|
203
|
+
"reference": "#r8"
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"type": "has-member",
|
|
208
|
+
"target": {
|
|
209
|
+
"reference": "#r9"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"type": "has-member",
|
|
214
|
+
"target": {
|
|
215
|
+
"reference": "#r10"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"type": "has-member",
|
|
220
|
+
"target": {
|
|
221
|
+
"reference": "#r11"
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"type": "has-member",
|
|
226
|
+
"target": {
|
|
227
|
+
"reference": "#r12"
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"type": "has-member",
|
|
232
|
+
"target": {
|
|
233
|
+
"reference": "#r13"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"type": "has-member",
|
|
238
|
+
"target": {
|
|
239
|
+
"reference": "#r14"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"type": "has-member",
|
|
244
|
+
"target": {
|
|
245
|
+
"reference": "#r15"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"type": "has-member",
|
|
250
|
+
"target": {
|
|
251
|
+
"reference": "#r16"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"type": "has-member",
|
|
256
|
+
"target": {
|
|
257
|
+
"reference": "#r17"
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
]
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"resourceType": "Observation",
|
|
264
|
+
"id": "r1",
|
|
265
|
+
"_id": {
|
|
266
|
+
"fhir_comments": [
|
|
267
|
+
" \n all the data items (= Observations) are contained\n in this diagnostic report. It would be equally\n valid - and normal - for them to be separate trackable\n items. However for the purposes of this example, it's\n more convenient to have them here. For more discussion,\n see under\"Contained Resources\" on the Resource Definitions\n topic page ",
|
|
268
|
+
" for users steeped in v2, each observation roughly corresponds with an\n OBX, and the Diagnostic Report with an ORU_R01 message "
|
|
269
|
+
]
|
|
270
|
+
},
|
|
271
|
+
"status": "final",
|
|
272
|
+
"code": {
|
|
273
|
+
"coding": [
|
|
274
|
+
{
|
|
275
|
+
"system": "http://loinc.org",
|
|
276
|
+
"code": "718-7",
|
|
277
|
+
"display": "Hemoglobin [Mass/volume] in Blood"
|
|
278
|
+
}
|
|
279
|
+
],
|
|
280
|
+
"text": "Haemoglobin"
|
|
281
|
+
},
|
|
282
|
+
"subject": {
|
|
283
|
+
"reference": "Patient/pat2"
|
|
284
|
+
},
|
|
285
|
+
"performer": [
|
|
286
|
+
{
|
|
287
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
288
|
+
"display": "Acme Laboratory, Inc"
|
|
289
|
+
}
|
|
290
|
+
],
|
|
291
|
+
"valueQuantity": {
|
|
292
|
+
"value": 176,
|
|
293
|
+
"unit": "g/L",
|
|
294
|
+
"system": "http://unitsofmeasure.org",
|
|
295
|
+
"code": "g/L"
|
|
296
|
+
},
|
|
297
|
+
"referenceRange": [
|
|
298
|
+
{
|
|
299
|
+
"low": {
|
|
300
|
+
"value": 135,
|
|
301
|
+
"unit": "g/L",
|
|
302
|
+
"system": "http://unitsofmeasure.org",
|
|
303
|
+
"code": "g/L"
|
|
304
|
+
},
|
|
305
|
+
"high": {
|
|
306
|
+
"value": 180,
|
|
307
|
+
"unit": "g/L",
|
|
308
|
+
"system": "http://unitsofmeasure.org",
|
|
309
|
+
"code": "g/L"
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
]
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"resourceType": "Observation",
|
|
316
|
+
"id": "r2",
|
|
317
|
+
"status": "final",
|
|
318
|
+
"code": {
|
|
319
|
+
"coding": [
|
|
320
|
+
{
|
|
321
|
+
"system": "http://loinc.org",
|
|
322
|
+
"code": "789-8",
|
|
323
|
+
"display": "Erythrocytes [#/volume] in Blood by Automated count"
|
|
324
|
+
}
|
|
325
|
+
],
|
|
326
|
+
"text": "Red Cell Count"
|
|
327
|
+
},
|
|
328
|
+
"subject": {
|
|
329
|
+
"reference": "Patient/pat2"
|
|
330
|
+
},
|
|
331
|
+
"performer": [
|
|
332
|
+
{
|
|
333
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
334
|
+
"display": "Acme Laboratory, Inc"
|
|
335
|
+
}
|
|
336
|
+
],
|
|
337
|
+
"valueQuantity": {
|
|
338
|
+
"value": 5.9,
|
|
339
|
+
"unit": "x10*12/L",
|
|
340
|
+
"system": "http://unitsofmeasure.org",
|
|
341
|
+
"code": "10*12/L"
|
|
342
|
+
},
|
|
343
|
+
"referenceRange": [
|
|
344
|
+
{
|
|
345
|
+
"low": {
|
|
346
|
+
"value": 4.2,
|
|
347
|
+
"unit": "x10*12/L",
|
|
348
|
+
"system": "http://unitsofmeasure.org",
|
|
349
|
+
"code": "10*12/L"
|
|
350
|
+
},
|
|
351
|
+
"high": {
|
|
352
|
+
"value": 6.0,
|
|
353
|
+
"unit": "x10*12/L",
|
|
354
|
+
"system": "http://unitsofmeasure.org",
|
|
355
|
+
"code": "10*12/L"
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
]
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"resourceType": "Observation",
|
|
362
|
+
"id": "r3",
|
|
363
|
+
"status": "final",
|
|
364
|
+
"code": {
|
|
365
|
+
"coding": [
|
|
366
|
+
{
|
|
367
|
+
"system": "http://loinc.org",
|
|
368
|
+
"code": "4544-3",
|
|
369
|
+
"display": "Hematocrit [Volume Fraction] of Blood by Automated count"
|
|
370
|
+
}
|
|
371
|
+
],
|
|
372
|
+
"text": "Haematocrit"
|
|
373
|
+
},
|
|
374
|
+
"subject": {
|
|
375
|
+
"reference": "Patient/pat2"
|
|
376
|
+
},
|
|
377
|
+
"performer": [
|
|
378
|
+
{
|
|
379
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
380
|
+
"display": "Acme Laboratory, Inc"
|
|
381
|
+
}
|
|
382
|
+
],
|
|
383
|
+
"valueQuantity": {
|
|
384
|
+
"value": 55,
|
|
385
|
+
"unit": "%"
|
|
386
|
+
},
|
|
387
|
+
"interpretation": {
|
|
388
|
+
"coding": [
|
|
389
|
+
{
|
|
390
|
+
"system": "http://hl7.org/fhir/v2/0078",
|
|
391
|
+
"code": "H"
|
|
392
|
+
}
|
|
393
|
+
]
|
|
394
|
+
},
|
|
395
|
+
"referenceRange": [
|
|
396
|
+
{
|
|
397
|
+
"low": {
|
|
398
|
+
"value": 38,
|
|
399
|
+
"unit": "%"
|
|
400
|
+
},
|
|
401
|
+
"high": {
|
|
402
|
+
"value": 52,
|
|
403
|
+
"unit": "%"
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
]
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"resourceType": "Observation",
|
|
410
|
+
"id": "r4",
|
|
411
|
+
"status": "final",
|
|
412
|
+
"code": {
|
|
413
|
+
"coding": [
|
|
414
|
+
{
|
|
415
|
+
"system": "http://loinc.org",
|
|
416
|
+
"code": "787-2",
|
|
417
|
+
"display": "Erythrocyte mean corpuscular volume [Entitic volume] by Automated count"
|
|
418
|
+
}
|
|
419
|
+
],
|
|
420
|
+
"text": "Mean Cell Volume"
|
|
421
|
+
},
|
|
422
|
+
"subject": {
|
|
423
|
+
"reference": "Patient/pat2"
|
|
424
|
+
},
|
|
425
|
+
"performer": [
|
|
426
|
+
{
|
|
427
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
428
|
+
"display": "Acme Laboratory, Inc"
|
|
429
|
+
}
|
|
430
|
+
],
|
|
431
|
+
"valueQuantity": {
|
|
432
|
+
"value": 99,
|
|
433
|
+
"unit": "fL",
|
|
434
|
+
"system": "http://unitsofmeasure.org",
|
|
435
|
+
"code": "fL"
|
|
436
|
+
},
|
|
437
|
+
"interpretation": {
|
|
438
|
+
"coding": [
|
|
439
|
+
{
|
|
440
|
+
"system": "http://hl7.org/fhir/v2/0078",
|
|
441
|
+
"code": "H"
|
|
442
|
+
}
|
|
443
|
+
]
|
|
444
|
+
},
|
|
445
|
+
"referenceRange": [
|
|
446
|
+
{
|
|
447
|
+
"low": {
|
|
448
|
+
"value": 80,
|
|
449
|
+
"unit": "fL",
|
|
450
|
+
"system": "http://unitsofmeasure.org",
|
|
451
|
+
"code": "fL"
|
|
452
|
+
},
|
|
453
|
+
"high": {
|
|
454
|
+
"value": 98,
|
|
455
|
+
"unit": "fL",
|
|
456
|
+
"system": "http://unitsofmeasure.org",
|
|
457
|
+
"code": "fL"
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
]
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"resourceType": "Observation",
|
|
464
|
+
"id": "r5",
|
|
465
|
+
"status": "final",
|
|
466
|
+
"code": {
|
|
467
|
+
"coding": [
|
|
468
|
+
{
|
|
469
|
+
"system": "http://loinc.org",
|
|
470
|
+
"code": "785-6",
|
|
471
|
+
"display": "Erythrocyte mean corpuscular hemoglobin [Entitic mass] by Automated count"
|
|
472
|
+
}
|
|
473
|
+
],
|
|
474
|
+
"text": "Mean Cell Haemoglobin"
|
|
475
|
+
},
|
|
476
|
+
"subject": {
|
|
477
|
+
"reference": "Patient/pat2"
|
|
478
|
+
},
|
|
479
|
+
"performer": [
|
|
480
|
+
{
|
|
481
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
482
|
+
"display": "Acme Laboratory, Inc"
|
|
483
|
+
}
|
|
484
|
+
],
|
|
485
|
+
"valueQuantity": {
|
|
486
|
+
"value": 36,
|
|
487
|
+
"unit": "pg",
|
|
488
|
+
"system": "http://unitsofmeasure.org",
|
|
489
|
+
"code": "pg"
|
|
490
|
+
},
|
|
491
|
+
"interpretation": {
|
|
492
|
+
"coding": [
|
|
493
|
+
{
|
|
494
|
+
"system": "http://hl7.org/fhir/v2/0078",
|
|
495
|
+
"code": "H"
|
|
496
|
+
}
|
|
497
|
+
]
|
|
498
|
+
},
|
|
499
|
+
"referenceRange": [
|
|
500
|
+
{
|
|
501
|
+
"low": {
|
|
502
|
+
"value": 27,
|
|
503
|
+
"unit": "pg",
|
|
504
|
+
"system": "http://unitsofmeasure.org",
|
|
505
|
+
"code": "pg"
|
|
506
|
+
},
|
|
507
|
+
"high": {
|
|
508
|
+
"value": 35,
|
|
509
|
+
"unit": "pg",
|
|
510
|
+
"system": "http://unitsofmeasure.org",
|
|
511
|
+
"code": "pg"
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
]
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"resourceType": "Observation",
|
|
518
|
+
"id": "r6",
|
|
519
|
+
"status": "final",
|
|
520
|
+
"code": {
|
|
521
|
+
"coding": [
|
|
522
|
+
{
|
|
523
|
+
"system": "http://loinc.org",
|
|
524
|
+
"code": "777-3",
|
|
525
|
+
"display": "Platelets [#/volume] in Blood by Automated count"
|
|
526
|
+
}
|
|
527
|
+
],
|
|
528
|
+
"text": "Platelet Count"
|
|
529
|
+
},
|
|
530
|
+
"subject": {
|
|
531
|
+
"reference": "Patient/pat2"
|
|
532
|
+
},
|
|
533
|
+
"performer": [
|
|
534
|
+
{
|
|
535
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
536
|
+
"display": "Acme Laboratory, Inc"
|
|
537
|
+
}
|
|
538
|
+
],
|
|
539
|
+
"valueQuantity": {
|
|
540
|
+
"value": 444,
|
|
541
|
+
"unit": "x10*9/L",
|
|
542
|
+
"system": "http://unitsofmeasure.org",
|
|
543
|
+
"code": "10*9/L"
|
|
544
|
+
},
|
|
545
|
+
"referenceRange": [
|
|
546
|
+
{
|
|
547
|
+
"low": {
|
|
548
|
+
"value": 150,
|
|
549
|
+
"unit": "x10*9/L",
|
|
550
|
+
"system": "http://unitsofmeasure.org",
|
|
551
|
+
"code": "10*9/L"
|
|
552
|
+
},
|
|
553
|
+
"high": {
|
|
554
|
+
"value": 450,
|
|
555
|
+
"unit": "x10*9/L",
|
|
556
|
+
"system": "http://unitsofmeasure.org",
|
|
557
|
+
"code": "10*9/L"
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
]
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"resourceType": "Observation",
|
|
564
|
+
"id": "r7",
|
|
565
|
+
"status": "final",
|
|
566
|
+
"code": {
|
|
567
|
+
"coding": [
|
|
568
|
+
{
|
|
569
|
+
"system": "http://loinc.org",
|
|
570
|
+
"code": "6690-2",
|
|
571
|
+
"display": "Leukocytes [#/volume] in Blood by Automated count"
|
|
572
|
+
}
|
|
573
|
+
],
|
|
574
|
+
"text": "White Cell Count"
|
|
575
|
+
},
|
|
576
|
+
"subject": {
|
|
577
|
+
"reference": "Patient/pat2"
|
|
578
|
+
},
|
|
579
|
+
"performer": [
|
|
580
|
+
{
|
|
581
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
582
|
+
"display": "Acme Laboratory, Inc"
|
|
583
|
+
}
|
|
584
|
+
],
|
|
585
|
+
"valueQuantity": {
|
|
586
|
+
"value": 4.6,
|
|
587
|
+
"unit": "x10*9/L",
|
|
588
|
+
"system": "http://unitsofmeasure.org",
|
|
589
|
+
"code": "10*9/L"
|
|
590
|
+
},
|
|
591
|
+
"referenceRange": [
|
|
592
|
+
{
|
|
593
|
+
"low": {
|
|
594
|
+
"value": 4.0,
|
|
595
|
+
"unit": "x10*9/L",
|
|
596
|
+
"system": "http://unitsofmeasure.org",
|
|
597
|
+
"code": "10*9/L"
|
|
598
|
+
},
|
|
599
|
+
"high": {
|
|
600
|
+
"value": 11.0,
|
|
601
|
+
"unit": "x10*9/L",
|
|
602
|
+
"system": "http://unitsofmeasure.org",
|
|
603
|
+
"code": "10*9/L"
|
|
604
|
+
}
|
|
605
|
+
}
|
|
606
|
+
]
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"resourceType": "Observation",
|
|
610
|
+
"id": "r8",
|
|
611
|
+
"status": "final",
|
|
612
|
+
"code": {
|
|
613
|
+
"coding": [
|
|
614
|
+
{
|
|
615
|
+
"system": "http://loinc.org",
|
|
616
|
+
"code": "770-8",
|
|
617
|
+
"display": "Neutrophils/100 leukocytes in Blood by Automated count"
|
|
618
|
+
}
|
|
619
|
+
],
|
|
620
|
+
"text": "Neutrophils"
|
|
621
|
+
},
|
|
622
|
+
"subject": {
|
|
623
|
+
"reference": "Patient/pat2"
|
|
624
|
+
},
|
|
625
|
+
"performer": [
|
|
626
|
+
{
|
|
627
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
628
|
+
"display": "Acme Laboratory, Inc"
|
|
629
|
+
}
|
|
630
|
+
],
|
|
631
|
+
"valueQuantity": {
|
|
632
|
+
"value": 20,
|
|
633
|
+
"unit": "%",
|
|
634
|
+
"system": "http://unitsofmeasure.org",
|
|
635
|
+
"code": "%"
|
|
636
|
+
}
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"resourceType": "Observation",
|
|
640
|
+
"id": "r9",
|
|
641
|
+
"status": "final",
|
|
642
|
+
"code": {
|
|
643
|
+
"coding": [
|
|
644
|
+
{
|
|
645
|
+
"system": "http://loinc.org",
|
|
646
|
+
"code": "751-8",
|
|
647
|
+
"display": "Neutrophils [#/volume] in Blood by Automated count"
|
|
648
|
+
}
|
|
649
|
+
],
|
|
650
|
+
"text": "Neutrophils"
|
|
651
|
+
},
|
|
652
|
+
"subject": {
|
|
653
|
+
"reference": "Patient/pat2"
|
|
654
|
+
},
|
|
655
|
+
"performer": [
|
|
656
|
+
{
|
|
657
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
658
|
+
"display": "Acme Laboratory, Inc"
|
|
659
|
+
}
|
|
660
|
+
],
|
|
661
|
+
"valueQuantity": {
|
|
662
|
+
"value": 0.9,
|
|
663
|
+
"unit": "x10*9/L",
|
|
664
|
+
"system": "http://unitsofmeasure.org",
|
|
665
|
+
"code": "10*9/L"
|
|
666
|
+
},
|
|
667
|
+
"interpretation": {
|
|
668
|
+
"coding": [
|
|
669
|
+
{
|
|
670
|
+
"system": "http://hl7.org/fhir/v2/0078",
|
|
671
|
+
"code": "LL"
|
|
672
|
+
}
|
|
673
|
+
]
|
|
674
|
+
},
|
|
675
|
+
"referenceRange": [
|
|
676
|
+
{
|
|
677
|
+
"low": {
|
|
678
|
+
"value": 2.0,
|
|
679
|
+
"unit": "x10*9/L",
|
|
680
|
+
"system": "http://unitsofmeasure.org",
|
|
681
|
+
"code": "10*9/L"
|
|
682
|
+
},
|
|
683
|
+
"high": {
|
|
684
|
+
"value": 7.5,
|
|
685
|
+
"unit": "x10*9/L",
|
|
686
|
+
"system": "http://unitsofmeasure.org",
|
|
687
|
+
"code": "10*9/L"
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
]
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"resourceType": "Observation",
|
|
694
|
+
"id": "r10",
|
|
695
|
+
"status": "final",
|
|
696
|
+
"code": {
|
|
697
|
+
"coding": [
|
|
698
|
+
{
|
|
699
|
+
"system": "http://loinc.org",
|
|
700
|
+
"code": "736-9",
|
|
701
|
+
"display": "Lymphocytes/100 leukocytes in Blood by Automated count"
|
|
702
|
+
}
|
|
703
|
+
],
|
|
704
|
+
"text": "Lymphocytes"
|
|
705
|
+
},
|
|
706
|
+
"subject": {
|
|
707
|
+
"reference": "Patient/pat2"
|
|
708
|
+
},
|
|
709
|
+
"performer": [
|
|
710
|
+
{
|
|
711
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
712
|
+
"display": "Acme Laboratory, Inc"
|
|
713
|
+
}
|
|
714
|
+
],
|
|
715
|
+
"valueQuantity": {
|
|
716
|
+
"value": 20,
|
|
717
|
+
"unit": "%",
|
|
718
|
+
"system": "http://unitsofmeasure.org",
|
|
719
|
+
"code": "%"
|
|
720
|
+
}
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"resourceType": "Observation",
|
|
724
|
+
"id": "r11",
|
|
725
|
+
"status": "final",
|
|
726
|
+
"code": {
|
|
727
|
+
"coding": [
|
|
728
|
+
{
|
|
729
|
+
"system": "http://loinc.org",
|
|
730
|
+
"code": "731-0",
|
|
731
|
+
"display": "Lymphocytes [#/volume] in Blood by Automated count"
|
|
732
|
+
}
|
|
733
|
+
],
|
|
734
|
+
"text": "Lymphocytes"
|
|
735
|
+
},
|
|
736
|
+
"subject": {
|
|
737
|
+
"reference": "Patient/pat2"
|
|
738
|
+
},
|
|
739
|
+
"performer": [
|
|
740
|
+
{
|
|
741
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
742
|
+
"display": "Acme Laboratory, Inc"
|
|
743
|
+
}
|
|
744
|
+
],
|
|
745
|
+
"valueQuantity": {
|
|
746
|
+
"value": 0.9,
|
|
747
|
+
"unit": "x10*9/L",
|
|
748
|
+
"system": "http://unitsofmeasure.org",
|
|
749
|
+
"code": "10*9/L"
|
|
750
|
+
},
|
|
751
|
+
"interpretation": {
|
|
752
|
+
"coding": [
|
|
753
|
+
{
|
|
754
|
+
"system": "http://hl7.org/fhir/v2/0078",
|
|
755
|
+
"code": "L"
|
|
756
|
+
}
|
|
757
|
+
]
|
|
758
|
+
},
|
|
759
|
+
"referenceRange": [
|
|
760
|
+
{
|
|
761
|
+
"low": {
|
|
762
|
+
"value": 1.1,
|
|
763
|
+
"unit": "x10*9/L",
|
|
764
|
+
"system": "http://unitsofmeasure.org",
|
|
765
|
+
"code": "10*9/L"
|
|
766
|
+
},
|
|
767
|
+
"high": {
|
|
768
|
+
"value": 4.0,
|
|
769
|
+
"unit": "x10*9/L",
|
|
770
|
+
"system": "http://unitsofmeasure.org",
|
|
771
|
+
"code": "10*9/L"
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
]
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"resourceType": "Observation",
|
|
778
|
+
"id": "r12",
|
|
779
|
+
"status": "final",
|
|
780
|
+
"code": {
|
|
781
|
+
"coding": [
|
|
782
|
+
{
|
|
783
|
+
"system": "http://loinc.org",
|
|
784
|
+
"code": "5905-5",
|
|
785
|
+
"display": "Monocytes/100 leukocytes in Blood by Automated count"
|
|
786
|
+
}
|
|
787
|
+
],
|
|
788
|
+
"text": "Monocytes"
|
|
789
|
+
},
|
|
790
|
+
"subject": {
|
|
791
|
+
"reference": "Patient/pat2"
|
|
792
|
+
},
|
|
793
|
+
"performer": [
|
|
794
|
+
{
|
|
795
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
796
|
+
"display": "Acme Laboratory, Inc"
|
|
797
|
+
}
|
|
798
|
+
],
|
|
799
|
+
"valueQuantity": {
|
|
800
|
+
"value": 20,
|
|
801
|
+
"unit": "%",
|
|
802
|
+
"system": "http://unitsofmeasure.org",
|
|
803
|
+
"code": "%"
|
|
804
|
+
}
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
"resourceType": "Observation",
|
|
808
|
+
"id": "r13",
|
|
809
|
+
"status": "final",
|
|
810
|
+
"code": {
|
|
811
|
+
"coding": [
|
|
812
|
+
{
|
|
813
|
+
"system": "http://loinc.org",
|
|
814
|
+
"code": "742-7",
|
|
815
|
+
"display": "Monocytes [#/volume] in Blood by Automated count"
|
|
816
|
+
}
|
|
817
|
+
],
|
|
818
|
+
"text": "Monocytes"
|
|
819
|
+
},
|
|
820
|
+
"subject": {
|
|
821
|
+
"reference": "Patient/pat2"
|
|
822
|
+
},
|
|
823
|
+
"performer": [
|
|
824
|
+
{
|
|
825
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
826
|
+
"display": "Acme Laboratory, Inc"
|
|
827
|
+
}
|
|
828
|
+
],
|
|
829
|
+
"valueQuantity": {
|
|
830
|
+
"value": 0.9,
|
|
831
|
+
"unit": "x10*9/L",
|
|
832
|
+
"system": "http://unitsofmeasure.org",
|
|
833
|
+
"code": "10*9/L"
|
|
834
|
+
},
|
|
835
|
+
"referenceRange": [
|
|
836
|
+
{
|
|
837
|
+
"low": {
|
|
838
|
+
"value": 0.2,
|
|
839
|
+
"unit": "x10*9/L",
|
|
840
|
+
"system": "http://unitsofmeasure.org",
|
|
841
|
+
"code": "10*9/L"
|
|
842
|
+
},
|
|
843
|
+
"high": {
|
|
844
|
+
"value": 1.0,
|
|
845
|
+
"unit": "x10*9/L",
|
|
846
|
+
"system": "http://unitsofmeasure.org",
|
|
847
|
+
"code": "10*9/L"
|
|
848
|
+
}
|
|
849
|
+
}
|
|
850
|
+
]
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"resourceType": "Observation",
|
|
854
|
+
"id": "r14",
|
|
855
|
+
"status": "final",
|
|
856
|
+
"code": {
|
|
857
|
+
"coding": [
|
|
858
|
+
{
|
|
859
|
+
"system": "http://loinc.org",
|
|
860
|
+
"code": "713-8",
|
|
861
|
+
"display": "Eosinophils/100 leukocytes in Blood by Automated count"
|
|
862
|
+
}
|
|
863
|
+
],
|
|
864
|
+
"text": "Eosinophils"
|
|
865
|
+
},
|
|
866
|
+
"subject": {
|
|
867
|
+
"reference": "Patient/pat2"
|
|
868
|
+
},
|
|
869
|
+
"performer": [
|
|
870
|
+
{
|
|
871
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
872
|
+
"display": "Acme Laboratory, Inc"
|
|
873
|
+
}
|
|
874
|
+
],
|
|
875
|
+
"valueQuantity": {
|
|
876
|
+
"value": 20,
|
|
877
|
+
"unit": "%",
|
|
878
|
+
"system": "http://unitsofmeasure.org",
|
|
879
|
+
"code": "%"
|
|
880
|
+
}
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"resourceType": "Observation",
|
|
884
|
+
"id": "r15",
|
|
885
|
+
"status": "final",
|
|
886
|
+
"code": {
|
|
887
|
+
"coding": [
|
|
888
|
+
{
|
|
889
|
+
"system": "http://loinc.org",
|
|
890
|
+
"code": "711-2",
|
|
891
|
+
"display": "Eosinophils [#/volume] in Blood by Automated count"
|
|
892
|
+
}
|
|
893
|
+
],
|
|
894
|
+
"text": "Eosinophils"
|
|
895
|
+
},
|
|
896
|
+
"subject": {
|
|
897
|
+
"reference": "Patient/pat2"
|
|
898
|
+
},
|
|
899
|
+
"performer": [
|
|
900
|
+
{
|
|
901
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
902
|
+
"display": "Acme Laboratory, Inc"
|
|
903
|
+
}
|
|
904
|
+
],
|
|
905
|
+
"valueQuantity": {
|
|
906
|
+
"value": 0.92,
|
|
907
|
+
"unit": "x10*9/L",
|
|
908
|
+
"system": "http://unitsofmeasure.org",
|
|
909
|
+
"code": "10*9/L"
|
|
910
|
+
},
|
|
911
|
+
"interpretation": {
|
|
912
|
+
"coding": [
|
|
913
|
+
{
|
|
914
|
+
"system": "http://hl7.org/fhir/v2/0078",
|
|
915
|
+
"code": "HH"
|
|
916
|
+
}
|
|
917
|
+
]
|
|
918
|
+
},
|
|
919
|
+
"referenceRange": [
|
|
920
|
+
{
|
|
921
|
+
"low": {
|
|
922
|
+
"value": 0.04,
|
|
923
|
+
"unit": "x10*9/L",
|
|
924
|
+
"system": "http://unitsofmeasure.org",
|
|
925
|
+
"code": "10*9/L"
|
|
926
|
+
},
|
|
927
|
+
"high": {
|
|
928
|
+
"value": 0.40,
|
|
929
|
+
"unit": "x10*9/L",
|
|
930
|
+
"system": "http://unitsofmeasure.org",
|
|
931
|
+
"code": "10*9/L"
|
|
932
|
+
}
|
|
933
|
+
}
|
|
934
|
+
]
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"resourceType": "Observation",
|
|
938
|
+
"id": "r16",
|
|
939
|
+
"status": "final",
|
|
940
|
+
"code": {
|
|
941
|
+
"coding": [
|
|
942
|
+
{
|
|
943
|
+
"system": "http://loinc.org",
|
|
944
|
+
"code": "706-2",
|
|
945
|
+
"display": "Basophils/100 leukocytes in Blood by Automated count"
|
|
946
|
+
}
|
|
947
|
+
],
|
|
948
|
+
"text": "Basophils"
|
|
949
|
+
},
|
|
950
|
+
"subject": {
|
|
951
|
+
"reference": "Patient/pat2"
|
|
952
|
+
},
|
|
953
|
+
"performer": [
|
|
954
|
+
{
|
|
955
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
956
|
+
"display": "Acme Laboratory, Inc"
|
|
957
|
+
}
|
|
958
|
+
],
|
|
959
|
+
"valueQuantity": {
|
|
960
|
+
"value": 20,
|
|
961
|
+
"unit": "%",
|
|
962
|
+
"system": "http://unitsofmeasure.org",
|
|
963
|
+
"code": "%"
|
|
964
|
+
}
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
"resourceType": "Observation",
|
|
968
|
+
"id": "r17",
|
|
969
|
+
"status": "final",
|
|
970
|
+
"code": {
|
|
971
|
+
"coding": [
|
|
972
|
+
{
|
|
973
|
+
"system": "http://loinc.org",
|
|
974
|
+
"code": "704-7",
|
|
975
|
+
"display": "Basophils [#/volume] in Blood by Automated count"
|
|
976
|
+
}
|
|
977
|
+
],
|
|
978
|
+
"text": "Basophils"
|
|
979
|
+
},
|
|
980
|
+
"subject": {
|
|
981
|
+
"reference": "Patient/pat2"
|
|
982
|
+
},
|
|
983
|
+
"performer": [
|
|
984
|
+
{
|
|
985
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
986
|
+
"display": "Acme Laboratory, Inc"
|
|
987
|
+
}
|
|
988
|
+
],
|
|
989
|
+
"valueQuantity": {
|
|
990
|
+
"value": 0.92,
|
|
991
|
+
"unit": "x10*9/L",
|
|
992
|
+
"system": "http://unitsofmeasure.org",
|
|
993
|
+
"code": "10*9/L"
|
|
994
|
+
},
|
|
995
|
+
"referenceRange": [
|
|
996
|
+
{
|
|
997
|
+
"high": {
|
|
998
|
+
"value": 0.21,
|
|
999
|
+
"unit": "x10*9/L",
|
|
1000
|
+
"system": "http://unitsofmeasure.org",
|
|
1001
|
+
"code": "10*9/L"
|
|
1002
|
+
}
|
|
1003
|
+
}
|
|
1004
|
+
]
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
"resourceType": "Observation",
|
|
1008
|
+
"id": "p1",
|
|
1009
|
+
"status": "final",
|
|
1010
|
+
"code": {
|
|
1011
|
+
"coding": [
|
|
1012
|
+
{
|
|
1013
|
+
"system": "http://loinc.org",
|
|
1014
|
+
"code": "24323-8",
|
|
1015
|
+
"display": "Comprehensive metabolic 2000 panel - Serum or Plasma"
|
|
1016
|
+
}
|
|
1017
|
+
]
|
|
1018
|
+
},
|
|
1019
|
+
"effectiveDateTime": "2015-08-16T06:40:17Z",
|
|
1020
|
+
"issued": "2015-08-17T06:40:17Z",
|
|
1021
|
+
"performer": [
|
|
1022
|
+
{
|
|
1023
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1024
|
+
"display": "Acme Laboratory, Inc"
|
|
1025
|
+
}
|
|
1026
|
+
],
|
|
1027
|
+
"specimen": {
|
|
1028
|
+
"reference": "#rtt",
|
|
1029
|
+
"display": "Red Top Tube"
|
|
1030
|
+
},
|
|
1031
|
+
"related": [
|
|
1032
|
+
{
|
|
1033
|
+
"type": "has-member",
|
|
1034
|
+
"target": {
|
|
1035
|
+
"reference": "#o1"
|
|
1036
|
+
}
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
"type": "has-member",
|
|
1040
|
+
"target": {
|
|
1041
|
+
"reference": "#o2"
|
|
1042
|
+
}
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
"type": "has-member",
|
|
1046
|
+
"target": {
|
|
1047
|
+
"reference": "#o3"
|
|
1048
|
+
}
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"type": "has-member",
|
|
1052
|
+
"target": {
|
|
1053
|
+
"reference": "#o4"
|
|
1054
|
+
}
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
"type": "has-member",
|
|
1058
|
+
"target": {
|
|
1059
|
+
"reference": "#o5"
|
|
1060
|
+
}
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"type": "has-member",
|
|
1064
|
+
"target": {
|
|
1065
|
+
"reference": "#o6"
|
|
1066
|
+
}
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
"type": "has-member",
|
|
1070
|
+
"target": {
|
|
1071
|
+
"reference": "#o7"
|
|
1072
|
+
}
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
"type": "has-member",
|
|
1076
|
+
"target": {
|
|
1077
|
+
"reference": "#o8"
|
|
1078
|
+
}
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"type": "has-member",
|
|
1082
|
+
"target": {
|
|
1083
|
+
"reference": "#o9"
|
|
1084
|
+
}
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
"type": "has-member",
|
|
1088
|
+
"target": {
|
|
1089
|
+
"reference": "#o10"
|
|
1090
|
+
}
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
"type": "has-member",
|
|
1094
|
+
"target": {
|
|
1095
|
+
"reference": "#o11"
|
|
1096
|
+
}
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"type": "has-member",
|
|
1100
|
+
"target": {
|
|
1101
|
+
"reference": "#o12"
|
|
1102
|
+
}
|
|
1103
|
+
},
|
|
1104
|
+
{
|
|
1105
|
+
"type": "has-member",
|
|
1106
|
+
"target": {
|
|
1107
|
+
"reference": "#o13"
|
|
1108
|
+
}
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
"type": "has-member",
|
|
1112
|
+
"target": {
|
|
1113
|
+
"reference": "#o14"
|
|
1114
|
+
}
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
"type": "has-member",
|
|
1118
|
+
"target": {
|
|
1119
|
+
"reference": "#o15"
|
|
1120
|
+
}
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"type": "has-member",
|
|
1124
|
+
"target": {
|
|
1125
|
+
"reference": "#o16"
|
|
1126
|
+
}
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
"type": "has-member",
|
|
1130
|
+
"target": {
|
|
1131
|
+
"reference": "#o17"
|
|
1132
|
+
}
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
"type": "has-member",
|
|
1136
|
+
"target": {
|
|
1137
|
+
"reference": "#o18"
|
|
1138
|
+
}
|
|
1139
|
+
},
|
|
1140
|
+
{
|
|
1141
|
+
"type": "has-member",
|
|
1142
|
+
"target": {
|
|
1143
|
+
"reference": "#o19"
|
|
1144
|
+
}
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"type": "has-member",
|
|
1148
|
+
"target": {
|
|
1149
|
+
"reference": "#o20"
|
|
1150
|
+
}
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
"type": "has-member",
|
|
1154
|
+
"target": {
|
|
1155
|
+
"reference": "#o21"
|
|
1156
|
+
}
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
"type": "has-member",
|
|
1160
|
+
"target": {
|
|
1161
|
+
"reference": "#o22"
|
|
1162
|
+
}
|
|
1163
|
+
}
|
|
1164
|
+
]
|
|
1165
|
+
},
|
|
1166
|
+
{
|
|
1167
|
+
"resourceType": "Observation",
|
|
1168
|
+
"id": "o1",
|
|
1169
|
+
"status": "final",
|
|
1170
|
+
"code": {
|
|
1171
|
+
"coding": [
|
|
1172
|
+
{
|
|
1173
|
+
"system": "http://loinc.org",
|
|
1174
|
+
"code": "2951-2",
|
|
1175
|
+
"display": "Sodium [Moles/volume] in Serum or Plasma"
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
"system": "http://snomed.info/sct",
|
|
1179
|
+
"code": "104934005"
|
|
1180
|
+
}
|
|
1181
|
+
]
|
|
1182
|
+
},
|
|
1183
|
+
"subject": {
|
|
1184
|
+
"reference": "Patient/pat2"
|
|
1185
|
+
},
|
|
1186
|
+
"performer": [
|
|
1187
|
+
{
|
|
1188
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1189
|
+
"display": "Acme Laboratory, Inc"
|
|
1190
|
+
}
|
|
1191
|
+
],
|
|
1192
|
+
"valueQuantity": {
|
|
1193
|
+
"value": 140,
|
|
1194
|
+
"unit": "mmol/L"
|
|
1195
|
+
},
|
|
1196
|
+
"referenceRange": [
|
|
1197
|
+
{
|
|
1198
|
+
"low": {
|
|
1199
|
+
"value": 137,
|
|
1200
|
+
"unit": "mmol/L"
|
|
1201
|
+
},
|
|
1202
|
+
"high": {
|
|
1203
|
+
"value": 147,
|
|
1204
|
+
"unit": "mmol/L"
|
|
1205
|
+
}
|
|
1206
|
+
}
|
|
1207
|
+
]
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
"resourceType": "Observation",
|
|
1211
|
+
"id": "o2",
|
|
1212
|
+
"status": "final",
|
|
1213
|
+
"code": {
|
|
1214
|
+
"coding": [
|
|
1215
|
+
{
|
|
1216
|
+
"system": "http://loinc.org",
|
|
1217
|
+
"code": "2823-3",
|
|
1218
|
+
"display": "Potassium [Moles/volume] in Serum or Plasma"
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
"system": "http://snomed.info/sct",
|
|
1222
|
+
"code": "59573005"
|
|
1223
|
+
}
|
|
1224
|
+
]
|
|
1225
|
+
},
|
|
1226
|
+
"subject": {
|
|
1227
|
+
"reference": "Patient/pat2"
|
|
1228
|
+
},
|
|
1229
|
+
"performer": [
|
|
1230
|
+
{
|
|
1231
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1232
|
+
"display": "Acme Laboratory, Inc"
|
|
1233
|
+
}
|
|
1234
|
+
],
|
|
1235
|
+
"valueQuantity": {
|
|
1236
|
+
"value": 4.2,
|
|
1237
|
+
"unit": "mmol/L"
|
|
1238
|
+
},
|
|
1239
|
+
"referenceRange": [
|
|
1240
|
+
{
|
|
1241
|
+
"low": {
|
|
1242
|
+
"value": 3.5,
|
|
1243
|
+
"unit": "mmol/L"
|
|
1244
|
+
},
|
|
1245
|
+
"high": {
|
|
1246
|
+
"value": 5.0,
|
|
1247
|
+
"unit": "mmol/L"
|
|
1248
|
+
}
|
|
1249
|
+
}
|
|
1250
|
+
]
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"resourceType": "Observation",
|
|
1254
|
+
"id": "o3",
|
|
1255
|
+
"status": "final",
|
|
1256
|
+
"code": {
|
|
1257
|
+
"coding": [
|
|
1258
|
+
{
|
|
1259
|
+
"system": "http://loinc.org",
|
|
1260
|
+
"code": "2075-0",
|
|
1261
|
+
"display": "Chloride [Moles/volume] in Serum or Plasma"
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
"system": "http://snomed.info/sct",
|
|
1265
|
+
"code": "46511006"
|
|
1266
|
+
}
|
|
1267
|
+
]
|
|
1268
|
+
},
|
|
1269
|
+
"subject": {
|
|
1270
|
+
"reference": "Patient/pat2"
|
|
1271
|
+
},
|
|
1272
|
+
"performer": [
|
|
1273
|
+
{
|
|
1274
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1275
|
+
"display": "Acme Laboratory, Inc"
|
|
1276
|
+
}
|
|
1277
|
+
],
|
|
1278
|
+
"valueQuantity": {
|
|
1279
|
+
"value": 105,
|
|
1280
|
+
"unit": "mmol/L"
|
|
1281
|
+
},
|
|
1282
|
+
"referenceRange": [
|
|
1283
|
+
{
|
|
1284
|
+
"low": {
|
|
1285
|
+
"value": 96,
|
|
1286
|
+
"unit": "mmol/L"
|
|
1287
|
+
},
|
|
1288
|
+
"high": {
|
|
1289
|
+
"value": 109,
|
|
1290
|
+
"unit": "mmol/L"
|
|
1291
|
+
}
|
|
1292
|
+
}
|
|
1293
|
+
]
|
|
1294
|
+
},
|
|
1295
|
+
{
|
|
1296
|
+
"resourceType": "Observation",
|
|
1297
|
+
"id": "o4",
|
|
1298
|
+
"status": "final",
|
|
1299
|
+
"code": {
|
|
1300
|
+
"coding": [
|
|
1301
|
+
{
|
|
1302
|
+
"system": "http://loinc.org",
|
|
1303
|
+
"code": "1963-8",
|
|
1304
|
+
"display": "Bicarbonate [Moles/volume] in Serum"
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
"system": "http://snomed.info/sct",
|
|
1308
|
+
"code": "88645003"
|
|
1309
|
+
}
|
|
1310
|
+
]
|
|
1311
|
+
},
|
|
1312
|
+
"subject": {
|
|
1313
|
+
"reference": "Patient/pat2"
|
|
1314
|
+
},
|
|
1315
|
+
"performer": [
|
|
1316
|
+
{
|
|
1317
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1318
|
+
"display": "Acme Laboratory, Inc"
|
|
1319
|
+
}
|
|
1320
|
+
],
|
|
1321
|
+
"valueQuantity": {
|
|
1322
|
+
"value": 26,
|
|
1323
|
+
"unit": "mmol/L"
|
|
1324
|
+
},
|
|
1325
|
+
"referenceRange": [
|
|
1326
|
+
{
|
|
1327
|
+
"low": {
|
|
1328
|
+
"value": 25,
|
|
1329
|
+
"unit": "mmol/L"
|
|
1330
|
+
},
|
|
1331
|
+
"high": {
|
|
1332
|
+
"value": 33,
|
|
1333
|
+
"unit": "mmol/L"
|
|
1334
|
+
}
|
|
1335
|
+
}
|
|
1336
|
+
]
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
"resourceType": "Observation",
|
|
1340
|
+
"id": "o5",
|
|
1341
|
+
"status": "final",
|
|
1342
|
+
"code": {
|
|
1343
|
+
"coding": [
|
|
1344
|
+
{
|
|
1345
|
+
"system": "http://loinc.org",
|
|
1346
|
+
"code": "1863-0",
|
|
1347
|
+
"display": "Anion gap 4 in Serum or Plasma"
|
|
1348
|
+
},
|
|
1349
|
+
{
|
|
1350
|
+
"system": "http://snomed.info/sct",
|
|
1351
|
+
"code": "271057005"
|
|
1352
|
+
}
|
|
1353
|
+
]
|
|
1354
|
+
},
|
|
1355
|
+
"subject": {
|
|
1356
|
+
"reference": "Patient/pat2"
|
|
1357
|
+
},
|
|
1358
|
+
"performer": [
|
|
1359
|
+
{
|
|
1360
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1361
|
+
"display": "Acme Laboratory, Inc"
|
|
1362
|
+
}
|
|
1363
|
+
],
|
|
1364
|
+
"valueQuantity": {
|
|
1365
|
+
"value": 13,
|
|
1366
|
+
"unit": "mmol/L"
|
|
1367
|
+
},
|
|
1368
|
+
"referenceRange": [
|
|
1369
|
+
{
|
|
1370
|
+
"low": {
|
|
1371
|
+
"value": 4,
|
|
1372
|
+
"unit": "mmol/L"
|
|
1373
|
+
},
|
|
1374
|
+
"high": {
|
|
1375
|
+
"value": 17,
|
|
1376
|
+
"unit": "mmol/L"
|
|
1377
|
+
}
|
|
1378
|
+
}
|
|
1379
|
+
]
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
"resourceType": "Observation",
|
|
1383
|
+
"id": "o6",
|
|
1384
|
+
"status": "final",
|
|
1385
|
+
"code": {
|
|
1386
|
+
"coding": [
|
|
1387
|
+
{
|
|
1388
|
+
"system": "http://loinc.org",
|
|
1389
|
+
"code": "14749-6",
|
|
1390
|
+
"display": "Glucose [Moles/volume] in Serum or Plasma"
|
|
1391
|
+
},
|
|
1392
|
+
{
|
|
1393
|
+
"system": "http://snomed.info/sct",
|
|
1394
|
+
"code": "36048009"
|
|
1395
|
+
}
|
|
1396
|
+
]
|
|
1397
|
+
},
|
|
1398
|
+
"subject": {
|
|
1399
|
+
"reference": "Patient/pat2"
|
|
1400
|
+
},
|
|
1401
|
+
"performer": [
|
|
1402
|
+
{
|
|
1403
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1404
|
+
"display": "Acme Laboratory, Inc"
|
|
1405
|
+
}
|
|
1406
|
+
],
|
|
1407
|
+
"valueQuantity": {
|
|
1408
|
+
"value": 7.4,
|
|
1409
|
+
"unit": "mmol/L"
|
|
1410
|
+
},
|
|
1411
|
+
"referenceRange": [
|
|
1412
|
+
{
|
|
1413
|
+
"low": {
|
|
1414
|
+
"value": 3.0,
|
|
1415
|
+
"unit": "mmol/L"
|
|
1416
|
+
},
|
|
1417
|
+
"high": {
|
|
1418
|
+
"value": 7.7,
|
|
1419
|
+
"unit": "mmol/L"
|
|
1420
|
+
}
|
|
1421
|
+
}
|
|
1422
|
+
]
|
|
1423
|
+
},
|
|
1424
|
+
{
|
|
1425
|
+
"resourceType": "Observation",
|
|
1426
|
+
"id": "o7",
|
|
1427
|
+
"status": "final",
|
|
1428
|
+
"code": {
|
|
1429
|
+
"coding": [
|
|
1430
|
+
{
|
|
1431
|
+
"system": "http://loinc.org",
|
|
1432
|
+
"code": "14937-7",
|
|
1433
|
+
"display": "Urea nitrogen [Moles/volume] in Serum or Plasma"
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
"system": "http://snomed.info/sct",
|
|
1437
|
+
"code": "273967009"
|
|
1438
|
+
}
|
|
1439
|
+
]
|
|
1440
|
+
},
|
|
1441
|
+
"subject": {
|
|
1442
|
+
"reference": "Patient/pat2"
|
|
1443
|
+
},
|
|
1444
|
+
"performer": [
|
|
1445
|
+
{
|
|
1446
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1447
|
+
"display": "Acme Laboratory, Inc"
|
|
1448
|
+
}
|
|
1449
|
+
],
|
|
1450
|
+
"valueQuantity": {
|
|
1451
|
+
"value": 4.7,
|
|
1452
|
+
"unit": "mmol/L"
|
|
1453
|
+
},
|
|
1454
|
+
"referenceRange": [
|
|
1455
|
+
{
|
|
1456
|
+
"low": {
|
|
1457
|
+
"value": 2.0,
|
|
1458
|
+
"unit": "mmol/L"
|
|
1459
|
+
},
|
|
1460
|
+
"high": {
|
|
1461
|
+
"value": 7.0,
|
|
1462
|
+
"unit": "mmol/L"
|
|
1463
|
+
}
|
|
1464
|
+
}
|
|
1465
|
+
]
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
"resourceType": "Observation",
|
|
1469
|
+
"id": "o8",
|
|
1470
|
+
"status": "final",
|
|
1471
|
+
"code": {
|
|
1472
|
+
"coding": [
|
|
1473
|
+
{
|
|
1474
|
+
"system": "http://loinc.org",
|
|
1475
|
+
"code": "14682-9",
|
|
1476
|
+
"display": "Creatinine [Moles/volume] in Serum or Plasma"
|
|
1477
|
+
},
|
|
1478
|
+
{
|
|
1479
|
+
"system": "http://snomed.info/sct",
|
|
1480
|
+
"code": "70901006"
|
|
1481
|
+
}
|
|
1482
|
+
]
|
|
1483
|
+
},
|
|
1484
|
+
"subject": {
|
|
1485
|
+
"reference": "Patient/pat2"
|
|
1486
|
+
},
|
|
1487
|
+
"performer": [
|
|
1488
|
+
{
|
|
1489
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1490
|
+
"display": "Acme Laboratory, Inc"
|
|
1491
|
+
}
|
|
1492
|
+
],
|
|
1493
|
+
"valueQuantity": {
|
|
1494
|
+
"value": 0.09,
|
|
1495
|
+
"unit": "mmol/L"
|
|
1496
|
+
},
|
|
1497
|
+
"referenceRange": [
|
|
1498
|
+
{
|
|
1499
|
+
"low": {
|
|
1500
|
+
"value": 0.04,
|
|
1501
|
+
"unit": "mmol/L"
|
|
1502
|
+
},
|
|
1503
|
+
"high": {
|
|
1504
|
+
"value": 0.11,
|
|
1505
|
+
"unit": "mmol/L"
|
|
1506
|
+
}
|
|
1507
|
+
}
|
|
1508
|
+
]
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
"resourceType": "Observation",
|
|
1512
|
+
"id": "o9",
|
|
1513
|
+
"status": "final",
|
|
1514
|
+
"code": {
|
|
1515
|
+
"coding": [
|
|
1516
|
+
{
|
|
1517
|
+
"system": "http://loinc.org",
|
|
1518
|
+
"code": "14933-6",
|
|
1519
|
+
"display": "Urate [Moles/volume] in Serum or Plasma"
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
"system": "http://snomed.info/sct",
|
|
1523
|
+
"code": "86228006"
|
|
1524
|
+
}
|
|
1525
|
+
]
|
|
1526
|
+
},
|
|
1527
|
+
"subject": {
|
|
1528
|
+
"reference": "Patient/pat2"
|
|
1529
|
+
},
|
|
1530
|
+
"performer": [
|
|
1531
|
+
{
|
|
1532
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1533
|
+
"display": "Acme Laboratory, Inc"
|
|
1534
|
+
}
|
|
1535
|
+
],
|
|
1536
|
+
"valueQuantity": {
|
|
1537
|
+
"value": 0.39,
|
|
1538
|
+
"unit": "mmol/L"
|
|
1539
|
+
},
|
|
1540
|
+
"interpretation": {
|
|
1541
|
+
"coding": [
|
|
1542
|
+
{
|
|
1543
|
+
"system": "http://hl7.org/fhir/v2/0078",
|
|
1544
|
+
"code": "H"
|
|
1545
|
+
}
|
|
1546
|
+
]
|
|
1547
|
+
},
|
|
1548
|
+
"referenceRange": [
|
|
1549
|
+
{
|
|
1550
|
+
"low": {
|
|
1551
|
+
"value": 0.14,
|
|
1552
|
+
"unit": "mmol/L"
|
|
1553
|
+
},
|
|
1554
|
+
"high": {
|
|
1555
|
+
"value": 0.35,
|
|
1556
|
+
"unit": "mmol/L"
|
|
1557
|
+
}
|
|
1558
|
+
}
|
|
1559
|
+
]
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
"resourceType": "Observation",
|
|
1563
|
+
"id": "o10",
|
|
1564
|
+
"status": "final",
|
|
1565
|
+
"code": {
|
|
1566
|
+
"coding": [
|
|
1567
|
+
{
|
|
1568
|
+
"system": "http://loinc.org",
|
|
1569
|
+
"code": "14631-6",
|
|
1570
|
+
"display": "Bilirubin.total [Moles/volume] in Serum or Plasma"
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"system": "http://snomed.info/sct",
|
|
1574
|
+
"code": "27171005"
|
|
1575
|
+
}
|
|
1576
|
+
]
|
|
1577
|
+
},
|
|
1578
|
+
"subject": {
|
|
1579
|
+
"reference": "Patient/pat2"
|
|
1580
|
+
},
|
|
1581
|
+
"performer": [
|
|
1582
|
+
{
|
|
1583
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1584
|
+
"display": "Acme Laboratory, Inc"
|
|
1585
|
+
}
|
|
1586
|
+
],
|
|
1587
|
+
"valueQuantity": {
|
|
1588
|
+
"value": 7,
|
|
1589
|
+
"unit": "umol/L"
|
|
1590
|
+
},
|
|
1591
|
+
"referenceRange": [
|
|
1592
|
+
{
|
|
1593
|
+
"low": {
|
|
1594
|
+
"value": 2,
|
|
1595
|
+
"unit": "umol/L"
|
|
1596
|
+
},
|
|
1597
|
+
"high": {
|
|
1598
|
+
"value": 20,
|
|
1599
|
+
"unit": "umol/L"
|
|
1600
|
+
}
|
|
1601
|
+
}
|
|
1602
|
+
]
|
|
1603
|
+
},
|
|
1604
|
+
{
|
|
1605
|
+
"resourceType": "Observation",
|
|
1606
|
+
"id": "o11",
|
|
1607
|
+
"status": "final",
|
|
1608
|
+
"code": {
|
|
1609
|
+
"coding": [
|
|
1610
|
+
{
|
|
1611
|
+
"system": "http://loinc.org",
|
|
1612
|
+
"code": "14629-0",
|
|
1613
|
+
"display": "Bilirubin.direct [Moles/volume] in Serum or Plasma"
|
|
1614
|
+
},
|
|
1615
|
+
{
|
|
1616
|
+
"system": "http://snomed.info/sct",
|
|
1617
|
+
"code": "39748002"
|
|
1618
|
+
}
|
|
1619
|
+
]
|
|
1620
|
+
},
|
|
1621
|
+
"subject": {
|
|
1622
|
+
"reference": "Patient/pat2"
|
|
1623
|
+
},
|
|
1624
|
+
"performer": [
|
|
1625
|
+
{
|
|
1626
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1627
|
+
"display": "Acme Laboratory, Inc"
|
|
1628
|
+
}
|
|
1629
|
+
],
|
|
1630
|
+
"valueQuantity": {
|
|
1631
|
+
"value": 3,
|
|
1632
|
+
"unit": "umol/L"
|
|
1633
|
+
},
|
|
1634
|
+
"referenceRange": [
|
|
1635
|
+
{
|
|
1636
|
+
"low": {
|
|
1637
|
+
"value": 0,
|
|
1638
|
+
"unit": "umol/L"
|
|
1639
|
+
},
|
|
1640
|
+
"high": {
|
|
1641
|
+
"value": 8,
|
|
1642
|
+
"unit": "umol/L"
|
|
1643
|
+
}
|
|
1644
|
+
}
|
|
1645
|
+
]
|
|
1646
|
+
},
|
|
1647
|
+
{
|
|
1648
|
+
"resourceType": "Observation",
|
|
1649
|
+
"id": "o12",
|
|
1650
|
+
"status": "final",
|
|
1651
|
+
"code": {
|
|
1652
|
+
"coding": [
|
|
1653
|
+
{
|
|
1654
|
+
"system": "http://loinc.org",
|
|
1655
|
+
"code": "6768-6",
|
|
1656
|
+
"display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
|
|
1657
|
+
},
|
|
1658
|
+
{
|
|
1659
|
+
"system": "http://snomed.info/sct",
|
|
1660
|
+
"code": "88810008"
|
|
1661
|
+
}
|
|
1662
|
+
]
|
|
1663
|
+
},
|
|
1664
|
+
"subject": {
|
|
1665
|
+
"reference": "Patient/pat2"
|
|
1666
|
+
},
|
|
1667
|
+
"performer": [
|
|
1668
|
+
{
|
|
1669
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1670
|
+
"display": "Acme Laboratory, Inc"
|
|
1671
|
+
}
|
|
1672
|
+
],
|
|
1673
|
+
"valueQuantity": {
|
|
1674
|
+
"value": 108,
|
|
1675
|
+
"unit": "U/L"
|
|
1676
|
+
},
|
|
1677
|
+
"referenceRange": [
|
|
1678
|
+
{
|
|
1679
|
+
"low": {
|
|
1680
|
+
"value": 30,
|
|
1681
|
+
"unit": "U/L"
|
|
1682
|
+
},
|
|
1683
|
+
"high": {
|
|
1684
|
+
"value": 115,
|
|
1685
|
+
"unit": "U/L"
|
|
1686
|
+
}
|
|
1687
|
+
}
|
|
1688
|
+
]
|
|
1689
|
+
},
|
|
1690
|
+
{
|
|
1691
|
+
"resourceType": "Observation",
|
|
1692
|
+
"id": "o13",
|
|
1693
|
+
"status": "final",
|
|
1694
|
+
"code": {
|
|
1695
|
+
"coding": [
|
|
1696
|
+
{
|
|
1697
|
+
"system": "http://loinc.org",
|
|
1698
|
+
"code": "2324-2",
|
|
1699
|
+
"display": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma"
|
|
1700
|
+
},
|
|
1701
|
+
{
|
|
1702
|
+
"system": "http://snomed.info/sct",
|
|
1703
|
+
"code": "69480007"
|
|
1704
|
+
}
|
|
1705
|
+
]
|
|
1706
|
+
},
|
|
1707
|
+
"subject": {
|
|
1708
|
+
"reference": "Patient/pat2"
|
|
1709
|
+
},
|
|
1710
|
+
"performer": [
|
|
1711
|
+
{
|
|
1712
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1713
|
+
"display": "Acme Laboratory, Inc"
|
|
1714
|
+
}
|
|
1715
|
+
],
|
|
1716
|
+
"valueQuantity": {
|
|
1717
|
+
"value": 35,
|
|
1718
|
+
"unit": "U/L"
|
|
1719
|
+
},
|
|
1720
|
+
"referenceRange": [
|
|
1721
|
+
{
|
|
1722
|
+
"low": {
|
|
1723
|
+
"value": 0,
|
|
1724
|
+
"unit": "U/L"
|
|
1725
|
+
},
|
|
1726
|
+
"high": {
|
|
1727
|
+
"value": 45,
|
|
1728
|
+
"unit": "U/L"
|
|
1729
|
+
}
|
|
1730
|
+
}
|
|
1731
|
+
]
|
|
1732
|
+
},
|
|
1733
|
+
{
|
|
1734
|
+
"resourceType": "Observation",
|
|
1735
|
+
"id": "o14",
|
|
1736
|
+
"status": "final",
|
|
1737
|
+
"code": {
|
|
1738
|
+
"coding": [
|
|
1739
|
+
{
|
|
1740
|
+
"system": "http://loinc.org",
|
|
1741
|
+
"code": "1742-6",
|
|
1742
|
+
"display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
|
|
1743
|
+
},
|
|
1744
|
+
{
|
|
1745
|
+
"system": "http://snomed.info/sct",
|
|
1746
|
+
"code": "34608000"
|
|
1747
|
+
}
|
|
1748
|
+
]
|
|
1749
|
+
},
|
|
1750
|
+
"subject": {
|
|
1751
|
+
"reference": "Patient/pat2"
|
|
1752
|
+
},
|
|
1753
|
+
"performer": [
|
|
1754
|
+
{
|
|
1755
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1756
|
+
"display": "Acme Laboratory, Inc"
|
|
1757
|
+
}
|
|
1758
|
+
],
|
|
1759
|
+
"valueQuantity": {
|
|
1760
|
+
"value": 54,
|
|
1761
|
+
"unit": "U/L"
|
|
1762
|
+
},
|
|
1763
|
+
"interpretation": {
|
|
1764
|
+
"coding": [
|
|
1765
|
+
{
|
|
1766
|
+
"system": "http://hl7.org/fhir/v2/0078",
|
|
1767
|
+
"code": "H"
|
|
1768
|
+
}
|
|
1769
|
+
]
|
|
1770
|
+
},
|
|
1771
|
+
"referenceRange": [
|
|
1772
|
+
{
|
|
1773
|
+
"low": {
|
|
1774
|
+
"value": 0,
|
|
1775
|
+
"unit": "U/L"
|
|
1776
|
+
},
|
|
1777
|
+
"high": {
|
|
1778
|
+
"value": 45,
|
|
1779
|
+
"unit": "U/L"
|
|
1780
|
+
}
|
|
1781
|
+
}
|
|
1782
|
+
]
|
|
1783
|
+
},
|
|
1784
|
+
{
|
|
1785
|
+
"resourceType": "Observation",
|
|
1786
|
+
"id": "o15",
|
|
1787
|
+
"status": "final",
|
|
1788
|
+
"code": {
|
|
1789
|
+
"coding": [
|
|
1790
|
+
{
|
|
1791
|
+
"system": "http://loinc.org",
|
|
1792
|
+
"code": "1920-8",
|
|
1793
|
+
"display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
|
|
1794
|
+
},
|
|
1795
|
+
{
|
|
1796
|
+
"system": "http://snomed.info/sct",
|
|
1797
|
+
"code": "45896001"
|
|
1798
|
+
}
|
|
1799
|
+
]
|
|
1800
|
+
},
|
|
1801
|
+
"subject": {
|
|
1802
|
+
"reference": "Patient/pat2"
|
|
1803
|
+
},
|
|
1804
|
+
"performer": [
|
|
1805
|
+
{
|
|
1806
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1807
|
+
"display": "Acme Laboratory, Inc"
|
|
1808
|
+
}
|
|
1809
|
+
],
|
|
1810
|
+
"valueQuantity": {
|
|
1811
|
+
"value": 30,
|
|
1812
|
+
"unit": "U/L"
|
|
1813
|
+
},
|
|
1814
|
+
"referenceRange": [
|
|
1815
|
+
{
|
|
1816
|
+
"low": {
|
|
1817
|
+
"value": 0,
|
|
1818
|
+
"unit": "U/L"
|
|
1819
|
+
},
|
|
1820
|
+
"high": {
|
|
1821
|
+
"value": 41,
|
|
1822
|
+
"unit": "U/L"
|
|
1823
|
+
}
|
|
1824
|
+
}
|
|
1825
|
+
]
|
|
1826
|
+
},
|
|
1827
|
+
{
|
|
1828
|
+
"resourceType": "Observation",
|
|
1829
|
+
"id": "o16",
|
|
1830
|
+
"status": "final",
|
|
1831
|
+
"code": {
|
|
1832
|
+
"coding": [
|
|
1833
|
+
{
|
|
1834
|
+
"system": "http://loinc.org",
|
|
1835
|
+
"code": "2532-0",
|
|
1836
|
+
"display": "Lactate dehydrogenase [Enzymatic activity/volume] in Serum or Plasma"
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
"system": "http://snomed.info/sct",
|
|
1840
|
+
"code": "11274001"
|
|
1841
|
+
}
|
|
1842
|
+
]
|
|
1843
|
+
},
|
|
1844
|
+
"subject": {
|
|
1845
|
+
"reference": "Patient/pat2"
|
|
1846
|
+
},
|
|
1847
|
+
"performer": [
|
|
1848
|
+
{
|
|
1849
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1850
|
+
"display": "Acme Laboratory, Inc"
|
|
1851
|
+
}
|
|
1852
|
+
],
|
|
1853
|
+
"valueQuantity": {
|
|
1854
|
+
"value": 131,
|
|
1855
|
+
"unit": "U/L"
|
|
1856
|
+
},
|
|
1857
|
+
"referenceRange": [
|
|
1858
|
+
{
|
|
1859
|
+
"low": {
|
|
1860
|
+
"value": 80,
|
|
1861
|
+
"unit": "U/L"
|
|
1862
|
+
},
|
|
1863
|
+
"high": {
|
|
1864
|
+
"value": 250,
|
|
1865
|
+
"unit": "U/L"
|
|
1866
|
+
}
|
|
1867
|
+
}
|
|
1868
|
+
]
|
|
1869
|
+
},
|
|
1870
|
+
{
|
|
1871
|
+
"resourceType": "Observation",
|
|
1872
|
+
"id": "o17",
|
|
1873
|
+
"status": "final",
|
|
1874
|
+
"code": {
|
|
1875
|
+
"coding": [
|
|
1876
|
+
{
|
|
1877
|
+
"system": "http://loinc.org",
|
|
1878
|
+
"code": "2000-8",
|
|
1879
|
+
"display": "Calcium [Moles/volume] in Serum or Plasma"
|
|
1880
|
+
},
|
|
1881
|
+
{
|
|
1882
|
+
"system": "http://snomed.info/sct",
|
|
1883
|
+
"code": "71878006"
|
|
1884
|
+
}
|
|
1885
|
+
]
|
|
1886
|
+
},
|
|
1887
|
+
"subject": {
|
|
1888
|
+
"reference": "Patient/pat2"
|
|
1889
|
+
},
|
|
1890
|
+
"performer": [
|
|
1891
|
+
{
|
|
1892
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1893
|
+
"display": "Acme Laboratory, Inc"
|
|
1894
|
+
}
|
|
1895
|
+
],
|
|
1896
|
+
"valueQuantity": {
|
|
1897
|
+
"value": 2.38,
|
|
1898
|
+
"unit": "mmol/L"
|
|
1899
|
+
},
|
|
1900
|
+
"referenceRange": [
|
|
1901
|
+
{
|
|
1902
|
+
"low": {
|
|
1903
|
+
"value": 2.25,
|
|
1904
|
+
"unit": "mmol/L"
|
|
1905
|
+
},
|
|
1906
|
+
"high": {
|
|
1907
|
+
"value": 2.65,
|
|
1908
|
+
"unit": "mmol/L"
|
|
1909
|
+
}
|
|
1910
|
+
}
|
|
1911
|
+
]
|
|
1912
|
+
},
|
|
1913
|
+
{
|
|
1914
|
+
"resourceType": "Observation",
|
|
1915
|
+
"id": "o18",
|
|
1916
|
+
"status": "final",
|
|
1917
|
+
"code": {
|
|
1918
|
+
"coding": [
|
|
1919
|
+
{
|
|
1920
|
+
"system": "http://loinc.org",
|
|
1921
|
+
"code": "13959-2",
|
|
1922
|
+
"display": "Calcium.ionized [Moles/volume] in Serum or Plasma by calculation"
|
|
1923
|
+
},
|
|
1924
|
+
{
|
|
1925
|
+
"system": "http://snomed.info/sct",
|
|
1926
|
+
"code": "166708003"
|
|
1927
|
+
}
|
|
1928
|
+
]
|
|
1929
|
+
},
|
|
1930
|
+
"subject": {
|
|
1931
|
+
"reference": "Patient/pat2"
|
|
1932
|
+
},
|
|
1933
|
+
"performer": [
|
|
1934
|
+
{
|
|
1935
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1936
|
+
"display": "Acme Laboratory, Inc"
|
|
1937
|
+
}
|
|
1938
|
+
],
|
|
1939
|
+
"valueQuantity": {
|
|
1940
|
+
"value": 2.39,
|
|
1941
|
+
"unit": "mmol/L"
|
|
1942
|
+
},
|
|
1943
|
+
"referenceRange": [
|
|
1944
|
+
{
|
|
1945
|
+
"low": {
|
|
1946
|
+
"value": 2.25,
|
|
1947
|
+
"unit": "mmol/L"
|
|
1948
|
+
},
|
|
1949
|
+
"high": {
|
|
1950
|
+
"value": 2.65,
|
|
1951
|
+
"unit": "mmol/L"
|
|
1952
|
+
}
|
|
1953
|
+
}
|
|
1954
|
+
]
|
|
1955
|
+
},
|
|
1956
|
+
{
|
|
1957
|
+
"resourceType": "Observation",
|
|
1958
|
+
"id": "o19",
|
|
1959
|
+
"status": "final",
|
|
1960
|
+
"code": {
|
|
1961
|
+
"coding": [
|
|
1962
|
+
{
|
|
1963
|
+
"system": "http://loinc.org",
|
|
1964
|
+
"code": "14879-1",
|
|
1965
|
+
"display": "Phosphate [Moles/volume] in Serum or Plasma"
|
|
1966
|
+
},
|
|
1967
|
+
{
|
|
1968
|
+
"system": "http://snomed.info/sct",
|
|
1969
|
+
"code": "104866001"
|
|
1970
|
+
}
|
|
1971
|
+
]
|
|
1972
|
+
},
|
|
1973
|
+
"subject": {
|
|
1974
|
+
"reference": "Patient/pat2"
|
|
1975
|
+
},
|
|
1976
|
+
"performer": [
|
|
1977
|
+
{
|
|
1978
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
1979
|
+
"display": "Acme Laboratory, Inc"
|
|
1980
|
+
}
|
|
1981
|
+
],
|
|
1982
|
+
"valueQuantity": {
|
|
1983
|
+
"value": 1.5,
|
|
1984
|
+
"unit": "mmol/L"
|
|
1985
|
+
},
|
|
1986
|
+
"referenceRange": [
|
|
1987
|
+
{
|
|
1988
|
+
"low": {
|
|
1989
|
+
"value": 0.8,
|
|
1990
|
+
"unit": "mmol/L"
|
|
1991
|
+
},
|
|
1992
|
+
"high": {
|
|
1993
|
+
"value": 1.5,
|
|
1994
|
+
"unit": "mmol/L"
|
|
1995
|
+
}
|
|
1996
|
+
}
|
|
1997
|
+
]
|
|
1998
|
+
},
|
|
1999
|
+
{
|
|
2000
|
+
"resourceType": "Observation",
|
|
2001
|
+
"id": "o20",
|
|
2002
|
+
"status": "final",
|
|
2003
|
+
"code": {
|
|
2004
|
+
"coding": [
|
|
2005
|
+
{
|
|
2006
|
+
"system": "http://loinc.org",
|
|
2007
|
+
"code": "2885-2",
|
|
2008
|
+
"display": "Protein [Mass/volume] in Serum or Plasma"
|
|
2009
|
+
},
|
|
2010
|
+
{
|
|
2011
|
+
"system": "http://snomed.info/sct",
|
|
2012
|
+
"code": "74040009"
|
|
2013
|
+
}
|
|
2014
|
+
]
|
|
2015
|
+
},
|
|
2016
|
+
"subject": {
|
|
2017
|
+
"reference": "Patient/pat2"
|
|
2018
|
+
},
|
|
2019
|
+
"performer": [
|
|
2020
|
+
{
|
|
2021
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
2022
|
+
"display": "Acme Laboratory, Inc"
|
|
2023
|
+
}
|
|
2024
|
+
],
|
|
2025
|
+
"valueQuantity": {
|
|
2026
|
+
"value": 67,
|
|
2027
|
+
"unit": "g/L"
|
|
2028
|
+
},
|
|
2029
|
+
"referenceRange": [
|
|
2030
|
+
{
|
|
2031
|
+
"low": {
|
|
2032
|
+
"value": 60,
|
|
2033
|
+
"unit": "g/L"
|
|
2034
|
+
},
|
|
2035
|
+
"high": {
|
|
2036
|
+
"value": 82,
|
|
2037
|
+
"unit": "g/L"
|
|
2038
|
+
}
|
|
2039
|
+
}
|
|
2040
|
+
]
|
|
2041
|
+
},
|
|
2042
|
+
{
|
|
2043
|
+
"resourceType": "Observation",
|
|
2044
|
+
"id": "o21",
|
|
2045
|
+
"status": "final",
|
|
2046
|
+
"code": {
|
|
2047
|
+
"coding": [
|
|
2048
|
+
{
|
|
2049
|
+
"system": "http://loinc.org",
|
|
2050
|
+
"code": "1751-7",
|
|
2051
|
+
"display": "Albumin [Mass/volume] in Serum or Plasma"
|
|
2052
|
+
},
|
|
2053
|
+
{
|
|
2054
|
+
"system": "http://snomed.info/sct",
|
|
2055
|
+
"code": "104485008"
|
|
2056
|
+
}
|
|
2057
|
+
]
|
|
2058
|
+
},
|
|
2059
|
+
"subject": {
|
|
2060
|
+
"reference": "Patient/pat2"
|
|
2061
|
+
},
|
|
2062
|
+
"performer": [
|
|
2063
|
+
{
|
|
2064
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
2065
|
+
"display": "Acme Laboratory, Inc"
|
|
2066
|
+
}
|
|
2067
|
+
],
|
|
2068
|
+
"valueQuantity": {
|
|
2069
|
+
"value": 42,
|
|
2070
|
+
"unit": "g/L"
|
|
2071
|
+
},
|
|
2072
|
+
"referenceRange": [
|
|
2073
|
+
{
|
|
2074
|
+
"low": {
|
|
2075
|
+
"value": 35,
|
|
2076
|
+
"unit": "g/L"
|
|
2077
|
+
},
|
|
2078
|
+
"high": {
|
|
2079
|
+
"value": 50,
|
|
2080
|
+
"unit": "g/L"
|
|
2081
|
+
}
|
|
2082
|
+
}
|
|
2083
|
+
]
|
|
2084
|
+
},
|
|
2085
|
+
{
|
|
2086
|
+
"resourceType": "Observation",
|
|
2087
|
+
"id": "o22",
|
|
2088
|
+
"status": "final",
|
|
2089
|
+
"code": {
|
|
2090
|
+
"coding": [
|
|
2091
|
+
{
|
|
2092
|
+
"system": "http://loinc.org",
|
|
2093
|
+
"code": "10834-0",
|
|
2094
|
+
"display": "Globulin [Mass/volume] in Serum by calculation"
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
"system": "http://snomed.info/sct",
|
|
2098
|
+
"code": "104979009"
|
|
2099
|
+
}
|
|
2100
|
+
]
|
|
2101
|
+
},
|
|
2102
|
+
"subject": {
|
|
2103
|
+
"reference": "Patient/pat2"
|
|
2104
|
+
},
|
|
2105
|
+
"performer": [
|
|
2106
|
+
{
|
|
2107
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
2108
|
+
"display": "Acme Laboratory, Inc"
|
|
2109
|
+
}
|
|
2110
|
+
],
|
|
2111
|
+
"valueQuantity": {
|
|
2112
|
+
"value": 25,
|
|
2113
|
+
"unit": "g/L"
|
|
2114
|
+
},
|
|
2115
|
+
"referenceRange": [
|
|
2116
|
+
{
|
|
2117
|
+
"low": {
|
|
2118
|
+
"value": 20,
|
|
2119
|
+
"unit": "g/L"
|
|
2120
|
+
},
|
|
2121
|
+
"high": {
|
|
2122
|
+
"value": 40,
|
|
2123
|
+
"unit": "g/L"
|
|
2124
|
+
}
|
|
2125
|
+
}
|
|
2126
|
+
]
|
|
2127
|
+
},
|
|
2128
|
+
{
|
|
2129
|
+
"resourceType": "Observation",
|
|
2130
|
+
"id": "p3",
|
|
2131
|
+
"status": "final",
|
|
2132
|
+
"code": {
|
|
2133
|
+
"coding": [
|
|
2134
|
+
{
|
|
2135
|
+
"system": "http://loinc.org",
|
|
2136
|
+
"code": "24357-6",
|
|
2137
|
+
"display": "Urinalysis macro (dipstick) panel - Urine"
|
|
2138
|
+
}
|
|
2139
|
+
]
|
|
2140
|
+
},
|
|
2141
|
+
"effectiveDateTime": "2015-08-16T06:40:17Z",
|
|
2142
|
+
"issued": "2015-08-17T06:40:17Z",
|
|
2143
|
+
"performer": [
|
|
2144
|
+
{
|
|
2145
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
2146
|
+
"display": "Acme Laboratory, Inc"
|
|
2147
|
+
}
|
|
2148
|
+
],
|
|
2149
|
+
"specimen": {
|
|
2150
|
+
"reference": "#urine",
|
|
2151
|
+
"display": "Urine Sample"
|
|
2152
|
+
},
|
|
2153
|
+
"related": [
|
|
2154
|
+
{
|
|
2155
|
+
"type": "has-member",
|
|
2156
|
+
"target": {
|
|
2157
|
+
"reference": "#u1"
|
|
2158
|
+
}
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
"type": "has-member",
|
|
2162
|
+
"target": {
|
|
2163
|
+
"reference": "#u2"
|
|
2164
|
+
}
|
|
2165
|
+
},
|
|
2166
|
+
{
|
|
2167
|
+
"type": "has-member",
|
|
2168
|
+
"target": {
|
|
2169
|
+
"reference": "#u3"
|
|
2170
|
+
}
|
|
2171
|
+
},
|
|
2172
|
+
{
|
|
2173
|
+
"type": "has-member",
|
|
2174
|
+
"target": {
|
|
2175
|
+
"reference": "#u4"
|
|
2176
|
+
}
|
|
2177
|
+
},
|
|
2178
|
+
{
|
|
2179
|
+
"type": "has-member",
|
|
2180
|
+
"target": {
|
|
2181
|
+
"reference": "#u5"
|
|
2182
|
+
}
|
|
2183
|
+
},
|
|
2184
|
+
{
|
|
2185
|
+
"type": "has-member",
|
|
2186
|
+
"target": {
|
|
2187
|
+
"reference": "#u6"
|
|
2188
|
+
}
|
|
2189
|
+
},
|
|
2190
|
+
{
|
|
2191
|
+
"type": "has-member",
|
|
2192
|
+
"target": {
|
|
2193
|
+
"reference": "#u7"
|
|
2194
|
+
}
|
|
2195
|
+
},
|
|
2196
|
+
{
|
|
2197
|
+
"type": "has-member",
|
|
2198
|
+
"target": {
|
|
2199
|
+
"reference": "#u8"
|
|
2200
|
+
}
|
|
2201
|
+
},
|
|
2202
|
+
{
|
|
2203
|
+
"type": "has-member",
|
|
2204
|
+
"target": {
|
|
2205
|
+
"reference": "#u9"
|
|
2206
|
+
}
|
|
2207
|
+
}
|
|
2208
|
+
]
|
|
2209
|
+
},
|
|
2210
|
+
{
|
|
2211
|
+
"resourceType": "Observation",
|
|
2212
|
+
"id": "u1",
|
|
2213
|
+
"status": "final",
|
|
2214
|
+
"code": {
|
|
2215
|
+
"coding": [
|
|
2216
|
+
{
|
|
2217
|
+
"system": "http://loinc.org",
|
|
2218
|
+
"code": "2756-5",
|
|
2219
|
+
"display": "pH of Urine"
|
|
2220
|
+
}
|
|
2221
|
+
]
|
|
2222
|
+
},
|
|
2223
|
+
"subject": {
|
|
2224
|
+
"reference": "Patient/pat2"
|
|
2225
|
+
},
|
|
2226
|
+
"effectiveDateTime": "2015-08-16T06:40:17Z",
|
|
2227
|
+
"issued": "2015-08-17T06:40:17Z",
|
|
2228
|
+
"performer": [
|
|
2229
|
+
{
|
|
2230
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
2231
|
+
"display": "Acme Laboratory, Inc"
|
|
2232
|
+
}
|
|
2233
|
+
],
|
|
2234
|
+
"valueQuantity": {
|
|
2235
|
+
"value": 5.0,
|
|
2236
|
+
"unit": "pH"
|
|
2237
|
+
},
|
|
2238
|
+
"specimen": {
|
|
2239
|
+
"reference": "#urine",
|
|
2240
|
+
"display": "Urine Sample"
|
|
2241
|
+
}
|
|
2242
|
+
},
|
|
2243
|
+
{
|
|
2244
|
+
"resourceType": "Observation",
|
|
2245
|
+
"id": "u2",
|
|
2246
|
+
"status": "final",
|
|
2247
|
+
"code": {
|
|
2248
|
+
"coding": [
|
|
2249
|
+
{
|
|
2250
|
+
"system": "http://loinc.org",
|
|
2251
|
+
"code": "2887-8",
|
|
2252
|
+
"display": "Protein [Presence] in Urine"
|
|
2253
|
+
}
|
|
2254
|
+
]
|
|
2255
|
+
},
|
|
2256
|
+
"subject": {
|
|
2257
|
+
"reference": "Patient/pat2"
|
|
2258
|
+
},
|
|
2259
|
+
"effectiveDateTime": "2015-08-16T06:40:17Z",
|
|
2260
|
+
"issued": "2015-08-17T06:40:17Z",
|
|
2261
|
+
"performer": [
|
|
2262
|
+
{
|
|
2263
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
2264
|
+
"display": "Acme Laboratory, Inc"
|
|
2265
|
+
}
|
|
2266
|
+
],
|
|
2267
|
+
"valueCodeableConcept": {
|
|
2268
|
+
"coding": [
|
|
2269
|
+
{
|
|
2270
|
+
"system": "http://snomed.info/sct",
|
|
2271
|
+
"code": "260385009",
|
|
2272
|
+
"display": "Negative"
|
|
2273
|
+
}
|
|
2274
|
+
]
|
|
2275
|
+
},
|
|
2276
|
+
"specimen": {
|
|
2277
|
+
"reference": "#urine",
|
|
2278
|
+
"display": "Urine Sample"
|
|
2279
|
+
}
|
|
2280
|
+
},
|
|
2281
|
+
{
|
|
2282
|
+
"resourceType": "Observation",
|
|
2283
|
+
"id": "u3",
|
|
2284
|
+
"status": "final",
|
|
2285
|
+
"code": {
|
|
2286
|
+
"coding": [
|
|
2287
|
+
{
|
|
2288
|
+
"system": "http://loinc.org",
|
|
2289
|
+
"code": "2965-2",
|
|
2290
|
+
"display": "Specific gravity of Urine"
|
|
2291
|
+
}
|
|
2292
|
+
]
|
|
2293
|
+
},
|
|
2294
|
+
"subject": {
|
|
2295
|
+
"reference": "Patient/pat2"
|
|
2296
|
+
},
|
|
2297
|
+
"effectiveDateTime": "2015-08-16T06:40:17Z",
|
|
2298
|
+
"issued": "2015-08-17T06:40:17Z",
|
|
2299
|
+
"performer": [
|
|
2300
|
+
{
|
|
2301
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
2302
|
+
"display": "Acme Laboratory, Inc"
|
|
2303
|
+
}
|
|
2304
|
+
],
|
|
2305
|
+
"valueQuantity": {
|
|
2306
|
+
"value": 1.009
|
|
2307
|
+
},
|
|
2308
|
+
"specimen": {
|
|
2309
|
+
"reference": "#urine",
|
|
2310
|
+
"display": "Urine Sample"
|
|
2311
|
+
}
|
|
2312
|
+
},
|
|
2313
|
+
{
|
|
2314
|
+
"resourceType": "Observation",
|
|
2315
|
+
"id": "u4",
|
|
2316
|
+
"status": "final",
|
|
2317
|
+
"code": {
|
|
2318
|
+
"coding": [
|
|
2319
|
+
{
|
|
2320
|
+
"system": "http://loinc.org",
|
|
2321
|
+
"code": "33051-4",
|
|
2322
|
+
"display": "Erythrocytes [Presence] in Urine"
|
|
2323
|
+
}
|
|
2324
|
+
]
|
|
2325
|
+
},
|
|
2326
|
+
"subject": {
|
|
2327
|
+
"reference": "Patient/pat2"
|
|
2328
|
+
},
|
|
2329
|
+
"effectiveDateTime": "2015-08-16T06:40:17Z",
|
|
2330
|
+
"issued": "2015-08-17T06:40:17Z",
|
|
2331
|
+
"performer": [
|
|
2332
|
+
{
|
|
2333
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
2334
|
+
"display": "Acme Laboratory, Inc"
|
|
2335
|
+
}
|
|
2336
|
+
],
|
|
2337
|
+
"valueCodeableConcept": {
|
|
2338
|
+
"coding": [
|
|
2339
|
+
{
|
|
2340
|
+
"system": "http://snomed.info/sct",
|
|
2341
|
+
"code": "260385009",
|
|
2342
|
+
"display": "Negative"
|
|
2343
|
+
}
|
|
2344
|
+
]
|
|
2345
|
+
},
|
|
2346
|
+
"specimen": {
|
|
2347
|
+
"reference": "#urine",
|
|
2348
|
+
"display": "Urine Sample"
|
|
2349
|
+
}
|
|
2350
|
+
},
|
|
2351
|
+
{
|
|
2352
|
+
"resourceType": "Observation",
|
|
2353
|
+
"id": "u5",
|
|
2354
|
+
"status": "final",
|
|
2355
|
+
"code": {
|
|
2356
|
+
"coding": [
|
|
2357
|
+
{
|
|
2358
|
+
"system": "http://loinc.org",
|
|
2359
|
+
"code": "2349-9",
|
|
2360
|
+
"display": "Glucose [Presence] in Urine"
|
|
2361
|
+
}
|
|
2362
|
+
]
|
|
2363
|
+
},
|
|
2364
|
+
"subject": {
|
|
2365
|
+
"reference": "Patient/pat2"
|
|
2366
|
+
},
|
|
2367
|
+
"effectiveDateTime": "2015-08-16T06:40:17Z",
|
|
2368
|
+
"issued": "2015-08-17T06:40:17Z",
|
|
2369
|
+
"performer": [
|
|
2370
|
+
{
|
|
2371
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
2372
|
+
"display": "Acme Laboratory, Inc"
|
|
2373
|
+
}
|
|
2374
|
+
],
|
|
2375
|
+
"valueCodeableConcept": {
|
|
2376
|
+
"coding": [
|
|
2377
|
+
{
|
|
2378
|
+
"system": "http://snomed.info/sct",
|
|
2379
|
+
"code": "260385009",
|
|
2380
|
+
"display": "Negative"
|
|
2381
|
+
}
|
|
2382
|
+
]
|
|
2383
|
+
},
|
|
2384
|
+
"specimen": {
|
|
2385
|
+
"reference": "#urine",
|
|
2386
|
+
"display": "Urine Sample"
|
|
2387
|
+
}
|
|
2388
|
+
},
|
|
2389
|
+
{
|
|
2390
|
+
"resourceType": "Observation",
|
|
2391
|
+
"id": "u6",
|
|
2392
|
+
"status": "final",
|
|
2393
|
+
"code": {
|
|
2394
|
+
"coding": [
|
|
2395
|
+
{
|
|
2396
|
+
"system": "http://loinc.org",
|
|
2397
|
+
"code": "33052-2",
|
|
2398
|
+
"display": "Leukocytes [Presence] in Urine"
|
|
2399
|
+
}
|
|
2400
|
+
]
|
|
2401
|
+
},
|
|
2402
|
+
"subject": {
|
|
2403
|
+
"reference": "Patient/pat2"
|
|
2404
|
+
},
|
|
2405
|
+
"effectiveDateTime": "2015-08-16T06:40:17Z",
|
|
2406
|
+
"issued": "2015-08-17T06:40:17Z",
|
|
2407
|
+
"performer": [
|
|
2408
|
+
{
|
|
2409
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
2410
|
+
"display": "Acme Laboratory, Inc"
|
|
2411
|
+
}
|
|
2412
|
+
],
|
|
2413
|
+
"valueCodeableConcept": {
|
|
2414
|
+
"coding": [
|
|
2415
|
+
{
|
|
2416
|
+
"system": "http://snomed.info/sct",
|
|
2417
|
+
"code": "260385009",
|
|
2418
|
+
"display": "Negative"
|
|
2419
|
+
}
|
|
2420
|
+
]
|
|
2421
|
+
},
|
|
2422
|
+
"specimen": {
|
|
2423
|
+
"reference": "#urine",
|
|
2424
|
+
"display": "Urine Sample"
|
|
2425
|
+
}
|
|
2426
|
+
},
|
|
2427
|
+
{
|
|
2428
|
+
"resourceType": "Observation",
|
|
2429
|
+
"id": "u7",
|
|
2430
|
+
"status": "final",
|
|
2431
|
+
"code": {
|
|
2432
|
+
"coding": [
|
|
2433
|
+
{
|
|
2434
|
+
"system": "http://loinc.org",
|
|
2435
|
+
"code": "30405-5",
|
|
2436
|
+
"display": "Leukocytes [#/volume] in Urine"
|
|
2437
|
+
}
|
|
2438
|
+
]
|
|
2439
|
+
},
|
|
2440
|
+
"subject": {
|
|
2441
|
+
"reference": "Patient/pat2"
|
|
2442
|
+
},
|
|
2443
|
+
"effectiveDateTime": "2015-08-16T06:40:17Z",
|
|
2444
|
+
"issued": "2015-08-17T06:40:17Z",
|
|
2445
|
+
"performer": [
|
|
2446
|
+
{
|
|
2447
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
2448
|
+
"display": "Acme Laboratory, Inc"
|
|
2449
|
+
}
|
|
2450
|
+
],
|
|
2451
|
+
"valueQuantity": {
|
|
2452
|
+
"value": 1,
|
|
2453
|
+
"unit": "/uL"
|
|
2454
|
+
},
|
|
2455
|
+
"specimen": {
|
|
2456
|
+
"reference": "#urine",
|
|
2457
|
+
"display": "Urine Sample"
|
|
2458
|
+
}
|
|
2459
|
+
},
|
|
2460
|
+
{
|
|
2461
|
+
"resourceType": "Observation",
|
|
2462
|
+
"id": "u8",
|
|
2463
|
+
"status": "final",
|
|
2464
|
+
"code": {
|
|
2465
|
+
"coding": [
|
|
2466
|
+
{
|
|
2467
|
+
"system": "http://loinc.org",
|
|
2468
|
+
"code": "30391-7",
|
|
2469
|
+
"display": "Erythocytes [#/volume] in Urine"
|
|
2470
|
+
}
|
|
2471
|
+
]
|
|
2472
|
+
},
|
|
2473
|
+
"subject": {
|
|
2474
|
+
"reference": "Patient/pat2"
|
|
2475
|
+
},
|
|
2476
|
+
"effectiveDateTime": "2015-08-16T06:40:17Z",
|
|
2477
|
+
"issued": "2015-08-17T06:40:17Z",
|
|
2478
|
+
"performer": [
|
|
2479
|
+
{
|
|
2480
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
2481
|
+
"display": "Acme Laboratory, Inc"
|
|
2482
|
+
}
|
|
2483
|
+
],
|
|
2484
|
+
"valueQuantity": {
|
|
2485
|
+
"value": 1,
|
|
2486
|
+
"comparator": "<",
|
|
2487
|
+
"unit": "/uL"
|
|
2488
|
+
},
|
|
2489
|
+
"specimen": {
|
|
2490
|
+
"reference": "#urine",
|
|
2491
|
+
"display": "Urine Sample"
|
|
2492
|
+
}
|
|
2493
|
+
},
|
|
2494
|
+
{
|
|
2495
|
+
"resourceType": "Observation",
|
|
2496
|
+
"id": "u9",
|
|
2497
|
+
"status": "final",
|
|
2498
|
+
"code": {
|
|
2499
|
+
"coding": [
|
|
2500
|
+
{
|
|
2501
|
+
"system": "http://loinc.org",
|
|
2502
|
+
"code": "13654-9",
|
|
2503
|
+
"display": "Epithelial cells.squamous [#/volume] in Urine sediment"
|
|
2504
|
+
}
|
|
2505
|
+
]
|
|
2506
|
+
},
|
|
2507
|
+
"subject": {
|
|
2508
|
+
"reference": "Patient/pat2"
|
|
2509
|
+
},
|
|
2510
|
+
"effectiveDateTime": "2015-08-16T06:40:17Z",
|
|
2511
|
+
"issued": "2015-08-17T06:40:17Z",
|
|
2512
|
+
"performer": [
|
|
2513
|
+
{
|
|
2514
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
2515
|
+
"display": "Acme Laboratory, Inc"
|
|
2516
|
+
}
|
|
2517
|
+
],
|
|
2518
|
+
"valueQuantity": {
|
|
2519
|
+
"value": 1,
|
|
2520
|
+
"comparator": "<",
|
|
2521
|
+
"unit": "/mL"
|
|
2522
|
+
},
|
|
2523
|
+
"specimen": {
|
|
2524
|
+
"reference": "#urine",
|
|
2525
|
+
"display": "Urine Sample"
|
|
2526
|
+
}
|
|
2527
|
+
}
|
|
2528
|
+
],
|
|
2529
|
+
"identifier": [
|
|
2530
|
+
{
|
|
2531
|
+
"system": "http://acme.com/lab/reports",
|
|
2532
|
+
"value": "ghp-example"
|
|
2533
|
+
}
|
|
2534
|
+
],
|
|
2535
|
+
"status": "final",
|
|
2536
|
+
"code": {
|
|
2537
|
+
"coding": [
|
|
2538
|
+
{
|
|
2539
|
+
"system": "http://acme.com/labs/reports",
|
|
2540
|
+
"code": "GHP",
|
|
2541
|
+
"display": "General Health Profile"
|
|
2542
|
+
}
|
|
2543
|
+
]
|
|
2544
|
+
},
|
|
2545
|
+
"subject": {
|
|
2546
|
+
"reference": "Patient/pat2"
|
|
2547
|
+
},
|
|
2548
|
+
"effectiveDateTime": "2015-08-16T06:40:17Z",
|
|
2549
|
+
"issued": "2015-08-17T06:40:17Z",
|
|
2550
|
+
"performer": {
|
|
2551
|
+
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f",
|
|
2552
|
+
"display": "Acme Laboratory, Inc"
|
|
2553
|
+
},
|
|
2554
|
+
"specimen": [
|
|
2555
|
+
{
|
|
2556
|
+
"reference": "#rtt",
|
|
2557
|
+
"display": "Red Top Tube"
|
|
2558
|
+
},
|
|
2559
|
+
{
|
|
2560
|
+
"reference": "#ltt",
|
|
2561
|
+
"display": "Lavender Top Tube"
|
|
2562
|
+
},
|
|
2563
|
+
{
|
|
2564
|
+
"reference": "#urine",
|
|
2565
|
+
"display": "Urine Sample"
|
|
2566
|
+
}
|
|
2567
|
+
],
|
|
2568
|
+
"result": [
|
|
2569
|
+
{
|
|
2570
|
+
"reference": "#p1",
|
|
2571
|
+
"display": "Chemistry Panel"
|
|
2572
|
+
},
|
|
2573
|
+
{
|
|
2574
|
+
"reference": "#p2",
|
|
2575
|
+
"display": "CBC"
|
|
2576
|
+
},
|
|
2577
|
+
{
|
|
2578
|
+
"reference": "#p3",
|
|
2579
|
+
"display": "Urinalysis"
|
|
2580
|
+
}
|
|
2581
|
+
]
|
|
2582
|
+
}
|