Sha256: 2ee26b80a4d3b84e721351feff2bd2c9ce010a19ddacae67a475c5a911e1c6ef

Contents?: true

Size: 1.68 KB

Versions: 10

Compression:

Stored size: 1.68 KB

Contents

<?xml version="1.0" encoding="UTF-8"?>
<Bundle xmlns="http://hl7.org/fhir">
  <id value="bundle-request-medsallergies"/>
  <!--  This bundle is a batch of reqests to the FHIR RESTful API  -->
  <meta>
    <security>
      <system value="http://terminology.hl7.org/CodeSystem/v3-ActReason"/>
      <code value="HTEST"/>
      <display value="test health data"/>
    </security>
  </meta>
  <type value="batch"/>

  <!--  Each entry is used to represent a RESTful API request
       This request retrieves a single Patient resource  -->
  <entry>
    <request>
      <method value="GET"/>
      <url value="/Patient/example"/>
    </request>
  </entry>
  <!--  This request will retrieve the current MedicationStatements for the patient
       requested above  -->
  <entry>
    <request>
      <method value="GET"/>
      <url value="/MedicationStatement?patient=example&amp;_list=$current-medications"/>
    </request>
  </entry>
  <!--  This request will retrieve the current AllergyIntolerances for the same
       patient  -->
  <entry>
    <request>
      <method value="GET"/>
      <url value="/AllergyIntolerance?patient=example&amp;_list=$current-allergies"/>
    </request>
  </entry>
  <!--  This request will retrieve the current Conditions for the patient
       requested above  -->
  <entry>
    <request>
      <method value="GET"/>
      <url value="/Condition?patient=example&amp;_list=$current-problems"/>
    </request>
  </entry>
  <!--  This request will retrieve the Immunization History for the patient
       requested above  -->
  <entry>
    <request>
      <method value="GET"/>
      <url value="/MedicationStatement?patient=example&amp;notgiven:not=true"/>
    </request>
  </entry>
</Bundle>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
fhir_models-4.3.0 lib/fhir_models/examples/xml/bundle-request-medsallergies.xml
fhir_models-4.2.2 lib/fhir_models/examples/xml/bundle-request-medsallergies.xml
fhir_models-4.2.1 lib/fhir_models/examples/xml/bundle-request-medsallergies.xml
fhir_models-4.2.0 lib/fhir_models/examples/xml/bundle-request-medsallergies.xml
fhir_models-4.1.2 lib/fhir_models/examples/xml/bundle-request-medsallergies.xml
fhir_models-4.1.1 lib/fhir_models/examples/xml/bundle-request-medsallergies.xml
fhir_models-4.1.0 lib/fhir_models/examples/xml/bundle-request-medsallergies.xml
fhir_models-4.0.2 lib/fhir_models/examples/xml/bundle-request-medsallergies.xml
fhir_models-4.0.1 lib/fhir_models/examples/xml/bundle-request-medsallergies.xml
fhir_models-4.0.0 lib/fhir_models/examples/xml/bundle-request-medsallergies.xml