PH eReferral Implementation Guide
0.1.0 - ci-build Philippines

PH eReferral Implementation Guide, published by UP Manila SILab. 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 eReferral Service Request - JSON Representation

Raw json | Download

{
  "resourceType" : "ServiceRequest",
  "id" : "ExampleERefServiceRequest",
  "meta" : {
    "profile" : [
      🔗 "urn://example.com/ph-ereferral/fhir/StructureDefinition/ereferral-service-request"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: ServiceRequest ExampleERefServiceRequest</b></p><a name=\"ExampleERefServiceRequest\"> </a><a name=\"hcExampleERefServiceRequest\"> </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-ereferral-service-request.html\">EReferral ServiceRequest</a></p></div><p><b>requisition</b>: <code>urn:oid:1.2.840.113619.21.1.2</code>/REF-2025-001234</p><p><b>status</b>: Active</p><p><b>intent</b>: Order</p><p><b>category</b>: <span title=\"Codes:{http://snomed.info/sct 103695009}\">Referral to specialist</span></p><p><b>priority</b>: Urgent</p><p><b>code</b>: <span title=\"Codes:{http://snomed.info/sct 183519001}\">Referral to cardiology service</span></p><p><b>subject</b>: <a href=\"Patient-ExampleERefPatient.html\">Juan Miguel Dela Cruz  Male, DoB: 1965-07-20 ( urn:oid:2.16.840.1.113883.2.9.4.3.2#PH-123456789)</a></p><p><b>occurrence</b>: 2025-03-16 08:00:00+0800</p><p><b>authoredOn</b>: 2025-03-15 09:30:00+0800</p><p><b>requester</b>: <a href=\"PractitionerRole-ExampleERefPractitionerRole.html\">PractitionerRole Medical practitioner</a></p><p><b>performer</b>: <a href=\"Organization-ExampleERefReceivingHospital.html\">Organization Philippine Heart Center</a></p><p><b>reasonCode</b>: <span title=\"Codes:{http://snomed.info/sct 29857009}\">Chest pain on exertion, suspected unstable angina</span></p><p><b>reasonReference</b>: <a href=\"Condition-ExampleERefConditionChestPain.html\">Condition Chest pain</a></p><p><b>supportingInfo</b>: </p><ul><li><a href=\"Observation-ExampleERefObservationBP.html\">Observation Blood pressure panel with all children optional</a></li><li><a href=\"Observation-ExampleERefObservationECG.html\">Observation EKG study</a></li></ul><p><b>note</b>: </p><blockquote><div><p>Patient reports chest pain on exertion for 3 days. ECG shows ST depression. Please evaluate for possible PCI. Patient has no known drug allergies.</p>\n</div></blockquote></div>"
  },
  "requisition" : {
    "system" : "urn:oid:1.2.840.113619.21.1.2",
    "value" : "REF-2025-001234"
  },
  "status" : "active",
  "intent" : "order",
  "category" : [
    {
      "coding" : [
        {
          "system" : "http://snomed.info/sct",
          "code" : "103695009",
          "display" : "Referral to specialist"
        }
      ]
    }
  ],
  "priority" : "urgent",
  "code" : {
    "coding" : [
      {
        "system" : "http://snomed.info/sct",
        "code" : "183519001",
        "display" : "Referral to cardiology service"
      }
    ]
  },
  "subject" : {
    🔗 "reference" : "Patient/ExampleERefPatient"
  },
  "occurrenceDateTime" : "2025-03-16T08:00:00+08:00",
  "authoredOn" : "2025-03-15T09:30:00+08:00",
  "requester" : {
    🔗 "reference" : "PractitionerRole/ExampleERefPractitionerRole"
  },
  "performer" : [
    {
      🔗 "reference" : "Organization/ExampleERefReceivingHospital"
    }
  ],
  "reasonCode" : [
    {
      "coding" : [
        {
          "system" : "http://snomed.info/sct",
          "code" : "29857009",
          "display" : "Chest pain"
        }
      ],
      "text" : "Chest pain on exertion, suspected unstable angina"
    }
  ],
  "reasonReference" : [
    {
      🔗 "reference" : "Condition/ExampleERefConditionChestPain"
    }
  ],
  "supportingInfo" : [
    {
      🔗 "reference" : "Observation/ExampleERefObservationBP"
    },
    {
      🔗 "reference" : "Observation/ExampleERefObservationECG"
    }
  ],
  "note" : [
    {
      "text" : "Patient reports chest pain on exertion for 3 days. ECG shows ST depression. Please evaluate for possible PCI. Patient has no known drug allergies."
    }
  ]
}