PH eReferral Implementation Guide
0.1.0 - ci-build PH

PH eReferral Implementation Guide, published by SILab CoP IG Accelerator (eReferral). 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/niccoreyes/ph-ereferral/ and changes regularly. See the Directory of published versions

: Example ERefRelatedPerson - Accompanying Person

Raw json | Download

{
  "resourceType" : "RelatedPerson",
  "id" : "ExampleERefRelatedPersonAccompanying",
  "meta" : {
    "profile" : [
      🔗 "urn://example.com/ph-ereferral/fhir/StructureDefinition/ereferral-related-person"
    ]
  },
  "language" : "en",
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">Maria Dela Cruz is the patient's spouse and emergency contact accompanying the patient during referral. Contact: +639171112222.</div>"
  },
  "active" : true,
  "patient" : {
    🔗 "reference" : "Patient/ERefPatientExample"
  },
  "relationship" : [
    {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode",
          "code" : "ECON",
          "display" : "emergency contact"
        }
      ]
    },
    {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode",
          "code" : "SPS",
          "display" : "spouse"
        }
      ]
    }
  ],
  "name" : [
    {
      "use" : "official",
      "family" : "Dela Cruz",
      "given" : [
        "Maria"
      ]
    }
  ],
  "telecom" : [
    {
      "system" : "phone",
      "value" : "+639171112222",
      "use" : "mobile"
    }
  ],
  "gender" : "female",
  "period" : {
    "start" : "2025-03-15"
  }
}