FHIR © HL7.org  |  FHIRsmith 4.0.1  |  Server Home  |  XIG Home  |  XIG Stats  | 

FHIR IG analytics

Packageil.core.fhir.r4
Resource TypeMedicationRequest
IdMedicationRequest-initial-then-prn.json
FHIR VersionR4

Resources that use this resource

No resources found


Resources that this resource uses

No resources found


Narrative

Note: links and images are rebased to the (stated) source

MedicationRequest Example

Medication: Example medication

Regimen: Take an initial dose of 2 tablets, then take 1 tablet as needed after each bowel movement.

Limit: Do not exceed 8 tablets per day.


Source1

{
  "resourceType": "MedicationRequest",
  "id": "initial-then-prn",
  "meta": {
    "profile": [
      "http://fhir.health.gov.il/StructureDefinition/il-core-medication-request"
    ]
  },
  "status": "active",
  "intent": "order",
  "subject": {
    "reference": "Patient/123"
  },
  "medicationCodeableConcept": {
    "text": "Example medication"
  },
  "authoredOn": "2026-01-01",
  "requester": {
    "reference": "Practitioner/123"
  },
  "text": {
    "status": "generated",
    "div": "<!-- snip (see above) -->"
  },
  "dosageInstruction": [
    {
      "text": "Initial 2 tablets, then 1 tablet PRN; max 8 tablets per day",
      "maxDosePerPeriod": {
        "numerator": {
          "value": 8,
          "unit": "tablet",
          "system": "http://unitsofmeasure.org",
          "code": "1"
        },
        "denominator": {
          "value": 1,
          "unit": "day",
          "system": "http://unitsofmeasure.org",
          "code": "d"
        }
      },
      "extension": [
        {
          "url": "http://fhir.health.gov.il/StructureDefinition/ext-sub-dosage-step",
          "valueDosage": {
            "sequence": 1,
            "text": "Initial dose: take 2 tablets immediately",
            "timing": {
              "repeat": {
                "count": 1
              }
            },
            "doseAndRate": [
              {
                "doseQuantity": {
                  "value": 2,
                  "unit": "tablet",
                  "system": "http://unitsofmeasure.org",
                  "code": "1"
                }
              }
            ]
          }
        },
        {
          "url": "http://fhir.health.gov.il/StructureDefinition/ext-sub-dosage-step",
          "valueDosage": {
            "sequence": 2,
            "text": "Then: take 1 tablet as needed after each bowel movement",
            "asNeededBoolean": true,
            "timing": {
              "code": {
                "text": "After each bowel movement"
              }
            },
            "doseAndRate": [
              {
                "doseQuantity": {
                  "value": 1,
                  "unit": "tablet",
                  "system": "http://unitsofmeasure.org",
                  "code": "1"
                }
              }
            ]
          }
        }
      ]
    }
  ]
}