SGHI FHIR Profile Implementation Guide
0.1.0 - ci-build

SGHI FHIR Profile 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/sil_fhir_profile_ig/ and changes regularly. See the Directory of published versions

: Example SGHI Organization - JSON Representation

Raw json | Download

{
  "resourceType" : "Organization",
  "id" : "ExampleSGHIOrganization",
  "meta" : {
    "profile" : [
      🔗 "https://fhir.slade360.co.ke/fhir/StructureDefinition/sghi-organization"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Organization ExampleSGHIOrganization</b></p><a name=\"ExampleSGHIOrganization\"> </a><a name=\"hcExampleSGHIOrganization\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-sghi-organization.html\">SGHI Organization</a></p></div><p><b>identifier</b>: Passport number/123456789\u00a0(use:\u00a0official,\u00a0)</p><p><b>active</b>: true</p><p><b>type</b>: <span title=\"Codes:\">Healthcare Provider</span></p><p><b>name</b>: SGHI Healthcare Organization</p><h3>Contacts</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Purpose</b></td><td><b>Name</b></td><td><b>Telecom</b></td><td><b>Address</b></td></tr><tr><td style=\"display: none\">*</td><td><span title=\"Codes:\">Administrative</span></td><td>Jane Doe</td><td><a href=\"tel:+254717355900\">+254717355900</a>, <a href=\"mailto:admin@sghi.org\">admin@sghi.org</a></td><td>Nairobi 98765 Kenya (work)</td></tr></table></div>"
  },
  "identifier" : [
    {
      "use" : "official",
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "PPN",
            "display" : "Passport number"
          }
        ]
      },
      "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
      "value" : "123456789"
    }
  ],
  "active" : true,
  "type" : [
    {
      "coding" : [
        {
          "code" : "prov",
          "display" : "Healthcare Provider"
        }
      ]
    }
  ],
  "name" : "SGHI Healthcare Organization",
  "contact" : [
    {
      "purpose" : {
        "coding" : [
          {
            "code" : "ADMIN",
            "display" : "Administrative"
          }
        ]
      },
      "name" : [
        {
          "text" : "Jane Doe"
        }
      ],
      "telecom" : [
        {
          "system" : "phone",
          "value" : "+254717355900",
          "use" : "work"
        },
        {
          "system" : "email",
          "value" : "admin@sghi.org",
          "use" : "work"
        }
      ],
      "address" : {
        "use" : "work",
        "type" : "physical",
        "city" : "Nairobi",
        "postalCode" : "98765",
        "country" : "Kenya"
      }
    }
  ]
}