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,56 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><Condition xmlns="http://hl7.org/fhir">
|
|
2
|
+
<id value="f203"/>
|
|
3
|
+
<text><status value="generated"/><div xmlns="http://www.w3.org/1999/xhtml"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: f203</p><p><b>patient</b>: <a>Roel</a></p><p><b>encounter</b>: <a>Roel's encounter on March eleventh</a></p><p><b>asserter</b>: <a>Practitioner/f201</a></p><p><b>dateRecorded</b>: 11/03/2013</p><p><b>code</b>: Bacterial sepsis <span>(Details : {SNOMED CT code '10001005' = '10001005', given as 'Bacterial sepsis'})</span></p><p><b>category</b>: Problem <span>(Details : {SNOMED CT code '55607006' = '55607006', given as 'Problem'}; {http://hl7.org/fhir/condition-category code 'finding' = 'Finding)</span></p><p><b>clinicalStatus</b>: active</p><p><b>verificationStatus</b>: confirmed</p><p><b>severity</b>: Moderate to severe <span>(Details : {SNOMED CT code '371924009' = '371924009', given as 'Moderate to severe'})</span></p><p><b>onset</b>: 08/03/2013</p><h3>Evidences</h3><table><tr><td>-</td><td><b>Detail</b></td></tr><tr><td>*</td><td><a>Diagnostic report for Roel's sepsis</a></td></tr></table><p><b>bodySite</b>: Pulmonary vascular structure <span>(Details : {SNOMED CT code '281158006' = '281158006', given as 'Pulmonary vascular structure'})</span></p></div></text><patient><!-- It entails Roel's problem -->
|
|
4
|
+
<reference value="Patient/f201"/>
|
|
5
|
+
<display value="Roel"/>
|
|
6
|
+
</patient>
|
|
7
|
+
<encounter>
|
|
8
|
+
<reference value="Encounter/f203"/>
|
|
9
|
+
<display value="Roel's encounter on March eleventh"/>
|
|
10
|
+
</encounter>
|
|
11
|
+
<asserter>
|
|
12
|
+
<reference value="Practitioner/f201"/>
|
|
13
|
+
</asserter>
|
|
14
|
+
<dateRecorded value="2013-03-11"/>
|
|
15
|
+
<code><!-- The problem is bacterial sepsis -->
|
|
16
|
+
<coding>
|
|
17
|
+
<system value="http://snomed.info/sct"/>
|
|
18
|
+
<code value="10001005"/>
|
|
19
|
+
<display value="Bacterial sepsis"/>
|
|
20
|
+
</coding>
|
|
21
|
+
</code>
|
|
22
|
+
<category><!-- Bacterial sepsis is certainly a moderate to severe problem -->
|
|
23
|
+
<coding>
|
|
24
|
+
<system value="http://snomed.info/sct"/>
|
|
25
|
+
<code value="55607006"/>
|
|
26
|
+
<display value="Problem"/>
|
|
27
|
+
</coding>
|
|
28
|
+
<coding>
|
|
29
|
+
<system value="http://hl7.org/fhir/condition-category"/>
|
|
30
|
+
<code value="finding"/>
|
|
31
|
+
</coding>
|
|
32
|
+
</category>
|
|
33
|
+
<clinicalStatus value="active"/>
|
|
34
|
+
<verificationStatus value="confirmed"/>
|
|
35
|
+
<severity>
|
|
36
|
+
<coding>
|
|
37
|
+
<system value="http://snomed.info/sct"/>
|
|
38
|
+
<code value="371924009"/>
|
|
39
|
+
<display value="Moderate to severe"/>
|
|
40
|
+
</coding>
|
|
41
|
+
</severity>
|
|
42
|
+
<onsetDateTime value="2013-03-08"/>
|
|
43
|
+
<evidence>
|
|
44
|
+
<detail>
|
|
45
|
+
<reference value="DiagnosticReport/f202"/>
|
|
46
|
+
<display value="Diagnostic report for Roel's sepsis"/>
|
|
47
|
+
</detail>
|
|
48
|
+
</evidence>
|
|
49
|
+
<bodySite><!-- Location is intravascular pulmonary -->
|
|
50
|
+
<coding>
|
|
51
|
+
<system value="http://snomed.info/sct"/>
|
|
52
|
+
<code value="281158006"/>
|
|
53
|
+
<display value="Pulmonary vascular structure"/>
|
|
54
|
+
</coding>
|
|
55
|
+
</bodySite>
|
|
56
|
+
</Condition>
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><Condition xmlns="http://hl7.org/fhir">
|
|
2
|
+
<id value="f204"/>
|
|
3
|
+
<text><status value="generated"/><div xmlns="http://www.w3.org/1999/xhtml"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: f204</p><p><b>patient</b>: <a>Roel</a></p><p><b>encounter</b>: <a>Roel's encounter on March eleventh</a></p><p><b>asserter</b>: <a>Practitioner/f201</a></p><p><b>dateRecorded</b>: 11/03/2013</p><p><b>code</b>: Acute renal insufficiency specified as due to procedure <span>(Details : {SNOMED CT code '36225005' = '36225005', given as 'Acute renal insufficiency specified as due to procedure'})</span></p><p><b>category</b>: Problem <span>(Details : {SNOMED CT code '55607006' = '55607006', given as 'Problem'}; {http://hl7.org/fhir/condition-category code 'finding' = 'Finding)</span></p><p><b>clinicalStatus</b>: active</p><p><b>verificationStatus</b>: differential</p><p><b>severity</b>: Severe <span>(Details : {SNOMED CT code '24484000' = '24484000', given as 'Severe'})</span></p><p><b>onset</b>: 11/03/2013</p><p><b>abatement</b>: 20/03/2013</p><h3>Stages</h3><table><tr><td>-</td><td><b>Summary</b></td></tr><tr><td>*</td><td>Temporary <span>(Details : {SNOMED CT code '14803004' = '14803004', given as 'Temporary'})</span></td></tr></table><p><b>bodySite</b>: Kidney <span>(Details : {SNOMED CT code '181414000' = '181414000', given as 'Kidney'})</span></p></div></text><patient><!-- It entails Roel's problem -->
|
|
4
|
+
<reference value="Patient/f201"/>
|
|
5
|
+
<display value="Roel"/>
|
|
6
|
+
</patient>
|
|
7
|
+
<encounter>
|
|
8
|
+
<reference value="Encounter/f203"/>
|
|
9
|
+
<display value="Roel's encounter on March eleventh"/>
|
|
10
|
+
</encounter>
|
|
11
|
+
<asserter>
|
|
12
|
+
<reference value="Practitioner/f201"/>
|
|
13
|
+
</asserter>
|
|
14
|
+
<dateRecorded value="2013-03-11"/>
|
|
15
|
+
<code>
|
|
16
|
+
<coding>
|
|
17
|
+
<system value="http://snomed.info/sct"/>
|
|
18
|
+
<code value="36225005"/>
|
|
19
|
+
<display value="Acute renal insufficiency specified as due to procedure"/>
|
|
20
|
+
</coding>
|
|
21
|
+
</code>
|
|
22
|
+
<category><!-- Renal insufficiency could become a severe problem -->
|
|
23
|
+
<coding>
|
|
24
|
+
<system value="http://snomed.info/sct"/>
|
|
25
|
+
<code value="55607006"/>
|
|
26
|
+
<display value="Problem"/>
|
|
27
|
+
</coding>
|
|
28
|
+
<coding>
|
|
29
|
+
<system value="http://hl7.org/fhir/condition-category"/>
|
|
30
|
+
<code value="finding"/>
|
|
31
|
+
</coding>
|
|
32
|
+
</category>
|
|
33
|
+
<clinicalStatus value="active"/>
|
|
34
|
+
<verificationStatus value="differential"/><!-- The patient is being treated on the basis that this is the problem, but it is still not confirmed (<certainty> is therewith also working) -->
|
|
35
|
+
<severity>
|
|
36
|
+
<coding>
|
|
37
|
+
<system value="http://snomed.info/sct"/>
|
|
38
|
+
<code value="24484000"/>
|
|
39
|
+
<display value="Severe"/>
|
|
40
|
+
</coding>
|
|
41
|
+
</severity>
|
|
42
|
+
<onsetDateTime value="2013-03-11"/>
|
|
43
|
+
<abatementDateTime value="2013-03-20"/><!-- After the nine days of inpatient admission, the problem went in remission -->
|
|
44
|
+
<stage><!-- The problem is temporary and will not become permanent renal insufficiency -->
|
|
45
|
+
<summary>
|
|
46
|
+
<coding>
|
|
47
|
+
<system value="http://snomed.info/sct"/>
|
|
48
|
+
<code value="14803004"/>
|
|
49
|
+
<display value="Temporary"/>
|
|
50
|
+
</coding>
|
|
51
|
+
</summary>
|
|
52
|
+
</stage>
|
|
53
|
+
<bodySite>
|
|
54
|
+
<coding>
|
|
55
|
+
<system value="http://snomed.info/sct"/>
|
|
56
|
+
<code value="181414000"/>
|
|
57
|
+
<display value="Kidney"/>
|
|
58
|
+
</coding>
|
|
59
|
+
</bodySite>
|
|
60
|
+
</Condition>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><Condition xmlns="http://hl7.org/fhir">
|
|
2
|
+
<id value="f205"/>
|
|
3
|
+
<text><status value="generated"/><div xmlns="http://www.w3.org/1999/xhtml"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: f205</p><p><b>patient</b>: <a>Roel</a></p><p><b>asserter</b>: <a>Practitioner/f201</a></p><p><b>dateRecorded</b>: 04/04/2013</p><p><b>code</b>: Bacterial infectious disease <span>(Details : {SNOMED CT code '87628006' = '87628006', given as 'Bacterial infectious disease'})</span></p><p><b>clinicalStatus</b>: active</p><p><b>verificationStatus</b>: differential</p></div></text><patient>
|
|
4
|
+
<reference value="Patient/f201"/>
|
|
5
|
+
<display value="Roel"/>
|
|
6
|
+
</patient>
|
|
7
|
+
<asserter>
|
|
8
|
+
<reference value="Practitioner/f201"/>
|
|
9
|
+
</asserter>
|
|
10
|
+
<dateRecorded value="2013-04-04"/><!-- The problem was entered at April fourth -->
|
|
11
|
+
<code><!-- The problem is a bacterial infection -->
|
|
12
|
+
<coding>
|
|
13
|
+
<system value="http://snomed.info/sct"/>
|
|
14
|
+
<code value="87628006"/>
|
|
15
|
+
<display value="Bacterial infectious disease"/>
|
|
16
|
+
</coding>
|
|
17
|
+
</code>
|
|
18
|
+
<clinicalStatus value="active"/>
|
|
19
|
+
<verificationStatus value="differential"/>
|
|
20
|
+
</Condition>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><Condition xmlns="http://hl7.org/fhir">
|
|
2
|
+
<id value="stroke"/>
|
|
3
|
+
<text>
|
|
4
|
+
<status value="generated"/>
|
|
5
|
+
<div xmlns="http://www.w3.org/1999/xhtml">Ischemic stroke, July 18, 2010</div>
|
|
6
|
+
</text>
|
|
7
|
+
<patient>
|
|
8
|
+
<reference value="Patient/example"/>
|
|
9
|
+
</patient>
|
|
10
|
+
<code>
|
|
11
|
+
<coding>
|
|
12
|
+
<system value="http://snomed.info/sct"/>
|
|
13
|
+
<code value="422504002"/>
|
|
14
|
+
<display value="Ischemic stroke (disorder)"/>
|
|
15
|
+
</coding>
|
|
16
|
+
<text value="Stroke"/>
|
|
17
|
+
</code>
|
|
18
|
+
<category>
|
|
19
|
+
<coding>
|
|
20
|
+
<system value="http://hl7.org/fhir/condition-category"/>
|
|
21
|
+
<code value="diagnosis"/>
|
|
22
|
+
<display value="Diagnosis"/>
|
|
23
|
+
</coding>
|
|
24
|
+
</category>
|
|
25
|
+
<clinicalStatus value="active"/>
|
|
26
|
+
<verificationStatus value="confirmed"/>
|
|
27
|
+
<onsetDateTime value="2010-07-18"/>
|
|
28
|
+
</Condition>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><Condition xmlns="http://hl7.org/fhir">
|
|
2
|
+
<id value="example2"/>
|
|
3
|
+
<text>
|
|
4
|
+
<status value="generated"/>
|
|
5
|
+
<div xmlns="http://www.w3.org/1999/xhtml">Mild Asthma (Date: 21-Nov 2012)</div>
|
|
6
|
+
</text>
|
|
7
|
+
<patient>
|
|
8
|
+
<reference value="Patient/example"/>
|
|
9
|
+
</patient>
|
|
10
|
+
<code>
|
|
11
|
+
<text value="Asthma"/>
|
|
12
|
+
</code>
|
|
13
|
+
<category>
|
|
14
|
+
<coding>
|
|
15
|
+
<system value="http://hl7.org/fhir/condition-category"/>
|
|
16
|
+
<code value="finding"/>
|
|
17
|
+
<display value="Finding"/>
|
|
18
|
+
</coding>
|
|
19
|
+
</category>
|
|
20
|
+
<clinicalStatus value="active"/>
|
|
21
|
+
<verificationStatus value="confirmed"/>
|
|
22
|
+
<severity>
|
|
23
|
+
<coding>
|
|
24
|
+
<system value="http://snomed.info/sct"/>
|
|
25
|
+
<code value="255604002"/>
|
|
26
|
+
<display value="Mild"/>
|
|
27
|
+
</coding>
|
|
28
|
+
</severity>
|
|
29
|
+
<onsetDateTime value="2012-11-12"/>
|
|
30
|
+
</Condition>
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
|
|
3
|
+
<Conformance xmlns="http://hl7.org/fhir">
|
|
4
|
+
<id value="base2"/>
|
|
5
|
+
<text>
|
|
6
|
+
<status value="generated"/>
|
|
7
|
+
<div xmlns="http://www.w3.org/1999/xhtml">
|
|
8
|
+
<h2>Base FHIR Conformance Statement (Empty)</h2>
|
|
9
|
+
<p>This is the base conformance statement for FHIR. It represents a server that provides the none of the functionality defined by FHIR. It is provided to use as a template for system designers to build their own conformance statements from. A conformance profile has to contain something, so this contains a read of a Conformance Statement</p>
|
|
10
|
+
<table>
|
|
11
|
+
<tr>
|
|
12
|
+
<td>Mode</td>
|
|
13
|
+
<td>SERVER</td>
|
|
14
|
+
</tr>
|
|
15
|
+
<tr>
|
|
16
|
+
<td>Description</td>
|
|
17
|
+
<td>An empty conformance statement</td>
|
|
18
|
+
</tr>
|
|
19
|
+
<tr>
|
|
20
|
+
<td>Transaction</td>
|
|
21
|
+
<td></td>
|
|
22
|
+
</tr>
|
|
23
|
+
<tr>
|
|
24
|
+
<td>System History</td>
|
|
25
|
+
<td></td>
|
|
26
|
+
</tr>
|
|
27
|
+
<tr>
|
|
28
|
+
<td>System Search</td>
|
|
29
|
+
<td></td>
|
|
30
|
+
</tr>
|
|
31
|
+
</table>
|
|
32
|
+
<table>
|
|
33
|
+
<tr>
|
|
34
|
+
<th>
|
|
35
|
+
<b>Resource Type</b>
|
|
36
|
+
</th>
|
|
37
|
+
<th>
|
|
38
|
+
<b>Profile</b>
|
|
39
|
+
</th>
|
|
40
|
+
<th>
|
|
41
|
+
<b>Read</b>
|
|
42
|
+
</th>
|
|
43
|
+
<th>
|
|
44
|
+
<b>V-Read</b>
|
|
45
|
+
</th>
|
|
46
|
+
<th>
|
|
47
|
+
<b>Search</b>
|
|
48
|
+
</th>
|
|
49
|
+
<th>
|
|
50
|
+
<b>Update</b>
|
|
51
|
+
</th>
|
|
52
|
+
<th>
|
|
53
|
+
<b>Updates</b>
|
|
54
|
+
</th>
|
|
55
|
+
<th>
|
|
56
|
+
<b>Create</b>
|
|
57
|
+
</th>
|
|
58
|
+
<th>
|
|
59
|
+
<b>Delete</b>
|
|
60
|
+
</th>
|
|
61
|
+
<th>
|
|
62
|
+
<b>History</b>
|
|
63
|
+
</th>
|
|
64
|
+
</tr>
|
|
65
|
+
<tr>
|
|
66
|
+
<td>Conformance</td>
|
|
67
|
+
<td>y</td>
|
|
68
|
+
<td></td>
|
|
69
|
+
<td></td>
|
|
70
|
+
<td></td>
|
|
71
|
+
<td></td>
|
|
72
|
+
<td></td>
|
|
73
|
+
<td></td>
|
|
74
|
+
<td></td>
|
|
75
|
+
</tr>
|
|
76
|
+
</table>
|
|
77
|
+
</div>
|
|
78
|
+
</text>
|
|
79
|
+
<url value="http://hl7.org/fhir/Conformance/base2"/>
|
|
80
|
+
<version value="1.0.2-7202"/>
|
|
81
|
+
<name value="Base FHIR Conformance Statement (Empty)"/>
|
|
82
|
+
<status value="draft"/>
|
|
83
|
+
<experimental value="true"/>
|
|
84
|
+
<publisher value="FHIR Project Team"/>
|
|
85
|
+
<contact>
|
|
86
|
+
<telecom>
|
|
87
|
+
<system value="other"/>
|
|
88
|
+
<value value="http://hl7.org/fhir"/>
|
|
89
|
+
</telecom>
|
|
90
|
+
</contact>
|
|
91
|
+
<date value="2015-10-24T07:41:03+11:00"/>
|
|
92
|
+
<description value="This is the base conformance statement for FHIR. It represents a server that provides the none of the functionality defined by FHIR. It is provided to use as a template for system designers to build their own conformance statements from. A conformance profile has to contain something, so this contains a read of a Conformance Statement"/>
|
|
93
|
+
<kind value="capability"/>
|
|
94
|
+
<software>
|
|
95
|
+
<name value="Insert your softwware name here..."/>
|
|
96
|
+
</software>
|
|
97
|
+
<fhirVersion value="1.0.2"/>
|
|
98
|
+
<acceptUnknown value="no"/>
|
|
99
|
+
<format value="xml"/>
|
|
100
|
+
<format value="json"/>
|
|
101
|
+
<rest>
|
|
102
|
+
<mode value="server"/>
|
|
103
|
+
<documentation value="An empty conformance statement"/>
|
|
104
|
+
<security>
|
|
105
|
+
<cors value="true"/>
|
|
106
|
+
<service>
|
|
107
|
+
<coding>
|
|
108
|
+
<system value="http://hl7.org/fhir/restful-security-service"/>
|
|
109
|
+
<code value="SMART-on-FHIR"/>
|
|
110
|
+
<display value="SMART-on-FHIR"/>
|
|
111
|
+
</coding>
|
|
112
|
+
<text value="See http://docs.smarthealthit.org/"/>
|
|
113
|
+
</service>
|
|
114
|
+
<description value="This is the conformance statement to declare that the server supports SMART-on-FHIR. See the SMART-on-FHIR docs for the extension that would go with such a server"/>
|
|
115
|
+
</security>
|
|
116
|
+
<resource>
|
|
117
|
+
<type value="Conformance"/>
|
|
118
|
+
<interaction>
|
|
119
|
+
<code value="read"/>
|
|
120
|
+
<documentation value="Read Conformance Resource"/>
|
|
121
|
+
</interaction>
|
|
122
|
+
</resource>
|
|
123
|
+
</rest>
|
|
124
|
+
</Conformance>
|
|
@@ -0,0 +1,2506 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
|
|
3
|
+
<Conformance xmlns="http://hl7.org/fhir">
|
|
4
|
+
<id value="conformance-daf-query-requestor"/>
|
|
5
|
+
<text>
|
|
6
|
+
<status value="generated"/>
|
|
7
|
+
<div xmlns="http://www.w3.org/1999/xhtml">
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<h2>DAF Requestor</h2>
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
<p>(Requirements Definition)</p>
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
<p>Published: 2015-04-02 (draft)</p>
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
<p>Published by:
|
|
20
|
+
|
|
21
|
+
<b>
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
<a href="http://www.healthit.gov/">U.S. Office of the National Coordinator (ONC)</a>
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
</b>
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
</p>
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
<p>This profile defines the expected capabilities of the
|
|
34
|
+
|
|
35
|
+
<i>DAF Requestor</i> actor when conforming to the
|
|
36
|
+
|
|
37
|
+
<a href="daf.html">DAF FHIR IG</a>.
|
|
38
|
+
|
|
39
|
+
</p>
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
<h2>General</h2>
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
<table>
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
<tbody>
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
<tr>
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
<th>FHIR Version:</th>
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
<td>1.0.2 (DSTU2)</td>
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
</tr>
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
<tr>
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
<th>Supported formats:</th>
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
<td>JSON or XML</td>
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
</tr>
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
</tbody>
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
</table>
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
<h2>REST behavior</h2>
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
<p>The DAF Requestor SHALL support accessing at least one FHIR resource using the appropriate DAF profile(s) for the resource being accessed.
|
|
86
|
+
The DAF Requestor SHALL implement REST behavior according to the
|
|
87
|
+
|
|
88
|
+
<a href="../http.html">FHIR</a> specification.
|
|
89
|
+
The DAF Requestor SHALL support either json or xml resource formats for all DAF interactions.
|
|
90
|
+
|
|
91
|
+
</p>
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
<h3>RESTful Operations Summary</h3>
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
<table class="grid">
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
<thead>
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
<tr>
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
<th>Resource(Profile Name)</th>
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
<th>
|
|
111
|
+
|
|
112
|
+
<a href="../type-restful-interaction.html">Search</a>
|
|
113
|
+
|
|
114
|
+
</th>
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
<th>
|
|
118
|
+
|
|
119
|
+
<a href="../type-restful-interaction.html">Read</a>
|
|
120
|
+
|
|
121
|
+
</th>
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
<th>
|
|
125
|
+
|
|
126
|
+
<a href="../type-restful-interaction.html">Read Version</a>
|
|
127
|
+
|
|
128
|
+
</th>
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
<th>
|
|
132
|
+
|
|
133
|
+
<a href="../type-restful-interaction.html">Instance History</a>
|
|
134
|
+
|
|
135
|
+
</th>
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
</tr>
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
</thead>
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
<tbody>
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
<tr>
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
<th>
|
|
151
|
+
|
|
152
|
+
<a href="patient-daf.html">DAFPatient</a>
|
|
153
|
+
|
|
154
|
+
</th>
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
<td>
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
<a title="Allows discovery of DAFPatient resources based on different search criteria" href="#DAFPatientSearch">SHOULD</a>
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
</td>
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
<td>
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
<a title="Allows retrieval of a specific DAFPatients by resource id" href="#DAFPatientSearch">SHOULD</a>
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
</td>
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
<td>
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
<a title="Allows retrieval of a historical version of a DAFPatient" href="#DAFPatientSearch">SHOULD</a>
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
</td>
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
<td>
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
<a title="Allows review of changes to DAFPatient over time" href="#DAFPatientSearch">SHOULD</a>
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
</td>
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
</tr>
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
<tr>
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
<th>
|
|
200
|
+
|
|
201
|
+
<a href="allergyintolerance-daf.html">DAFAllergyIntolerance</a>
|
|
202
|
+
|
|
203
|
+
</th>
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
<td>
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
<a title="Allows discovery of DAFAllergyIntolerance resources based on different search criteria" href="#DAFAllergyIntoleranceSearch">SHOULD</a>
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
</td>
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
<td>
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
<a title="Allows retrieval of a specific DAFAllergyIntolerance by id" href="#DAFAllergyIntoleranceSearch">SHOULD</a>
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
</td>
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
<td>
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
<a title="Allows retrieval of a historical version of a DAFAllergyIntolerance" href="#DAFAllergyIntoleranceSearch">SHOULD</a>
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
</td>
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
<td>
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
<a title="Allows review of changes to DAFAllergyIntolerance over time" href="#DAFAllergyIntoleranceSearch">SHOULD</a>
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
</td>
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
</tr>
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
<tr>
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
<th>
|
|
249
|
+
|
|
250
|
+
<a href="diagnosticorder-daf.html">DAFDiagnosticOrder</a>
|
|
251
|
+
|
|
252
|
+
</th>
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
<td>
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
<a title="Allows discovery of DAFDiagnosticOrder resources based on different search criteria" href="#DAFDiagnosticOrderSearch">SHOULD</a>
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
</td>
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
<td>
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
<a title="Allows retrieval of a specific DAFDiagnosticOrder by id" href="#DAFDiagnosticOrderSearch">SHOULD</a>
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
</td>
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
<td>
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
<a title="Allows retrieval of a historical version of a DAFDiagnosticOrder" href="#DAFDiagnosticOrderSearch">SHOULD</a>
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
</td>
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
<td>
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
<a title="Allows review of changes to DAFDiagnosticOrder over time" href="#DAFDiagnosticOrderSearch">SHOULD</a>
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
</td>
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
</tr>
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
<tr>
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
<th>
|
|
298
|
+
|
|
299
|
+
<a href="diagnosticreport-daf.html">DAFDiagnosticReport</a>
|
|
300
|
+
|
|
301
|
+
</th>
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
<td>
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
<a title="Allows discovery of DAFDiagnosticReport resources based on different search criteria" href="#DAFDiagnosticReportSearch">SHOULD</a>
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
</td>
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
<td>
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
<a title="Allows retrieval of a specific DAFDiagnosticReport by id" href="#DAFDiagnosticReportSearch">SHOULD</a>
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
</td>
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
<td>
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
<a title="Allows retrieval of a historical version of a DAFDiagnosticReport" href="#DAFDiagnosticReportSearch">SHOULD</a>
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
</td>
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
<td>
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
<a title="Allows review of changes to DAFDiagnosticReport over time" href="#DAFDiagnosticReportSearch">SHOULD</a>
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
</td>
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
</tr>
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
<tr>
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
<th>
|
|
347
|
+
|
|
348
|
+
<a href="encounter-daf.html">DAFEncounter</a>
|
|
349
|
+
|
|
350
|
+
</th>
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
<td>
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
<a title="Allows discovery of DAFEncounter resources based on different search criteria" href="#DAFEncounterSearch">SHOULD</a>
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
</td>
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
<td>
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
<a title="Allows retrieval of a specific DAFEncounter by id" href="#DAFEncounterSearch">SHOULD</a>
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
</td>
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
<td>
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
<a title="Allows retrieval of a historical version of a DAFEncounter" href="#DAFEncounterSearch">SHOULD</a>
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
</td>
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
<td>
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
<a title="Allows review of changes to DAFEncounter over time" href="#DAFEncounterSearch">SHOULD</a>
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
</td>
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
</tr>
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
<tr>
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
<th>
|
|
396
|
+
|
|
397
|
+
<a href="familymemberhistory-daf.html">DAFFamilyMemberHistory</a>
|
|
398
|
+
|
|
399
|
+
</th>
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
<td>
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
<a title="Allows discovery of DAFFamilyHistory resources based on different search criteria" href="#DAFFamilyHistorySearch">SHOULD</a>
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
</td>
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
<td>
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
<a title="Allows retrieval of a specific DAFFamilyHistory by id" href="#DAFFamilyHistorySearch">SHOULD</a>
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
</td>
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
<td>
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
<a title="Allows retrieval of a historical version of a DAFFamilyHistory" href="#DAFFamilyHistorySearch">SHOULD</a>
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
</td>
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
<td>
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
<a title="Allows review of changes to DAFFamilyHistory over time" href="#DAFFamilyHistorySearch">SHOULD</a>
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
</td>
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
</tr>
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
<tr>
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
<th>
|
|
445
|
+
|
|
446
|
+
<a href="immunization-daf.html">DAFImmunization</a>
|
|
447
|
+
|
|
448
|
+
</th>
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
<td>
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
<a title="Allows discovery of DAFImmunization resources based on different search criteria" href="#DAFImmunizationSearch">SHOULD</a>
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
</td>
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
<td>
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
<a title="Allows retrieval of a specific DAFImmunization by id" href="#DAFImmunizationSearch">SHOULD</a>
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
</td>
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
<td>
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
<a title="Allows retrieval of a historical version of a DAFImmunization" href="#DAFImmunizationSearch">SHOULD</a>
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
</td>
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
<td>
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
<a title="Allows review of changes to DAFImmunization over time" href="#DAFImmunizationSearch">SHOULD</a>
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
</td>
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
</tr>
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
<tr>
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
<th>
|
|
494
|
+
|
|
495
|
+
<a href="observation-daf-results.html">DAFResults</a>
|
|
496
|
+
|
|
497
|
+
</th>
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
<td>
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
<a title="Allows discovery of DAFResults resources based on different search criteria" href="#DAFResultsSearch">SHOULD</a>
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
</td>
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
<td>
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
<a title="Allows retrieval of a specific DAFResults by id" href="#DAFResultsSearch">SHOULD</a>
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
</td>
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
<td>
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
<a title="Allows retrieval of a historical version of a DAFResults" href="#DAFResultsSearch">SHOULD</a>
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
</td>
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
<td>
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
<a title="Allows review of changes to DAFResults over time" href="#DAFResultsSearch">SHOULD</a>
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
</td>
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
</tr>
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
<tr>
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
<th>
|
|
543
|
+
|
|
544
|
+
<a href="medication-daf.html">DAFMedication</a>
|
|
545
|
+
|
|
546
|
+
</th>
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
<td>
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
<a title="Allows discovery of DAFMedication resources based on different search criteria" href="#DAFMedicationSearch">SHOULD</a>
|
|
553
|
+
|
|
554
|
+
|
|
555
|
+
</td>
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
<td>
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
<a title="Allows retrieval of a specific DAFMedication by id" href="#DAFMedicationSearch">SHOULD</a>
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
</td>
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
<td>
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
<a title="Allows retrieval of a historical version of a DAFMedication" href="#DAFMedicationSearch">SHOULD</a>
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
</td>
|
|
574
|
+
|
|
575
|
+
|
|
576
|
+
<td>
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
<a title="Allows review of changes to DAFMedication over time" href="#DAFMedicationSearch">SHOULD</a>
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
</td>
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
</tr>
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
<tr>
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
<th>
|
|
592
|
+
|
|
593
|
+
<a href="medicationstatement-daf.html">DAFMedicationStatement</a>
|
|
594
|
+
|
|
595
|
+
</th>
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
<td>
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
<a title="Allows discovery of DAFMedicationStatement resources based on different search criteria" href="#DAFMedicationStatementSearch">SHOULD</a>
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
</td>
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
<td>
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
<a title="Allows retrieval of a specific DAFMedicationStatement by id" href="#DAFMedicationStatementSearch">SHOULD</a>
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
</td>
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
<td>
|
|
617
|
+
|
|
618
|
+
|
|
619
|
+
<a title="Allows retrieval of a historical version of a DAFMedicationStatement" href="#DAFMedicationStatementSearch">SHOULD</a>
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
</td>
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
<td>
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
<a title="Allows review of changes to DAFMedicationStatement over time" href="#DAFMedicationStatementSearch">SHOULD</a>
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
</td>
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
</tr>
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
<tr>
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
<th>
|
|
641
|
+
|
|
642
|
+
<a href="medicationadministration-daf.html">DAFMedicationAdministration</a>
|
|
643
|
+
|
|
644
|
+
</th>
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
<td>
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
<a title="Allows discovery of DAFMedicationAdministration resources based on different search criteria" href="#DAFMedicationAdministrationSearch">SHOULD</a>
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
</td>
|
|
654
|
+
|
|
655
|
+
|
|
656
|
+
<td>
|
|
657
|
+
|
|
658
|
+
|
|
659
|
+
<a title="Allows retrieval of a specific DAFMedicationAdministration by id" href="#DAFMedicationAdministrationSearch">SHOULD</a>
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
</td>
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
<td>
|
|
666
|
+
|
|
667
|
+
|
|
668
|
+
<a title="Allows retrieval of a historical version of a DAFMedicationAdministration" href="#DAFMedicationAdministrationSearch">SHOULD</a>
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
</td>
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
<td>
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
<a title="Allows review of changes to DAFMedicationAdministration over time" href="#DAFMedicationAdministrationSearch">SHOULD</a>
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
</td>
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
</tr>
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
<tr>
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
<th>
|
|
690
|
+
|
|
691
|
+
<a href="condition-daf.html">DAFCondition</a>
|
|
692
|
+
|
|
693
|
+
</th>
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
<td>
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
<a title="Allows discovery of DAFCondition resources based on different search criteria" href="#DAFConditionSearch">SHOULD</a>
|
|
700
|
+
|
|
701
|
+
|
|
702
|
+
</td>
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
<td>
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
<a title="Allows retrieval of a specific DAFCondition by id" href="#DAFConditionSearch">SHOULD</a>
|
|
709
|
+
|
|
710
|
+
|
|
711
|
+
</td>
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
<td>
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
<a title="Allows retrieval of a historical version of a DAFCondition" href="#DAFConditionSearch">SHOULD</a>
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
</td>
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
<td>
|
|
724
|
+
|
|
725
|
+
|
|
726
|
+
<a title="Allows review of changes to DAFCondition over time" href="#DAFConditionSearch">SHOULD</a>
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
</td>
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
</tr>
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
<tr>
|
|
736
|
+
|
|
737
|
+
|
|
738
|
+
<th>
|
|
739
|
+
|
|
740
|
+
<a href="procedure-daf.html">DAFProcedure</a>
|
|
741
|
+
|
|
742
|
+
</th>
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
<td>
|
|
746
|
+
|
|
747
|
+
|
|
748
|
+
<a title="Allows discovery of DAFProcedure resources based on different search criteria" href="#DAFProcedureSearch">SHOULD</a>
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
</td>
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
<td>
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
<a title="Allows retrieval of a specific DAFProcedure by id" href="#DAFProcedureSearch">SHOULD</a>
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
</td>
|
|
761
|
+
|
|
762
|
+
|
|
763
|
+
<td>
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
<a title="Allows retrieval of a historical version of a DAFProcedure" href="#DAFProcedureSearch">SHOULD</a>
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
</td>
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
<td>
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
<a title="Allows review of changes to DAFProcedure over time" href="#DAFProcedureSearch">SHOULD</a>
|
|
776
|
+
|
|
777
|
+
|
|
778
|
+
</td>
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
</tr>
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
<tr>
|
|
785
|
+
|
|
786
|
+
|
|
787
|
+
<th>
|
|
788
|
+
|
|
789
|
+
<a href="observation-daf-smokingstatus.html">DAFSmokingStatus</a>
|
|
790
|
+
|
|
791
|
+
</th>
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
<td>
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
<a title="Allows discovery of DAFSmokingStatus resources based on different search criteria" href="#DAFSmokingStatusSearch">SHOULD</a>
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
</td>
|
|
801
|
+
|
|
802
|
+
|
|
803
|
+
<td>
|
|
804
|
+
|
|
805
|
+
|
|
806
|
+
<a title="Allows retrieval of a specific DAFSmokingStatus by id" href="#DAFSmokingStatusSearch">SHOULD</a>
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
</td>
|
|
810
|
+
|
|
811
|
+
|
|
812
|
+
<td>
|
|
813
|
+
|
|
814
|
+
|
|
815
|
+
<a title="Allows retrieval of a historical version of a DAFSmokingStatus" href="#DAFSmokingStatusSearch">SHOULD</a>
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
</td>
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
<td>
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
<a title="Allows review of changes to DAFSmokingStatus over time" href="#DAFSmokingStatusSearch">SHOULD</a>
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
</td>
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
</tr>
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
<tr>
|
|
834
|
+
|
|
835
|
+
|
|
836
|
+
<th>
|
|
837
|
+
|
|
838
|
+
<a href="observation-daf-vitalsigns.html">DAFVitalSigns</a>
|
|
839
|
+
|
|
840
|
+
</th>
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
<td>
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
<a title="Allows discovery of DAFVitalSigns resources based on different search criteria" href="#DAFVitalSignsSearch">SHOULD</a>
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
</td>
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
<td>
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
<a title="Allows retrieval of a specific DAFVitalSigns by id" href="#DAFVitalSignsSearch">SHOULD</a>
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
</td>
|
|
859
|
+
|
|
860
|
+
|
|
861
|
+
<td>
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
<a title="Allows retrieval of a historical version of a DAFVitalSigns" href="#DAFVitalSignsSearch">SHOULD</a>
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
</td>
|
|
868
|
+
|
|
869
|
+
|
|
870
|
+
<td>
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
<a title="Allows review of changes to DAFVitalSigns over time" href="#DAFVitalSignsSearch">SHOULD</a>
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
</td>
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
</tr>
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
<tr>
|
|
883
|
+
|
|
884
|
+
|
|
885
|
+
<th>
|
|
886
|
+
|
|
887
|
+
<a href="list-daf.html">DAFList</a>
|
|
888
|
+
|
|
889
|
+
</th>
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
<td>
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
<a title="Allows discovery of DAFList resources based on different search criteria" href="#DAFListSearch">SHOULD</a>
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
</td>
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
<td>
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
<a title="Allows retrieval of a specific DAFList by id" href="#DAFListSearch">SHOULD</a>
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
</td>
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
<td>
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
<a title="Allows retrieval of a historical version of a DAFList" href="#DAFListSearch">SHOULD</a>
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
</td>
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
<td>
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
<a title="Allows review of changes to DAFList over time" href="#DAFListSearch">SHOULD</a>
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
</td>
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
</tr>
|
|
929
|
+
|
|
930
|
+
|
|
931
|
+
</tbody>
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
</table>
|
|
935
|
+
|
|
936
|
+
|
|
937
|
+
<br/>
|
|
938
|
+
|
|
939
|
+
|
|
940
|
+
<br/>
|
|
941
|
+
|
|
942
|
+
|
|
943
|
+
|
|
944
|
+
<h3>Search Operations Summary</h3>
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
<p>DAF Requestors MAY use the following common parameters as part of queries related to DAF profiles:</p>
|
|
948
|
+
|
|
949
|
+
|
|
950
|
+
<ul>
|
|
951
|
+
|
|
952
|
+
|
|
953
|
+
<li>
|
|
954
|
+
|
|
955
|
+
<a href="../search.html#id">_id</a>
|
|
956
|
+
|
|
957
|
+
</li>
|
|
958
|
+
|
|
959
|
+
|
|
960
|
+
<li>
|
|
961
|
+
|
|
962
|
+
<a href="../search.html#lastUpdated">_lastUpdated</a>
|
|
963
|
+
|
|
964
|
+
</li>
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
<li>
|
|
968
|
+
|
|
969
|
+
<a href="../search.html#profile">_profile</a>
|
|
970
|
+
|
|
971
|
+
</li>
|
|
972
|
+
|
|
973
|
+
|
|
974
|
+
<li>
|
|
975
|
+
|
|
976
|
+
<a href="../search.html#security">_security</a>
|
|
977
|
+
|
|
978
|
+
</li>
|
|
979
|
+
|
|
980
|
+
|
|
981
|
+
<li>
|
|
982
|
+
|
|
983
|
+
<a href="../search.html#tag">_tag</a>
|
|
984
|
+
|
|
985
|
+
</li>
|
|
986
|
+
|
|
987
|
+
|
|
988
|
+
<li>
|
|
989
|
+
|
|
990
|
+
<a href="../search.html#text">_text</a>
|
|
991
|
+
|
|
992
|
+
</li>
|
|
993
|
+
|
|
994
|
+
|
|
995
|
+
<li>
|
|
996
|
+
|
|
997
|
+
<a href="../search.html#count">_count</a>
|
|
998
|
+
|
|
999
|
+
</li>
|
|
1000
|
+
|
|
1001
|
+
|
|
1002
|
+
<li>
|
|
1003
|
+
|
|
1004
|
+
<a href="../search.html#summary">_summary</a>
|
|
1005
|
+
|
|
1006
|
+
</li>
|
|
1007
|
+
|
|
1008
|
+
|
|
1009
|
+
<li>
|
|
1010
|
+
|
|
1011
|
+
<a href="../search.html#contained">_contained</a>
|
|
1012
|
+
|
|
1013
|
+
</li>
|
|
1014
|
+
|
|
1015
|
+
|
|
1016
|
+
<li>
|
|
1017
|
+
|
|
1018
|
+
<a href="../search.html#containedType">_containedType</a>
|
|
1019
|
+
|
|
1020
|
+
</li>
|
|
1021
|
+
|
|
1022
|
+
|
|
1023
|
+
</ul>
|
|
1024
|
+
|
|
1025
|
+
|
|
1026
|
+
<p>DAF Requestors SHOULD use the following common parameters as part of queries related to DAF profiles to avoid repeated queries.</p>
|
|
1027
|
+
|
|
1028
|
+
<ul>
|
|
1029
|
+
|
|
1030
|
+
<li>
|
|
1031
|
+
|
|
1032
|
+
<a href="../search.html#include">_include</a>
|
|
1033
|
+
|
|
1034
|
+
</li>
|
|
1035
|
+
|
|
1036
|
+
</ul>
|
|
1037
|
+
|
|
1038
|
+
|
|
1039
|
+
<p>DAF Requestors MAY use the following search contexts defined within the
|
|
1040
|
+
|
|
1041
|
+
<a href="../search.html#Introduction">FHIR</a> specification.
|
|
1042
|
+
|
|
1043
|
+
</p>
|
|
1044
|
+
|
|
1045
|
+
|
|
1046
|
+
<ul>
|
|
1047
|
+
|
|
1048
|
+
|
|
1049
|
+
<li>Search context by specifying a particular resource type</li>
|
|
1050
|
+
|
|
1051
|
+
|
|
1052
|
+
<li>Search context which specifies a compartment</li>
|
|
1053
|
+
|
|
1054
|
+
|
|
1055
|
+
</ul>
|
|
1056
|
+
|
|
1057
|
+
|
|
1058
|
+
<p>DAF Requestors MAY use
|
|
1059
|
+
|
|
1060
|
+
<a href="../search.html#Modifiers">Modifiers</a> as applicable to the data types of the search parameters to access data.
|
|
1061
|
+
DAF Requestors MAY use any search parameters that are appropriate for querying a particular FHIR resource, however they can only count on the search parameters that are identified as SHALL within the
|
|
1062
|
+
<a href="conformance-daf-query-responder.html">DAF Responder's conformance statement</a> to be used in the execution of the search. For a complete list of search parameters that are available, please refer to
|
|
1063
|
+
<a href="conformance-daf-query-responder.html">DAF Responder's conformance statement</a> and the search parameters supported by the base FHIR resources profiled by DAF.
|
|
1064
|
+
|
|
1065
|
+
</p>
|
|
1066
|
+
|
|
1067
|
+
|
|
1068
|
+
|
|
1069
|
+
<br/>
|
|
1070
|
+
|
|
1071
|
+
|
|
1072
|
+
<br/>
|
|
1073
|
+
|
|
1074
|
+
|
|
1075
|
+
<p>
|
|
1076
|
+
|
|
1077
|
+
|
|
1078
|
+
<b>Security:</b>
|
|
1079
|
+
|
|
1080
|
+
|
|
1081
|
+
</p>
|
|
1082
|
+
|
|
1083
|
+
|
|
1084
|
+
<p>Implementations must meet the security requirements documented in the
|
|
1085
|
+
|
|
1086
|
+
<a href="daf-security.html">DAF implementation guide</a>.
|
|
1087
|
+
|
|
1088
|
+
</p>
|
|
1089
|
+
|
|
1090
|
+
|
|
1091
|
+
|
|
1092
|
+
</div>
|
|
1093
|
+
</text>
|
|
1094
|
+
<name value="DAF Requestor"/>
|
|
1095
|
+
<status value="draft"/>
|
|
1096
|
+
<publisher value="U.S. Office of the National Coordinator (ONC)"/>
|
|
1097
|
+
<contact>
|
|
1098
|
+
<telecom>
|
|
1099
|
+
<system value="other"/>
|
|
1100
|
+
<value value="http://www.healthit.gov/"/>
|
|
1101
|
+
</telecom>
|
|
1102
|
+
</contact>
|
|
1103
|
+
<date value="2015-04-02"/>
|
|
1104
|
+
<description value="This profile defines the expected capabilities of the DAF Responder actor when conforming to the DAF FHIR implementation guide."/>
|
|
1105
|
+
<kind value="requirements"/>
|
|
1106
|
+
<fhirVersion value="1.0.2"/>
|
|
1107
|
+
<acceptUnknown value="extensions"/>
|
|
1108
|
+
<format value="xml"/>
|
|
1109
|
+
<format value="json"/>
|
|
1110
|
+
<rest>
|
|
1111
|
+
<mode value="client"/>
|
|
1112
|
+
<documentation value="The DAF Requestor SHOULD support querying of one or more FHIR resources using appropriate DAF profile(s), RESTful operations defined for the profile, Search parameters identified for the profile."/>
|
|
1113
|
+
<security>
|
|
1114
|
+
<description value="Implementations SHOULD meet the security requirements documented in the [[daf-security|DAF implementation guide]]."/>
|
|
1115
|
+
</security>
|
|
1116
|
+
<resource>
|
|
1117
|
+
<type value="Patient"/>
|
|
1118
|
+
<profile>
|
|
1119
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/daf-patient"/>
|
|
1120
|
+
</profile>
|
|
1121
|
+
<interaction>
|
|
1122
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1123
|
+
<valueCode value="SHOULD"/>
|
|
1124
|
+
</extension>
|
|
1125
|
+
<code value="search-type"/>
|
|
1126
|
+
<documentation value="Allows discovery of existing DAFPatient resources using different search criteria"/>
|
|
1127
|
+
</interaction>
|
|
1128
|
+
<interaction>
|
|
1129
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1130
|
+
<valueCode value="SHOULD"/>
|
|
1131
|
+
</extension>
|
|
1132
|
+
<code value="read"/>
|
|
1133
|
+
<documentation value="Allows retrieval of a specific DAFPatients by id"/>
|
|
1134
|
+
</interaction>
|
|
1135
|
+
<interaction>
|
|
1136
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1137
|
+
<valueCode value="SHOULD"/>
|
|
1138
|
+
</extension>
|
|
1139
|
+
<code value="history-instance"/>
|
|
1140
|
+
<documentation value="Allows review of changes to DAFPatient instance over time"/>
|
|
1141
|
+
</interaction>
|
|
1142
|
+
<interaction>
|
|
1143
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1144
|
+
<valueCode value="SHOULD"/>
|
|
1145
|
+
</extension>
|
|
1146
|
+
<code value="vread"/>
|
|
1147
|
+
<documentation value="Allows retrieval of a historical version of a DAFPatient instance"/>
|
|
1148
|
+
</interaction>
|
|
1149
|
+
<searchParam>
|
|
1150
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1151
|
+
<valueCode value="SHOULD"/>
|
|
1152
|
+
</extension>
|
|
1153
|
+
<name value="name"/>
|
|
1154
|
+
<definition value="http://hl7.org/fhir/SearchParameter/Patient-name"/>
|
|
1155
|
+
<type value="string"/>
|
|
1156
|
+
</searchParam>
|
|
1157
|
+
<searchParam>
|
|
1158
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1159
|
+
<valueCode value="SHOULD"/>
|
|
1160
|
+
</extension>
|
|
1161
|
+
<name value="family"/>
|
|
1162
|
+
<definition value="http://hl7.org/fhir/SearchParameter/Patient-family"/>
|
|
1163
|
+
<type value="string"/>
|
|
1164
|
+
</searchParam>
|
|
1165
|
+
<searchParam>
|
|
1166
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1167
|
+
<valueCode value="SHOULD"/>
|
|
1168
|
+
</extension>
|
|
1169
|
+
<name value="given"/>
|
|
1170
|
+
<definition value="http://hl7.org/fhir/SearchParameter/Patient-given"/>
|
|
1171
|
+
<type value="string"/>
|
|
1172
|
+
</searchParam>
|
|
1173
|
+
<searchParam>
|
|
1174
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1175
|
+
<valueCode value="SHOULD"/>
|
|
1176
|
+
</extension>
|
|
1177
|
+
<name value="identifier"/>
|
|
1178
|
+
<definition value="http://hl7.org/fhir/SearchParameter/Patient-identifier"/>
|
|
1179
|
+
<type value="token"/>
|
|
1180
|
+
</searchParam>
|
|
1181
|
+
<searchParam>
|
|
1182
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1183
|
+
<valueCode value="SHOULD"/>
|
|
1184
|
+
</extension>
|
|
1185
|
+
<name value="language"/>
|
|
1186
|
+
<definition value="http://hl7.org/fhir/SearchParameter/Patient-language"/>
|
|
1187
|
+
<type value="token"/>
|
|
1188
|
+
</searchParam>
|
|
1189
|
+
<searchParam>
|
|
1190
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1191
|
+
<valueCode value="SHOULD"/>
|
|
1192
|
+
</extension>
|
|
1193
|
+
<name value="telecom"/>
|
|
1194
|
+
<definition value="http://hl7.org/fhir/SearchParameter/Patient-telecom"/>
|
|
1195
|
+
<type value="string"/>
|
|
1196
|
+
</searchParam>
|
|
1197
|
+
<searchParam>
|
|
1198
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1199
|
+
<valueCode value="SHOULD"/>
|
|
1200
|
+
</extension>
|
|
1201
|
+
<name value="gender"/>
|
|
1202
|
+
<definition value="http://hl7.org/fhir/SearchParameter/Patient-gender"/>
|
|
1203
|
+
<type value="token"/>
|
|
1204
|
+
</searchParam>
|
|
1205
|
+
<searchParam>
|
|
1206
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1207
|
+
<valueCode value="SHOULD"/>
|
|
1208
|
+
</extension>
|
|
1209
|
+
<name value="birthdate"/>
|
|
1210
|
+
<definition value="http://hl7.org/fhir/SearchParameter/Patient-birthdate"/>
|
|
1211
|
+
<type value="date"/>
|
|
1212
|
+
</searchParam>
|
|
1213
|
+
<searchParam>
|
|
1214
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1215
|
+
<valueCode value="SHOULD"/>
|
|
1216
|
+
</extension>
|
|
1217
|
+
<name value="city"/>
|
|
1218
|
+
<definition value="http://hl7.org/fhir/SearchParameter/patient-extensions-Patient-city"/>
|
|
1219
|
+
<type value="string"/>
|
|
1220
|
+
</searchParam>
|
|
1221
|
+
<searchParam>
|
|
1222
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1223
|
+
<valueCode value="SHOULD"/>
|
|
1224
|
+
</extension>
|
|
1225
|
+
<name value="postalCode"/>
|
|
1226
|
+
<definition value="http://hl7.org/fhir/SearchParameter/patient-extensions-Patient-postalCode"/>
|
|
1227
|
+
<type value="string"/>
|
|
1228
|
+
</searchParam>
|
|
1229
|
+
<searchParam>
|
|
1230
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1231
|
+
<valueCode value="SHOULD"/>
|
|
1232
|
+
</extension>
|
|
1233
|
+
<name value="state"/>
|
|
1234
|
+
<definition value="http://hl7.org/fhir/SearchParameter/patient-extensions-Patient-state"/>
|
|
1235
|
+
<type value="string"/>
|
|
1236
|
+
</searchParam>
|
|
1237
|
+
<searchParam>
|
|
1238
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1239
|
+
<valueCode value="SHOULD"/>
|
|
1240
|
+
</extension>
|
|
1241
|
+
<name value="mothersMaidenName"/>
|
|
1242
|
+
<definition value="http://hl7.org/fhir/SearchParameter/patient-extensions-Patient-mothersMaidenName"/>
|
|
1243
|
+
<type value="string"/>
|
|
1244
|
+
</searchParam>
|
|
1245
|
+
<searchParam>
|
|
1246
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1247
|
+
<valueCode value="SHOULD"/>
|
|
1248
|
+
</extension>
|
|
1249
|
+
<name value="age"/>
|
|
1250
|
+
<definition value="http://hl7.org/fhir/SearchParameter/patient-extensions-Patient-age"/>
|
|
1251
|
+
<type value="number"/>
|
|
1252
|
+
</searchParam>
|
|
1253
|
+
<searchParam>
|
|
1254
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1255
|
+
<valueCode value="SHOULD"/>
|
|
1256
|
+
</extension>
|
|
1257
|
+
<name value="race"/>
|
|
1258
|
+
<definition value="http://hl7.org/fhir/SearchParameter/us-core-Patient-race"/>
|
|
1259
|
+
<type value="token"/>
|
|
1260
|
+
</searchParam>
|
|
1261
|
+
<searchParam>
|
|
1262
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1263
|
+
<valueCode value="SHOULD"/>
|
|
1264
|
+
</extension>
|
|
1265
|
+
<name value="ethnicity"/>
|
|
1266
|
+
<definition value="http://hl7.org/fhir/SearchParameter/us-core-Patient-ethnicity"/>
|
|
1267
|
+
<type value="token"/>
|
|
1268
|
+
</searchParam>
|
|
1269
|
+
</resource>
|
|
1270
|
+
<resource>
|
|
1271
|
+
<type value="AllergyIntolerance"/>
|
|
1272
|
+
<profile>
|
|
1273
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/daf-allergyintolerance"/>
|
|
1274
|
+
</profile>
|
|
1275
|
+
<interaction>
|
|
1276
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1277
|
+
<valueCode value="SHOULD"/>
|
|
1278
|
+
</extension>
|
|
1279
|
+
<code value="search-type"/>
|
|
1280
|
+
<documentation value="Allows discovery of existing DAFAllergyIntolerance resources using different search criteria"/>
|
|
1281
|
+
</interaction>
|
|
1282
|
+
<interaction>
|
|
1283
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1284
|
+
<valueCode value="SHOULD"/>
|
|
1285
|
+
</extension>
|
|
1286
|
+
<code value="read"/>
|
|
1287
|
+
<documentation value="Allows retrieval of a specific DAFAllergyIntolerance by id"/>
|
|
1288
|
+
</interaction>
|
|
1289
|
+
<interaction>
|
|
1290
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1291
|
+
<valueCode value="SHOULD"/>
|
|
1292
|
+
</extension>
|
|
1293
|
+
<code value="history-instance"/>
|
|
1294
|
+
<documentation value="Allows review of changes to DAFAllergyIntolerance instance over time"/>
|
|
1295
|
+
</interaction>
|
|
1296
|
+
<interaction>
|
|
1297
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1298
|
+
<valueCode value="SHOULD"/>
|
|
1299
|
+
</extension>
|
|
1300
|
+
<code value="vread"/>
|
|
1301
|
+
<documentation value="Allows retrieval of a historical version of a DAFAllergyIntolerance instance"/>
|
|
1302
|
+
</interaction>
|
|
1303
|
+
<searchInclude value="AllergyIntolerance.patient"/>
|
|
1304
|
+
<searchParam>
|
|
1305
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1306
|
+
<valueCode value="SHOULD"/>
|
|
1307
|
+
</extension>
|
|
1308
|
+
<name value="identifier"/>
|
|
1309
|
+
<type value="token"/>
|
|
1310
|
+
</searchParam>
|
|
1311
|
+
<searchParam>
|
|
1312
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1313
|
+
<valueCode value="SHOULD"/>
|
|
1314
|
+
</extension>
|
|
1315
|
+
<name value="patient"/>
|
|
1316
|
+
<type value="reference"/>
|
|
1317
|
+
<chain value="patient.identifier"/>
|
|
1318
|
+
<chain value="patient.name"/>
|
|
1319
|
+
<chain value="patient.given"/>
|
|
1320
|
+
<chain value="patient.family"/>
|
|
1321
|
+
</searchParam>
|
|
1322
|
+
<searchParam>
|
|
1323
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1324
|
+
<valueCode value="SHOULD"/>
|
|
1325
|
+
</extension>
|
|
1326
|
+
<name value="category"/>
|
|
1327
|
+
<type value="token"/>
|
|
1328
|
+
</searchParam>
|
|
1329
|
+
<searchParam>
|
|
1330
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1331
|
+
<valueCode value="SHOULD"/>
|
|
1332
|
+
</extension>
|
|
1333
|
+
<name value="status"/>
|
|
1334
|
+
<type value="token"/>
|
|
1335
|
+
</searchParam>
|
|
1336
|
+
<searchParam>
|
|
1337
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1338
|
+
<valueCode value="SHOULD"/>
|
|
1339
|
+
</extension>
|
|
1340
|
+
<name value="substance"/>
|
|
1341
|
+
<type value="token"/>
|
|
1342
|
+
</searchParam>
|
|
1343
|
+
<searchParam>
|
|
1344
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1345
|
+
<valueCode value="SHOULD"/>
|
|
1346
|
+
</extension>
|
|
1347
|
+
<name value="manifestation"/>
|
|
1348
|
+
<type value="token"/>
|
|
1349
|
+
</searchParam>
|
|
1350
|
+
<searchParam>
|
|
1351
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1352
|
+
<valueCode value="SHOULD"/>
|
|
1353
|
+
</extension>
|
|
1354
|
+
<name value="severity"/>
|
|
1355
|
+
<type value="token"/>
|
|
1356
|
+
</searchParam>
|
|
1357
|
+
<searchParam>
|
|
1358
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1359
|
+
<valueCode value="SHOULD"/>
|
|
1360
|
+
</extension>
|
|
1361
|
+
<name value="duration"/>
|
|
1362
|
+
<type value="quantity"/>
|
|
1363
|
+
</searchParam>
|
|
1364
|
+
<searchParam>
|
|
1365
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1366
|
+
<valueCode value="SHOULD"/>
|
|
1367
|
+
</extension>
|
|
1368
|
+
<name value="onset"/>
|
|
1369
|
+
<type value="date"/>
|
|
1370
|
+
</searchParam>
|
|
1371
|
+
</resource>
|
|
1372
|
+
<resource>
|
|
1373
|
+
<type value="DiagnosticOrder"/>
|
|
1374
|
+
<profile>
|
|
1375
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/daf-diagnosticorder"/>
|
|
1376
|
+
</profile>
|
|
1377
|
+
<interaction>
|
|
1378
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1379
|
+
<valueCode value="SHOULD"/>
|
|
1380
|
+
</extension>
|
|
1381
|
+
<code value="search-type"/>
|
|
1382
|
+
<documentation value="Allows discovery of existing DAFDiagnosticOrder resources using different search criteria"/>
|
|
1383
|
+
</interaction>
|
|
1384
|
+
<interaction>
|
|
1385
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1386
|
+
<valueCode value="SHOULD"/>
|
|
1387
|
+
</extension>
|
|
1388
|
+
<code value="read"/>
|
|
1389
|
+
<documentation value="Allows retrieval of a specific DAFDiagnosticOrder by id"/>
|
|
1390
|
+
</interaction>
|
|
1391
|
+
<interaction>
|
|
1392
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1393
|
+
<valueCode value="SHOULD"/>
|
|
1394
|
+
</extension>
|
|
1395
|
+
<code value="history-instance"/>
|
|
1396
|
+
<documentation value="Allows review of changes to DAFDiagnosticOrder instance over time"/>
|
|
1397
|
+
</interaction>
|
|
1398
|
+
<interaction>
|
|
1399
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1400
|
+
<valueCode value="SHOULD"/>
|
|
1401
|
+
</extension>
|
|
1402
|
+
<code value="vread"/>
|
|
1403
|
+
<documentation value="Allows retrieval of a historical version of a DAFDiagnosticOrder instance"/>
|
|
1404
|
+
</interaction>
|
|
1405
|
+
<searchInclude value="DiagnosticOrder.subject"/>
|
|
1406
|
+
<searchInclude value="DiagnosticOrder.orderer"/>
|
|
1407
|
+
<searchInclude value="DiagnosticOrder.encounter"/>
|
|
1408
|
+
<searchParam>
|
|
1409
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1410
|
+
<valueCode value="SHOULD"/>
|
|
1411
|
+
</extension>
|
|
1412
|
+
<name value="identifier"/>
|
|
1413
|
+
<type value="token"/>
|
|
1414
|
+
</searchParam>
|
|
1415
|
+
<searchParam>
|
|
1416
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1417
|
+
<valueCode value="SHOULD"/>
|
|
1418
|
+
</extension>
|
|
1419
|
+
<name value="patient"/>
|
|
1420
|
+
<type value="reference"/>
|
|
1421
|
+
<chain value="patient.identifier"/>
|
|
1422
|
+
<chain value="patient.name"/>
|
|
1423
|
+
<chain value="patient.given"/>
|
|
1424
|
+
<chain value="patient.family"/>
|
|
1425
|
+
</searchParam>
|
|
1426
|
+
<searchParam>
|
|
1427
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1428
|
+
<valueCode value="SHOULD"/>
|
|
1429
|
+
</extension>
|
|
1430
|
+
<name value="orderer"/>
|
|
1431
|
+
<type value="reference"/>
|
|
1432
|
+
<chain value="orderer.identifier"/>
|
|
1433
|
+
<chain value="orderer.given"/>
|
|
1434
|
+
<chain value="orderer.family"/>
|
|
1435
|
+
</searchParam>
|
|
1436
|
+
<searchParam>
|
|
1437
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1438
|
+
<valueCode value="SHOULD"/>
|
|
1439
|
+
</extension>
|
|
1440
|
+
<name value="code"/>
|
|
1441
|
+
<type value="token"/>
|
|
1442
|
+
</searchParam>
|
|
1443
|
+
<searchParam>
|
|
1444
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1445
|
+
<valueCode value="SHOULD"/>
|
|
1446
|
+
</extension>
|
|
1447
|
+
<name value="encounter"/>
|
|
1448
|
+
<type value="reference"/>
|
|
1449
|
+
<chain value="encounter.identifier"/>
|
|
1450
|
+
<chain value="encounter.type"/>
|
|
1451
|
+
</searchParam>
|
|
1452
|
+
<searchParam>
|
|
1453
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1454
|
+
<valueCode value="SHOULD"/>
|
|
1455
|
+
</extension>
|
|
1456
|
+
<name value="item-date"/>
|
|
1457
|
+
<type value="date"/>
|
|
1458
|
+
</searchParam>
|
|
1459
|
+
</resource>
|
|
1460
|
+
<resource>
|
|
1461
|
+
<type value="DiagnosticReport"/>
|
|
1462
|
+
<profile>
|
|
1463
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/daf-diagnosticreport"/>
|
|
1464
|
+
</profile>
|
|
1465
|
+
<interaction>
|
|
1466
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1467
|
+
<valueCode value="SHOULD"/>
|
|
1468
|
+
</extension>
|
|
1469
|
+
<code value="search-type"/>
|
|
1470
|
+
<documentation value="Allows discovery of existing DAFDiagnosticReport resources using different search criteria"/>
|
|
1471
|
+
</interaction>
|
|
1472
|
+
<interaction>
|
|
1473
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1474
|
+
<valueCode value="SHOULD"/>
|
|
1475
|
+
</extension>
|
|
1476
|
+
<code value="read"/>
|
|
1477
|
+
<documentation value="Allows retrieval of a specific DAFDiagnosticReport by id"/>
|
|
1478
|
+
</interaction>
|
|
1479
|
+
<interaction>
|
|
1480
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1481
|
+
<valueCode value="SHOULD"/>
|
|
1482
|
+
</extension>
|
|
1483
|
+
<code value="history-instance"/>
|
|
1484
|
+
<documentation value="Allows review of changes to DAFDiagnosticReport instance over time"/>
|
|
1485
|
+
</interaction>
|
|
1486
|
+
<interaction>
|
|
1487
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1488
|
+
<valueCode value="SHOULD"/>
|
|
1489
|
+
</extension>
|
|
1490
|
+
<code value="vread"/>
|
|
1491
|
+
<documentation value="Allows retrieval of a historical version of a DAFDiagnosticReport instance"/>
|
|
1492
|
+
</interaction>
|
|
1493
|
+
<searchInclude value="DiagnosticReport.subject"/>
|
|
1494
|
+
<searchInclude value="DiagnosticReport.performer"/>
|
|
1495
|
+
<searchInclude value="DiagnosticReport.encounter"/>
|
|
1496
|
+
<searchInclude value="DiagnosticReport.result"/>
|
|
1497
|
+
<searchParam>
|
|
1498
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1499
|
+
<valueCode value="SHOULD"/>
|
|
1500
|
+
</extension>
|
|
1501
|
+
<name value="identifier"/>
|
|
1502
|
+
<type value="token"/>
|
|
1503
|
+
</searchParam>
|
|
1504
|
+
<searchParam>
|
|
1505
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1506
|
+
<valueCode value="SHOULD"/>
|
|
1507
|
+
</extension>
|
|
1508
|
+
<name value="patient"/>
|
|
1509
|
+
<type value="reference"/>
|
|
1510
|
+
<chain value="patient.identifier"/>
|
|
1511
|
+
<chain value="patient.name"/>
|
|
1512
|
+
<chain value="patient.given"/>
|
|
1513
|
+
<chain value="patient.family"/>
|
|
1514
|
+
</searchParam>
|
|
1515
|
+
<searchParam>
|
|
1516
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1517
|
+
<valueCode value="SHOULD"/>
|
|
1518
|
+
</extension>
|
|
1519
|
+
<name value="name"/>
|
|
1520
|
+
<type value="token"/>
|
|
1521
|
+
</searchParam>
|
|
1522
|
+
<searchParam>
|
|
1523
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1524
|
+
<valueCode value="SHOULD"/>
|
|
1525
|
+
</extension>
|
|
1526
|
+
<name value="date"/>
|
|
1527
|
+
<type value="date"/>
|
|
1528
|
+
</searchParam>
|
|
1529
|
+
<searchParam>
|
|
1530
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1531
|
+
<valueCode value="SHOULD"/>
|
|
1532
|
+
</extension>
|
|
1533
|
+
<name value="encounter"/>
|
|
1534
|
+
<type value="reference"/>
|
|
1535
|
+
<chain value="encounter.identifier"/>
|
|
1536
|
+
<chain value="encounter.type"/>
|
|
1537
|
+
</searchParam>
|
|
1538
|
+
<searchParam>
|
|
1539
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1540
|
+
<valueCode value="SHOULD"/>
|
|
1541
|
+
</extension>
|
|
1542
|
+
<name value="performer"/>
|
|
1543
|
+
<type value="reference"/>
|
|
1544
|
+
<chain value="performer.identifier"/>
|
|
1545
|
+
<chain value="performer.name"/>
|
|
1546
|
+
</searchParam>
|
|
1547
|
+
<searchParam>
|
|
1548
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1549
|
+
<valueCode value="SHOULD"/>
|
|
1550
|
+
</extension>
|
|
1551
|
+
<name value="result"/>
|
|
1552
|
+
<type value="reference"/>
|
|
1553
|
+
<chain value="result.code"/>
|
|
1554
|
+
</searchParam>
|
|
1555
|
+
</resource>
|
|
1556
|
+
<resource>
|
|
1557
|
+
<type value="Encounter"/>
|
|
1558
|
+
<profile>
|
|
1559
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/daf-encounter"/>
|
|
1560
|
+
</profile>
|
|
1561
|
+
<interaction>
|
|
1562
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1563
|
+
<valueCode value="SHOULD"/>
|
|
1564
|
+
</extension>
|
|
1565
|
+
<code value="search-type"/>
|
|
1566
|
+
<documentation value="Allows discovery of existing DAFEncounter resources using different search criteria"/>
|
|
1567
|
+
</interaction>
|
|
1568
|
+
<interaction>
|
|
1569
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1570
|
+
<valueCode value="SHOULD"/>
|
|
1571
|
+
</extension>
|
|
1572
|
+
<code value="read"/>
|
|
1573
|
+
<documentation value="Allows retrieval of a specific DAFEncounter by id"/>
|
|
1574
|
+
</interaction>
|
|
1575
|
+
<interaction>
|
|
1576
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1577
|
+
<valueCode value="SHOULD"/>
|
|
1578
|
+
</extension>
|
|
1579
|
+
<code value="history-instance"/>
|
|
1580
|
+
<documentation value="Allows review of changes to DAFEncounter instance over time"/>
|
|
1581
|
+
</interaction>
|
|
1582
|
+
<interaction>
|
|
1583
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1584
|
+
<valueCode value="SHOULD"/>
|
|
1585
|
+
</extension>
|
|
1586
|
+
<code value="vread"/>
|
|
1587
|
+
<documentation value="Allows retrieval of a historical version of a DAFEncounter instance"/>
|
|
1588
|
+
</interaction>
|
|
1589
|
+
<searchInclude value="Encounter.patient"/>
|
|
1590
|
+
<searchInclude value="Encounter.location"/>
|
|
1591
|
+
<searchParam>
|
|
1592
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1593
|
+
<valueCode value="SHOULD"/>
|
|
1594
|
+
</extension>
|
|
1595
|
+
<name value="identifier"/>
|
|
1596
|
+
<type value="token"/>
|
|
1597
|
+
</searchParam>
|
|
1598
|
+
<searchParam>
|
|
1599
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1600
|
+
<valueCode value="SHOULD"/>
|
|
1601
|
+
</extension>
|
|
1602
|
+
<name value="patient"/>
|
|
1603
|
+
<type value="reference"/>
|
|
1604
|
+
<chain value="patient.identifier"/>
|
|
1605
|
+
<chain value="patient.name"/>
|
|
1606
|
+
<chain value="patient.given"/>
|
|
1607
|
+
<chain value="patient.family"/>
|
|
1608
|
+
</searchParam>
|
|
1609
|
+
<searchParam>
|
|
1610
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1611
|
+
<valueCode value="SHOULD"/>
|
|
1612
|
+
</extension>
|
|
1613
|
+
<name value="location"/>
|
|
1614
|
+
<type value="reference"/>
|
|
1615
|
+
<chain value="location.identifier"/>
|
|
1616
|
+
<chain value="location.name"/>
|
|
1617
|
+
<chain value="location.address"/>
|
|
1618
|
+
</searchParam>
|
|
1619
|
+
<searchParam>
|
|
1620
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1621
|
+
<valueCode value="SHOULD"/>
|
|
1622
|
+
</extension>
|
|
1623
|
+
<name value="type"/>
|
|
1624
|
+
<type value="token"/>
|
|
1625
|
+
</searchParam>
|
|
1626
|
+
<searchParam>
|
|
1627
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1628
|
+
<valueCode value="SHOULD"/>
|
|
1629
|
+
</extension>
|
|
1630
|
+
<name value="date"/>
|
|
1631
|
+
<type value="date"/>
|
|
1632
|
+
</searchParam>
|
|
1633
|
+
<searchParam>
|
|
1634
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1635
|
+
<valueCode value="SHOULD"/>
|
|
1636
|
+
</extension>
|
|
1637
|
+
<name value="location-period"/>
|
|
1638
|
+
<type value="date"/>
|
|
1639
|
+
</searchParam>
|
|
1640
|
+
</resource>
|
|
1641
|
+
<resource>
|
|
1642
|
+
<type value="FamilyMemberHistory"/>
|
|
1643
|
+
<profile>
|
|
1644
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/daf-familymemberhistory"/>
|
|
1645
|
+
</profile>
|
|
1646
|
+
<interaction>
|
|
1647
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1648
|
+
<valueCode value="SHOULD"/>
|
|
1649
|
+
</extension>
|
|
1650
|
+
<code value="search-type"/>
|
|
1651
|
+
<documentation value="Allows discovery of existing DAFFamilyHistory resources using different search criteria"/>
|
|
1652
|
+
</interaction>
|
|
1653
|
+
<interaction>
|
|
1654
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1655
|
+
<valueCode value="SHOULD"/>
|
|
1656
|
+
</extension>
|
|
1657
|
+
<code value="read"/>
|
|
1658
|
+
<documentation value="Allows retrieval of a specific DAFFamilyHistory by id"/>
|
|
1659
|
+
</interaction>
|
|
1660
|
+
<interaction>
|
|
1661
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1662
|
+
<valueCode value="SHOULD"/>
|
|
1663
|
+
</extension>
|
|
1664
|
+
<code value="history-instance"/>
|
|
1665
|
+
<documentation value="Allows review of changes to DAFFamilyHistory instance over time"/>
|
|
1666
|
+
</interaction>
|
|
1667
|
+
<interaction>
|
|
1668
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1669
|
+
<valueCode value="SHOULD"/>
|
|
1670
|
+
</extension>
|
|
1671
|
+
<code value="vread"/>
|
|
1672
|
+
<documentation value="Allows retrieval of a historical version of a DAFFamilyHistory instance"/>
|
|
1673
|
+
</interaction>
|
|
1674
|
+
<searchInclude value="FamilyMemberHistory.patient"/>
|
|
1675
|
+
<searchParam>
|
|
1676
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1677
|
+
<valueCode value="SHOULD"/>
|
|
1678
|
+
</extension>
|
|
1679
|
+
<name value="identifier"/>
|
|
1680
|
+
<type value="token"/>
|
|
1681
|
+
</searchParam>
|
|
1682
|
+
<searchParam>
|
|
1683
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1684
|
+
<valueCode value="SHOULD"/>
|
|
1685
|
+
</extension>
|
|
1686
|
+
<name value="patient"/>
|
|
1687
|
+
<type value="reference"/>
|
|
1688
|
+
<chain value="patient.identifier"/>
|
|
1689
|
+
<chain value="patient.name"/>
|
|
1690
|
+
<chain value="patient.given"/>
|
|
1691
|
+
<chain value="patient.family"/>
|
|
1692
|
+
</searchParam>
|
|
1693
|
+
<searchParam>
|
|
1694
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1695
|
+
<valueCode value="SHOULD"/>
|
|
1696
|
+
</extension>
|
|
1697
|
+
<name value="relationship"/>
|
|
1698
|
+
<type value="token"/>
|
|
1699
|
+
</searchParam>
|
|
1700
|
+
<searchParam>
|
|
1701
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1702
|
+
<valueCode value="SHOULD"/>
|
|
1703
|
+
</extension>
|
|
1704
|
+
<name value="familymemberhistorycondition"/>
|
|
1705
|
+
<type value="token"/>
|
|
1706
|
+
</searchParam>
|
|
1707
|
+
</resource>
|
|
1708
|
+
<resource>
|
|
1709
|
+
<type value="Immunization"/>
|
|
1710
|
+
<profile>
|
|
1711
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/daf-immunization"/>
|
|
1712
|
+
</profile>
|
|
1713
|
+
<interaction>
|
|
1714
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1715
|
+
<valueCode value="SHOULD"/>
|
|
1716
|
+
</extension>
|
|
1717
|
+
<code value="search-type"/>
|
|
1718
|
+
<documentation value="Allows discovery of existing DAFImmunization resources using different search criteria"/>
|
|
1719
|
+
</interaction>
|
|
1720
|
+
<interaction>
|
|
1721
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1722
|
+
<valueCode value="SHOULD"/>
|
|
1723
|
+
</extension>
|
|
1724
|
+
<code value="read"/>
|
|
1725
|
+
<documentation value="Allows retrieval of a specific DAFImmunization by id"/>
|
|
1726
|
+
</interaction>
|
|
1727
|
+
<interaction>
|
|
1728
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1729
|
+
<valueCode value="SHOULD"/>
|
|
1730
|
+
</extension>
|
|
1731
|
+
<code value="history-instance"/>
|
|
1732
|
+
<documentation value="Allows review of changes to DAFImmunization instance over time"/>
|
|
1733
|
+
</interaction>
|
|
1734
|
+
<interaction>
|
|
1735
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1736
|
+
<valueCode value="SHOULD"/>
|
|
1737
|
+
</extension>
|
|
1738
|
+
<code value="vread"/>
|
|
1739
|
+
<documentation value="Allows retrieval of a historical version of a DAFImmunization instance"/>
|
|
1740
|
+
</interaction>
|
|
1741
|
+
<searchInclude value="Immunization.patient"/>
|
|
1742
|
+
<searchInclude value="Immunization.performer"/>
|
|
1743
|
+
<searchInclude value="Immunization.requester"/>
|
|
1744
|
+
<searchInclude value="Immunization.manufacturer"/>
|
|
1745
|
+
<searchInclude value="Immunization.reaction.detail"/>
|
|
1746
|
+
<searchParam>
|
|
1747
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1748
|
+
<valueCode value="SHOULD"/>
|
|
1749
|
+
</extension>
|
|
1750
|
+
<name value="identifier"/>
|
|
1751
|
+
<type value="token"/>
|
|
1752
|
+
</searchParam>
|
|
1753
|
+
<searchParam>
|
|
1754
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1755
|
+
<valueCode value="SHOULD"/>
|
|
1756
|
+
</extension>
|
|
1757
|
+
<name value="patient"/>
|
|
1758
|
+
<type value="reference"/>
|
|
1759
|
+
<chain value="patient.identifier"/>
|
|
1760
|
+
<chain value="patient.name"/>
|
|
1761
|
+
<chain value="patient.given"/>
|
|
1762
|
+
<chain value="patient.family"/>
|
|
1763
|
+
</searchParam>
|
|
1764
|
+
<searchParam>
|
|
1765
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1766
|
+
<valueCode value="SHOULD"/>
|
|
1767
|
+
</extension>
|
|
1768
|
+
<name value="date"/>
|
|
1769
|
+
<type value="date"/>
|
|
1770
|
+
</searchParam>
|
|
1771
|
+
<searchParam>
|
|
1772
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1773
|
+
<valueCode value="SHOULD"/>
|
|
1774
|
+
</extension>
|
|
1775
|
+
<name value="vaccine-type"/>
|
|
1776
|
+
<type value="token"/>
|
|
1777
|
+
</searchParam>
|
|
1778
|
+
<searchParam>
|
|
1779
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1780
|
+
<valueCode value="SHOULD"/>
|
|
1781
|
+
</extension>
|
|
1782
|
+
<name value="notgiven"/>
|
|
1783
|
+
<type value="token"/>
|
|
1784
|
+
</searchParam>
|
|
1785
|
+
<searchParam>
|
|
1786
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1787
|
+
<valueCode value="SHOULD"/>
|
|
1788
|
+
</extension>
|
|
1789
|
+
<name value="lot-number"/>
|
|
1790
|
+
<type value="string"/>
|
|
1791
|
+
</searchParam>
|
|
1792
|
+
<searchParam>
|
|
1793
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1794
|
+
<valueCode value="SHOULD"/>
|
|
1795
|
+
</extension>
|
|
1796
|
+
<name value="requester"/>
|
|
1797
|
+
<type value="reference"/>
|
|
1798
|
+
<chain value="requester.identifier"/>
|
|
1799
|
+
<chain value="requester.name"/>
|
|
1800
|
+
</searchParam>
|
|
1801
|
+
</resource>
|
|
1802
|
+
<resource>
|
|
1803
|
+
<type value="Observation"/>
|
|
1804
|
+
<profile>
|
|
1805
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/daf-resultobscode"/>
|
|
1806
|
+
</profile>
|
|
1807
|
+
<interaction>
|
|
1808
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1809
|
+
<valueCode value="SHOULD"/>
|
|
1810
|
+
</extension>
|
|
1811
|
+
<code value="search-type"/>
|
|
1812
|
+
<documentation value="Allows discovery of existing DAFResults resources using different search criteria"/>
|
|
1813
|
+
</interaction>
|
|
1814
|
+
<interaction>
|
|
1815
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1816
|
+
<valueCode value="SHOULD"/>
|
|
1817
|
+
</extension>
|
|
1818
|
+
<code value="read"/>
|
|
1819
|
+
<documentation value="Allows retrieval of a specific DAFResults by id"/>
|
|
1820
|
+
</interaction>
|
|
1821
|
+
<interaction>
|
|
1822
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1823
|
+
<valueCode value="SHOULD"/>
|
|
1824
|
+
</extension>
|
|
1825
|
+
<code value="history-instance"/>
|
|
1826
|
+
<documentation value="Allows review of changes to DAFResults instance over time"/>
|
|
1827
|
+
</interaction>
|
|
1828
|
+
<interaction>
|
|
1829
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1830
|
+
<valueCode value="SHOULD"/>
|
|
1831
|
+
</extension>
|
|
1832
|
+
<code value="vread"/>
|
|
1833
|
+
<documentation value="Allows retrieval of a historical version of a DAFResults instance"/>
|
|
1834
|
+
</interaction>
|
|
1835
|
+
<searchInclude value="Observation.encounter"/>
|
|
1836
|
+
<searchInclude value="Observation.subject"/>
|
|
1837
|
+
<searchParam>
|
|
1838
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1839
|
+
<valueCode value="SHOULD"/>
|
|
1840
|
+
</extension>
|
|
1841
|
+
<name value="identifier"/>
|
|
1842
|
+
<type value="token"/>
|
|
1843
|
+
</searchParam>
|
|
1844
|
+
<searchParam>
|
|
1845
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1846
|
+
<valueCode value="SHOULD"/>
|
|
1847
|
+
</extension>
|
|
1848
|
+
<name value="patient"/>
|
|
1849
|
+
<type value="reference"/>
|
|
1850
|
+
<chain value="patient.identifier"/>
|
|
1851
|
+
<chain value="patient.name"/>
|
|
1852
|
+
<chain value="patient.given"/>
|
|
1853
|
+
<chain value="patient.family"/>
|
|
1854
|
+
</searchParam>
|
|
1855
|
+
<searchParam>
|
|
1856
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1857
|
+
<valueCode value="SHOULD"/>
|
|
1858
|
+
</extension>
|
|
1859
|
+
<name value="code"/>
|
|
1860
|
+
<type value="token"/>
|
|
1861
|
+
</searchParam>
|
|
1862
|
+
<searchParam>
|
|
1863
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1864
|
+
<valueCode value="SHOULD"/>
|
|
1865
|
+
</extension>
|
|
1866
|
+
<name value="value-concept"/>
|
|
1867
|
+
<type value="token"/>
|
|
1868
|
+
</searchParam>
|
|
1869
|
+
<searchParam>
|
|
1870
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1871
|
+
<valueCode value="SHOULD"/>
|
|
1872
|
+
</extension>
|
|
1873
|
+
<name value="code-value[x]"/>
|
|
1874
|
+
<type value="composite"/>
|
|
1875
|
+
</searchParam>
|
|
1876
|
+
<searchParam>
|
|
1877
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1878
|
+
<valueCode value="SHOULD"/>
|
|
1879
|
+
</extension>
|
|
1880
|
+
<name value="date"/>
|
|
1881
|
+
<type value="date"/>
|
|
1882
|
+
</searchParam>
|
|
1883
|
+
<searchParam>
|
|
1884
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1885
|
+
<valueCode value="SHOULD"/>
|
|
1886
|
+
</extension>
|
|
1887
|
+
<name value="encounter"/>
|
|
1888
|
+
<type value="reference"/>
|
|
1889
|
+
<chain value="encounter.identifier"/>
|
|
1890
|
+
<chain value="encounter.type"/>
|
|
1891
|
+
</searchParam>
|
|
1892
|
+
</resource>
|
|
1893
|
+
<resource>
|
|
1894
|
+
<type value="Medication"/>
|
|
1895
|
+
<profile>
|
|
1896
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/daf-medication"/>
|
|
1897
|
+
</profile>
|
|
1898
|
+
<interaction>
|
|
1899
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1900
|
+
<valueCode value="SHOULD"/>
|
|
1901
|
+
</extension>
|
|
1902
|
+
<code value="search-type"/>
|
|
1903
|
+
<documentation value="Allows discovery of existing DAFMedication resources using different search criteria"/>
|
|
1904
|
+
</interaction>
|
|
1905
|
+
<interaction>
|
|
1906
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1907
|
+
<valueCode value="SHOULD"/>
|
|
1908
|
+
</extension>
|
|
1909
|
+
<code value="read"/>
|
|
1910
|
+
<documentation value="Allows retrieval of a specific DAFMedication by id"/>
|
|
1911
|
+
</interaction>
|
|
1912
|
+
<interaction>
|
|
1913
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1914
|
+
<valueCode value="SHOULD"/>
|
|
1915
|
+
</extension>
|
|
1916
|
+
<code value="history-instance"/>
|
|
1917
|
+
<documentation value="Allows review of changes to DAFMedication instance over time"/>
|
|
1918
|
+
</interaction>
|
|
1919
|
+
<interaction>
|
|
1920
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1921
|
+
<valueCode value="SHOULD"/>
|
|
1922
|
+
</extension>
|
|
1923
|
+
<code value="vread"/>
|
|
1924
|
+
<documentation value="Allows retrieval of a historical version of a DAFMedication instance"/>
|
|
1925
|
+
</interaction>
|
|
1926
|
+
<searchInclude value="Medication.manufacturer"/>
|
|
1927
|
+
<searchParam>
|
|
1928
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1929
|
+
<valueCode value="SHOULD"/>
|
|
1930
|
+
</extension>
|
|
1931
|
+
<name value="identifier"/>
|
|
1932
|
+
<type value="token"/>
|
|
1933
|
+
</searchParam>
|
|
1934
|
+
<searchParam>
|
|
1935
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1936
|
+
<valueCode value="SHOULD"/>
|
|
1937
|
+
</extension>
|
|
1938
|
+
<name value="code"/>
|
|
1939
|
+
<type value="token"/>
|
|
1940
|
+
</searchParam>
|
|
1941
|
+
<searchParam>
|
|
1942
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1943
|
+
<valueCode value="SHOULD"/>
|
|
1944
|
+
</extension>
|
|
1945
|
+
<name value="name"/>
|
|
1946
|
+
<type value="string"/>
|
|
1947
|
+
</searchParam>
|
|
1948
|
+
<searchParam>
|
|
1949
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1950
|
+
<valueCode value="SHOULD"/>
|
|
1951
|
+
</extension>
|
|
1952
|
+
<name value="form"/>
|
|
1953
|
+
<type value="token"/>
|
|
1954
|
+
</searchParam>
|
|
1955
|
+
<searchParam>
|
|
1956
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1957
|
+
<valueCode value="SHOULD"/>
|
|
1958
|
+
</extension>
|
|
1959
|
+
<name value="ingredient"/>
|
|
1960
|
+
<type value="reference"/>
|
|
1961
|
+
</searchParam>
|
|
1962
|
+
</resource>
|
|
1963
|
+
<resource>
|
|
1964
|
+
<type value="MedicationStatement"/>
|
|
1965
|
+
<profile>
|
|
1966
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/daf-medicationstatement"/>
|
|
1967
|
+
</profile>
|
|
1968
|
+
<interaction>
|
|
1969
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1970
|
+
<valueCode value="SHOULD"/>
|
|
1971
|
+
</extension>
|
|
1972
|
+
<code value="search-type"/>
|
|
1973
|
+
<documentation value="Allows discovery of existing DAFMedicationStatement resources using different search criteria"/>
|
|
1974
|
+
</interaction>
|
|
1975
|
+
<interaction>
|
|
1976
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1977
|
+
<valueCode value="SHOULD"/>
|
|
1978
|
+
</extension>
|
|
1979
|
+
<code value="read"/>
|
|
1980
|
+
<documentation value="Allows retrieval of a specific DAFMedicationStatement by id"/>
|
|
1981
|
+
</interaction>
|
|
1982
|
+
<interaction>
|
|
1983
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1984
|
+
<valueCode value="SHOULD"/>
|
|
1985
|
+
</extension>
|
|
1986
|
+
<code value="history-instance"/>
|
|
1987
|
+
<documentation value="Allows review of changes to DAFMedicationStatement instance over time"/>
|
|
1988
|
+
</interaction>
|
|
1989
|
+
<interaction>
|
|
1990
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
1991
|
+
<valueCode value="SHOULD"/>
|
|
1992
|
+
</extension>
|
|
1993
|
+
<code value="vread"/>
|
|
1994
|
+
<documentation value="Allows retrieval of a historical version of a DAFMedicationStatement instance"/>
|
|
1995
|
+
</interaction>
|
|
1996
|
+
<searchInclude value="MedicationStatement.patient"/>
|
|
1997
|
+
<searchInclude value="MedicationStatement.medication"/>
|
|
1998
|
+
<searchParam>
|
|
1999
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2000
|
+
<valueCode value="SHOULD"/>
|
|
2001
|
+
</extension>
|
|
2002
|
+
<name value="identifier"/>
|
|
2003
|
+
<type value="token"/>
|
|
2004
|
+
</searchParam>
|
|
2005
|
+
<searchParam>
|
|
2006
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2007
|
+
<valueCode value="SHOULD"/>
|
|
2008
|
+
</extension>
|
|
2009
|
+
<name value="patient"/>
|
|
2010
|
+
<type value="reference"/>
|
|
2011
|
+
<chain value="patient.identifier"/>
|
|
2012
|
+
<chain value="patient.name"/>
|
|
2013
|
+
<chain value="patient.given"/>
|
|
2014
|
+
<chain value="patient.family"/>
|
|
2015
|
+
</searchParam>
|
|
2016
|
+
<searchParam>
|
|
2017
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2018
|
+
<valueCode value="SHOULD"/>
|
|
2019
|
+
</extension>
|
|
2020
|
+
<name value="effectivedate"/>
|
|
2021
|
+
<type value="date"/>
|
|
2022
|
+
</searchParam>
|
|
2023
|
+
<searchParam>
|
|
2024
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2025
|
+
<valueCode value="SHOULD"/>
|
|
2026
|
+
</extension>
|
|
2027
|
+
<name value="medication"/>
|
|
2028
|
+
<type value="reference"/>
|
|
2029
|
+
<chain value="medication.code"/>
|
|
2030
|
+
<chain value="medication.name"/>
|
|
2031
|
+
</searchParam>
|
|
2032
|
+
</resource>
|
|
2033
|
+
<resource>
|
|
2034
|
+
<type value="MedicationAdministration"/>
|
|
2035
|
+
<profile>
|
|
2036
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/daf-medicationadministration"/>
|
|
2037
|
+
</profile>
|
|
2038
|
+
<interaction>
|
|
2039
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2040
|
+
<valueCode value="SHOULD"/>
|
|
2041
|
+
</extension>
|
|
2042
|
+
<code value="search-type"/>
|
|
2043
|
+
<documentation value="Allows discovery of existing DAFMedicationAdministration resources using different search criteria"/>
|
|
2044
|
+
</interaction>
|
|
2045
|
+
<interaction>
|
|
2046
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2047
|
+
<valueCode value="SHOULD"/>
|
|
2048
|
+
</extension>
|
|
2049
|
+
<code value="read"/>
|
|
2050
|
+
<documentation value="Allows retrieval of a specific DAFMedicationAdministration by id"/>
|
|
2051
|
+
</interaction>
|
|
2052
|
+
<interaction>
|
|
2053
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2054
|
+
<valueCode value="SHOULD"/>
|
|
2055
|
+
</extension>
|
|
2056
|
+
<code value="history-instance"/>
|
|
2057
|
+
<documentation value="Allows review of changes to DAFMedicationAdministration instance over time"/>
|
|
2058
|
+
</interaction>
|
|
2059
|
+
<interaction>
|
|
2060
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2061
|
+
<valueCode value="SHOULD"/>
|
|
2062
|
+
</extension>
|
|
2063
|
+
<code value="vread"/>
|
|
2064
|
+
<documentation value="Allows retrieval of a historical version of a DAFMedicationAdministration instance"/>
|
|
2065
|
+
</interaction>
|
|
2066
|
+
<searchInclude value="MedicationAdministration.patient"/>
|
|
2067
|
+
<searchInclude value="MedicationAdministration.practitioner"/>
|
|
2068
|
+
<searchInclude value="MedicationAdministration.encounter"/>
|
|
2069
|
+
<searchInclude value="MedicationAdministration.prescription"/>
|
|
2070
|
+
<searchParam>
|
|
2071
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2072
|
+
<valueCode value="SHOULD"/>
|
|
2073
|
+
</extension>
|
|
2074
|
+
<name value="identifier"/>
|
|
2075
|
+
<type value="token"/>
|
|
2076
|
+
</searchParam>
|
|
2077
|
+
<searchParam>
|
|
2078
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2079
|
+
<valueCode value="SHOULD"/>
|
|
2080
|
+
</extension>
|
|
2081
|
+
<name value="patient"/>
|
|
2082
|
+
<type value="reference"/>
|
|
2083
|
+
<chain value="patient.identifier"/>
|
|
2084
|
+
<chain value="patient.name"/>
|
|
2085
|
+
<chain value="patient.given"/>
|
|
2086
|
+
<chain value="patient.family"/>
|
|
2087
|
+
</searchParam>
|
|
2088
|
+
<searchParam>
|
|
2089
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2090
|
+
<valueCode value="SHOULD"/>
|
|
2091
|
+
</extension>
|
|
2092
|
+
<name value="effectivetime"/>
|
|
2093
|
+
<type value="date"/>
|
|
2094
|
+
</searchParam>
|
|
2095
|
+
<searchParam>
|
|
2096
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2097
|
+
<valueCode value="SHOULD"/>
|
|
2098
|
+
</extension>
|
|
2099
|
+
<name value="encounter"/>
|
|
2100
|
+
<type value="reference"/>
|
|
2101
|
+
<chain value="encounter.identifier"/>
|
|
2102
|
+
<chain value="encounter.type"/>
|
|
2103
|
+
</searchParam>
|
|
2104
|
+
<searchParam>
|
|
2105
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2106
|
+
<valueCode value="SHOULD"/>
|
|
2107
|
+
</extension>
|
|
2108
|
+
<name value="practitioner"/>
|
|
2109
|
+
<type value="reference"/>
|
|
2110
|
+
<chain value="practitioner.identifier"/>
|
|
2111
|
+
<chain value="practitioner.name"/>
|
|
2112
|
+
</searchParam>
|
|
2113
|
+
<searchParam>
|
|
2114
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2115
|
+
<valueCode value="SHOULD"/>
|
|
2116
|
+
</extension>
|
|
2117
|
+
<name value="prescription"/>
|
|
2118
|
+
<type value="reference"/>
|
|
2119
|
+
<chain value="prescription.identifier"/>
|
|
2120
|
+
<chain value="prescription.datewritten"/>
|
|
2121
|
+
</searchParam>
|
|
2122
|
+
</resource>
|
|
2123
|
+
<resource>
|
|
2124
|
+
<type value="Condition"/>
|
|
2125
|
+
<profile>
|
|
2126
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/daf-condition"/>
|
|
2127
|
+
</profile>
|
|
2128
|
+
<interaction>
|
|
2129
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2130
|
+
<valueCode value="SHOULD"/>
|
|
2131
|
+
</extension>
|
|
2132
|
+
<code value="search-type"/>
|
|
2133
|
+
<documentation value="Allows discovery of existing DAFCondition resources using different search criteria"/>
|
|
2134
|
+
</interaction>
|
|
2135
|
+
<interaction>
|
|
2136
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2137
|
+
<valueCode value="SHOULD"/>
|
|
2138
|
+
</extension>
|
|
2139
|
+
<code value="read"/>
|
|
2140
|
+
<documentation value="Allows retrieval of a specific DAFCondition by id"/>
|
|
2141
|
+
</interaction>
|
|
2142
|
+
<interaction>
|
|
2143
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2144
|
+
<valueCode value="SHOULD"/>
|
|
2145
|
+
</extension>
|
|
2146
|
+
<code value="history-instance"/>
|
|
2147
|
+
<documentation value="Allows review of changes to DAFCondition instance over time"/>
|
|
2148
|
+
</interaction>
|
|
2149
|
+
<interaction>
|
|
2150
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2151
|
+
<valueCode value="SHOULD"/>
|
|
2152
|
+
</extension>
|
|
2153
|
+
<code value="vread"/>
|
|
2154
|
+
<documentation value="Allows retrieval of a historical version of a DAFCondition instance"/>
|
|
2155
|
+
</interaction>
|
|
2156
|
+
<searchInclude value="Condition.patient"/>
|
|
2157
|
+
<searchInclude value="Condition.encounter"/>
|
|
2158
|
+
<searchInclude value="Condition.asserter"/>
|
|
2159
|
+
<searchParam>
|
|
2160
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2161
|
+
<valueCode value="SHOULD"/>
|
|
2162
|
+
</extension>
|
|
2163
|
+
<name value="identifier"/>
|
|
2164
|
+
<type value="token"/>
|
|
2165
|
+
</searchParam>
|
|
2166
|
+
<searchParam>
|
|
2167
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2168
|
+
<valueCode value="SHOULD"/>
|
|
2169
|
+
</extension>
|
|
2170
|
+
<name value="patient"/>
|
|
2171
|
+
<type value="reference"/>
|
|
2172
|
+
<chain value="patient.identifier"/>
|
|
2173
|
+
<chain value="patient.name"/>
|
|
2174
|
+
<chain value="patient.given"/>
|
|
2175
|
+
<chain value="patient.family"/>
|
|
2176
|
+
</searchParam>
|
|
2177
|
+
<searchParam>
|
|
2178
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2179
|
+
<valueCode value="SHOULD"/>
|
|
2180
|
+
</extension>
|
|
2181
|
+
<name value="code"/>
|
|
2182
|
+
<type value="token"/>
|
|
2183
|
+
</searchParam>
|
|
2184
|
+
<searchParam>
|
|
2185
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2186
|
+
<valueCode value="SHOULD"/>
|
|
2187
|
+
</extension>
|
|
2188
|
+
<name value="date-asserted"/>
|
|
2189
|
+
<type value="date"/>
|
|
2190
|
+
</searchParam>
|
|
2191
|
+
<searchParam>
|
|
2192
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2193
|
+
<valueCode value="SHOULD"/>
|
|
2194
|
+
</extension>
|
|
2195
|
+
<name value="encounter"/>
|
|
2196
|
+
<type value="reference"/>
|
|
2197
|
+
<chain value="encounter.identifier"/>
|
|
2198
|
+
<chain value="encounter.type"/>
|
|
2199
|
+
</searchParam>
|
|
2200
|
+
<searchParam>
|
|
2201
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2202
|
+
<valueCode value="SHOULD"/>
|
|
2203
|
+
</extension>
|
|
2204
|
+
<name value="onset"/>
|
|
2205
|
+
<type value="date"/>
|
|
2206
|
+
</searchParam>
|
|
2207
|
+
<searchParam>
|
|
2208
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2209
|
+
<valueCode value="SHOULD"/>
|
|
2210
|
+
</extension>
|
|
2211
|
+
<name value="severity"/>
|
|
2212
|
+
<type value="token"/>
|
|
2213
|
+
</searchParam>
|
|
2214
|
+
</resource>
|
|
2215
|
+
<resource>
|
|
2216
|
+
<type value="Procedure"/>
|
|
2217
|
+
<profile>
|
|
2218
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/daf-procedure"/>
|
|
2219
|
+
</profile>
|
|
2220
|
+
<interaction>
|
|
2221
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2222
|
+
<valueCode value="SHOULD"/>
|
|
2223
|
+
</extension>
|
|
2224
|
+
<code value="search-type"/>
|
|
2225
|
+
<documentation value="Allows discovery of existing DAFProcedure resources using different search criteria"/>
|
|
2226
|
+
</interaction>
|
|
2227
|
+
<interaction>
|
|
2228
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2229
|
+
<valueCode value="SHOULD"/>
|
|
2230
|
+
</extension>
|
|
2231
|
+
<code value="read"/>
|
|
2232
|
+
<documentation value="Allows retrieval of a specific DAFProcedure by id"/>
|
|
2233
|
+
</interaction>
|
|
2234
|
+
<interaction>
|
|
2235
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2236
|
+
<valueCode value="SHOULD"/>
|
|
2237
|
+
</extension>
|
|
2238
|
+
<code value="history-instance"/>
|
|
2239
|
+
<documentation value="Allows review of changes to DAFProcedure instance over time"/>
|
|
2240
|
+
</interaction>
|
|
2241
|
+
<interaction>
|
|
2242
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2243
|
+
<valueCode value="SHOULD"/>
|
|
2244
|
+
</extension>
|
|
2245
|
+
<code value="vread"/>
|
|
2246
|
+
<documentation value="Allows retrieval of a historical version of a DAFProcedure instance"/>
|
|
2247
|
+
</interaction>
|
|
2248
|
+
<searchInclude value="Procedure.patient"/>
|
|
2249
|
+
<searchInclude value="Procedure.encounter"/>
|
|
2250
|
+
<searchInclude value="Procedure.performer"/>
|
|
2251
|
+
<searchParam>
|
|
2252
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2253
|
+
<valueCode value="SHOULD"/>
|
|
2254
|
+
</extension>
|
|
2255
|
+
<name value="identifier"/>
|
|
2256
|
+
<type value="token"/>
|
|
2257
|
+
</searchParam>
|
|
2258
|
+
<searchParam>
|
|
2259
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2260
|
+
<valueCode value="SHOULD"/>
|
|
2261
|
+
</extension>
|
|
2262
|
+
<name value="type"/>
|
|
2263
|
+
<type value="token"/>
|
|
2264
|
+
</searchParam>
|
|
2265
|
+
<searchParam>
|
|
2266
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2267
|
+
<valueCode value="SHOULD"/>
|
|
2268
|
+
</extension>
|
|
2269
|
+
<name value="date"/>
|
|
2270
|
+
<type value="date"/>
|
|
2271
|
+
</searchParam>
|
|
2272
|
+
<searchParam>
|
|
2273
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2274
|
+
<valueCode value="SHOULD"/>
|
|
2275
|
+
</extension>
|
|
2276
|
+
<name value="patient"/>
|
|
2277
|
+
<type value="reference"/>
|
|
2278
|
+
<chain value="patient.identifier"/>
|
|
2279
|
+
<chain value="patient.name"/>
|
|
2280
|
+
<chain value="patient.given"/>
|
|
2281
|
+
<chain value="patient.family"/>
|
|
2282
|
+
</searchParam>
|
|
2283
|
+
<searchParam>
|
|
2284
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2285
|
+
<valueCode value="SHOULD"/>
|
|
2286
|
+
</extension>
|
|
2287
|
+
<name value="encounter"/>
|
|
2288
|
+
<type value="reference"/>
|
|
2289
|
+
<chain value="encounter.identifier"/>
|
|
2290
|
+
<chain value="encounter.type"/>
|
|
2291
|
+
</searchParam>
|
|
2292
|
+
</resource>
|
|
2293
|
+
<!--
|
|
2294
|
+
<resource>
|
|
2295
|
+
<type value="SmokingStatus"/>
|
|
2296
|
+
<profile>
|
|
2297
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/observation-daf-smokingstatus-dafsmokingstatus"/>
|
|
2298
|
+
</profile>
|
|
2299
|
+
<interaction>
|
|
2300
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2301
|
+
<valueCode value="SHOULD"/>
|
|
2302
|
+
</extension>
|
|
2303
|
+
<code value="search-type"/>
|
|
2304
|
+
<documentation value="Allows discovery of existing DAFSmokingStatus resources using different search criteria"/>
|
|
2305
|
+
</interaction>
|
|
2306
|
+
<interaction>
|
|
2307
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2308
|
+
<valueCode value="SHOULD"/>
|
|
2309
|
+
</extension>
|
|
2310
|
+
<code value="read"/>
|
|
2311
|
+
<documentation value="Allows retrieval of a specific DAFSmokingStatus by id"/>
|
|
2312
|
+
</interaction>
|
|
2313
|
+
<interaction>
|
|
2314
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2315
|
+
<valueCode value="SHOULD"/>
|
|
2316
|
+
</extension>
|
|
2317
|
+
<code value="history-instance"/>
|
|
2318
|
+
<documentation value="Allows review of changes to DAFSmokingStatus instance over time"/>
|
|
2319
|
+
</interaction>
|
|
2320
|
+
<interaction>
|
|
2321
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2322
|
+
<valueCode value="SHOULD"/>
|
|
2323
|
+
</extension>
|
|
2324
|
+
<code value="vread"/>
|
|
2325
|
+
<documentation value="Allows retrieval of a historical version of a DAFSmokingStatus instance"/>
|
|
2326
|
+
</interaction>
|
|
2327
|
+
<searchInclude value="Observation.subject"/>
|
|
2328
|
+
<searchInclude value="Observation.encounter"/>
|
|
2329
|
+
<searchParam>
|
|
2330
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2331
|
+
<valueCode value="SHOULD"/>
|
|
2332
|
+
</extension>
|
|
2333
|
+
<name value="identifier"/>
|
|
2334
|
+
<type value="token"/>
|
|
2335
|
+
</searchParam>
|
|
2336
|
+
<searchParam>
|
|
2337
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2338
|
+
<valueCode value="SHOULD"/>
|
|
2339
|
+
</extension>
|
|
2340
|
+
<name value="date"/>
|
|
2341
|
+
<type value="date"/>
|
|
2342
|
+
</searchParam>
|
|
2343
|
+
<searchParam>
|
|
2344
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2345
|
+
<valueCode value="SHOULD"/>
|
|
2346
|
+
</extension>
|
|
2347
|
+
<name value="value-concept"/>
|
|
2348
|
+
<type value="token"/>
|
|
2349
|
+
</searchParam>
|
|
2350
|
+
<searchParam>
|
|
2351
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2352
|
+
<valueCode value="SHOULD"/>
|
|
2353
|
+
</extension>
|
|
2354
|
+
<name value="patient"/>
|
|
2355
|
+
<type value="reference"/>
|
|
2356
|
+
<chain value="patient.identifier"/>
|
|
2357
|
+
<chain value="patient.name"/>
|
|
2358
|
+
<chain value="patient.given"/>
|
|
2359
|
+
<chain value="patient.family"/>
|
|
2360
|
+
</searchParam>
|
|
2361
|
+
</resource>
|
|
2362
|
+
<resource>
|
|
2363
|
+
<type value="DAFVitalSigns"/>
|
|
2364
|
+
<profile>
|
|
2365
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/daf-vitalsigns"/>
|
|
2366
|
+
</profile>
|
|
2367
|
+
<interaction>
|
|
2368
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2369
|
+
<valueCode value="SHOULD"/>
|
|
2370
|
+
</extension>
|
|
2371
|
+
<code value="search-type"/>
|
|
2372
|
+
<documentation value="Allows discovery of existing DAFVitalSigns resources using different search criteria"/>
|
|
2373
|
+
</interaction>
|
|
2374
|
+
<interaction>
|
|
2375
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2376
|
+
<valueCode value="SHOULD"/>
|
|
2377
|
+
</extension>
|
|
2378
|
+
<code value="read"/>
|
|
2379
|
+
<documentation value="Allows retrieval of a specific DAFVitalSigns by id"/>
|
|
2380
|
+
</interaction>
|
|
2381
|
+
<interaction>
|
|
2382
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2383
|
+
<valueCode value="SHOULD"/>
|
|
2384
|
+
</extension>
|
|
2385
|
+
<code value="history-instance"/>
|
|
2386
|
+
<documentation value="Allows review of changes to DAFVitalSigns instance over time"/>
|
|
2387
|
+
</interaction>
|
|
2388
|
+
<interaction>
|
|
2389
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2390
|
+
<valueCode value="SHOULD"/>
|
|
2391
|
+
</extension>
|
|
2392
|
+
<code value="vread"/>
|
|
2393
|
+
<documentation value="Allows retrieval of a historical version of a DAFVitalSigns instance"/>
|
|
2394
|
+
</interaction>
|
|
2395
|
+
<searchInclude value="Observation.subject"/>
|
|
2396
|
+
<searchInclude value="Observation.encounter"/>
|
|
2397
|
+
<searchParam>
|
|
2398
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2399
|
+
<valueCode value="SHOULD"/>
|
|
2400
|
+
</extension>
|
|
2401
|
+
<name value="identifier"/>
|
|
2402
|
+
<type value="token"/>
|
|
2403
|
+
</searchParam>
|
|
2404
|
+
<searchParam>
|
|
2405
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2406
|
+
<valueCode value="SHOULD"/>
|
|
2407
|
+
</extension>
|
|
2408
|
+
<name value="date"/>
|
|
2409
|
+
<type value="date"/>
|
|
2410
|
+
</searchParam>
|
|
2411
|
+
<searchParam>
|
|
2412
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2413
|
+
<valueCode value="SHOULD"/>
|
|
2414
|
+
</extension>
|
|
2415
|
+
<name value="value-quantity"/>
|
|
2416
|
+
<type value="quantity"/>
|
|
2417
|
+
</searchParam>
|
|
2418
|
+
<searchParam>
|
|
2419
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2420
|
+
<valueCode value="SHOULD"/>
|
|
2421
|
+
</extension>
|
|
2422
|
+
<name value="code"/>
|
|
2423
|
+
<type value="token"/>
|
|
2424
|
+
</searchParam>
|
|
2425
|
+
<searchParam>
|
|
2426
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2427
|
+
<valueCode value="SHOULD"/>
|
|
2428
|
+
</extension>
|
|
2429
|
+
<name value="code-value[x]"/>
|
|
2430
|
+
<type value="token"/>
|
|
2431
|
+
</searchParam>
|
|
2432
|
+
<searchParam>
|
|
2433
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2434
|
+
<valueCode value="SHOULD"/>
|
|
2435
|
+
</extension>
|
|
2436
|
+
<name value="patient"/>
|
|
2437
|
+
<type value="reference"/>
|
|
2438
|
+
<chain value="patient.identifier"/>
|
|
2439
|
+
<chain value="patient.name"/>
|
|
2440
|
+
<chain value="patient.given"/>
|
|
2441
|
+
<chain value="patient.family"/>
|
|
2442
|
+
</searchParam>
|
|
2443
|
+
</resource> -->
|
|
2444
|
+
<resource>
|
|
2445
|
+
<type value="List"/>
|
|
2446
|
+
<profile>
|
|
2447
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/daf-problemlist"/>
|
|
2448
|
+
</profile>
|
|
2449
|
+
<interaction>
|
|
2450
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2451
|
+
<valueCode value="SHOULD"/>
|
|
2452
|
+
</extension>
|
|
2453
|
+
<code value="search-type"/>
|
|
2454
|
+
<documentation value="Allows discovery of existing DAFList resources using different search criteria"/>
|
|
2455
|
+
</interaction>
|
|
2456
|
+
<interaction>
|
|
2457
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2458
|
+
<valueCode value="SHOULD"/>
|
|
2459
|
+
</extension>
|
|
2460
|
+
<code value="read"/>
|
|
2461
|
+
<documentation value="Allows retrieval of a specific DAFList by id"/>
|
|
2462
|
+
</interaction>
|
|
2463
|
+
<interaction>
|
|
2464
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2465
|
+
<valueCode value="SHOULD"/>
|
|
2466
|
+
</extension>
|
|
2467
|
+
<code value="history-instance"/>
|
|
2468
|
+
<documentation value="Allows review of changes to DAFList instance over time"/>
|
|
2469
|
+
</interaction>
|
|
2470
|
+
<interaction>
|
|
2471
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2472
|
+
<valueCode value="SHOULD"/>
|
|
2473
|
+
</extension>
|
|
2474
|
+
<code value="vread"/>
|
|
2475
|
+
<documentation value="Allows retrieval of a historical version of a DAFList instance"/>
|
|
2476
|
+
</interaction>
|
|
2477
|
+
<searchInclude value="List.subject"/>
|
|
2478
|
+
<searchInclude value="List.item"/>
|
|
2479
|
+
<searchParam>
|
|
2480
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2481
|
+
<valueCode value="SHOULD"/>
|
|
2482
|
+
</extension>
|
|
2483
|
+
<name value="patient"/>
|
|
2484
|
+
<type value="reference"/>
|
|
2485
|
+
<chain value="patient.identifier"/>
|
|
2486
|
+
<chain value="patient.name"/>
|
|
2487
|
+
<chain value="patient.given"/>
|
|
2488
|
+
<chain value="patient.family"/>
|
|
2489
|
+
</searchParam>
|
|
2490
|
+
<searchParam>
|
|
2491
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2492
|
+
<valueCode value="SHOULD"/>
|
|
2493
|
+
</extension>
|
|
2494
|
+
<name value="code"/>
|
|
2495
|
+
<type value="token"/>
|
|
2496
|
+
</searchParam>
|
|
2497
|
+
<searchParam>
|
|
2498
|
+
<extension url="http://hl7.org/fhir/StructureDefinition/conformance-expectation">
|
|
2499
|
+
<valueCode value="SHOULD"/>
|
|
2500
|
+
</extension>
|
|
2501
|
+
<name value="empty-reason"/>
|
|
2502
|
+
<type value="token"/>
|
|
2503
|
+
</searchParam>
|
|
2504
|
+
</resource>
|
|
2505
|
+
</rest>
|
|
2506
|
+
</Conformance>
|