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

Raw json | Download

{
  "resourceType" : "Patient",
  "id" : "HIEPatient-example",
  "meta" : {
    "profile" : [
      🔗 "https://nshr.dha.go.ke/fhir/StructureDefinition/hie-patient"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<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>"
  },
  "identifier" : [
    {
      "use" : "official",
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "MR",
            "display" : "Medical record number"
          }
        ]
      },
      "system" : "http://example.org/mrn",
      "value" : "MRN-12345"
    }
  ],
  "active" : true,
  "name" : [
    {
      "use" : "official",
      "text" : "Jane Patient",
      "family" : "Patient",
      "given" : [
        "Jane"
      ]
    }
  ],
  "telecom" : [
    {
      "system" : "phone",
      "value" : "+254700000001",
      "use" : "mobile",
      "rank" : 1
    },
    {
      "system" : "email",
      "value" : "jane.patient@example.org",
      "use" : "home"
    }
  ],
  "gender" : "female",
  "birthDate" : "1990-04-05",
  "maritalStatus" : {
    "coding" : [
      {
        "system" : "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
        "code" : "M",
        "display" : "Married"
      }
    ]
  },
  "contact" : [
    {
      "relationship" : [
        {
          "coding" : [
            {
              "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode",
              "code" : "MTH",
              "display" : "Mother"
            }
          ]
        }
      ],
      "name" : {
        "text" : "Mary Patient"
      },
      "telecom" : [
        {
          "system" : "phone",
          "value" : "+254700000002",
          "use" : "mobile"
        }
      ],
      "organization" : {
        "reference" : "Organization/org-001",
        "display" : "Acme Health Center"
      }
    }
  ],
  "communication" : [
    {
      "language" : {
        "coding" : [
          {
            "system" : "urn:ietf:bcp:47",
            "code" : "en",
            "display" : "English"
          }
        ]
      },
      "preferred" : true
    }
  ],
  "generalPractitioner" : [
    {
      "reference" : "HIEPractitioner/pr-001",
      "display" : "Dr. John Clinician"
    }
  ],
  "managingOrganization" : {
    "reference" : "Organization/org-001",
    "display" : "Acme Health Center"
  },
  "link" : [
    {
      "other" : {
        "reference" : "Patient/p-duplicate-001",
        "display" : "Duplicate index record"
      },
      "type" : "refer"
    }
  ]
}