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 - JSON Representation

Raw json | Download

{
  "resourceType" : "Practitioner",
  "id" : "HIEPractitioner-example",
  "meta" : {
    "profile" : [
      🔗 "https://nshr.dha.go.ke/fhir/StructureDefinition/hie-practitioner"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<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>"
  },
  "identifier" : [
    {
      "use" : "official",
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "PRN",
            "display" : "Provider number"
          }
        ]
      },
      "system" : "http://example.org/providers",
      "value" : "PROV-000123"
    },
    {
      "use" : "secondary",
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "LN",
            "display" : "License number"
          }
        ]
      },
      "system" : "http://example.org/licenses",
      "value" : "LIC-KE-98765"
    }
  ],
  "active" : true,
  "name" : [
    {
      "use" : "official",
      "text" : "Dr John Clinician",
      "family" : "Clinician",
      "given" : [
        "John"
      ],
      "prefix" : [
        "Dr"
      ]
    }
  ],
  "telecom" : [
    {
      "system" : "phone",
      "value" : "+254700000010",
      "use" : "work",
      "rank" : 1
    },
    {
      "system" : "email",
      "value" : "john.clinician@example.org",
      "use" : "work"
    }
  ],
  "gender" : "male",
  "birthDate" : "1984-03-12",
  "qualification" : [
    {
      "identifier" : [
        {
          "system" : "http://example.org/registrations",
          "value" : "MED-REG-123456"
        }
      ],
      "code" : {
        "coding" : [
          {
            "system" : "http://snomed.info/sct",
            "code" : "62247001",
            "display" : "General medical practitioner"
          }
        ]
      },
      "period" : {
        "start" : "2015-01-01"
      },
      "issuer" : {
        "reference" : "Organization/mc-001",
        "display" : "Kenya Medical Practitioners and Dentists Council"
      }
    }
  ],
  "communication" : [
    {
      "coding" : [
        {
          "system" : "urn:ietf:bcp:47",
          "code" : "en",
          "display" : "English"
        }
      ]
    },
    {
      "coding" : [
        {
          "system" : "urn:ietf:bcp:47",
          "code" : "sw",
          "display" : "Swahili"
        }
      ]
    }
  ]
}