DRAFT PH Road Safety Implementation Guide
0.1.0 - ci-build Philippines flag

DRAFT PH Road Safety Implementation Guide, published by UP Manila - National Institutes of Health - National Telehealth Center. 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/UPM-NTHC/PH-RoadSafetyIG/ and changes regularly. See the Directory of published versions

: Road Safety Patient Example - With Two Addresses - JSON Representation

Raw json | Download

{
  "resourceType" : "Patient",
  "id" : "patient-road-safety-two-addresses",
  "meta" : {
    "profile" : [
      🔗 "https://build.fhir.org/ig/UPM-NTHC/PH-RoadSafetyIG/StructureDefinition/RS-Patient"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Patient:</b> Maria Santos</p><p><b>Gender:</b> Female</p><p><b>Age:</b> 32 years</p><p><b>Permanent Address:</b> 123 Mabini Street, Quezon City, NCR, Philippines</p><p><b>Temporary Address:</b> 456 Rizal Avenue, Cavite City, Cavite, Philippines</p><p><b>Hospital:</b> Manila General Hospital</p></div>"
  },
  "extension" : [
    {
      "url" : "https://build.fhir.org/ig/UPM-NTHC/PH-RoadSafetyIG/StructureDefinition/rs-patient-age",
      "valueAge" : {
        "value" : 32,
        "unit" : "years",
        "system" : "http://unitsofmeasure.org",
        "code" : "a"
      }
    },
    {
      "url" : "http://hl7.org.ph/fhir/StructureDefinition/indigenousPeople",
      "valueCoding" : {
        "system" : "http://hl7.org/fhir/v3/NullFlavor",
        "code" : "UNK",
        "display" : "Unknown"
      }
    }
  ],
  "identifier" : [
    {
      "system" : "http://hospital.example.org/hospital-patient-id",
      "value" : "HOSP-2025-0005"
    }
  ],
  "gender" : "female",
  "address" : [
    {
      "use" : "home",
      "line" : [
        "123 Mabini Street"
      ],
      "city" : "Quezon City",
      "district" : "NCR",
      "postalCode" : "1100",
      "country" : "PH"
    },
    {
      "use" : "temp",
      "line" : [
        "456 Rizal Avenue"
      ],
      "city" : "Cavite City",
      "district" : "Cavite",
      "postalCode" : "4100",
      "country" : "PH"
    }
  ],
  "managingOrganization" : {
    🔗 "reference" : "Organization/organization-hospital-ex"
  }
}