Argonaut Data Query Implementation Guide Version 1.0.0

This page is part of the Argonaut Data Query Implementation Guide (v1.0.0: Release) based on FHIR R2. This is the current published version. For a full list of available versions, see the Directory of published versions

{title?}


<Bundle xmlns="http://hl7.org/fhir">
  <id value="argo-mo3"/>
  <type value="searchset"/>
  <total value="1"/>
  <link>
    <relation value="self"/>
    <url
         value="https://fhir-open-api-dstu2.smarthealthit.org/MedicationOrder/?_id=argo-mo3&amp;_include=MedicationOrder:medication"/>
  </link>
  <entry>
    <fullUrl
             value="https://fhir-open-api-dstu2.smarthealthit.org/MedicationOrder/argo-mo3"/>
    <resource>
      <MedicationOrder>
      <!--  this is an example using an external reference to a medication resource
  -->
        <id value="argo-mo3"/>
        <meta>
          <profile
                   value="http://fhir.org/guides/argonaut/StructureDefinition/argo-medicationorder"/>
        </meta>
        <dateWritten value="2008-04-05"/>
        <status value="active"/>
        <patient>
          <reference value="Patient/peter-chalmers"/>
          <display value="Peter Chalmers"/>
        </patient>
        <prescriber>
          <reference value="Practitioner/1234"/>
          <display value="John Smith, MD"/>
        </prescriber>
      <!--    either a code or a reference to the medication being prescribed. As described earlier, this could be contained, separately
        within a bundle or simply a reference to a remote server.   -->
        <medicationReference>
          <reference value="Medication/argo-med2"/>
          <display value="Nizatidine 15 MG/ML Oral Solution [Axid]"/>
        </medicationReference>
      <!--  	The following elements are not mandatory for the Argonaut Profile   -->
        <dosageInstruction>
          <text value="10 mL bid"/>
          <timing>
            <repeat>
              <boundsPeriod>
                <start value="2008-04-05"/>
              </boundsPeriod>
            </repeat>
          </timing>
        </dosageInstruction>
        <dispenseRequest>
          <numberOfRepeatsAllowed value="1"/>
          <quantity>
            <value value="480"/>
            <unit value="mL"/>
            <system value="http://unitsofmeasure.org"/>
            <code value="mL"/>
          </quantity>
          <expectedSupplyDuration>
            <value value="30"/>
            <unit value="days"/>
            <system value="http://unitsofmeasure.org"/>
            <code value="d"/>
          </expectedSupplyDuration>
        </dispenseRequest>
      </MedicationOrder>
    </resource>
    <search>
      <mode value="match"/>
    </search>
  </entry>
  <entry>
    <fullUrl
             value="https://fhir-open-api-dstu2.smarthealthit.org/Medication/argo-med2"/>
    <resource>
      <Medication>
        <id value="argo-med2"/>
        <meta>
          <profile
                   value="http://fhir.org/guides/argonaut/StructureDefinition/argo-medication"/>
        </meta>
        <code>
          <coding>
            <system value="http://www.nlm.nih.gov/research/umls/rxnorm"/>
            <code value="582620"/>
            <display value="Nizatidine 15 MG/ML Oral Solution [Axid]"/>
          </coding>
          <text value="Nizatidine 15 MG/ML Oral Solution [Axid]"/>
        </code>
      </Medication>
    </resource>
    <search>
      <mode value="include"/>
    </search>
  </entry>
</Bundle>