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

Resource Prescription - Examples 3.13.4

General 3.13.4.1

Example of prescription

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>

JSON Equivalent

Example of prescription

{"Prescription": {
  "text": {
    "status": "generated",
    "div": "<div>\n      <p>Penicillin VK oral suspension, 125mg/5ml, 250 mg po tid x 10 days<\/p>\n    <\/div>"
  },
  "dispense": {
    "dispenser": {
      "id": {"value": "1"},
      "type": {"value": "Organization"}
    },
    "quantity": {
      "value": {"value": "50"},
      "units": {"value": "ml"}
    },
    "repeats": {"value": "2"}
  },
  "patient": {
    "id": {"value": "25bd34"},
    "type": {"value": "Patient"}
  },
  "reason": {
    "text": {"value": "general headache"},
    "coding": [{
      "system": {"value": "http://hl7.org/fhir/sid/icd-10"},
      "code": {"value": "G44.1"}
    }]
  },
  "status": "active",
  "prescribed": {"value": "2011-03-04T11:45:33+01:00"},
  "prescriber": {
    "id": {"value": "example"},
    "type": {"value": "Agent"}
  },
  "administrationRequest": {
    "duration": {
      "system": {"value": "http://unitsofmeasure.org"},
      "value": {"value": "10"},
      "code": {"value": "d"},
      "units": {"value": "days"}
    },
    "totalPeriodicDose": {
      "denominator": {
        "system": {"value": "http://unitsofmeasure.org"},
        "value": {"value": "1"},
        "code": {"value": "d"},
        "units": {"value": "day"}
      },
      "numerator": {
        "system": {"value": "http://unitsofmeasure.org"},
        "value": {"value": "750"},
        "code": {"value": "mg"},
        "units": {"value": "mg"}
      }
    },
    "description": {"value": "250 mg po tid x 10 days"},
    "dosageInstruction": [{
      "schedule": [{"repeat": {
        "duration": {"value": "1"},
        "frequency": {"value": "3"},
        "units": "d"
      }}],
      "doseQuantity": {
        "system": {"value": "http://unitsofmeasure.org"},
        "value": {"value": "250"},
        "code": {"value": "mg"},
        "units": {"value": "mg"}
      },
      "route": {"coding": [{
        "system": {"value": "http://snomed.info"},
        "display": {"value": "oral administration of treatment"},
        "code": {"value": "363743006"}
      }]}
    }]
  },
  "medicine": {
    "identification": {"text": {"value": "Penicillin VK oral suspension, 125mg/5ml"}},
    "inactiveIngredient": [{
      "identification": {"coding": [{
        "system": {"value": "urn:hl7.org:sid/atc"},
        "display": {"value": "Water"},
        "code": {"value": "YYYYY"}
      }]},
      "quantityCode": {"value": "sufficient"}
    }],
    "activeIngredient": [{
      "quantityRatio": {
        "denominator": {
          "system": {"value": "http://unitsofmeasure.org"},
          "value": {"value": "5"},
          "code": {"value": "ml"},
          "units": {"value": "ml"}
        },
        "numerator": {
          "system": {"value": "http://unitsofmeasure.org"},
          "value": {"value": "125"},
          "code": {"value": "mg"},
          "units": {"value": "mg"}
        }
      },
      "identification": {"coding": [{
        "system": {"value": "urn:hl7.org:sid/atc"},
        "display": {"value": "Penicillin"},
        "code": {"value": "XXXXX"}
      }]}
    }]
  },
  "identifier": [{
    "use": "usual",
    "label": {"value": "MRN"},
    "identifier": {
      "id": {"value": "123456"},
      "system": {"value": "oid:0.1.2.3.4.5.6.7"}
    }
  }]
}}

This is an old version of FHIR retained for archive purposes. Do not use for anything else
Implementers are welcome to experiment with the content defined here, but should note that the contents are subject to change without prior notice.
© HL7.org 2011 - 2012. FHIR v0.06 generated on Tue, Dec 4, 2012 00:03+1100. License