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

FHIR IG analytics

Packageil.core.fhir.r4
Resource TypeMedicationRequest
IdMedicationRequest-3perday-every4days-year-no-bounds.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

Regimen starts on 2025-03-01 (until stopped).

Cycle regimen:

  • Day 1: Take 1 tablet, 3 times per day.
  • Days 2–4: Do not take the medication for 3 days.

This 4-day cycle repeats until stopped.

Route: Oral. Method: Swallow.


Source1

{
  "resourceType": "MedicationRequest",
  "id": "3perday-every4days-year-no-bounds",
  "meta": {
    "profile": [
      "http://fhir.health.gov.il/StructureDefinition/il-core-medication-request"
    ]
  },
  "status": "active",
  "subject": {
    "reference": "Patient/123"
  },
  "medicationCodeableConcept": {
    "text": "Example medication"
  },
  "authoredOn": "2026-01-01",
  "intent": "order",
  "text": {
    "status": "generated",
    "div": "<!-- snip (see above) -->"
  },
  "requester": {
    "reference": "Practitioner/123"
  },
  "dosageInstruction": [
    {
      "text": "General regimen from 1.3.2025 at hospitlizaion; detailed frequencies and doses are defined in sub-dosage extension",
      "timing": {
        "repeat": {
          "boundsPeriod": {
            "start": "2025-03-01"
          }
        }
      },
      "extension": [
        {
          "url": "http://fhir.health.gov.il/StructureDefinition/ext-sub-dosage-step",
          "valueDosage": {
            "sequence": 1,
            "text": "Dosing day: 3 times per day, 1 tablet each time",
            "timing": {
              "repeat": {
                "frequency": 3,
                "period": 1,
                "periodUnit": "d",
                "boundsDuration": {
                  "value": 1,
                  "unit": "day",
                  "system": "http://unitsofmeasure.org",
                  "code": "d"
                }
              }
            },
            "doseAndRate": [
              {
                "doseQuantity": {
                  "value": 1,
                  "unit": "tablet",
                  "system": "http://unitsofmeasure.org",
                  "code": "1"
                }
              }
            ]
          }
        },
        {
          "url": "http://fhir.health.gov.il/StructureDefinition/ext-sub-dosage-step",
          "valueDosage": {
            "sequence": 2,
            "text": "Rest period: do not take medication for 3 days",
            "timing": {
              "repeat": {
                "boundsDuration": {
                  "value": 3,
                  "unit": "day",
                  "system": "http://unitsofmeasure.org",
                  "code": "d"
                }
              }
            }
          }
        }
      ]
    }
  ]
}