NHDR Implementation Guide Release 1.0
0.1.0 - ci-build

NHDR Implementation Guide Release 1.0, published by NHDR. 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/PROJ-PHILHEALTH-EA-NHDR/nhdr-fhir-ig-review-project-2/ and changes regularly. See the Directory of published versions

Konsulta Request for Authorization Transaction Code Form

This is a sample representation of the Use Case implementation guide for Konsutal Request for Authorization Transaction Code Form


Implementation Rules

  • name.given is an array that captures the first name and middle name.
    1. name.given[0] is used to capture a person's first name.
    2. name.given[1] is used to capture a person's middle name.

Appointment:

    "resource": {
        "resourceType": "Appointment",
        "id": "K2-Appointment",
        "meta": {
          "profile": [
            "https://nhdr.gov.ph/fhir/StructureDefinition/PH-Appointment"
          ]
        },
        "identifier": [
          {
            "system": "https://nhdr.gov.ph/fhir/Identifier/appointment-id",
            "value": "K2-APPT-0001"
          }
        ],
        "status": "booked",
        "created": "2026-03-01T08:30:00+08:00",
        "participant": [
          {
            "actor": {
              "reference": "urn:uuid:patient-2"
            },
            "status": "accepted"
          }
        ]
    }