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,90 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><DiagnosticOrder xmlns="http://hl7.org/fhir">
|
|
2
|
+
<id value="do-uslab-example1"/>
|
|
3
|
+
<!-- comment out to see if causing build to hang extension for a CC to a non ordering party in this case another provider
|
|
4
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/uslab-cc-practitioner">
|
|
5
|
+
<valueReference>
|
|
6
|
+
<reference value="Practitioner/uslab-example2"/>
|
|
7
|
+
<display value="Dr Bill T Lookafter Jr"/>
|
|
8
|
+
</valueReference>
|
|
9
|
+
</extension>
|
|
10
|
+
-->
|
|
11
|
+
<text><status value="generated"/><div xmlns="http://www.w3.org/1999/xhtml"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: do-uslab-example1</p><p><b>subject</b>: <a>Todd Lerr</a></p><p><b>orderer</b>: <a>Dr Leonard T Bloodraw Jr</a></p><p><b>identifier</b>: ORD000123A (OFFICIAL)</p><p><b>reason</b>: Abnormal lead level in blood <span>(Details : {http://www.icd10data.com/icd10pcs code 'R78.71' = '??', given as 'Abnormal lead level in blood'})</span></p><p><b>supportingInformation</b>: <a>Prior Results Observation</a>, <a>Lead Exposure</a></p><p><b>status</b>: requested</p><p><b>priority</b>: routine</p><h3>Events</h3><table><tr><td>-</td><td><b>Status</b></td><td><b>Description</b></td><td><b>DateTime</b></td></tr><tr><td>*</td><td>requested</td><td>new-request <span>(Details : {[not stated] code 'new-request' = '??)</span></td><td>04/12/2014 3:42:15 PM</td></tr></table><h3>Items</h3><table><tr><td>-</td><td><b>Code</b></td><td><b>Specimen</b></td><td><b>Status</b></td></tr><tr><td>*</td><td>Blood Lead <span>(Details : {LOINC code '5671-3' = 'Lead [Mass/volume] in Blood', given as 'Lead [Mass/volume] in Blood'}; {urn:oid:2.16.840.1.113883.3.72.5.24 code 'BLDLD' = '??', given as 'Blood Lead'})</span></td><td><a>Whole blood</a></td><td>requested</td></tr></table><p><b>note</b>: patient is afraid of needles</p></div></text><subject>
|
|
12
|
+
<reference value="Patient/patient-uslab-example1"/>
|
|
13
|
+
<display value="Todd Lerr"/>
|
|
14
|
+
</subject>
|
|
15
|
+
<orderer>
|
|
16
|
+
<reference value="Practitioner/pract-uslab-example1"/>
|
|
17
|
+
<display value="Dr Leonard T Bloodraw Jr"/>
|
|
18
|
+
</orderer>
|
|
19
|
+
<identifier>
|
|
20
|
+
<use value="official"/>
|
|
21
|
+
<!-- EH Using an OID here but could any URI eg http://aceclinic.com -->
|
|
22
|
+
<system value="urn:oid:2.16.840.1.113883.3.72.5.24"/>
|
|
23
|
+
<value value="ORD000123A"/>
|
|
24
|
+
</identifier>
|
|
25
|
+
<reason>
|
|
26
|
+
<coding>
|
|
27
|
+
<system value="http://www.icd10data.com/icd10pcs"/>
|
|
28
|
+
<code value="R78.71"/>
|
|
29
|
+
<display value="Abnormal lead level in blood"/>
|
|
30
|
+
</coding>
|
|
31
|
+
<text value="Abnormal lead level in blood"/>
|
|
32
|
+
</reason>
|
|
33
|
+
<supportingInformation>
|
|
34
|
+
<reference value="Observation/obs-uslab-example1"/>
|
|
35
|
+
<display value="Prior Results Observation"/>
|
|
36
|
+
</supportingInformation>
|
|
37
|
+
<supportingInformation>
|
|
38
|
+
<reference value="Condition/cond-uslab-example1"/>
|
|
39
|
+
<display value="Lead Exposure"/>
|
|
40
|
+
</supportingInformation>
|
|
41
|
+
<!-- EH this specimen is for when lab has existing
|
|
42
|
+
<specimen>
|
|
43
|
+
<reference value="Specimen/uslab-example1"/>
|
|
44
|
+
<display value="Whole blood"/>
|
|
45
|
+
</specimen>
|
|
46
|
+
-->
|
|
47
|
+
<!-- EH this is set to 'requested' by the Placer -->
|
|
48
|
+
<status value="requested"/>
|
|
49
|
+
<priority value="routine"/>
|
|
50
|
+
<event>
|
|
51
|
+
<!-- EH this is set to 'requested' by the Placer is required element in core resource -->
|
|
52
|
+
<status value="requested"/>
|
|
53
|
+
<!-- EH:bound to closed value setUSLAB Diagnostic Order Event Codes -->
|
|
54
|
+
<description>
|
|
55
|
+
<coding>
|
|
56
|
+
<code value="new-request"/>
|
|
57
|
+
</coding>
|
|
58
|
+
</description>
|
|
59
|
+
<!-- EH: Showing dateTime to ss with TZO although only needed to Day -->
|
|
60
|
+
<dateTime value="2014-12-04T15:42:15-08:00"/>
|
|
61
|
+
<!-- EH: the event is the order placer requesting a test -->
|
|
62
|
+
</event>
|
|
63
|
+
<item>
|
|
64
|
+
<!-- EH : The local and /or LOINC test codes go here -->
|
|
65
|
+
<code>
|
|
66
|
+
<!-- EH: LOINC code gos here -->
|
|
67
|
+
<coding>
|
|
68
|
+
<system value="http://loinc.org"/>
|
|
69
|
+
<code value="5671-3"/>
|
|
70
|
+
<display value="Lead [Mass/volume] in Blood"/>
|
|
71
|
+
<!-- EH: LOINC code gos here -->
|
|
72
|
+
</coding>
|
|
73
|
+
<coding>
|
|
74
|
+
<system value="urn:oid:2.16.840.1.113883.3.72.5.24"/>
|
|
75
|
+
<code value="BLDLD"/>
|
|
76
|
+
<display value="Blood Lead"/>
|
|
77
|
+
</coding>
|
|
78
|
+
<text value="Blood Lead"/>
|
|
79
|
+
</code>
|
|
80
|
+
<specimen>
|
|
81
|
+
<reference value="Specimen/spec-uslab-example1"/>
|
|
82
|
+
<display value="Whole blood"/>
|
|
83
|
+
</specimen>
|
|
84
|
+
<!-- EH this is set to 'requested' by the Placer -->
|
|
85
|
+
<status value="requested"/>
|
|
86
|
+
</item>
|
|
87
|
+
<note>
|
|
88
|
+
<text value="patient is afraid of needles"/>
|
|
89
|
+
</note>
|
|
90
|
+
</DiagnosticOrder>
|
|
@@ -0,0 +1,503 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><Bundle xmlns="http://hl7.org/fhir">
|
|
2
|
+
<id value="father"/>
|
|
3
|
+
<meta>
|
|
4
|
+
<lastUpdated value="2013-05-28T22:12:21Z"/>
|
|
5
|
+
</meta>
|
|
6
|
+
<type value="document"/>
|
|
7
|
+
<!-- The Composition resource -->
|
|
8
|
+
<entry>
|
|
9
|
+
<fullUrl value="http://fhir.healthintersections.com.au/open/Composition/180f219f-97a8-486d-99d9-ed631fe4fc57"/>
|
|
10
|
+
<resource>
|
|
11
|
+
<Composition>
|
|
12
|
+
<id value="180f219f-97a8-486d-99d9-ed631fe4fc57"/>
|
|
13
|
+
<meta>
|
|
14
|
+
<lastUpdated value="2013-05-28T22:12:21Z"/>
|
|
15
|
+
</meta>
|
|
16
|
+
<text><status value="generated"/><div xmlns="http://www.w3.org/1999/xhtml"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: 180f219f-97a8-486d-99d9-ed631fe4fc57</p><p><b>meta</b>: </p><p><b>date</b>: 01/02/2013 11:30:02 PM</p><p><b>type</b>: Discharge Summary from Responsible Clinician <span>(Details : {LOINC code '28655-9' = 'Physician attending Discharge summary)</span></p><p><b>title</b>: Discharge Summary</p><p><b>status</b>: final</p><p><b>confidentiality</b>: N</p><p><b>author</b>: <a>Doctor Dave</a></p><p><b>encounter</b>: <a>http://fhir.healthintersections.com.au/open/Encounter/doc-example</a></p></div></text><date value="2013-02-01T12:30:02Z"/>
|
|
17
|
+
<type>
|
|
18
|
+
<coding>
|
|
19
|
+
<system value="http://loinc.org"/>
|
|
20
|
+
<code value="28655-9"/>
|
|
21
|
+
</coding>
|
|
22
|
+
<text value="Discharge Summary from Responsible Clinician"/>
|
|
23
|
+
</type>
|
|
24
|
+
<title value="Discharge Summary"/>
|
|
25
|
+
<status value="final"/>
|
|
26
|
+
<confidentiality value="N"/>
|
|
27
|
+
<subject>
|
|
28
|
+
<reference value="http://fhir.healthintersections.com.au/open/Patient/d1"/>
|
|
29
|
+
<display value="Eve Everywoman"/>
|
|
30
|
+
</subject>
|
|
31
|
+
<author>
|
|
32
|
+
<reference value="Practitioner/example"/>
|
|
33
|
+
<display value="Doctor Dave"/>
|
|
34
|
+
</author>
|
|
35
|
+
<!-- The Encounter resource. Points directly to an Encounter resource. Contains the dates of admission, specialtyu etc. -->
|
|
36
|
+
<encounter>
|
|
37
|
+
<reference value="http://fhir.healthintersections.com.au/open/Encounter/doc-example"/>
|
|
38
|
+
</encounter>
|
|
39
|
+
<section>
|
|
40
|
+
<title value="Reason for admission"/>
|
|
41
|
+
<code>
|
|
42
|
+
<coding>
|
|
43
|
+
<system value="http://loinc.org"/>
|
|
44
|
+
<code value="29299-5"/>
|
|
45
|
+
<display value="Reason for visit Narrative"/>
|
|
46
|
+
</coding>
|
|
47
|
+
</code>
|
|
48
|
+
<text>
|
|
49
|
+
<status value="additional"/>
|
|
50
|
+
<div xmlns="http://www.w3.org/1999/xhtml">
|
|
51
|
+
|
|
52
|
+
<table>
|
|
53
|
+
|
|
54
|
+
<thead>
|
|
55
|
+
|
|
56
|
+
<tr>
|
|
57
|
+
|
|
58
|
+
<td>Details</td>
|
|
59
|
+
|
|
60
|
+
<td/>
|
|
61
|
+
|
|
62
|
+
</tr>
|
|
63
|
+
|
|
64
|
+
</thead>
|
|
65
|
+
|
|
66
|
+
<tbody>
|
|
67
|
+
|
|
68
|
+
<tr>
|
|
69
|
+
|
|
70
|
+
<td>Acute Asthmatic attack. Was wheezing for days prior to admission.</td>
|
|
71
|
+
|
|
72
|
+
<td/>
|
|
73
|
+
|
|
74
|
+
</tr>
|
|
75
|
+
|
|
76
|
+
</tbody>
|
|
77
|
+
|
|
78
|
+
</table>
|
|
79
|
+
|
|
80
|
+
</div>
|
|
81
|
+
</text>
|
|
82
|
+
<entry>
|
|
83
|
+
<reference value="urn:uuid:541a72a8-df75-4484-ac89-ac4923f03b81"/>
|
|
84
|
+
</entry>
|
|
85
|
+
</section>
|
|
86
|
+
<!-- Points to the list that groups the medications on discharge -->
|
|
87
|
+
<section>
|
|
88
|
+
<title value="Medications on Discharge"/>
|
|
89
|
+
<code>
|
|
90
|
+
<coding>
|
|
91
|
+
<system value="http://loinc.org"/>
|
|
92
|
+
<code value="10183-2"/>
|
|
93
|
+
<display value="Hospital discharge medications Narrative"/>
|
|
94
|
+
</coding>
|
|
95
|
+
</code>
|
|
96
|
+
<text>
|
|
97
|
+
<status value="additional"/>
|
|
98
|
+
<div xmlns="http://www.w3.org/1999/xhtml">
|
|
99
|
+
|
|
100
|
+
<table>
|
|
101
|
+
|
|
102
|
+
<thead>
|
|
103
|
+
|
|
104
|
+
<tr>
|
|
105
|
+
|
|
106
|
+
<td>Medication</td>
|
|
107
|
+
|
|
108
|
+
<td>Last Change</td>
|
|
109
|
+
|
|
110
|
+
<td>Last ChangeReason</td>
|
|
111
|
+
|
|
112
|
+
</tr>
|
|
113
|
+
|
|
114
|
+
</thead>
|
|
115
|
+
|
|
116
|
+
<tbody>
|
|
117
|
+
|
|
118
|
+
<tr>
|
|
119
|
+
|
|
120
|
+
<td>Theophylline 200mg BD after meals</td>
|
|
121
|
+
|
|
122
|
+
<td>continued</td>
|
|
123
|
+
|
|
124
|
+
</tr>
|
|
125
|
+
|
|
126
|
+
<tr>
|
|
127
|
+
|
|
128
|
+
<td>Ventolin Inhaler</td>
|
|
129
|
+
|
|
130
|
+
<td>stopped</td>
|
|
131
|
+
|
|
132
|
+
<td>Getting side effect of tremor</td>
|
|
133
|
+
|
|
134
|
+
</tr>
|
|
135
|
+
|
|
136
|
+
</tbody>
|
|
137
|
+
|
|
138
|
+
</table>
|
|
139
|
+
|
|
140
|
+
</div>
|
|
141
|
+
</text>
|
|
142
|
+
<mode value="working"/>
|
|
143
|
+
<!-- This is an entry that refers to a MedicationOrder resource in this document.
|
|
144
|
+
It is a new medication (as indicated by the flag) -->
|
|
145
|
+
<entry>
|
|
146
|
+
<reference value="urn:uuid:124a6916-5d84-4b8c-b250-10cefb8e6e86"/>
|
|
147
|
+
</entry>
|
|
148
|
+
<entry>
|
|
149
|
+
<reference value="urn:uuid:673f8db5-0ffd-4395-9657-6da00420bbc1"/>
|
|
150
|
+
</entry>
|
|
151
|
+
</section>
|
|
152
|
+
<!-- Points to the list that groups the allergies -->
|
|
153
|
+
<section>
|
|
154
|
+
<title value="Known allergies"/>
|
|
155
|
+
<code>
|
|
156
|
+
<coding>
|
|
157
|
+
<system value="http://loinc.org"/>
|
|
158
|
+
<code value="48765-2"/>
|
|
159
|
+
<display value="Allergies and adverse reactions Document"/>
|
|
160
|
+
</coding>
|
|
161
|
+
</code>
|
|
162
|
+
<text>
|
|
163
|
+
<status value="additional"/>
|
|
164
|
+
<div xmlns="http://www.w3.org/1999/xhtml">
|
|
165
|
+
|
|
166
|
+
<table>
|
|
167
|
+
|
|
168
|
+
<thead>
|
|
169
|
+
|
|
170
|
+
<tr>
|
|
171
|
+
|
|
172
|
+
<td>Allergen</td>
|
|
173
|
+
|
|
174
|
+
<td>Reaction</td>
|
|
175
|
+
|
|
176
|
+
</tr>
|
|
177
|
+
|
|
178
|
+
</thead>
|
|
179
|
+
|
|
180
|
+
<tbody>
|
|
181
|
+
|
|
182
|
+
<tr>
|
|
183
|
+
|
|
184
|
+
<td>Doxycycline</td>
|
|
185
|
+
|
|
186
|
+
<td>Hives</td>
|
|
187
|
+
|
|
188
|
+
</tr>
|
|
189
|
+
|
|
190
|
+
</tbody>
|
|
191
|
+
|
|
192
|
+
</table>
|
|
193
|
+
|
|
194
|
+
</div>
|
|
195
|
+
</text>
|
|
196
|
+
<entry>
|
|
197
|
+
<reference value="urn:uuid:47600e0f-b6b5-4308-84b5-5dec157f7637"/>
|
|
198
|
+
</entry>
|
|
199
|
+
</section>
|
|
200
|
+
</Composition>
|
|
201
|
+
</resource>
|
|
202
|
+
</entry>
|
|
203
|
+
<!-- The Practitioner Resource. In this document they are the author of the document
|
|
204
|
+
(There is a reference from the document resource). Note that, strictly, it doesn't need to be within the document as the
|
|
205
|
+
recipient knows where to go and get it if they need it - assuming it is available on-line of course. -->
|
|
206
|
+
<entry>
|
|
207
|
+
<fullUrl value="http://fhir.healthintersections.com.au/open/Practitioner/example"/>
|
|
208
|
+
<resource>
|
|
209
|
+
<Practitioner>
|
|
210
|
+
<id value="example"/>
|
|
211
|
+
<meta>
|
|
212
|
+
<lastUpdated value="2013-05-05T16:13:03Z"/>
|
|
213
|
+
</meta>
|
|
214
|
+
<text>
|
|
215
|
+
<status value="generated"/>
|
|
216
|
+
<div xmlns="http://www.w3.org/1999/xhtml">
|
|
217
|
+
|
|
218
|
+
<p>Dr Adam Careful is a Referring Practitioner for Acme Hospital from 1-Jan 2012 to 31-Mar
|
|
219
|
+
2012</p>
|
|
220
|
+
|
|
221
|
+
</div>
|
|
222
|
+
</text>
|
|
223
|
+
<identifier>
|
|
224
|
+
<system value="http://www.acme.org/practitioners"/>
|
|
225
|
+
<value value="23"/>
|
|
226
|
+
</identifier>
|
|
227
|
+
<name>
|
|
228
|
+
<family value="Careful"/>
|
|
229
|
+
<given value="Adam"/>
|
|
230
|
+
<prefix value="Dr"/>
|
|
231
|
+
</name>
|
|
232
|
+
<practitionerRole>
|
|
233
|
+
<managingOrganization>
|
|
234
|
+
<reference value="Organization/1"/>
|
|
235
|
+
</managingOrganization>
|
|
236
|
+
<!-- Referring Practitioner for the first 3 months of 2012 -->
|
|
237
|
+
<role>
|
|
238
|
+
<coding>
|
|
239
|
+
<system value="http://hl7.org/fhir/v2/0286"/>
|
|
240
|
+
<code value="RP"/>
|
|
241
|
+
</coding>
|
|
242
|
+
</role>
|
|
243
|
+
<period>
|
|
244
|
+
<start value="2012-01-01"/>
|
|
245
|
+
<end value="2012-03-31"/>
|
|
246
|
+
</period>
|
|
247
|
+
</practitionerRole>
|
|
248
|
+
</Practitioner>
|
|
249
|
+
</resource>
|
|
250
|
+
</entry>
|
|
251
|
+
<!-- The Patient who is the subject of the document. Same coments as practitioner. -->
|
|
252
|
+
<entry>
|
|
253
|
+
<fullUrl value="http://fhir.healthintersections.com.au/open/Patient/d1"/>
|
|
254
|
+
<resource>
|
|
255
|
+
<Patient>
|
|
256
|
+
<id value="d1"/>
|
|
257
|
+
<text>
|
|
258
|
+
<status value="generated"/>
|
|
259
|
+
<div xmlns="http://www.w3.org/1999/xhtml">
|
|
260
|
+
|
|
261
|
+
<h1>Eve Everywoman</h1>
|
|
262
|
+
|
|
263
|
+
</div>
|
|
264
|
+
</text>
|
|
265
|
+
<active value="true"/>
|
|
266
|
+
<name>
|
|
267
|
+
<text value="Eve Everywoman"/>
|
|
268
|
+
<family value="Everywoman1"/>
|
|
269
|
+
<given value="Eve"/>
|
|
270
|
+
</name>
|
|
271
|
+
<telecom>
|
|
272
|
+
<system value="phone"/>
|
|
273
|
+
<value value="555-555-2003"/>
|
|
274
|
+
<use value="work"/>
|
|
275
|
+
</telecom>
|
|
276
|
+
<gender value="female"/>
|
|
277
|
+
<birthDate value="1955-01-06"/>
|
|
278
|
+
<address>
|
|
279
|
+
<use value="home"/>
|
|
280
|
+
<line value="2222 Home Street"/>
|
|
281
|
+
</address>
|
|
282
|
+
</Patient>
|
|
283
|
+
</resource>
|
|
284
|
+
</entry>
|
|
285
|
+
<!-- The encounter that is being documented. -->
|
|
286
|
+
<entry>
|
|
287
|
+
<fullUrl value="http://fhir.healthintersections.com.au/open/Encounter/doc-example"/>
|
|
288
|
+
<resource>
|
|
289
|
+
<Encounter>
|
|
290
|
+
<id value="doc-example"/>
|
|
291
|
+
<meta>
|
|
292
|
+
<lastUpdated value="2013-05-05T16:13:03Z"/>
|
|
293
|
+
</meta>
|
|
294
|
+
<text>
|
|
295
|
+
<status value="generated"/>
|
|
296
|
+
<div xmlns="http://www.w3.org/1999/xhtml"> Admitted to Orthopedics Service,
|
|
297
|
+
Middlemore Hospital between Jan 20 and Feb ist 2013 </div>
|
|
298
|
+
</text>
|
|
299
|
+
<identifier>
|
|
300
|
+
<value value="S100"/>
|
|
301
|
+
</identifier>
|
|
302
|
+
<status value="finished"/>
|
|
303
|
+
<class value="inpatient"/>
|
|
304
|
+
<type>
|
|
305
|
+
<text value="Orthopedic Admission"/>
|
|
306
|
+
</type>
|
|
307
|
+
<patient>
|
|
308
|
+
<reference value="Patient/d1"/>
|
|
309
|
+
</patient>
|
|
310
|
+
<period>
|
|
311
|
+
<start value="2013-01-20T12:30:02Z"/>
|
|
312
|
+
<end value="2013-02-01T12:30:02Z"/>
|
|
313
|
+
</period>
|
|
314
|
+
<hospitalization>
|
|
315
|
+
<dischargeDisposition>
|
|
316
|
+
<text value="Discharged to care of GP"/>
|
|
317
|
+
</dischargeDisposition>
|
|
318
|
+
</hospitalization>
|
|
319
|
+
</Encounter>
|
|
320
|
+
</resource>
|
|
321
|
+
</entry>
|
|
322
|
+
<entry>
|
|
323
|
+
<fullUrl value="urn:uuid:541a72a8-df75-4484-ac89-ac4923f03b81"/>
|
|
324
|
+
<resource>
|
|
325
|
+
<Observation>
|
|
326
|
+
<meta>
|
|
327
|
+
<lastUpdated value="2013-05-05T16:13:03Z"/>
|
|
328
|
+
</meta>
|
|
329
|
+
<text>
|
|
330
|
+
<status value="additional"/>
|
|
331
|
+
<div xmlns="http://www.w3.org/1999/xhtml"> Acute Asthmatic attack. Was wheezing
|
|
332
|
+
for days prior to admission. </div>
|
|
333
|
+
</text>
|
|
334
|
+
<status value="final"/>
|
|
335
|
+
<code>
|
|
336
|
+
<coding>
|
|
337
|
+
<system value="http://loinc.org"/>
|
|
338
|
+
<code value="46241-6"/>
|
|
339
|
+
</coding>
|
|
340
|
+
<text value="Reason for admission"/>
|
|
341
|
+
</code>
|
|
342
|
+
<valueString value="Acute Asthmatic attack. Was wheezing for days prior to admission."/>
|
|
343
|
+
</Observation>
|
|
344
|
+
</resource>
|
|
345
|
+
</entry>
|
|
346
|
+
<!-- The first medication in the medications list -->
|
|
347
|
+
<entry>
|
|
348
|
+
<fullUrl value="urn:uuid:124a6916-5d84-4b8c-b250-10cefb8e6e86"/>
|
|
349
|
+
<resource>
|
|
350
|
+
<MedicationOrder>
|
|
351
|
+
<meta>
|
|
352
|
+
<lastUpdated value="2013-05-05T16:13:03Z"/>
|
|
353
|
+
</meta>
|
|
354
|
+
<!-- The Human readible version of the script -->
|
|
355
|
+
<text>
|
|
356
|
+
<status value="generated"/>
|
|
357
|
+
<div xmlns="http://www.w3.org/1999/xhtml">
|
|
358
|
+
|
|
359
|
+
<p>Theophylline 200mg twice a day</p>
|
|
360
|
+
|
|
361
|
+
</div>
|
|
362
|
+
</text>
|
|
363
|
+
<!-- The patient details will generally be in the Document resource in the Document bundle, but could just as easily
|
|
364
|
+
point to a patient resource on a server -->
|
|
365
|
+
<patient>
|
|
366
|
+
<reference value="http://fhir.healthintersections.com.au/open/Patient/d1"/>
|
|
367
|
+
<display value="Peter Patient"/>
|
|
368
|
+
</patient>
|
|
369
|
+
<!-- The prescriber details could also be within the bundle, but has the same options as patient -->
|
|
370
|
+
<prescriber>
|
|
371
|
+
<reference value="Practitioner/example"/>
|
|
372
|
+
<display value="Peter Practitioner"/>
|
|
373
|
+
</prescriber>
|
|
374
|
+
<reasonCodeableConcept>
|
|
375
|
+
<text value="Management of Asthma"/>
|
|
376
|
+
</reasonCodeableConcept>
|
|
377
|
+
<!-- a reference to the medication being prescribed. As described earlier, this could be contained (as is the example here), separately
|
|
378
|
+
within the document bundle or simply a reference to a remote server. See comment in the contained resource -->
|
|
379
|
+
<medicationCodeableConcept>
|
|
380
|
+
<coding>
|
|
381
|
+
<system value="http://snomed.info/sct"/>
|
|
382
|
+
<code value="66493003"/>
|
|
383
|
+
</coding>
|
|
384
|
+
<text value="Theophylline 200mg"/>
|
|
385
|
+
</medicationCodeableConcept>
|
|
386
|
+
<dosageInstruction>
|
|
387
|
+
<additionalInstructions>
|
|
388
|
+
<text value="Take with Food"/>
|
|
389
|
+
</additionalInstructions>
|
|
390
|
+
<!-- twice a day -->
|
|
391
|
+
<timing>
|
|
392
|
+
<repeat>
|
|
393
|
+
<frequency value="2"/>
|
|
394
|
+
<period value="1"/>
|
|
395
|
+
<periodUnits value="d"/>
|
|
396
|
+
</repeat>
|
|
397
|
+
</timing>
|
|
398
|
+
<!-- Orally -->
|
|
399
|
+
<route>
|
|
400
|
+
<coding>
|
|
401
|
+
<system value="http://snomed.info/sct"/>
|
|
402
|
+
<code value="394899003"/>
|
|
403
|
+
<display value="oral administration of treatment"/>
|
|
404
|
+
</coding>
|
|
405
|
+
</route>
|
|
406
|
+
<doseQuantity>
|
|
407
|
+
<value value="1"/>
|
|
408
|
+
<unit value="tablet"/>
|
|
409
|
+
<system value="http://unitsofmeasure.org"/>
|
|
410
|
+
<code value="tbl"/>
|
|
411
|
+
</doseQuantity>
|
|
412
|
+
</dosageInstruction>
|
|
413
|
+
</MedicationOrder>
|
|
414
|
+
</resource>
|
|
415
|
+
</entry>
|
|
416
|
+
<!-- The second medication in the medications list -->
|
|
417
|
+
<entry>
|
|
418
|
+
<fullUrl value="urn:uuid:673f8db5-0ffd-4395-9657-6da00420bbc1"/>
|
|
419
|
+
<resource>
|
|
420
|
+
<MedicationStatement>
|
|
421
|
+
<!-- The Human readible version of the medication statement -->
|
|
422
|
+
<text>
|
|
423
|
+
<status value="generated"/>
|
|
424
|
+
<div xmlns="http://www.w3.org/1999/xhtml">
|
|
425
|
+
|
|
426
|
+
<p>Ventolin inhaler discontinued</p>
|
|
427
|
+
|
|
428
|
+
</div>
|
|
429
|
+
</text>
|
|
430
|
+
<!-- The patient details will generally be in the Document resource in the Document bundle, but could just as easily
|
|
431
|
+
point to a patient resource on a server -->
|
|
432
|
+
<patient>
|
|
433
|
+
<reference value="http://fhir.healthintersections.com.au/open/Patient/d1"/>
|
|
434
|
+
<display value="Peter Patient"/>
|
|
435
|
+
</patient>
|
|
436
|
+
<dateAsserted value="2013-05-05T16:13:03Z"/>
|
|
437
|
+
<status value="completed"/>
|
|
438
|
+
<wasNotTaken value="true"/>
|
|
439
|
+
<reasonNotTaken>
|
|
440
|
+
<text value="Management of Asthma"/>
|
|
441
|
+
</reasonNotTaken>
|
|
442
|
+
<!-- a reference to the medication being prescribed. As described earlier, this could be contained (as is the example here), separately
|
|
443
|
+
within the document bundle or simply a reference to a remote server. See comment in the contained resource -->
|
|
444
|
+
<medicationCodeableConcept>
|
|
445
|
+
<text value="Ventolin Inhaler"/>
|
|
446
|
+
</medicationCodeableConcept>
|
|
447
|
+
</MedicationStatement>
|
|
448
|
+
</resource>
|
|
449
|
+
</entry>
|
|
450
|
+
<!-- The Allergy. -->
|
|
451
|
+
<entry>
|
|
452
|
+
<fullUrl value="urn:uuid:47600e0f-b6b5-4308-84b5-5dec157f7637"/>
|
|
453
|
+
<resource>
|
|
454
|
+
<AllergyIntolerance>
|
|
455
|
+
<meta>
|
|
456
|
+
<lastUpdated value="2013-05-05T16:13:03Z"/>
|
|
457
|
+
</meta>
|
|
458
|
+
<text>
|
|
459
|
+
<status value="generated"/>
|
|
460
|
+
<div xmlns="http://www.w3.org/1999/xhtml">Sensitivity to Doxycycline :
|
|
461
|
+
Hives</div>
|
|
462
|
+
</text>
|
|
463
|
+
<recordedDate value="2012-09-17"/>
|
|
464
|
+
<patient>
|
|
465
|
+
<reference value="http://fhir.healthintersections.com.au/open/Patient/d1"/>
|
|
466
|
+
<display value="Eve Everywoman"/>
|
|
467
|
+
</patient>
|
|
468
|
+
<substance>
|
|
469
|
+
<text value="Doxycycline"/>
|
|
470
|
+
</substance>
|
|
471
|
+
<status value="confirmed"/>
|
|
472
|
+
<criticality value="CRITH"/>
|
|
473
|
+
<type value="allergy"/>
|
|
474
|
+
<reaction>
|
|
475
|
+
<manifestation>
|
|
476
|
+
<coding>
|
|
477
|
+
<system value="http://example.org/system"/>
|
|
478
|
+
<code value="xxx"/>
|
|
479
|
+
<display value="Hives"/>
|
|
480
|
+
</coding>
|
|
481
|
+
<text value="Hives"/>
|
|
482
|
+
</manifestation>
|
|
483
|
+
</reaction>
|
|
484
|
+
</AllergyIntolerance>
|
|
485
|
+
</resource>
|
|
486
|
+
</entry>
|
|
487
|
+
<signature>
|
|
488
|
+
<type>
|
|
489
|
+
<system value="http://hl7.org/fhir/valueset-signature-type"/>
|
|
490
|
+
<code value="1.2.840.10065.1.12.1.1"/>
|
|
491
|
+
<display value="AuthorID"/>
|
|
492
|
+
</type>
|
|
493
|
+
<when value="2015-08-31T07:42:33+10:00"/>
|
|
494
|
+
<whoReference>
|
|
495
|
+
<reference value="Device/software"/>
|
|
496
|
+
</whoReference>
|
|
497
|
+
<!-- a real document would typically have an digital signature, but
|
|
498
|
+
the publishing tools are not yet setup to produce a valid digital
|
|
499
|
+
signature. For now, an image of a signature -->
|
|
500
|
+
<contentType value="image/jpeg"/>
|
|
501
|
+
<blob value="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"/>
|
|
502
|
+
</signature>
|
|
503
|
+
</Bundle>
|