FHIR IG analytics| Package | il.core.fhir.r4 |
| Resource Type | MedicationRequest |
| Id | MedicationRequest-every-other-day-different-dose.json |
| FHIR Version | R4 |
No resources found
No resources found
Note: links and images are rebased to the (stated) source
MedicationRequest Example
Medication: Eltroxin (Levothyroxine)
Regimen duration: 1 month.
Cycle: Repeats every 2 days.
This alternating pattern continues for the entire month.
{
"resourceType": "MedicationRequest",
"id": "every-other-day-different-dose",
"meta": {
"profile": [
"http://fhir.health.gov.il/StructureDefinition/il-core-medication-request"
]
},
"status": "active",
"intent": "order",
"subject": {
"reference": "Patient/123"
},
"medicationCodeableConcept": {
"text": "Eltroxin (Levothyroxine)"
},
"authoredOn": "2026-01-01",
"text": {
"status": "generated",
"div": "<!-- snip (see above) -->"
},
"requester": {
"reference": "Practitioner/123"
},
"dosageInstruction": [
{
"text": "Alternating daily dose: 100 mcg one day, 50 mcg the next day for a month",
"timing": {
"repeat": {
"boundsDuration": {
"value": 1,
"unit": "month",
"system": "http://unitsofmeasure.org",
"code": "mon"
}
}
},
"extension": [
{
"url": "http://fhir.health.gov.il/StructureDefinition/ext-sub-dosage-step",
"valueDosage": {
"sequence": 1,
"text": "Cycle day 1: 100 mcg",
"timing": {
"repeat": {
"frequency": 1,
"period": 1,
"periodUnit": "d",
"boundsDuration": {
"value": 1,
"unit": "day",
"system": "http://unitsofmeasure.org",
"code": "d"
}
}
},
"doseAndRate": [
{
"doseQuantity": {
"value": 100,
"unit": "mcg",
"system": "http://unitsofmeasure.org",
"code": "ug"
}
}
]
}
},
{
"url": "http://fhir.health.gov.il/StructureDefinition/ext-sub-dosage-step",
"valueDosage": {
"sequence": 2,
"text": "Cycle day 2: 50 mcg",
"timing": {
"repeat": {
"frequency": 1,
"period": 1,
"periodUnit": "d",
"boundsDuration": {
"value": 1,
"unit": "day",
"system": "http://unitsofmeasure.org",
"code": "d"
}
}
},
"doseAndRate": [
{
"doseQuantity": {
"value": 50,
"unit": "mcg",
"system": "http://unitsofmeasure.org",
"code": "ug"
}
}
]
}
}
]
}
]
}