DRAFT PH Road Safety Implementation Guide
0.2.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.2.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

: Example RS Claim - JSON Representation

Raw json | Download

{
  "resourceType" : "Claim",
  "id" : "rs-example-claim",
  "meta" : {
    "profile" : [
      🔗 "https://build.fhir.org/ig/UPM-NTHC/PH-RoadSafetyIG/StructureDefinition/rs-claim"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">Example RS Claim for patient rs-example-patient. Total: PHP 1500.00</div>"
  },
  "status" : "active",
  "type" : {
    "coding" : [
      {
        "system" : "http://terminology.hl7.org/CodeSystem/claim-type",
        "code" : "professional"
      }
    ]
  },
  "use" : "claim",
  "patient" : {
    🔗 "reference" : "Patient/rs-example-patient"
  },
  "created" : "2025-10-31",
  "provider" : {
    🔗 "reference" : "Organization/rs-organization-single-ex"
  },
  "priority" : {
    "coding" : [
      {
        "system" : "http://terminology.hl7.org/CodeSystem/processpriority",
        "code" : "normal"
      }
    ]
  },
  "insurance" : [
    {
      "sequence" : 1,
      "focal" : true,
      "coverage" : {
        🔗 "reference" : "Coverage/rs-example-coverage"
      }
    }
  ],
  "total" : {
    "value" : 1500,
    "currency" : "PHP"
  }
}