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

FHIR IG analytics

Packageil.core.fhir.r4
Resource TypeMedicationRequest
IdMedicationRequest-same-day-different-dose-month.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

Duration: 1 month.

Daily regimen:

  • Morning: 100 mg once daily
  • Evening: 50 mg once daily

The above dosing schedule is repeated every day for the entire month.


Source1

{
  "resourceType": "MedicationRequest",
  "id": "same-day-different-dose-month",
  "meta": {
    "profile": [
      "http://fhir.health.gov.il/StructureDefinition/il-core-medication-request"
    ]
  },
  "status": "active",
  "intent": "order",
  "subject": {
    "reference": "Patient/example"
  },
  "medicationCodeableConcept": {
    "text": "Example medication"
  },
  "authoredOn": "2026-01-01",
  "text": {
    "status": "generated",
    "div": "<!-- snip (see above) -->"
  },
  "dosageInstruction": [
    {
      "text": "For 1 month: 100 mg in the morning and 50 mg in the evening.",
      "timing": {
        "repeat": {
          "boundsDuration": {
            "value": 1,
            "unit": "mo",
            "system": "http://unitsofmeasure.org",
            "code": "mo"
          }
        }
      },
      "extension": [
        {
          "url": "http://fhir.health.gov.il/StructureDefinition/ext-sub-dosage-step",
          "valueDosage": {
            "sequence": 1,
            "text": "100 mg in the morning",
            "timing": {
              "repeat": {
                "frequency": 1,
                "period": 1,
                "periodUnit": "d",
                "when": [
                  "MORN"
                ],
                "boundsDuration": {
                  "value": 1,
                  "unit": "day",
                  "system": "http://unitsofmeasure.org",
                  "code": "d"
                }
              }
            },
            "doseAndRate": [
              {
                "doseQuantity": {
                  "value": 100,
                  "unit": "mg",
                  "system": "http://unitsofmeasure.org",
                  "code": "mg"
                }
              }
            ]
          }
        },
        {
          "url": "http://fhir.health.gov.il/StructureDefinition/ext-sub-dosage-step",
          "valueDosage": {
            "sequence": 1,
            "text": "50 mg in the evening",
            "timing": {
              "repeat": {
                "frequency": 1,
                "period": 1,
                "periodUnit": "d",
                "when": [
                  "EVE"
                ],
                "boundsDuration": {
                  "value": 1,
                  "unit": "day",
                  "system": "http://unitsofmeasure.org",
                  "code": "d"
                }
              }
            },
            "doseAndRate": [
              {
                "doseQuantity": {
                  "value": 50,
                  "unit": "mg",
                  "system": "http://unitsofmeasure.org",
                  "code": "mg"
                }
              }
            ]
          }
        }
      ]
    }
  ],
  "requester": {
    "reference": "Practitioner/123"
  }
}