This page is part of the FHIR Specification (v0.06: DSTU 1 Ballot 2). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions

 

Example of prescription (id = "example")

<Prescription xmlns="http://hl7.org/fhir">

  <identifier>
 <!--  
    
      http://hl7.org/fhir/sid/v2-0203
      MR
    
  -->
    <use>usual</use>
    <label>MRN</label>
    <identifier>
      <system>oid:0.1.2.3.4.5.6.7</system>
      <id>123456</id>
    </identifier>
  </identifier>

  <status>active</status>

  <patient>
    <type>Patient</type>
    <id>25bd34</id>
  </patient>

  <prescriber>
    <type>Agent</type>
    <id>example</id>
  </prescriber>

  <prescribed>2011-03-04T11:45:33+01:00</prescribed>

  <dispense>
    <repeats>2</repeats>
    <quantity>
      <value>50</value>
      <units>ml</units>
    </quantity>
    <dispenser>
      <type>Organization</type>
      <id>1</id>
    </dispenser>
  </dispense>

  <medicine>
    <identification>
      <text>Penicillin VK oral suspension, 125mg/5ml</text>
    </identification>
    <activeIngredient>
      <identification>
        <coding>
          <system>urn:hl7.org:sid/atc</system>
          <code>XXXXX</code>
          <display>Penicillin</display>
        </coding>
      </identification>      
      <quantityRatio>
        <numerator>
          <value>125</value>
          <units>mg</units>
          <system>http://unitsofmeasure.org</system>
          <code>mg</code>
        </numerator>
        <denominator>
          <value>5</value>
          <units>ml</units>
          <system>http://unitsofmeasure.org</system>
          <code>ml</code>
        </denominator>
      </quantityRatio>
    </activeIngredient>
    <inactiveIngredient>
      <identification>
        <coding>
          <system>urn:hl7.org:sid/atc</system>
          <code>YYYYY</code>
          <display>Water</display>
        </coding>  
      </identification>
      <quantityCode>sufficient</quantityCode>
    </inactiveIngredient>
  </medicine>

  <administrationRequest>
    <description>250 mg po tid x 10 days</description>
   
    <totalPeriodicDose>
      <numerator>
        <value>750</value>
        <units>mg</units>
        <system>http://unitsofmeasure.org</system>
        <code>mg</code>
      </numerator>
      <denominator>
        <value>1</value>
        <units>day</units>
        <system>http://unitsofmeasure.org</system>
        <code>d</code>
      </denominator>
    </totalPeriodicDose>
    
    <duration>
      <value>10</value>
      <units>days</units>
      <system>http://unitsofmeasure.org</system>
      <code>d</code>
    </duration>
    
    <dosageInstruction>
      <route>
        <coding>
          <system>http://snomed.info</system>
          <code>363743006</code>
          <display>oral administration of treatment</display>
        </coding>          
      </route>
      <doseQuantity>
        <value>250</value>
        <units>mg</units>
        <system>http://unitsofmeasure.org</system>
        <code>mg</code>
      </doseQuantity>
      <schedule>
        <repeat>
          <frequency>3</frequency>
          <duration>1</duration>
          <units>d</units>
        </repeat>
      </schedule>
    </dosageInstruction>
  </administrationRequest>

  <reason>
    <coding>
      <system>http://hl7.org/fhir/sid/icd-10</system>
      <code>G44.1</code>
    </coding>
    <text>general headache</text>
  </reason>
  
  <text>
    <status>generated</status>
    <div xmlns="http://www.w3.org/1999/xhtml">
      <p>Penicillin VK oral suspension, 125mg/5ml, 250 mg po tid x 10 days</p>
    </div>
  </text>
</Prescription>