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,104 @@
|
|
|
1
|
+
module FHIR
|
|
2
|
+
module DSTU2
|
|
3
|
+
class NamingSystem < FHIR::DSTU2::Model
|
|
4
|
+
include FHIR::DSTU2::Hashable
|
|
5
|
+
include FHIR::DSTU2::Json
|
|
6
|
+
include FHIR::DSTU2::Xml
|
|
7
|
+
|
|
8
|
+
SEARCH_PARAMS = ['contact', 'context', 'date', 'id-type', 'kind', 'name', 'period', 'publisher', 'replaced-by', 'responsible', 'status', 'telecom', 'type', 'value']
|
|
9
|
+
METADATA = {
|
|
10
|
+
'id' => {'type'=>'id', 'path'=>'NamingSystem.id', 'min'=>0, 'max'=>1},
|
|
11
|
+
'meta' => {'type'=>'Meta', 'path'=>'NamingSystem.meta', 'min'=>0, 'max'=>1},
|
|
12
|
+
'implicitRules' => {'type'=>'uri', 'path'=>'NamingSystem.implicitRules', 'min'=>0, 'max'=>1},
|
|
13
|
+
'language' => {'type'=>'code', 'path'=>'NamingSystem.language', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://tools.ietf.org/html/bcp47'}},
|
|
14
|
+
'text' => {'type'=>'Narrative', 'path'=>'NamingSystem.text', 'min'=>0, 'max'=>1},
|
|
15
|
+
'contained' => {'type'=>'Resource', 'path'=>'NamingSystem.contained', 'min'=>0, 'max'=>Float::INFINITY},
|
|
16
|
+
'extension' => {'type'=>'Extension', 'path'=>'NamingSystem.extension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
17
|
+
'modifierExtension' => {'type'=>'Extension', 'path'=>'NamingSystem.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
18
|
+
'name' => {'type'=>'string', 'path'=>'NamingSystem.name', 'min'=>1, 'max'=>1},
|
|
19
|
+
'status' => {'valid_codes'=>{'http://hl7.org/fhir/conformance-resource-status'=>['draft', 'active', 'retired']}, 'type'=>'code', 'path'=>'NamingSystem.status', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/conformance-resource-status'}},
|
|
20
|
+
'kind' => {'valid_codes'=>{'http://hl7.org/fhir/namingsystem-type'=>['codesystem', 'identifier', 'root']}, 'type'=>'code', 'path'=>'NamingSystem.kind', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/namingsystem-type'}},
|
|
21
|
+
'publisher' => {'type'=>'string', 'path'=>'NamingSystem.publisher', 'min'=>0, 'max'=>1},
|
|
22
|
+
'contact' => {'type'=>'NamingSystem::Contact', 'path'=>'NamingSystem.contact', 'min'=>0, 'max'=>Float::INFINITY},
|
|
23
|
+
'responsible' => {'type'=>'string', 'path'=>'NamingSystem.responsible', 'min'=>0, 'max'=>1},
|
|
24
|
+
'date' => {'type'=>'dateTime', 'path'=>'NamingSystem.date', 'min'=>1, 'max'=>1},
|
|
25
|
+
'type' => {'valid_codes'=>{'http://hl7.org/fhir/identifier-type'=>['UDI', 'SNO', 'SB', 'PLAC', 'FILL'], 'http://hl7.org/fhir/v2/0203'=>['ACSN', 'AM', 'AMA', 'AN', 'ANC', 'AND', 'ANON', 'ANT', 'APRN', 'ASID', 'An Identifier for a provider a', 'An identifier for a provi', 'An identifier for a provider r', 'BA', 'BC', 'BCT', 'BR', 'BRN', 'BSNR', 'CC', 'CONM', 'CY', 'CZ', 'DDS', 'DEA', 'DFN', 'DI', 'DL', 'DN', 'DO', 'DP', 'DPM', 'DR', 'DS', 'EI', 'EN', 'ESN', 'FI', 'GI', 'GL', 'GN', 'HC', 'IND', 'JHN', 'LACSN', 'LANR', 'LI', 'LN', 'LR', 'MA', 'MB', 'MC', 'MCD', 'MCN', 'MCR', 'MCT', 'MD', 'MI', 'MR', 'MRT', 'MS', 'NBSNR', 'NCT', 'NE', 'NH', 'NI', 'NII', 'NIIP', 'NNxxx', 'NP', 'NPI', 'OD', 'PA', 'PC', 'PCN', 'PE', 'PEN', 'PI', 'PN', 'PNT', 'PPIN', 'PPN', 'PRC', 'PRN', 'PT', 'QA', 'RI', 'RN', 'RPH', 'RR', 'RRI', 'RRP', 'SID', 'SL', 'SN', 'SP', 'SR', 'SS', 'TAX', 'TN', 'TPR', 'U', 'UPIN', 'USID', 'VN', 'VP', 'VS', 'WC', 'WCN', 'WP', 'XX']}, 'type'=>'CodeableConcept', 'path'=>'NamingSystem.type', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/identifier-type'}},
|
|
26
|
+
'description' => {'type'=>'string', 'path'=>'NamingSystem.description', 'min'=>0, 'max'=>1},
|
|
27
|
+
'useContext' => {'valid_codes'=>{'urn:iso:std:iso:3166'=>[], 'http://unstats.un.org/unsd/methods/m49/m49.htm'=>[], 'https://www.usps.com/'=>['AK', 'AL', 'AR', 'AS', 'AZ', 'CA', 'CO', 'CT', 'DC', 'DE', 'FL', 'FM', 'GA', 'GU', 'HI', 'IA', 'ID', 'IL', 'IN', 'KS', 'KY', 'LA', 'MA', 'MD', 'ME', 'MH', 'MI', 'MN', 'MO', 'MP', 'MS', 'MT', 'NC', 'ND', 'NE', 'NH', 'NJ', 'NM', 'NV', 'NY', 'OH', 'OK', 'OR', 'PA', 'PR', 'PW', 'RI', 'SC', 'SD', 'TN', 'TX', 'UM', 'UT', 'VA', 'VI', 'VT', 'WA', 'WI', 'WV', 'WY'], 'http://hl7.org/fhir/practitioner-specialty'=>['cardio', 'dent', 'dietary', 'midw', 'sysarch']}, 'type'=>'CodeableConcept', 'path'=>'NamingSystem.useContext', 'min'=>0, 'max'=>Float::INFINITY, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/use-context'}},
|
|
28
|
+
'usage' => {'type'=>'string', 'path'=>'NamingSystem.usage', 'min'=>0, 'max'=>1},
|
|
29
|
+
'uniqueId' => {'type'=>'NamingSystem::UniqueId', 'path'=>'NamingSystem.uniqueId', 'min'=>1, 'max'=>Float::INFINITY},
|
|
30
|
+
'replacedBy' => {'type'=>'Reference', 'path'=>'NamingSystem.replacedBy', 'min'=>0, 'max'=>1}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
class Contact < FHIR::DSTU2::Model
|
|
34
|
+
include FHIR::DSTU2::Hashable
|
|
35
|
+
include FHIR::DSTU2::Json
|
|
36
|
+
include FHIR::DSTU2::Xml
|
|
37
|
+
|
|
38
|
+
METADATA = {
|
|
39
|
+
'id' => {'type'=>'id', 'path'=>'Contact.id', 'min'=>0, 'max'=>1},
|
|
40
|
+
'extension' => {'type'=>'Extension', 'path'=>'Contact.extension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
41
|
+
'modifierExtension' => {'type'=>'Extension', 'path'=>'Contact.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
42
|
+
'name' => {'type'=>'string', 'path'=>'Contact.name', 'min'=>0, 'max'=>1},
|
|
43
|
+
'telecom' => {'type'=>'ContactPoint', 'path'=>'Contact.telecom', 'min'=>0, 'max'=>Float::INFINITY}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
attr_accessor :id # 0-1 id
|
|
47
|
+
attr_accessor :extension # 0-* [ Extension ]
|
|
48
|
+
attr_accessor :modifierExtension # 0-* [ Extension ]
|
|
49
|
+
attr_accessor :name # 0-1 string
|
|
50
|
+
attr_accessor :telecom # 0-* [ ContactPoint ]
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
class UniqueId < FHIR::DSTU2::Model
|
|
54
|
+
include FHIR::DSTU2::Hashable
|
|
55
|
+
include FHIR::DSTU2::Json
|
|
56
|
+
include FHIR::DSTU2::Xml
|
|
57
|
+
|
|
58
|
+
METADATA = {
|
|
59
|
+
'id' => {'type'=>'id', 'path'=>'UniqueId.id', 'min'=>0, 'max'=>1},
|
|
60
|
+
'extension' => {'type'=>'Extension', 'path'=>'UniqueId.extension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
61
|
+
'modifierExtension' => {'type'=>'Extension', 'path'=>'UniqueId.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
62
|
+
'type' => {'valid_codes'=>{'http://hl7.org/fhir/namingsystem-identifier-type'=>['oid', 'uuid', 'uri', 'other']}, 'type'=>'code', 'path'=>'UniqueId.type', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/namingsystem-identifier-type'}},
|
|
63
|
+
'value' => {'type'=>'string', 'path'=>'UniqueId.value', 'min'=>1, 'max'=>1},
|
|
64
|
+
'preferred' => {'type'=>'boolean', 'path'=>'UniqueId.preferred', 'min'=>0, 'max'=>1},
|
|
65
|
+
'period' => {'type'=>'Period', 'path'=>'UniqueId.period', 'min'=>0, 'max'=>1}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
attr_accessor :id # 0-1 id
|
|
69
|
+
attr_accessor :extension # 0-* [ Extension ]
|
|
70
|
+
attr_accessor :modifierExtension # 0-* [ Extension ]
|
|
71
|
+
attr_accessor :type # 1-1 code
|
|
72
|
+
attr_accessor :value # 1-1 string
|
|
73
|
+
attr_accessor :preferred # 0-1 boolean
|
|
74
|
+
attr_accessor :period # 0-1 Period
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
attr_accessor :id # 0-1 id
|
|
78
|
+
attr_accessor :meta # 0-1 Meta
|
|
79
|
+
attr_accessor :implicitRules # 0-1 uri
|
|
80
|
+
attr_accessor :language # 0-1 code
|
|
81
|
+
attr_accessor :text # 0-1 Narrative
|
|
82
|
+
attr_accessor :contained # 0-* [ Resource ]
|
|
83
|
+
attr_accessor :extension # 0-* [ Extension ]
|
|
84
|
+
attr_accessor :modifierExtension # 0-* [ Extension ]
|
|
85
|
+
attr_accessor :name # 1-1 string
|
|
86
|
+
attr_accessor :status # 1-1 code
|
|
87
|
+
attr_accessor :kind # 1-1 code
|
|
88
|
+
attr_accessor :publisher # 0-1 string
|
|
89
|
+
attr_accessor :contact # 0-* [ NamingSystem::Contact ]
|
|
90
|
+
attr_accessor :responsible # 0-1 string
|
|
91
|
+
attr_accessor :date # 1-1 dateTime
|
|
92
|
+
attr_accessor :type # 0-1 CodeableConcept
|
|
93
|
+
attr_accessor :description # 0-1 string
|
|
94
|
+
attr_accessor :useContext # 0-* [ CodeableConcept ]
|
|
95
|
+
attr_accessor :usage # 0-1 string
|
|
96
|
+
attr_accessor :uniqueId # 1-* [ NamingSystem::UniqueId ]
|
|
97
|
+
attr_accessor :replacedBy # 0-1 Reference()
|
|
98
|
+
|
|
99
|
+
def resourceType
|
|
100
|
+
'NamingSystem'
|
|
101
|
+
end
|
|
102
|
+
end
|
|
103
|
+
end
|
|
104
|
+
end
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
module FHIR
|
|
2
|
+
module DSTU2
|
|
3
|
+
class NutritionOrder < FHIR::DSTU2::Model
|
|
4
|
+
include FHIR::DSTU2::Hashable
|
|
5
|
+
include FHIR::DSTU2::Json
|
|
6
|
+
include FHIR::DSTU2::Xml
|
|
7
|
+
|
|
8
|
+
SEARCH_PARAMS = ['additive', 'datetime', 'encounter', 'formula', 'identifier', 'oraldiet', 'patient', 'provider', 'status', 'supplement']
|
|
9
|
+
METADATA = {
|
|
10
|
+
'id' => {'type'=>'id', 'path'=>'NutritionOrder.id', 'min'=>0, 'max'=>1},
|
|
11
|
+
'meta' => {'type'=>'Meta', 'path'=>'NutritionOrder.meta', 'min'=>0, 'max'=>1},
|
|
12
|
+
'implicitRules' => {'type'=>'uri', 'path'=>'NutritionOrder.implicitRules', 'min'=>0, 'max'=>1},
|
|
13
|
+
'language' => {'type'=>'code', 'path'=>'NutritionOrder.language', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://tools.ietf.org/html/bcp47'}},
|
|
14
|
+
'text' => {'type'=>'Narrative', 'path'=>'NutritionOrder.text', 'min'=>0, 'max'=>1},
|
|
15
|
+
'contained' => {'type'=>'Resource', 'path'=>'NutritionOrder.contained', 'min'=>0, 'max'=>Float::INFINITY},
|
|
16
|
+
'extension' => {'type'=>'Extension', 'path'=>'NutritionOrder.extension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
17
|
+
'modifierExtension' => {'type'=>'Extension', 'path'=>'NutritionOrder.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
18
|
+
'patient' => {'type'=>'Reference', 'path'=>'NutritionOrder.patient', 'min'=>1, 'max'=>1},
|
|
19
|
+
'orderer' => {'type'=>'Reference', 'path'=>'NutritionOrder.orderer', 'min'=>0, 'max'=>1},
|
|
20
|
+
'identifier' => {'type'=>'Identifier', 'path'=>'NutritionOrder.identifier', 'min'=>0, 'max'=>Float::INFINITY},
|
|
21
|
+
'encounter' => {'type'=>'Reference', 'path'=>'NutritionOrder.encounter', 'min'=>0, 'max'=>1},
|
|
22
|
+
'dateTime' => {'type'=>'dateTime', 'path'=>'NutritionOrder.dateTime', 'min'=>1, 'max'=>1},
|
|
23
|
+
'status' => {'valid_codes'=>{'http://hl7.org/fhir/nutrition-order-status'=>['proposed', 'draft', 'planned', 'requested', 'active', 'on-hold', 'completed', 'cancelled']}, 'type'=>'code', 'path'=>'NutritionOrder.status', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/nutrition-order-status'}},
|
|
24
|
+
'allergyIntolerance' => {'type'=>'Reference', 'path'=>'NutritionOrder.allergyIntolerance', 'min'=>0, 'max'=>Float::INFINITY},
|
|
25
|
+
'foodPreferenceModifier' => {'valid_codes'=>{'http://hl7.org/fhir/diet'=>['vegetarian', 'dairy-free', 'nut-free', 'gluten-free', 'vegan', 'halal', 'kosher']}, 'type'=>'CodeableConcept', 'path'=>'NutritionOrder.foodPreferenceModifier', 'min'=>0, 'max'=>Float::INFINITY, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/encounter-diet'}},
|
|
26
|
+
'excludeFoodModifier' => {'valid_codes'=>{'http://snomed.info/sct'=>[]}, 'type'=>'CodeableConcept', 'path'=>'NutritionOrder.excludeFoodModifier', 'min'=>0, 'max'=>Float::INFINITY, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/food-type'}},
|
|
27
|
+
'oralDiet' => {'type'=>'NutritionOrder::OralDiet', 'path'=>'NutritionOrder.oralDiet', 'min'=>0, 'max'=>1},
|
|
28
|
+
'supplement' => {'type'=>'NutritionOrder::Supplement', 'path'=>'NutritionOrder.supplement', 'min'=>0, 'max'=>Float::INFINITY},
|
|
29
|
+
'enteralFormula' => {'type'=>'NutritionOrder::EnteralFormula', 'path'=>'NutritionOrder.enteralFormula', 'min'=>0, 'max'=>1}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
class OralDiet < FHIR::DSTU2::Model
|
|
33
|
+
include FHIR::DSTU2::Hashable
|
|
34
|
+
include FHIR::DSTU2::Json
|
|
35
|
+
include FHIR::DSTU2::Xml
|
|
36
|
+
|
|
37
|
+
METADATA = {
|
|
38
|
+
'id' => {'type'=>'id', 'path'=>'OralDiet.id', 'min'=>0, 'max'=>1},
|
|
39
|
+
'extension' => {'type'=>'Extension', 'path'=>'OralDiet.extension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
40
|
+
'modifierExtension' => {'type'=>'Extension', 'path'=>'OralDiet.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
41
|
+
'type' => {'valid_codes'=>{'http://snomed.info/sct'=>[]}, 'type'=>'CodeableConcept', 'path'=>'OralDiet.type', 'min'=>0, 'max'=>Float::INFINITY, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/diet-type'}},
|
|
42
|
+
'schedule' => {'type'=>'Timing', 'path'=>'OralDiet.schedule', 'min'=>0, 'max'=>Float::INFINITY},
|
|
43
|
+
'nutrient' => {'type'=>'NutritionOrder::OralDiet::Nutrient', 'path'=>'OralDiet.nutrient', 'min'=>0, 'max'=>Float::INFINITY},
|
|
44
|
+
'texture' => {'type'=>'NutritionOrder::OralDiet::Texture', 'path'=>'OralDiet.texture', 'min'=>0, 'max'=>Float::INFINITY},
|
|
45
|
+
'fluidConsistencyType' => {'valid_codes'=>{'http://snomed.info/sct'=>['439031000124108', '439021000124105', '439041000124103', '439081000124109']}, 'type'=>'CodeableConcept', 'path'=>'OralDiet.fluidConsistencyType', 'min'=>0, 'max'=>Float::INFINITY, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/consistency-type'}},
|
|
46
|
+
'instruction' => {'type'=>'string', 'path'=>'OralDiet.instruction', 'min'=>0, 'max'=>1}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
class Nutrient < FHIR::DSTU2::Model
|
|
50
|
+
include FHIR::DSTU2::Hashable
|
|
51
|
+
include FHIR::DSTU2::Json
|
|
52
|
+
include FHIR::DSTU2::Xml
|
|
53
|
+
|
|
54
|
+
METADATA = {
|
|
55
|
+
'id' => {'type'=>'id', 'path'=>'Nutrient.id', 'min'=>0, 'max'=>1},
|
|
56
|
+
'extension' => {'type'=>'Extension', 'path'=>'Nutrient.extension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
57
|
+
'modifierExtension' => {'type'=>'Extension', 'path'=>'Nutrient.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
58
|
+
'modifier' => {'valid_codes'=>{'http://snomed.info/sct'=>['33463005', '39972003', '88480006']}, 'type'=>'CodeableConcept', 'path'=>'Nutrient.modifier', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/nutrient-code'}},
|
|
59
|
+
'amount' => {'type'=>'Quantity', 'path'=>'Nutrient.amount', 'min'=>0, 'max'=>1}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
attr_accessor :id # 0-1 id
|
|
63
|
+
attr_accessor :extension # 0-* [ Extension ]
|
|
64
|
+
attr_accessor :modifierExtension # 0-* [ Extension ]
|
|
65
|
+
attr_accessor :modifier # 0-1 CodeableConcept
|
|
66
|
+
attr_accessor :amount # 0-1 Quantity
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
class Texture < FHIR::DSTU2::Model
|
|
70
|
+
include FHIR::DSTU2::Hashable
|
|
71
|
+
include FHIR::DSTU2::Json
|
|
72
|
+
include FHIR::DSTU2::Xml
|
|
73
|
+
|
|
74
|
+
METADATA = {
|
|
75
|
+
'id' => {'type'=>'id', 'path'=>'Texture.id', 'min'=>0, 'max'=>1},
|
|
76
|
+
'extension' => {'type'=>'Extension', 'path'=>'Texture.extension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
77
|
+
'modifierExtension' => {'type'=>'Extension', 'path'=>'Texture.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
78
|
+
'modifier' => {'valid_codes'=>{'http://snomed.info/sct'=>['228053002', '439091000124107', '228049004', '441881000124103', '441761000124103', '441751000124100', '228059003', '441791000124106', '228055009', '228056005', '441771000124105', '228057001', '228058006', '228060008']}, 'type'=>'CodeableConcept', 'path'=>'Texture.modifier', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/texture-code'}},
|
|
79
|
+
'foodType' => {'valid_codes'=>{'http://snomed.info/sct'=>['255620007', '28647000', '22836000', '72511004', '226760005', '226887002', '102263004', '74242007', '227415002', '264331002', '227518002', '44027008', '226529007', '227210005']}, 'type'=>'CodeableConcept', 'path'=>'Texture.foodType', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/modified-foodtype'}}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
attr_accessor :id # 0-1 id
|
|
83
|
+
attr_accessor :extension # 0-* [ Extension ]
|
|
84
|
+
attr_accessor :modifierExtension # 0-* [ Extension ]
|
|
85
|
+
attr_accessor :modifier # 0-1 CodeableConcept
|
|
86
|
+
attr_accessor :foodType # 0-1 CodeableConcept
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
attr_accessor :id # 0-1 id
|
|
90
|
+
attr_accessor :extension # 0-* [ Extension ]
|
|
91
|
+
attr_accessor :modifierExtension # 0-* [ Extension ]
|
|
92
|
+
attr_accessor :type # 0-* [ CodeableConcept ]
|
|
93
|
+
attr_accessor :schedule # 0-* [ Timing ]
|
|
94
|
+
attr_accessor :nutrient # 0-* [ NutritionOrder::OralDiet::Nutrient ]
|
|
95
|
+
attr_accessor :texture # 0-* [ NutritionOrder::OralDiet::Texture ]
|
|
96
|
+
attr_accessor :fluidConsistencyType # 0-* [ CodeableConcept ]
|
|
97
|
+
attr_accessor :instruction # 0-1 string
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
class Supplement < FHIR::DSTU2::Model
|
|
101
|
+
include FHIR::DSTU2::Hashable
|
|
102
|
+
include FHIR::DSTU2::Json
|
|
103
|
+
include FHIR::DSTU2::Xml
|
|
104
|
+
|
|
105
|
+
METADATA = {
|
|
106
|
+
'id' => {'type'=>'id', 'path'=>'Supplement.id', 'min'=>0, 'max'=>1},
|
|
107
|
+
'extension' => {'type'=>'Extension', 'path'=>'Supplement.extension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
108
|
+
'modifierExtension' => {'type'=>'Extension', 'path'=>'Supplement.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
109
|
+
'type' => {'valid_codes'=>{'http://snomed.info/sct'=>['442901000124106', '443031000124106', '443051000124104', '442911000124109', '443021000124108', '442971000124100', '442981000124102', '442991000124104', '443011000124100', '442961000124107', '442951000124105', '442941000124108', '442921000124101', '442931000124103', '444331000124106', '443361000124100', '443391000124108', '443401000124105', '443491000124103', '443501000124106', '443421000124100', '443471000124104', '444431000124104', '443451000124109', '444321000124108', '441561000124106', '443461000124106', '441531000124102', '443561000124107', '443481000124101', '441571000124104', '441591000124103', '441601000124106', '443351000124102', '443771000124106', '441671000124100', '443111000124101', '443431000124102', '443411000124108', '444361000124102', '444401000124107', '444381000124107', '444371000124109', '443441000124107', '442651000124102']}, 'type'=>'CodeableConcept', 'path'=>'Supplement.type', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/supplement-type'}},
|
|
110
|
+
'productName' => {'type'=>'string', 'path'=>'Supplement.productName', 'min'=>0, 'max'=>1},
|
|
111
|
+
'schedule' => {'type'=>'Timing', 'path'=>'Supplement.schedule', 'min'=>0, 'max'=>Float::INFINITY},
|
|
112
|
+
'quantity' => {'type'=>'Quantity', 'path'=>'Supplement.quantity', 'min'=>0, 'max'=>1},
|
|
113
|
+
'instruction' => {'type'=>'string', 'path'=>'Supplement.instruction', 'min'=>0, 'max'=>1}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
attr_accessor :id # 0-1 id
|
|
117
|
+
attr_accessor :extension # 0-* [ Extension ]
|
|
118
|
+
attr_accessor :modifierExtension # 0-* [ Extension ]
|
|
119
|
+
attr_accessor :type # 0-1 CodeableConcept
|
|
120
|
+
attr_accessor :productName # 0-1 string
|
|
121
|
+
attr_accessor :schedule # 0-* [ Timing ]
|
|
122
|
+
attr_accessor :quantity # 0-1 Quantity
|
|
123
|
+
attr_accessor :instruction # 0-1 string
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
class EnteralFormula < FHIR::DSTU2::Model
|
|
127
|
+
include FHIR::DSTU2::Hashable
|
|
128
|
+
include FHIR::DSTU2::Json
|
|
129
|
+
include FHIR::DSTU2::Xml
|
|
130
|
+
|
|
131
|
+
METADATA = {
|
|
132
|
+
'id' => {'type'=>'id', 'path'=>'EnteralFormula.id', 'min'=>0, 'max'=>1},
|
|
133
|
+
'extension' => {'type'=>'Extension', 'path'=>'EnteralFormula.extension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
134
|
+
'modifierExtension' => {'type'=>'Extension', 'path'=>'EnteralFormula.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
135
|
+
'baseFormulaType' => {'valid_codes'=>{'http://snomed.info/sct'=>['443031000124106', '443051000124104', '442911000124109', '443021000124108', '442971000124100', '442981000124102', '442991000124104', '443011000124100', '442961000124107', '442951000124105', '442941000124108', '442921000124101', '442931000124103', '443361000124100', '443401000124105', '443491000124103', '443501000124106', '443421000124100', '443471000124104', '444431000124104', '443451000124109', '441561000124106', '443461000124106', '441531000124102', '443561000124107', '443481000124101', '441571000124104', '441591000124103', '441601000124106', '443351000124102', '443771000124106', '441671000124100', '443111000124101', '443431000124102', '443411000124108', '442651000124102']}, 'type'=>'CodeableConcept', 'path'=>'EnteralFormula.baseFormulaType', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/entformula-type'}},
|
|
136
|
+
'baseFormulaProductName' => {'type'=>'string', 'path'=>'EnteralFormula.baseFormulaProductName', 'min'=>0, 'max'=>1},
|
|
137
|
+
'additiveType' => {'valid_codes'=>{'http://hl7.org/fhir/entformula-additive'=>['lipid', 'protein', 'carbohydrate', 'fiber', 'water']}, 'type'=>'CodeableConcept', 'path'=>'EnteralFormula.additiveType', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/entformula-additive'}},
|
|
138
|
+
'additiveProductName' => {'type'=>'string', 'path'=>'EnteralFormula.additiveProductName', 'min'=>0, 'max'=>1},
|
|
139
|
+
'caloricDensity' => {'type'=>'Quantity', 'path'=>'EnteralFormula.caloricDensity', 'min'=>0, 'max'=>1},
|
|
140
|
+
'routeofAdministration' => {'valid_codes'=>{'http://hl7.org/fhir/v3/RouteOfAdministration'=>['_RouteByMethod', 'SOAK', 'SHAMPOO', 'TRNSLING', 'PO', 'GARGLE', 'SUCK', '_Chew', 'CHEW', '_Diffusion', 'EXTCORPDIF', 'HEMODIFF', 'TRNSDERMD', '_Dissolve', 'DISSOLVE', 'SL', '_Douche', 'DOUCHE', '_ElectroOsmosisRoute', 'ELECTOSMOS', '_Enema', 'ENEMA', 'RETENEMA', '_Flush', 'IVFLUSH', '_Implantation', 'IDIMPLNT', 'IVITIMPLNT', 'SQIMPLNT', '_Infusion', 'EPI', 'IA', 'IC', 'ICOR', 'IOSSC', 'IT', 'IV', 'IVC', 'IVCC', 'IVCI', 'PCA', 'IVASCINFUS', 'SQINFUS', '_Inhalation', 'IPINHL', 'ORIFINHL', 'REBREATH', 'IPPB', 'NASINHL', 'NASINHLC', 'NEB', 'NASNEB', 'ORNEB', 'TRACH', 'VENT', 'VENTMASK', '_Injection', 'AMNINJ', 'BILINJ', 'CHOLINJ', 'CERVINJ', 'EPIDURINJ', 'EPIINJ', 'EPINJSP', 'EXTRAMNINJ', 'EXTCORPINJ', 'GBINJ', 'GINGINJ', 'BLADINJ', 'ENDOSININJ', 'HEMOPORT', 'IABDINJ', 'IAINJ', 'IAINJP', 'IAINJSP', 'IARTINJ', 'IBURSINJ', 'ICARDINJ', 'ICARDINJRP', 'ICARDINJSP', 'ICARINJP', 'ICARTINJ', 'ICAUDINJ', 'ICAVINJ', 'ICAVITINJ', 'ICEREBINJ', 'ICISTERNINJ', 'ICORONINJ', 'ICORONINJP', 'ICORPCAVINJ', 'IDINJ', 'IDISCINJ', 'IDUCTINJ', 'IDURINJ', 'IEPIDINJ', 'IEPITHINJ', 'ILESINJ', 'ILUMINJ', 'ILYMPJINJ', 'IM', 'IMD', 'IMZ', 'IMEDULINJ', 'INTERMENINJ', 'INTERSTITINJ', 'IOINJ', 'IOSSINJ', 'IOVARINJ', 'IPCARDINJ', 'IPERINJ', 'IPINJ', 'IPLRINJ', 'IPROSTINJ', 'IPUMPINJ', 'ISINJ', 'ISTERINJ', 'ISYNINJ', 'ITENDINJ', 'ITESTINJ', 'ITHORINJ', 'ITINJ', 'ITUBINJ', 'ITUMINJ', 'ITYMPINJ', 'IUINJ', 'IUINJC', 'IURETINJ', 'IVASCINJ', 'IVENTINJ', 'IVESINJ', 'IVINJ', 'IVINJBOL', 'IVPUSH', 'IVRPUSH', 'IVSPUSH', 'IVITINJ', 'PAINJ', 'PARENTINJ', 'PDONTINJ', 'PDPINJ', 'PDURINJ', 'PNINJ', 'PNSINJ', 'RBINJ', 'SCINJ', 'SLESINJ', 'SOFTISINJ', 'SQ', 'SUBARACHINJ', 'SUBMUCINJ', 'TRPLACINJ', 'TRTRACHINJ', 'URETHINJ', 'URETINJ', '_Insertion', 'CERVINS', 'IOSURGINS', 'IU', 'LPINS', 'PR', 'SQSURGINS', 'URETHINS', 'VAGINSI', '_Instillation', 'CECINSTL', 'EFT', 'ENTINSTL', 'GT', 'NGT', 'OGT', 'BLADINSTL', 'CAPDINSTL', 'CTINSTL', 'ETINSTL', 'GJT', 'IBRONCHINSTIL', 'IDUODINSTIL', 'IESOPHINSTIL', 'IGASTINSTIL', 'IILEALINJ', 'IOINSTL', 'ISININSTIL', 'ITRACHINSTIL', 'IUINSTL', 'JJTINSTL', 'LARYNGINSTIL', 'NASALINSTIL', 'NASOGASINSTIL', 'NTT', 'OJJ', 'OT', 'PDPINSTL', 'PNSINSTL', 'RECINSTL', 'RECTINSTL', 'SININSTIL', 'SOFTISINSTIL', 'TRACHINSTL', 'TRTYMPINSTIL', 'URETHINSTL', '_IontophoresisRoute', 'IONTO', '_Irrigation', 'GUIRR', 'IGASTIRR', 'ILESIRR', 'IOIRR', 'BLADIRR', 'BLADIRRC', 'BLADIRRT', 'RECIRR', '_LavageRoute', 'IGASTLAV', '_MucosalAbsorptionRoute', 'IDOUDMAB', 'ITRACHMAB', 'SMUCMAB', '_Nebulization', 'ETNEB', '_Rinse', 'DENRINSE', 'ORRINSE', '_SuppositoryRoute', 'URETHSUP', '_Swish', 'SWISHSPIT', 'SWISHSWAL', '_TopicalAbsorptionRoute', 'TTYMPTABSORP', '_TopicalApplication', 'DRESS', 'SWAB', 'TOPICAL', 'BUC', 'CERV', 'DEN', 'GIN', 'HAIR', 'ICORNTA', 'ICORONTA', 'IESOPHTA', 'IILEALTA', 'ILTOP', 'ILUMTA', 'IOTOP', 'LARYNGTA', 'MUC', 'NAIL', 'NASAL', 'OPTHALTA', 'ORALTA', 'ORMUC', 'OROPHARTA', 'PERIANAL', 'PERINEAL', 'PDONTTA', 'RECTAL', 'SCALP', 'OCDRESTA', 'SKIN', 'SUBCONJTA', 'TMUCTA', 'VAGINS', 'INSUF', 'TRNSDERM', '_RouteBySite', '_AmnioticFluidSacRoute', '_BiliaryRoute', '_BodySurfaceRoute', '_BuccalMucosaRoute', '_CecostomyRoute', '_CervicalRoute', '_EndocervicalRoute', '_EnteralRoute', '_EpiduralRoute', '_ExtraAmnioticRoute', '_ExtracorporealCirculationRoute', '_GastricRoute', '_GenitourinaryRoute', '_GingivalRoute', '_HairRoute', '_InterameningealRoute', '_InterstitialRoute', '_IntraabdominalRoute', '_IntraarterialRoute', '_IntraarticularRoute', '_IntrabronchialRoute', '_IntrabursalRoute', '_IntracardiacRoute', '_IntracartilaginousRoute', '_IntracaudalRoute', '_IntracavernosalRoute', '_IntracavitaryRoute', '_IntracerebralRoute', '_IntracervicalRoute', '_IntracisternalRoute', '_IntracornealRoute', '_IntracoronalRoute', '_IntracoronaryRoute', '_IntracorpusCavernosumRoute', '_IntradermalRoute', '_IntradiscalRoute', '_IntraductalRoute', '_IntraduodenalRoute', '_IntraduralRoute', '_IntraepidermalRoute', '_IntraepithelialRoute', '_IntraesophagealRoute', '_IntragastricRoute', '_IntrailealRoute', '_IntralesionalRoute', '_IntraluminalRoute', '_IntralymphaticRoute', '_IntramedullaryRoute', '_IntramuscularRoute', '_IntraocularRoute', '_IntraosseousRoute', '_IntraovarianRoute', '_IntrapericardialRoute', '_IntraperitonealRoute', '_IntrapleuralRoute', '_IntraprostaticRoute', '_IntrapulmonaryRoute', '_IntrasinalRoute', '_IntraspinalRoute', '_IntrasternalRoute', '_IntrasynovialRoute', '_IntratendinousRoute', '_IntratesticularRoute', '_IntrathecalRoute', '_IntrathoracicRoute', '_IntratrachealRoute', '_IntratubularRoute', '_IntratumorRoute', '_IntratympanicRoute', '_IntrauterineRoute', '_IntravascularRoute', '_IntravenousRoute', '_IntraventricularRoute', '_IntravesicleRoute', '_IntravitrealRoute', '_JejunumRoute', '_LacrimalPunctaRoute', '_LaryngealRoute', '_LingualRoute', '_MucousMembraneRoute', '_NailRoute', '_NasalRoute', '_OphthalmicRoute', '_OralRoute', '_OromucosalRoute', '_OropharyngealRoute', '_OticRoute', '_ParanasalSinusesRoute', '_ParenteralRoute', '_PerianalRoute', '_PeriarticularRoute', '_PeriduralRoute', '_PerinealRoute', '_PerineuralRoute', '_PeriodontalRoute', '_PulmonaryRoute', '_RectalRoute', '_RespiratoryTractRoute', '_RetrobulbarRoute', '_ScalpRoute', '_SinusUnspecifiedRoute', '_SkinRoute', '_SoftTissueRoute', '_SubarachnoidRoute', '_SubconjunctivalRoute', '_SubcutaneousRoute', '_SublesionalRoute', '_SublingualRoute', '_SubmucosalRoute', '_TracheostomyRoute', '_TransmucosalRoute', '_TransplacentalRoute', '_TranstrachealRoute', '_TranstympanicRoute', '_UreteralRoute', '_UrethralRoute', '_UrinaryBladderRoute', '_UrinaryTractRoute', '_VaginalRoute', '_VitreousHumourRoute']}, 'type'=>'CodeableConcept', 'path'=>'EnteralFormula.routeofAdministration', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/enteral-route'}},
|
|
141
|
+
'administration' => {'type'=>'NutritionOrder::EnteralFormula::Administration', 'path'=>'EnteralFormula.administration', 'min'=>0, 'max'=>Float::INFINITY},
|
|
142
|
+
'maxVolumeToDeliver' => {'type'=>'Quantity', 'path'=>'EnteralFormula.maxVolumeToDeliver', 'min'=>0, 'max'=>1},
|
|
143
|
+
'administrationInstruction' => {'type'=>'string', 'path'=>'EnteralFormula.administrationInstruction', 'min'=>0, 'max'=>1}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
class Administration < FHIR::DSTU2::Model
|
|
147
|
+
include FHIR::DSTU2::Hashable
|
|
148
|
+
include FHIR::DSTU2::Json
|
|
149
|
+
include FHIR::DSTU2::Xml
|
|
150
|
+
|
|
151
|
+
MULTIPLE_TYPES = {
|
|
152
|
+
'rate' => ['Quantity', 'Ratio']
|
|
153
|
+
}
|
|
154
|
+
METADATA = {
|
|
155
|
+
'id' => {'type'=>'id', 'path'=>'Administration.id', 'min'=>0, 'max'=>1},
|
|
156
|
+
'extension' => {'type'=>'Extension', 'path'=>'Administration.extension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
157
|
+
'modifierExtension' => {'type'=>'Extension', 'path'=>'Administration.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
158
|
+
'schedule' => {'type'=>'Timing', 'path'=>'Administration.schedule', 'min'=>0, 'max'=>1},
|
|
159
|
+
'quantity' => {'type'=>'Quantity', 'path'=>'Administration.quantity', 'min'=>0, 'max'=>1},
|
|
160
|
+
'rateQuantity' => {'type'=>'Quantity', 'path'=>'Administration.rate[x]', 'min'=>0, 'max'=>1},
|
|
161
|
+
'rateRatio' => {'type'=>'Ratio', 'path'=>'Administration.rate[x]', 'min'=>0, 'max'=>1}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
attr_accessor :id # 0-1 id
|
|
165
|
+
attr_accessor :extension # 0-* [ Extension ]
|
|
166
|
+
attr_accessor :modifierExtension # 0-* [ Extension ]
|
|
167
|
+
attr_accessor :schedule # 0-1 Timing
|
|
168
|
+
attr_accessor :quantity # 0-1 Quantity
|
|
169
|
+
attr_accessor :rateQuantity # 0-1 Quantity
|
|
170
|
+
attr_accessor :rateRatio # 0-1 Ratio
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
attr_accessor :id # 0-1 id
|
|
174
|
+
attr_accessor :extension # 0-* [ Extension ]
|
|
175
|
+
attr_accessor :modifierExtension # 0-* [ Extension ]
|
|
176
|
+
attr_accessor :baseFormulaType # 0-1 CodeableConcept
|
|
177
|
+
attr_accessor :baseFormulaProductName # 0-1 string
|
|
178
|
+
attr_accessor :additiveType # 0-1 CodeableConcept
|
|
179
|
+
attr_accessor :additiveProductName # 0-1 string
|
|
180
|
+
attr_accessor :caloricDensity # 0-1 Quantity
|
|
181
|
+
attr_accessor :routeofAdministration # 0-1 CodeableConcept
|
|
182
|
+
attr_accessor :administration # 0-* [ NutritionOrder::EnteralFormula::Administration ]
|
|
183
|
+
attr_accessor :maxVolumeToDeliver # 0-1 Quantity
|
|
184
|
+
attr_accessor :administrationInstruction # 0-1 string
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
attr_accessor :id # 0-1 id
|
|
188
|
+
attr_accessor :meta # 0-1 Meta
|
|
189
|
+
attr_accessor :implicitRules # 0-1 uri
|
|
190
|
+
attr_accessor :language # 0-1 code
|
|
191
|
+
attr_accessor :text # 0-1 Narrative
|
|
192
|
+
attr_accessor :contained # 0-* [ Resource ]
|
|
193
|
+
attr_accessor :extension # 0-* [ Extension ]
|
|
194
|
+
attr_accessor :modifierExtension # 0-* [ Extension ]
|
|
195
|
+
attr_accessor :patient # 1-1 Reference()
|
|
196
|
+
attr_accessor :orderer # 0-1 Reference()
|
|
197
|
+
attr_accessor :identifier # 0-* [ Identifier ]
|
|
198
|
+
attr_accessor :encounter # 0-1 Reference()
|
|
199
|
+
attr_accessor :dateTime # 1-1 dateTime
|
|
200
|
+
attr_accessor :status # 0-1 code
|
|
201
|
+
attr_accessor :allergyIntolerance # 0-* [ Reference() ]
|
|
202
|
+
attr_accessor :foodPreferenceModifier # 0-* [ CodeableConcept ]
|
|
203
|
+
attr_accessor :excludeFoodModifier # 0-* [ CodeableConcept ]
|
|
204
|
+
attr_accessor :oralDiet # 0-1 NutritionOrder::OralDiet
|
|
205
|
+
attr_accessor :supplement # 0-* [ NutritionOrder::Supplement ]
|
|
206
|
+
attr_accessor :enteralFormula # 0-1 NutritionOrder::EnteralFormula
|
|
207
|
+
|
|
208
|
+
def resourceType
|
|
209
|
+
'NutritionOrder'
|
|
210
|
+
end
|
|
211
|
+
end
|
|
212
|
+
end
|
|
213
|
+
end
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
module FHIR
|
|
2
|
+
module DSTU2
|
|
3
|
+
class Observation < FHIR::DSTU2::Model
|
|
4
|
+
include FHIR::DSTU2::Hashable
|
|
5
|
+
include FHIR::DSTU2::Json
|
|
6
|
+
include FHIR::DSTU2::Xml
|
|
7
|
+
|
|
8
|
+
MULTIPLE_TYPES = {
|
|
9
|
+
'effective' => ['dateTime', 'Period'],
|
|
10
|
+
'value' => ['Quantity', 'CodeableConcept', 'string', 'Range', 'Ratio', 'SampledData', 'Attachment', 'time', 'dateTime', 'Period']
|
|
11
|
+
}
|
|
12
|
+
SEARCH_PARAMS = ['category', 'code', 'component-code', 'component-data-absent-reason', 'component-value-concept', 'component-value-quantity', 'component-value-string', 'data-absent-reason', 'date', 'device', 'encounter', 'identifier', 'patient', 'performer', 'related-target', 'related-type', 'specimen', 'status', 'subject', 'value-concept', 'value-date', 'value-quantity', 'value-string']
|
|
13
|
+
METADATA = {
|
|
14
|
+
'id' => {'type'=>'id', 'path'=>'Observation.id', 'min'=>0, 'max'=>1},
|
|
15
|
+
'meta' => {'type'=>'Meta', 'path'=>'Observation.meta', 'min'=>0, 'max'=>1},
|
|
16
|
+
'implicitRules' => {'type'=>'uri', 'path'=>'Observation.implicitRules', 'min'=>0, 'max'=>1},
|
|
17
|
+
'language' => {'type'=>'code', 'path'=>'Observation.language', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://tools.ietf.org/html/bcp47'}},
|
|
18
|
+
'text' => {'type'=>'Narrative', 'path'=>'Observation.text', 'min'=>0, 'max'=>1},
|
|
19
|
+
'contained' => {'type'=>'Resource', 'path'=>'Observation.contained', 'min'=>0, 'max'=>Float::INFINITY},
|
|
20
|
+
'extension' => {'type'=>'Extension', 'path'=>'Observation.extension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
21
|
+
'modifierExtension' => {'type'=>'Extension', 'path'=>'Observation.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
22
|
+
'identifier' => {'type'=>'Identifier', 'path'=>'Observation.identifier', 'min'=>0, 'max'=>Float::INFINITY},
|
|
23
|
+
'status' => {'valid_codes'=>{'http://hl7.org/fhir/observation-status'=>['registered', 'preliminary', 'final', 'amended', 'cancelled', 'entered-in-error', 'unknown']}, 'type'=>'code', 'path'=>'Observation.status', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/observation-status'}},
|
|
24
|
+
'category' => {'valid_codes'=>{'http://hl7.org/fhir/observation-category'=>['social-history', 'vital-signs', 'imaging', 'laboratory', 'procedure', 'survey', 'exam', 'therapy']}, 'type'=>'CodeableConcept', 'path'=>'Observation.category', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/observation-category'}},
|
|
25
|
+
'code' => {'valid_codes'=>{'http://loinc.org'=>[]}, 'type'=>'CodeableConcept', 'path'=>'Observation.code', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/observation-codes'}},
|
|
26
|
+
'subject' => {'type'=>'Reference', 'path'=>'Observation.subject', 'min'=>0, 'max'=>1},
|
|
27
|
+
'encounter' => {'type'=>'Reference', 'path'=>'Observation.encounter', 'min'=>0, 'max'=>1},
|
|
28
|
+
'effectiveDateTime' => {'type'=>'dateTime', 'path'=>'Observation.effective[x]', 'min'=>0, 'max'=>1},
|
|
29
|
+
'effectivePeriod' => {'type'=>'Period', 'path'=>'Observation.effective[x]', 'min'=>0, 'max'=>1},
|
|
30
|
+
'issued' => {'type'=>'instant', 'path'=>'Observation.issued', 'min'=>0, 'max'=>1},
|
|
31
|
+
'performer' => {'type'=>'Reference', 'path'=>'Observation.performer', 'min'=>0, 'max'=>Float::INFINITY},
|
|
32
|
+
'valueQuantity' => {'type'=>'Quantity', 'path'=>'Observation.value[x]', 'min'=>0, 'max'=>1},
|
|
33
|
+
'valueCodeableConcept' => {'type'=>'CodeableConcept', 'path'=>'Observation.value[x]', 'min'=>0, 'max'=>1},
|
|
34
|
+
'valueString' => {'type'=>'string', 'path'=>'Observation.value[x]', 'min'=>0, 'max'=>1},
|
|
35
|
+
'valueRange' => {'type'=>'Range', 'path'=>'Observation.value[x]', 'min'=>0, 'max'=>1},
|
|
36
|
+
'valueRatio' => {'type'=>'Ratio', 'path'=>'Observation.value[x]', 'min'=>0, 'max'=>1},
|
|
37
|
+
'valueSampledData' => {'type'=>'SampledData', 'path'=>'Observation.value[x]', 'min'=>0, 'max'=>1},
|
|
38
|
+
'valueAttachment' => {'type'=>'Attachment', 'path'=>'Observation.value[x]', 'min'=>0, 'max'=>1},
|
|
39
|
+
'valueTime' => {'type'=>'time', 'path'=>'Observation.value[x]', 'min'=>0, 'max'=>1},
|
|
40
|
+
'valueDateTime' => {'type'=>'dateTime', 'path'=>'Observation.value[x]', 'min'=>0, 'max'=>1},
|
|
41
|
+
'valuePeriod' => {'type'=>'Period', 'path'=>'Observation.value[x]', 'min'=>0, 'max'=>1},
|
|
42
|
+
'dataAbsentReason' => {'valid_codes'=>{'http://hl7.org/fhir/data-absent-reason'=>['unknown', 'asked', 'temp', 'not-asked', 'masked', 'unsupported', 'astext', 'error', 'NaN']}, 'type'=>'CodeableConcept', 'path'=>'Observation.dataAbsentReason', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/observation-valueabsentreason'}},
|
|
43
|
+
'interpretation' => {'valid_codes'=>{'http://hl7.org/fhir/v2/0078'=>['<', '>', 'A', 'AA', 'AC', 'B', 'D', 'DET', 'H', 'HH', 'HM', 'HU', 'I', 'IE', 'IND', 'L', 'LL', 'LU', 'MS', 'N', 'ND', 'NEG', 'NR', 'NS', 'OBX', 'POS', 'QCF', 'R', 'RR', 'S', 'SDD', 'SYN-R', 'SYN-S', 'TOX', 'U', 'VS', 'W', 'WR', 'null']}, 'type'=>'CodeableConcept', 'path'=>'Observation.interpretation', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/observation-interpretation'}},
|
|
44
|
+
'comments' => {'type'=>'string', 'path'=>'Observation.comments', 'min'=>0, 'max'=>1},
|
|
45
|
+
'bodySite' => {'valid_codes'=>{'http://snomed.info/sct'=>[]}, 'type'=>'CodeableConcept', 'path'=>'Observation.bodySite', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/body-site'}},
|
|
46
|
+
'method' => {'local_name'=>'local_method', 'valid_codes'=>{'http://hl7.org/fhir/v3/ObservationMethod'=>['_DecisionObservationMethod', 'ALGM', 'BYCL', 'GINT', '_GeneticObservationMethod', 'PCR', '_ObservationMethodAggregate', 'AVERAGE', 'COUNT', 'MAX', 'MEDIAN', 'MIN', 'MODE', 'STDEV.P', 'STDEV.S', 'SUM', 'VARIANCE.P', 'VARIANCE.S', '_VerificationMethod', 'VDOC', 'VREG', 'VTOKEN', 'VVOICE', '0001', '0002', '0003', '0004', '0005', '0006', '0007', '0008', '0009', '0010', '0011', '0012', '0013', '0014', '0015', '0016', '0017', '0018', '0019', '0020', '0021', '0022', '0023', '0024', '0025', '0026', '0027', '0028', '0029', '0030', '0031', '0032', '0033', '0034', '0035', '0036', '0037', '0038', '0039', '0040', '0041', '0042', '0043', '0044', '0045', '0046', '0047', '0048', '0049', '0050', '0051', '0052', '0053', '0054', '0055', '0056', '0057', '0058', '0059', '0060', '0061', '0062', '0063', '0064', '0065', '0066', '0067', '0068', '0069', '0070', '0071', '0072', '0073', '0074', '0075', '0076', '0077', '0078', '0079', '0080', '0081', '0082', '0083', '0084', '0085', '0086', '0087', '0088', '0089', '0090', '0091', '0092', '0093', '0094', '0095', '0096', '0097', '0098', '0099', '0100', '0101', '0102', '0103', '0104', '0105', '0106', '0107', '0108', '0109', '0110', '0111', '0112', '0113', '0114', '0115', '0116', '0117', '0118', '0119', '0120', '0121', '0122', '0123', '0124', '0125', '0126', '0128', '0129', '0130', '0131', '0132', '0133', '0134', '0135', '0136', '0137', '0138', '0139', '0140', '0141', '0142', '0143', '0144', '0145', '0146', '0147', '0148', '0149', '0150', '0151', '0152', '0153', '0154', '0155', '0156', '0157', '0158', '0159', '0160', '0161', '0162', '0163', '0164', '0165', '0166', '0167', '0168', '0169', '0170', '0171', '0172', '0173', '0174', '0175', '0176', '0177', '0178', '0179', '0180', '0181', '0182', '0183', '0184', '0185', '0186', '0187', '0188', '0189', '0190', '0191', '0192', '0193', '0194', '0195', '0196', '0197', '0198', '0199', '0200', '0201', '0202', '0203', '0204', '0205', '0206', '0207', '0208', '0209', '0210', '0211', '0212', '0213', '0214', '0215', '0216', '0217', '0218', '0219', '0220', '0221', '0222', '0223', '0224', '0225', '0226', '0227', '0228', '0229', '0230', '0231', '0232', '0233', '0234', '0235', '0236', '0237', '0238', '0239', '0243', '0244', '0247', '0248', '0249', '0250', '0251', '0252', '0253', '0254', '0255', '0256', '0257', '0258', '0259', '0260', '0261', '0262', '0263', '0264', '0265', '0266', '0267', '0268', '0269', '0270', '0271', '0280', '0240', '0241', '0242', '0272', '0245', '0246', '0273', '0274', '0275', '0275a', '0276', '0277', '0278', '0279', '0127'], 'http://snomed.info/sct'=>[]}, 'type'=>'CodeableConcept', 'path'=>'Observation.method', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/observation-methods'}},
|
|
47
|
+
'specimen' => {'type'=>'Reference', 'path'=>'Observation.specimen', 'min'=>0, 'max'=>1},
|
|
48
|
+
'device' => {'type'=>'Reference', 'path'=>'Observation.device', 'min'=>0, 'max'=>1},
|
|
49
|
+
'referenceRange' => {'type'=>'Observation::ReferenceRange', 'path'=>'Observation.referenceRange', 'min'=>0, 'max'=>Float::INFINITY},
|
|
50
|
+
'related' => {'type'=>'Observation::Related', 'path'=>'Observation.related', 'min'=>0, 'max'=>Float::INFINITY},
|
|
51
|
+
'component' => {'type'=>'Observation::Component', 'path'=>'Observation.component', 'min'=>0, 'max'=>Float::INFINITY}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
class ReferenceRange < FHIR::DSTU2::Model
|
|
55
|
+
include FHIR::DSTU2::Hashable
|
|
56
|
+
include FHIR::DSTU2::Json
|
|
57
|
+
include FHIR::DSTU2::Xml
|
|
58
|
+
|
|
59
|
+
METADATA = {
|
|
60
|
+
'id' => {'type'=>'id', 'path'=>'ReferenceRange.id', 'min'=>0, 'max'=>1},
|
|
61
|
+
'extension' => {'type'=>'Extension', 'path'=>'ReferenceRange.extension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
62
|
+
'modifierExtension' => {'type'=>'Extension', 'path'=>'ReferenceRange.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
63
|
+
'low' => {'type'=>'Quantity', 'path'=>'ReferenceRange.low', 'min'=>0, 'max'=>1},
|
|
64
|
+
'high' => {'type'=>'Quantity', 'path'=>'ReferenceRange.high', 'min'=>0, 'max'=>1},
|
|
65
|
+
'meaning' => {'valid_codes'=>{'http://hl7.org/fhir/referencerange-meaning'=>['type', 'normal', 'recommended', 'treatment', 'therapeutic', 'pre', 'post', 'endocrine', 'pre-puberty', 'follicular', 'midcycle', 'luteal', 'postmeopausal'], 'http://snomed.info/sct'=>['248153007', '248152002', '77386006'], 'http://hl7.org/fhir/v3/Race'=>['1002-5', '1004-1', '1006-6', '1008-2', '1010-8', '1011-6', '1012-4', '1013-2', '1014-0', '1015-7', '1016-5', '1017-3', '1018-1', '1019-9', '1021-5', '1022-3', '1023-1', '1024-9', '1026-4', '1028-0', '1030-6', '1031-4', '1033-0', '1035-5', '1037-1', '1039-7', '1041-3', '1042-1', '1044-7', '1045-4', '1046-2', '1047-0', '1048-8', '1049-6', '1050-4', '1051-2', '1053-8', '1054-6', '1055-3', '1056-1', '1057-9', '1058-7', '1059-5', '1060-3', '1061-1', '1062-9', '1063-7', '1064-5', '1065-2', '1066-0', '1068-6', '1069-4', '1070-2', '1071-0', '1072-8', '1073-6', '1074-4', '1076-9', '1741-8', '1742-6', '1743-4', '1744-2', '1745-9', '1746-7', '1747-5', '1748-3', '1749-1', '1750-9', '1751-7', '1752-5', '1753-3', '1754-1', '1755-8', '1756-6', '1757-4', '1758-2', '1759-0', '1760-8', '1761-6', '1762-4', '1763-2', '1764-0', '1765-7', '1766-5', '1767-3', '1768-1', '1769-9', '1770-7', '1771-5', '1772-3', '1773-1', '1774-9', '1775-6', '1776-4', '1777-2', '1778-0', '1779-8', '1780-6', '1781-4', '1782-2', '1783-0', '1784-8', '1785-5', '1786-3', '1787-1', '1788-9', '1789-7', '1790-5', '1791-3', '1792-1', '1793-9', '1794-7', '1795-4', '1796-2', '1797-0', '1798-8', '1799-6', '1800-2', '1801-0', '1802-8', '1803-6', '1804-4', '1805-1', '1806-9', '1807-7', '1808-5', '1809-3', '1078-5', '1080-1', '1082-7', '1083-5', '1084-3', '1086-8', '1088-4', '1089-2', '1090-0', '1091-8', '1092-6', '1093-4', '1094-2', '1095-9', '1096-7', '1097-5', '1098-3', '1100-7', '1102-3', '1103-1', '1104-9', '1106-4', '1108-0', '1109-8', '1110-6', '1112-2', '1114-8', '1115-5', '1116-3', '1117-1', '1118-9', '1119-7', '1120-5', '1121-3', '1123-9', '1124-7', '1125-4', '1126-2', '1127-0', '1128-8', '1129-6', '1130-4', '1131-2', '1132-0', '1133-8', '1134-6', '1135-3', '1136-1', '1137-9', '1138-7', '1139-5', '1140-3', '1141-1', '1142-9', '1143-7', '1144-5', '1145-2', '1146-0', '1147-8', '1148-6', '1150-2', '1151-0', '1153-6', '1155-1', '1156-9', '1157-7', '1158-5', '1159-3', '1160-1', '1162-7', '1163-5', '1165-0', '1167-6', '1169-2', '1171-8', '1173-4', '1175-9', '1176-7', '1178-3', '1180-9', '1182-5', '1184-1', '1186-6', '1187-4', '1189-0', '1191-6', '1193-2', '1194-0', '1195-7', '1196-5', '1197-3', '1198-1', '1199-9', '1200-5', '1201-3', '1202-1', '1203-9', '1204-7', '1205-4', '1207-0', '1209-6', '1211-2', '1212-0', '1214-6', '1215-3', '1216-1', '1217-9', '1218-7', '1219-5', '1220-3', '1222-9', '1223-7', '1224-5', '1225-2', '1226-0', '1227-8', '1228-6', '1229-4', '1230-2', '1231-0', '1233-6', '1234-4', '1235-1', '1236-9', '1237-7', '1238-5', '1239-3', '1240-1', '1241-9', '1242-7', '1243-5', '1244-3', '1245-0', '1246-8', '1247-6', '1248-4', '1250-0', '1252-6', '1254-2', '1256-7', '1258-3', '1260-9', '1262-5', '1264-1', '1265-8', '1267-4', '1269-0', '1271-6', '1272-4', '1273-2', '1275-7', '1277-3', '1279-9', '1281-5', '1282-3', '1283-1', '1285-6', '1286-4', '1287-2', '1288-0', '1289-8', '1290-6', '1291-4', '1292-2', '1293-0', '1294-8', '1295-5', '1297-1', '1299-7', '1301-1', '1303-7', '1305-2', '1306-0', '1307-8', '1309-4', '1310-2', '1312-8', '1313-6', '1314-4', '1315-1', '1317-7', '1319-3', '1321-9', '1323-5', '1325-0', '1326-8', '1327-6', '1328-4', '1329-2', '1331-8', '1332-6', '1333-4', '1334-2', '1335-9', '1336-7', '1337-5', '1338-3', '1340-9', '1342-5', '1344-1', '1345-8', '1346-6', '1348-2', '1350-8', '1352-4', '1354-0', '1356-5', '1358-1', '1359-9', '1360-7', '1361-5', '1363-1', '1365-6', '1366-4', '1368-0', '1370-6', '1372-2', '1374-8', '1376-3', '1378-9', '1380-5', '1382-1', '1383-9', '1384-7', '1385-4', '1387-0', '1389-6', '1391-2', '1392-0', '1393-8', '1394-6', '1395-3', '1396-1', '1397-9', '1398-7', '1399-5', '1400-1', '1401-9', '1403-5', '1405-0', '1407-6', '1409-2', '1411-8', '1412-6', '1413-4', '1414-2', '1416-7', '1417-5', '1418-3', '1419-1', '1420-9', '1421-7', '1422-5', '1423-3', '1424-1', '1425-8', '1426-6', '1427-4', '1428-2', '1429-0', '1430-8', '1431-6', '1432-4', '1433-2', '1434-0', '1435-7', '1436-5', '1437-3', '1439-9', '1441-5', '1442-3', '1443-1', '1445-6', '1446-4', '1448-0', '1450-6', '1451-4', '1453-0', '1454-8', '1456-3', '1457-1', '1458-9', '1460-5', '1462-1', '1464-7', '1465-4', '1466-2', '1467-0', '1468-8', '1469-6', '1470-4', '1471-2', '1472-0', '1474-6', '1475-3', '1476-1', '1478-7', '1479-5', '1480-3', '1481-1', '1482-9', '1483-7', '1484-5', '1485-2', '1487-8', '1489-4', '1490-2', '1491-0', '1492-8', '1493-6', '1494-4', '1495-1', '1496-9', '1497-7', '1498-5', '1499-3', '1500-8', '1501-6', '1502-4', '1503-2', '1504-0', '1505-7', '1506-5', '1507-3', '1508-1', '1509-9', '1510-7', '1511-5', '1512-3', '1513-1', '1514-9', '1515-6', '1516-4', '1518-0', '1519-8', '1520-6', '1521-4', '1522-2', '1523-0', '1524-8', '1525-5', '1526-3', '1527-1', '1528-9', '1529-7', '1530-5', '1531-3', '1532-1', '1533-9', '1534-7', '1535-4', '1536-2', '1537-0', '1538-8', '1539-6', '1541-2', '1543-8', '1545-3', '1547-9', '1549-5', '1551-1', '1552-9', '1553-7', '1554-5', '1556-0', '1558-6', '1560-2', '1562-8', '1564-4', '1566-9', '1567-7', '1568-5', '1569-3', '1570-1', '1571-9', '1573-5', '1574-3', '1576-8', '1578-4', '1579-2', '1580-0', '1582-6', '1584-2', '1586-7', '1587-5', '1588-3', '1589-1', '1590-9', '1591-7', '1592-5', '1593-3', '1594-1', '1595-8', '1596-6', '1597-4', '1598-2', '1599-0', '1600-6', '1602-2', '1603-0', '1604-8', '1605-5', '1607-1', '1609-7', '1610-5', '1611-3', '1612-1', '1613-9', '1614-7', '1615-4', '1616-2', '1617-0', '1618-8', '1619-6', '1620-4', '1621-2', '1622-0', '1623-8', '1624-6', '1625-3', '1626-1', '1627-9', '1628-7', '1629-5', '1630-3', '1631-1', '1632-9', '1633-7', '1634-5', '1635-2', '1636-0', '1637-8', '1638-6', '1639-4', '1640-2', '1641-0', '1643-6', '1645-1', '1647-7', '1649-3', '1651-9', '1653-5', '1654-3', '1655-0', '1656-8', '1657-6', '1659-2', '1661-8', '1663-4', '1665-9', '1667-5', '1668-3', '1670-9', '1671-7', '1672-5', '1673-3', '1675-8', '1677-4', '1679-0', '1680-8', '1681-6', '1683-2', '1685-7', '1687-3', '1688-1', '1689-9', '1690-7', '1692-3', '1694-9', '1696-4', '1697-2', '1698-0', '1700-4', '1702-0', '1704-6', '1705-3', '1707-9', '1709-5', '1711-1', '1712-9', '1713-7', '1715-2', '1717-8', '1718-6', '1719-4', '1720-2', '1722-8', '1724-4', '1725-1', '1726-9', '1727-7', '1728-5', '1729-3', '1730-1', '1731-9', '1732-7', '1733-5', '1735-0', '1737-6', '1739-2', '1740-0', '1811-9', '1813-5', '1814-3', '1815-0', '1816-8', '1817-6', '1818-4', '1819-2', '1820-0', '1821-8', '1822-6', '1823-4', '1824-2', '1825-9', '1826-7', '1827-5', '1828-3', '1829-1', '1830-9', '1831-7', '1832-5', '1833-3', '1834-1', '1835-8', '1837-4', '1838-2', '1840-8', '1842-4', '1844-0', '1845-7', '1846-5', '1847-3', '1848-1', '1849-9', '1850-7', '1851-5', '1852-3', '1853-1', '1854-9', '1855-6', '1856-4', '1857-2', '1858-0', '1859-8', '1860-6', '1861-4', '1862-2', '1863-0', '1864-8', '1865-5', '1866-3', '1867-1', '1868-9', '1869-7', '1870-5', '1871-3', '1872-1', '1873-9', '1874-7', '1875-4', '1876-2', '1877-0', '1878-8', '1879-6', '1880-4', '1881-2', '1882-0', '1883-8', '1884-6', '1885-3', '1886-1', '1887-9', '1888-7', '1889-5', '1891-1', '1892-9', '1893-7', '1894-5', '1896-0', '1897-8', '1898-6', '1899-4', '1900-0', '1901-8', '1902-6', '1903-4', '1904-2', '1905-9', '1906-7', '1907-5', '1908-3', '1909-1', '1910-9', '1911-7', '1912-5', '1913-3', '1914-1', '1915-8', '1916-6', '1917-4', '1918-2', '1919-0', '1920-8', '1921-6', '1922-4', '1923-2', '1924-0', '1925-7', '1926-5', '1927-3', '1928-1', '1929-9', '1930-7', '1931-5', '1932-3', '1933-1', '1934-9', '1935-6', '1936-4', '1937-2', '1938-0', '1939-8', '1940-6', '1941-4', '1942-2', '1943-0', '1944-8', '1945-5', '1946-3', '1947-1', '1948-9', '1949-7', '1950-5', '1951-3', '1952-1', '1953-9', '1954-7', '1955-4', '1956-2', '1957-0', '1958-8', '1959-6', '1960-4', '1961-2', '1962-0', '1963-8', '1964-6', '1966-1', '1968-7', '1969-5', '1970-3', '1972-9', '1973-7', '1974-5', '1975-2', '1976-0', '1977-8', '1978-6', '1979-4', '1980-2', '1981-0', '1982-8', '1984-4', '1985-1', '1986-9', '1987-7', '1988-5', '1990-1', '1992-7', '1993-5', '1994-3', '1995-0', '1996-8', '1997-6', '1998-4', '1999-2', '2000-8', '2002-4', '2004-0', '2006-5', '2007-3', '2008-1', '2009-9', '2010-7', '2011-5', '2012-3', '2013-1', '2014-9', '2015-6', '2016-4', '2017-2', '2018-0', '2019-8', '2020-6', '2021-4', '2022-2', '2023-0', '2024-8', '2025-5', '2026-3', '2028-9', '2029-7', '2030-5', '2031-3', '2032-1', '2033-9', '2034-7', '2035-4', '2036-2', '2037-0', '2038-8', '2039-6', '2040-4', '2041-2', '2042-0', '2043-8', '2044-6', '2045-3', '2046-1', '2047-9', '2048-7', '2049-5', '2050-3', '2051-1', '2052-9', '2054-5', '2056-0', '2058-6', '2060-2', '2061-0', '2062-8', '2063-6', '2064-4', '2065-1', '2066-9', '2067-7', '2068-5', '2069-3', '2070-1', '2071-9', '2072-7', '2073-5', '2074-3', '2075-0', '2076-8', '2078-4', '2079-2', '2080-0', '2081-8', '2082-6', '2083-4', '2085-9', '2086-7', '2087-5', '2088-3', '2089-1', '2090-9', '2091-7', '2092-5', '2093-3', '2094-1', '2095-8', '2096-6', '2097-4', '2098-2', '2100-6', '2101-4', '2102-2', '2103-0', '2104-8', '2500-7', '2106-3', '2108-9', '2109-7', '2110-5', '2111-3', '2112-1', '2113-9', '2114-7', '2115-4', '2116-2', '2118-8', '2119-6', '2120-4', '2121-2', '2122-0', '2123-8', '2124-6', '2125-3', '2126-1', '2127-9', '2129-5', '2131-1']}, 'type'=>'CodeableConcept', 'path'=>'ReferenceRange.meaning', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/referencerange-meaning'}},
|
|
66
|
+
'age' => {'type'=>'Range', 'path'=>'ReferenceRange.age', 'min'=>0, 'max'=>1},
|
|
67
|
+
'text' => {'type'=>'string', 'path'=>'ReferenceRange.text', 'min'=>0, 'max'=>1}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
attr_accessor :id # 0-1 id
|
|
71
|
+
attr_accessor :extension # 0-* [ Extension ]
|
|
72
|
+
attr_accessor :modifierExtension # 0-* [ Extension ]
|
|
73
|
+
attr_accessor :low # 0-1 Quantity
|
|
74
|
+
attr_accessor :high # 0-1 Quantity
|
|
75
|
+
attr_accessor :meaning # 0-1 CodeableConcept
|
|
76
|
+
attr_accessor :age # 0-1 Range
|
|
77
|
+
attr_accessor :text # 0-1 string
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
class Related < FHIR::DSTU2::Model
|
|
81
|
+
include FHIR::DSTU2::Hashable
|
|
82
|
+
include FHIR::DSTU2::Json
|
|
83
|
+
include FHIR::DSTU2::Xml
|
|
84
|
+
|
|
85
|
+
METADATA = {
|
|
86
|
+
'id' => {'type'=>'id', 'path'=>'Related.id', 'min'=>0, 'max'=>1},
|
|
87
|
+
'extension' => {'type'=>'Extension', 'path'=>'Related.extension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
88
|
+
'modifierExtension' => {'type'=>'Extension', 'path'=>'Related.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
89
|
+
'type' => {'valid_codes'=>{'http://hl7.org/fhir/observation-relationshiptypes'=>['has-member', 'derived-from', 'sequel-to', 'replaces', 'qualified-by', 'interfered-by']}, 'type'=>'code', 'path'=>'Related.type', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/observation-relationshiptypes'}},
|
|
90
|
+
'target' => {'type'=>'Reference', 'path'=>'Related.target', 'min'=>1, 'max'=>1}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
attr_accessor :id # 0-1 id
|
|
94
|
+
attr_accessor :extension # 0-* [ Extension ]
|
|
95
|
+
attr_accessor :modifierExtension # 0-* [ Extension ]
|
|
96
|
+
attr_accessor :type # 0-1 code
|
|
97
|
+
attr_accessor :target # 1-1 Reference()
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
class Component < FHIR::DSTU2::Model
|
|
101
|
+
include FHIR::DSTU2::Hashable
|
|
102
|
+
include FHIR::DSTU2::Json
|
|
103
|
+
include FHIR::DSTU2::Xml
|
|
104
|
+
|
|
105
|
+
MULTIPLE_TYPES = {
|
|
106
|
+
'value' => ['Quantity', 'CodeableConcept', 'string', 'Range', 'Ratio', 'SampledData', 'Attachment', 'time', 'dateTime', 'Period']
|
|
107
|
+
}
|
|
108
|
+
METADATA = {
|
|
109
|
+
'id' => {'type'=>'id', 'path'=>'Component.id', 'min'=>0, 'max'=>1},
|
|
110
|
+
'extension' => {'type'=>'Extension', 'path'=>'Component.extension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
111
|
+
'modifierExtension' => {'type'=>'Extension', 'path'=>'Component.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
|
|
112
|
+
'code' => {'valid_codes'=>{'http://loinc.org'=>[]}, 'type'=>'CodeableConcept', 'path'=>'Component.code', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/observation-codes'}},
|
|
113
|
+
'valueQuantity' => {'type'=>'Quantity', 'path'=>'Component.value[x]', 'min'=>0, 'max'=>1},
|
|
114
|
+
'valueCodeableConcept' => {'type'=>'CodeableConcept', 'path'=>'Component.value[x]', 'min'=>0, 'max'=>1},
|
|
115
|
+
'valueString' => {'type'=>'string', 'path'=>'Component.value[x]', 'min'=>0, 'max'=>1},
|
|
116
|
+
'valueRange' => {'type'=>'Range', 'path'=>'Component.value[x]', 'min'=>0, 'max'=>1},
|
|
117
|
+
'valueRatio' => {'type'=>'Ratio', 'path'=>'Component.value[x]', 'min'=>0, 'max'=>1},
|
|
118
|
+
'valueSampledData' => {'type'=>'SampledData', 'path'=>'Component.value[x]', 'min'=>0, 'max'=>1},
|
|
119
|
+
'valueAttachment' => {'type'=>'Attachment', 'path'=>'Component.value[x]', 'min'=>0, 'max'=>1},
|
|
120
|
+
'valueTime' => {'type'=>'time', 'path'=>'Component.value[x]', 'min'=>0, 'max'=>1},
|
|
121
|
+
'valueDateTime' => {'type'=>'dateTime', 'path'=>'Component.value[x]', 'min'=>0, 'max'=>1},
|
|
122
|
+
'valuePeriod' => {'type'=>'Period', 'path'=>'Component.value[x]', 'min'=>0, 'max'=>1},
|
|
123
|
+
'dataAbsentReason' => {'valid_codes'=>{'http://hl7.org/fhir/data-absent-reason'=>['unknown', 'asked', 'temp', 'not-asked', 'masked', 'unsupported', 'astext', 'error', 'NaN']}, 'type'=>'CodeableConcept', 'path'=>'Component.dataAbsentReason', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/observation-valueabsentreason'}},
|
|
124
|
+
'referenceRange' => {'type'=>'Observation::ReferenceRange', 'path'=>'Component.referenceRange', 'min'=>0, 'max'=>Float::INFINITY}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
attr_accessor :id # 0-1 id
|
|
128
|
+
attr_accessor :extension # 0-* [ Extension ]
|
|
129
|
+
attr_accessor :modifierExtension # 0-* [ Extension ]
|
|
130
|
+
attr_accessor :code # 1-1 CodeableConcept
|
|
131
|
+
attr_accessor :valueQuantity # 0-1 Quantity
|
|
132
|
+
attr_accessor :valueCodeableConcept # 0-1 CodeableConcept
|
|
133
|
+
attr_accessor :valueString # 0-1 string
|
|
134
|
+
attr_accessor :valueRange # 0-1 Range
|
|
135
|
+
attr_accessor :valueRatio # 0-1 Ratio
|
|
136
|
+
attr_accessor :valueSampledData # 0-1 SampledData
|
|
137
|
+
attr_accessor :valueAttachment # 0-1 Attachment
|
|
138
|
+
attr_accessor :valueTime # 0-1 time
|
|
139
|
+
attr_accessor :valueDateTime # 0-1 dateTime
|
|
140
|
+
attr_accessor :valuePeriod # 0-1 Period
|
|
141
|
+
attr_accessor :dataAbsentReason # 0-1 CodeableConcept
|
|
142
|
+
attr_accessor :referenceRange # 0-* [ Observation::ReferenceRange ]
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
attr_accessor :id # 0-1 id
|
|
146
|
+
attr_accessor :meta # 0-1 Meta
|
|
147
|
+
attr_accessor :implicitRules # 0-1 uri
|
|
148
|
+
attr_accessor :language # 0-1 code
|
|
149
|
+
attr_accessor :text # 0-1 Narrative
|
|
150
|
+
attr_accessor :contained # 0-* [ Resource ]
|
|
151
|
+
attr_accessor :extension # 0-* [ Extension ]
|
|
152
|
+
attr_accessor :modifierExtension # 0-* [ Extension ]
|
|
153
|
+
attr_accessor :identifier # 0-* [ Identifier ]
|
|
154
|
+
attr_accessor :status # 1-1 code
|
|
155
|
+
attr_accessor :category # 0-1 CodeableConcept
|
|
156
|
+
attr_accessor :code # 1-1 CodeableConcept
|
|
157
|
+
attr_accessor :subject # 0-1 Reference()
|
|
158
|
+
attr_accessor :encounter # 0-1 Reference()
|
|
159
|
+
attr_accessor :effectiveDateTime # 0-1 dateTime
|
|
160
|
+
attr_accessor :effectivePeriod # 0-1 Period
|
|
161
|
+
attr_accessor :issued # 0-1 instant
|
|
162
|
+
attr_accessor :performer # 0-* [ Reference() ]
|
|
163
|
+
attr_accessor :valueQuantity # 0-1 Quantity
|
|
164
|
+
attr_accessor :valueCodeableConcept # 0-1 CodeableConcept
|
|
165
|
+
attr_accessor :valueString # 0-1 string
|
|
166
|
+
attr_accessor :valueRange # 0-1 Range
|
|
167
|
+
attr_accessor :valueRatio # 0-1 Ratio
|
|
168
|
+
attr_accessor :valueSampledData # 0-1 SampledData
|
|
169
|
+
attr_accessor :valueAttachment # 0-1 Attachment
|
|
170
|
+
attr_accessor :valueTime # 0-1 time
|
|
171
|
+
attr_accessor :valueDateTime # 0-1 dateTime
|
|
172
|
+
attr_accessor :valuePeriod # 0-1 Period
|
|
173
|
+
attr_accessor :dataAbsentReason # 0-1 CodeableConcept
|
|
174
|
+
attr_accessor :interpretation # 0-1 CodeableConcept
|
|
175
|
+
attr_accessor :comments # 0-1 string
|
|
176
|
+
attr_accessor :bodySite # 0-1 CodeableConcept
|
|
177
|
+
attr_accessor :local_method # 0-1 CodeableConcept
|
|
178
|
+
attr_accessor :specimen # 0-1 Reference()
|
|
179
|
+
attr_accessor :device # 0-1 Reference()
|
|
180
|
+
attr_accessor :referenceRange # 0-* [ Observation::ReferenceRange ]
|
|
181
|
+
attr_accessor :related # 0-* [ Observation::Related ]
|
|
182
|
+
attr_accessor :component # 0-* [ Observation::Component ]
|
|
183
|
+
|
|
184
|
+
def resourceType
|
|
185
|
+
'Observation'
|
|
186
|
+
end
|
|
187
|
+
end
|
|
188
|
+
end
|
|
189
|
+
end
|