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

Raw json | Download

{
  "resourceType" : "QuestionnaireResponse",
  "id" : "HIEQuestionnaireResponse-example",
  "meta" : {
    "profile" : [
      🔗 "https://nshr.dha.go.ke/fhir/StructureDefinition/hie-questionnaireresponse"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>QuestionnaireResponse Summary</b></p><p>Source questionnaire: Questionnaire/qn-001. Status completed. Authored by Dr. John Clinician for Jane Patient during Encounter/enc-001.</p><table><thead><tr><th align=\"left\">Section</th><th align=\"left\">Content</th></tr></thead><tbody><tr><td>Identifiers</td><td>CR-QR-2025-0001 (http://example.org/qr)</td></tr><tr><td>Subject</td><td>Jane Patient (Patient/p-001)</td></tr><tr><td>Encounter</td><td>Ambulatory encounter (Encounter/enc-001)</td></tr><tr><td>Authored</td><td>2025-11-18T10:30:00+03:00</td></tr><tr><td>Author</td><td>Dr. John Clinician (HIEPractitioner/pr-001)</td></tr><tr><td>Based On</td><td>Neurology consult (ServiceRequest/sr-001)</td></tr><tr><td>Part Of</td><td>Outpatient procedure (Procedure/proc-001)</td></tr></tbody></table><p><b>Key Answers</b></p><ul><li>Chief complaint: Headache for two days</li><li>Onset date: 2025-11-16</li><li>Severity: Moderate</li><li>Associated symptoms: Nausea, Photophobia</li><li>Vitals: BP 120/80 mmHg, HR 72 bpm</li><li>Consent given: true</li><li>Clinician notes: No focal deficits. Advise hydration and rest.</li></ul></div>"
  },
  "identifier" : {
    "use" : "official",
    "type" : {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
          "code" : "ACSN",
          "display" : "Accession ID"
        }
      ]
    },
    "system" : "http://example.org/qr",
    "value" : "CR-QR-2025-0001"
  },
  "basedOn" : [
    {
      "reference" : "ServiceRequest/sr-001",
      "display" : "Neurology consult"
    }
  ],
  "partOf" : [
    {
      "reference" : "Procedure/proc-001",
      "display" : "Outpatient procedure"
    }
  ],
  "questionnaire" : "Questionnaire/qn-001",
  "status" : "completed",
  "subject" : {
    "reference" : "Patient/p-001",
    "display" : "Jane Patient"
  },
  "encounter" : {
    "reference" : "Encounter/enc-001",
    "display" : "Ambulatory encounter"
  },
  "authored" : "2025-11-18T10:30:00+03:00",
  "author" : {
    "reference" : "HIEPractitioner/pr-001",
    "display" : "Dr. John Clinician"
  },
  "source" : {
    "reference" : "Patient/p-001",
    "display" : "Jane Patient"
  },
  "item" : [
    {
      "linkId" : "q1",
      "text" : "Chief complaint",
      "answer" : [
        {
          "valueString" : "Headache for two days"
        }
      ]
    },
    {
      "linkId" : "q2",
      "text" : "Onset date",
      "answer" : [
        {
          "valueDate" : "2025-11-16"
        }
      ]
    },
    {
      "linkId" : "q3",
      "text" : "Severity",
      "answer" : [
        {
          "valueCoding" : {
            "system" : "http://example.org/vs/severity",
            "code" : "moderate",
            "display" : "Moderate"
          }
        }
      ]
    },
    {
      "linkId" : "q4",
      "text" : "Associated symptoms",
      "answer" : [
        {
          "valueCoding" : {
            "system" : "http://snomed.info/sct",
            "code" : "422587007",
            "display" : "Nausea"
          }
        },
        {
          "valueCoding" : {
            "system" : "http://snomed.info/sct",
            "code" : "89711000119106",
            "display" : "Photophobia"
          }
        }
      ]
    },
    {
      "linkId" : "grp-vitals",
      "text" : "Vitals",
      "item" : [
        {
          "linkId" : "bp",
          "text" : "Blood pressure",
          "answer" : [
            {
              "valueString" : "120/80 mmHg"
            }
          ]
        },
        {
          "linkId" : "hr",
          "text" : "Heart rate",
          "answer" : [
            {
              "valueInteger" : 72
            }
          ]
        }
      ]
    },
    {
      "linkId" : "q5",
      "text" : "Consent given",
      "answer" : [
        {
          "valueBoolean" : true
        }
      ]
    },
    {
      "linkId" : "q6",
      "text" : "Clinician notes",
      "answer" : [
        {
          "valueString" : "No focal deficits. Advise hydration and rest."
        }
      ]
    }
  ]
}