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

Raw xml | Download


<Practitioner xmlns="http://hl7.org/fhir">
  <id value="HIEPractitioner-example"/>
  <meta>
    <profile
             value="https://nshr.dha.go.ke/fhir/StructureDefinition/hie-practitioner"/>
  </meta>
  <text>
    <status value="generated"/>
    <div xmlns="http://www.w3.org/1999/xhtml"><p><b>Practitioner Summary</b></p><table><tbody><tr><td><b>Name</b></td><td>Dr John Clinician</td></tr><tr><td><b>Status</b></td><td>Active</td></tr><tr><td><b>Gender</b></td><td>Male</td></tr><tr><td><b>Identifiers</b></td><td>Provider: PROV-000123, License: LIC-KE-98765</td></tr><tr><td><b>Telecom</b></td><td>Work phone: +254700000010, Work email: john.clinician@example.org</td></tr><tr><td><b>Qualification</b></td><td>General medical practitioner, issuer: Kenya Medical Practitioners and Dentists Council</td></tr><tr><td><b>Languages</b></td><td>English, Swahili</td></tr></tbody></table></div>
  </text>
  <identifier>
    <use value="official"/>
    <type>
      <coding>
        <system value="http://terminology.hl7.org/CodeSystem/v2-0203"/>
        <code value="PRN"/>
        <display value="Provider number"/>
      </coding>
    </type>
    <system value="http://example.org/providers"/>
    <value value="PROV-000123"/>
  </identifier>
  <identifier>
    <use value="secondary"/>
    <type>
      <coding>
        <system value="http://terminology.hl7.org/CodeSystem/v2-0203"/>
        <code value="LN"/>
        <display value="License number"/>
      </coding>
    </type>
    <system value="http://example.org/licenses"/>
    <value value="LIC-KE-98765"/>
  </identifier>
  <active value="true"/>
  <name>
    <use value="official"/>
    <text value="Dr John Clinician"/>
    <family value="Clinician"/>
    <given value="John"/>
    <prefix value="Dr"/>
  </name>
  <telecom>
    <system value="phone"/>
    <value value="+254700000010"/>
    <use value="work"/>
    <rank value="1"/>
  </telecom>
  <telecom>
    <system value="email"/>
    <value value="john.clinician@example.org"/>
    <use value="work"/>
  </telecom>
  <gender value="male"/>
  <birthDate value="1984-03-12"/>
  <qualification>
    <identifier>
      <system value="http://example.org/registrations"/>
      <value value="MED-REG-123456"/>
    </identifier>
    <code>
      <coding>
        <system value="http://snomed.info/sct"/>
        <code value="62247001"/>
        <display value="General medical practitioner"/>
      </coding>
    </code>
    <period>
      <start value="2015-01-01"/>
    </period>
    <issuer>
      <reference value="Organization/mc-001"/>
      <display value="Kenya Medical Practitioners and Dentists Council"/>
    </issuer>
  </qualification>
  <communication>
    <coding>
      <system value="urn:ietf:bcp:47"/>
      <code value="en"/>
      <display value="English"/>
    </coding>
  </communication>
  <communication>
    <coding>
      <system value="urn:ietf:bcp:47"/>
      <code value="sw"/>
      <display value="Swahili"/>
    </coding>
  </communication>
</Practitioner>