FHIR IG analytics| Package | il.core.fhir.r4 |
| Resource Type | MedicationRequest |
| Id | MedicationRequest-2PerCalendarMonth.json |
| FHIR Version | R4 |
No resources found
No resources found
Note: links and images are rebased to the (stated) source
Medication Request
Example medication prescribed to be taken 2 times per calendar month for a duration of 1 month.
Dose per intake: 1 tablet.
Start date: 01-Jan-2026.
{
"resourceType": "MedicationRequest",
"id": "2PerCalendarMonth",
"meta": {
"profile": [
"http://fhir.health.gov.il/StructureDefinition/il-core-medication-request"
]
},
"status": "active",
"intent": "order",
"text": {
"status": "generated",
"div": "<!-- snip (see above) -->"
},
"subject": {
"reference": "Patient/123"
},
"medicationCodeableConcept": {
"text": "Example medication"
},
"authoredOn": "2026-01-01",
"requester": {
"reference": "Practitioner/123"
},
"dosageInstruction": [
{
"text": "Take 1 tablet 2 times per calendar month for 1 month",
"timing": {
"repeat": {
"boundsDuration": {
"value": 1,
"unit": "month",
"system": "http://unitsofmeasure.org",
"code": "mo"
},
"frequency": 2,
"period": 1,
"periodUnit": "mo"
}
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"unit": "tablet",
"system": "http://unitsofmeasure.org",
"code": "1"
}
}
]
}
]
}