Draft PH Core Implementation Guide
0.1.0 - ci-build Philippines

Draft PH Core Implementation Guide, published by UP Manila 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/UP-Manila-SILab/ph-core/ and changes regularly. See the Directory of published versions

: medicationrequest-single-example - JSON Representation

Raw json | Download

{
  "resourceType" : "MedicationRequest",
  "id" : "medicationrequest-single-example",
  "meta" : {
    "profile" : [
      🔗 "http://doh.gov.ph/fhir/ph-core/StructureDefinition/ph-core-medicationrequest"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">Dr. Maria Clara Santos prescribed Twinact 40mg/5mg tablet (Telmisartan + Amlodipine), 1 tablet once daily to treat hypertension for Juan Dela Cruz.</div>"
  },
  "status" : "active",
  "intent" : "order",
  "priority" : "routine",
  "medicationCodeableConcept" : {
    "coding" : [
      {
        "system" : "https://verification.fda.gov.ph/",
        "code" : "DRP-10144",
        "display" : "Twinact"
      }
    ],
    "text" : "Twinact 40mg/5mg tablet"
  },
  "subject" : {
    🔗 "reference" : "Patient/patient-single-example"
  },
  "encounter" : {
    🔗 "reference" : "Encounter/encounter-single-example"
  },
  "authoredOn" : "2025-03-15T09:00:00+08:00",
  "requester" : {
    🔗 "reference" : "Practitioner/practitioner-single-example"
  },
  "reasonCode" : [
    {
      "coding" : [
        {
          "system" : "http://snomed.info/sct",
          "code" : "38341003",
          "display" : "Hypertensive disorder"
        }
      ]
    }
  ],
  "note" : [
    {
      "text" : "Take complete course of antibiotics as prescribed"
    }
  ],
  "dosageInstruction" : [
    {
      "sequence" : 1,
      "text" : "Take 1 tablet once daily",
      "timing" : {
        "repeat" : {
          "frequency" : 1,
          "period" : 1,
          "periodUnit" : "d"
        }
      },
      "route" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration",
            "code" : "PO",
            "display" : "Oral"
          }
        ]
      },
      "doseAndRate" : [
        {
          "doseQuantity" : {
            "value" : 1,
            "unit" : "tablet",
            "system" : "http://unitsofmeasure.org",
            "code" : "1"
          }
        }
      ]
    }
  ],
  "dispenseRequest" : {
    "numberOfRepeatsAllowed" : 0,
    "quantity" : {
      "value" : 30,
      "unit" : "Tablet",
      "system" : "http://snomed.info/sct",
      "code" : "331691000"
    }
  }
}