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 Patient - XML Representation

Raw xml | Download


<Patient xmlns="http://hl7.org/fhir">
  <id value="HIEPatient-example"/>
  <meta>
    <profile
             value="https://nshr.dha.go.ke/fhir/StructureDefinition/hie-patient"/>
  </meta>
  <text>
    <status value="generated"/>
    <div xmlns="http://www.w3.org/1999/xhtml"><p><b>Patient Summary</b></p><table><tbody><tr><td><b>Name</b></td><td>Jane Patient</td></tr><tr><td><b>Identifier</b></td><td>MRN-12345 (http://example.org/mrn)</td></tr><tr><td><b>Active</b></td><td>true</td></tr><tr><td><b>Gender</b></td><td>female</td></tr><tr><td><b>Date of birth</b></td><td>1990-04-05</td></tr><tr><td><b>Marital status</b></td><td>Married</td></tr><tr><td><b>Managing organization</b></td><td>Acme Health Center (Organization/org-001)</td></tr><tr><td><b>General practitioner</b></td><td>Dr. John Clinician (HIEPractitioner/pr-001)</td></tr></tbody></table><p><b>Telecom</b></p><ul><li>Phone, mobile, rank 1: +254700000001</li><li>Email, home: jane.patient@example.org</li></ul><p><b>Contacts</b></p><table><thead><tr><th align="left">Name</th><th align="left">Relationship</th><th align="left">Telecom</th><th align="left">Organization</th></tr></thead><tbody><tr><td>Mary Patient</td><td>Mother</td><td>+254700000002 (mobile)</td><td>Acme Health Center (Organization/org-001)</td></tr></tbody></table><p><b>Communication</b></p><ul><li>Language: English, preferred</li></ul><p><b>Links</b></p><ul><li>Refer: Patient/p-duplicate-001 (Duplicate index record)</li></ul></div>
  </text>
  <identifier>
    <use value="official"/>
    <type>
      <coding>
        <system value="http://terminology.hl7.org/CodeSystem/v2-0203"/>
        <code value="MR"/>
        <display value="Medical record number"/>
      </coding>
    </type>
    <system value="http://example.org/mrn"/>
    <value value="MRN-12345"/>
  </identifier>
  <active value="true"/>
  <name>
    <use value="official"/>
    <text value="Jane Patient"/>
    <family value="Patient"/>
    <given value="Jane"/>
  </name>
  <telecom>
    <system value="phone"/>
    <value value="+254700000001"/>
    <use value="mobile"/>
    <rank value="1"/>
  </telecom>
  <telecom>
    <system value="email"/>
    <value value="jane.patient@example.org"/>
    <use value="home"/>
  </telecom>
  <gender value="female"/>
  <birthDate value="1990-04-05"/>
  <maritalStatus>
    <coding>
      <system value="http://terminology.hl7.org/CodeSystem/v3-MaritalStatus"/>
      <code value="M"/>
      <display value="Married"/>
    </coding>
  </maritalStatus>
  <contact>
    <relationship>
      <coding>
        <system value="http://terminology.hl7.org/CodeSystem/v3-RoleCode"/>
        <code value="MTH"/>
        <display value="Mother"/>
      </coding>
    </relationship>
    <name>
      <text value="Mary Patient"/>
    </name>
    <telecom>
      <system value="phone"/>
      <value value="+254700000002"/>
      <use value="mobile"/>
    </telecom>
    <organization>
      <reference value="Organization/org-001"/>
      <display value="Acme Health Center"/>
    </organization>
  </contact>
  <communication>
    <language>
      <coding>
        <system value="urn:ietf:bcp:47"/>
        <code value="en"/>
        <display value="English"/>
      </coding>
    </language>
    <preferred value="true"/>
  </communication>
  <generalPractitioner>
    <reference value="HIEPractitioner/pr-001"/>
    <display value="Dr. John Clinician"/>
  </generalPractitioner>
  <managingOrganization>
    <reference value="Organization/org-001"/>
    <display value="Acme Health Center"/>
  </managingOrganization>
  <link>
    <other>
      <reference value="Patient/p-duplicate-001"/>
      <display value="Duplicate index record"/>
    </other>
    <type value="refer"/>
  </link>
</Patient>