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

Raw json | Download

{
  "resourceType" : "Encounter",
  "id" : "HIEEncounter-example",
  "meta" : {
    "profile" : [
      🔗 "https://nshr.dha.go.ke/fhir/StructureDefinition/hie-encounter"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">Autogenerated Encounter Narrative</div>"
  },
  "identifier" : [
    {
      "use" : "official",
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "EN",
            "display" : "Encounter number"
          }
        ]
      },
      "system" : "http://example.org/encounters",
      "value" : "ENC-12345"
    }
  ],
  "status" : "in-progress",
  "class" : {
    "system" : "http://terminology.hl7.org/CodeSystem/v3-ActCode",
    "code" : "AMB",
    "display" : "ambulatory"
  },
  "type" : [
    {
      "coding" : [
        {
          "system" : "http://snomed.info/sct",
          "code" : "11429006",
          "display" : "Consultation"
        }
      ]
    }
  ],
  "priority" : {
    "coding" : [
      {
        "system" : "http://terminology.hl7.org/CodeSystem/v3-ActPriority",
        "code" : "UR",
        "display" : "urgent"
      }
    ]
  },
  "subject" : {
    "reference" : "Patient/p-001",
    "display" : "Jane Patient"
  },
  "episodeOfCare" : [
    {
      "reference" : "EpisodeOfCare/ep-001",
      "display" : "Episode for primary care"
    }
  ],
  "basedOn" : [
    {
      "reference" : "ServiceRequest/sr-001",
      "display" : "Neurology consult request"
    }
  ],
  "participant" : [
    {
      "type" : [
        {
          "coding" : [
            {
              "system" : "http://terminology.hl7.org/CodeSystem/participant-type",
              "code" : "PPRF",
              "display" : "primary performer"
            }
          ]
        }
      ],
      "individual" : {
        "reference" : "HIEPractitioner/pr-001",
        "display" : "Dr. John Clinician"
      }
    }
  ],
  "appointment" : [
    {
      "reference" : "Appointment/appt-001",
      "display" : "Booked slot 2025-11-12T09:00+03:00"
    }
  ],
  "reasonCode" : [
    {
      "coding" : [
        {
          "system" : "http://snomed.info/sct",
          "code" : "25064002",
          "display" : "Headache"
        }
      ]
    }
  ],
  "diagnosis" : [
    {
      "condition" : {
        "reference" : "Condition/cond-001",
        "display" : "Acute headache"
      },
      "use" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/diagnosis-role",
            "code" : "AD",
            "display" : "Admission diagnosis"
          }
        ]
      }
    }
  ],
  "hospitalization" : {
    "origin" : {
      "reference" : "Location/loc-ER",
      "display" : "Emergency triage"
    },
    "admitSource" : {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/admit-source",
          "code" : "emd",
          "display" : "From accident/emergency department"
        }
      ]
    },
    "destination" : {
      "reference" : "Location/loc-OPD",
      "display" : "Outpatient clinic"
    },
    "dischargeDisposition" : {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/discharge-disposition",
          "code" : "home",
          "display" : "Discharged to home"
        }
      ]
    }
  },
  "location" : [
    {
      "location" : {
        "reference" : "Location/loc-OPD",
        "display" : "Outpatient Room 3"
      }
    }
  ],
  "serviceProvider" : {
    "reference" : "Organization/org-001",
    "display" : "Acme Health Center"
  }
}