FHIR IG analytics| Package | il.core.fhir.r4 |
| Resource Type | MedicationRequest |
| Id | MedicationRequest-same-day-different-dose-month.json |
| FHIR Version | R4 |
No resources found
No resources found
Note: links and images are rebased to the (stated) source
MedicationRequest Example
Medication: Example medication
Duration: 1 month.
Daily regimen:
The above dosing schedule is repeated every day for the entire month.
{
"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"
}
}