SIL HIE Implementation Guide
0.1.0 - sil-hie-active

SIL HIE Implementation Guide, published by Kathurima Kimathi. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/savannahghi/hie-fhir-ig-profile/ and changes regularly. See the Directory of published versions

: Example HIE Medication - XML Representation

Raw xml | Download


<Medication xmlns="http://hl7.org/fhir">
  <id value="HIEMedication-example"/>
  <meta>
    <profile
             value="https://nshr.dha.go.ke/fhir/StructureDefinition/hie-medication"/>
  </meta>
  <text>
    <status value="generated"/>
    <div xmlns="http://www.w3.org/1999/xhtml"><p><b>Medication Summary</b></p><table><tbody><tr><td><b>Name</b></td><td>Amoxicillin 500 mg capsule</td></tr><tr><td><b>Status</b></td><td>active</td></tr><tr><td><b>Form</b></td><td>Capsule</td></tr><tr><td><b>Identifier</b></td><td>AMOX-500-CAP-30</td></tr><tr><td><b>Amount</b></td><td>30 capsules per package</td></tr><tr><td><b>Ingredient</b></td><td>Amoxicillin, 500 mg per capsule</td></tr><tr><td><b>Manufacturer</b></td><td>Acme Generics Ltd</td></tr><tr><td><b>Batch</b></td><td>LOT-AXC-2025-001, exp 2027-01-31</td></tr></tbody></table></div>
  </text>
  <identifier>
    <use value="official"/>
    <type>
      <coding>
        <system value="http://terminology.hl7.org/CodeSystem/v2-0203"/>
        <code value="ACSN"/>
        <display value="Accession ID"/>
      </coding>
    </type>
    <system value="http://formulary.example.org/meds"/>
    <value value="AMOX-500-CAP-30"/>
  </identifier>
  <code>
    <coding>
      <system value="http://www.nlm.nih.gov/research/umls/rxnorm"/>
      <code value="308189"/>
      <display value="Amoxicillin 500 MG Oral Capsule"/>
    </coding>
    <text value="Amoxicillin 500 mg capsule"/>
  </code>
  <status value="active"/>
  <manufacturer>
    <reference value="Organization/manu-001"/>
    <display value="Acme Generics Ltd"/>
  </manufacturer>
  <form>
    <coding>
      <system
              value="http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm"/>
      <code value="CAP"/>
      <display value="Capsule"/>
    </coding>
  </form>
  <amount>
    <numerator>
      <value value="30"/>
      <unit value="capsule"/>
      <system value="http://unitsofmeasure.org"/>
      <code value="1"/>
    </numerator>
    <denominator>
      <value value="1"/>
      <unit value="package"/>
      <system value="http://unitsofmeasure.org"/>
      <code value="1"/>
    </denominator>
  </amount>
  <ingredient>
    <itemCodeableConcept>
      <coding>
        <system value="http://snomed.info/sct"/>
        <code value="372687004"/>
        <display value="Amoxicillin (substance)"/>
      </coding>
    </itemCodeableConcept>
    <isActive value="true"/>
    <strength>
      <numerator>
        <value value="500"/>
        <unit value="mg"/>
        <system value="http://unitsofmeasure.org"/>
        <code value="mg"/>
      </numerator>
      <denominator>
        <value value="1"/>
        <unit value="capsule"/>
        <system value="http://unitsofmeasure.org"/>
        <code value="1"/>
      </denominator>
    </strength>
  </ingredient>
  <batch>
    <lotNumber value="LOT-AXC-2025-001"/>
    <expirationDate value="2027-01-31"/>
  </batch>
</Medication>