FHIR IG analytics| Package | il.core.fhir.r4 |
| Resource Type | MedicationRequest |
| Id | MedicationRequest-initial-then-prn.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
Regimen: Take an initial dose of 2 tablets, then take 1 tablet as needed after each bowel movement.
Limit: Do not exceed 8 tablets per day.
{
"resourceType": "MedicationRequest",
"id": "initial-then-prn",
"meta": {
"profile": [
"http://fhir.health.gov.il/StructureDefinition/il-core-medication-request"
]
},
"status": "active",
"intent": "order",
"subject": {
"reference": "Patient/123"
},
"medicationCodeableConcept": {
"text": "Example medication"
},
"authoredOn": "2026-01-01",
"requester": {
"reference": "Practitioner/123"
},
"text": {
"status": "generated",
"div": "<!-- snip (see above) -->"
},
"dosageInstruction": [
{
"text": "Initial 2 tablets, then 1 tablet PRN; max 8 tablets per day",
"maxDosePerPeriod": {
"numerator": {
"value": 8,
"unit": "tablet",
"system": "http://unitsofmeasure.org",
"code": "1"
},
"denominator": {
"value": 1,
"unit": "day",
"system": "http://unitsofmeasure.org",
"code": "d"
}
},
"extension": [
{
"url": "http://fhir.health.gov.il/StructureDefinition/ext-sub-dosage-step",
"valueDosage": {
"sequence": 1,
"text": "Initial dose: take 2 tablets immediately",
"timing": {
"repeat": {
"count": 1
}
},
"doseAndRate": [
{
"doseQuantity": {
"value": 2,
"unit": "tablet",
"system": "http://unitsofmeasure.org",
"code": "1"
}
}
]
}
},
{
"url": "http://fhir.health.gov.il/StructureDefinition/ext-sub-dosage-step",
"valueDosage": {
"sequence": 2,
"text": "Then: take 1 tablet as needed after each bowel movement",
"asNeededBoolean": true,
"timing": {
"code": {
"text": "After each bowel movement"
}
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"unit": "tablet",
"system": "http://unitsofmeasure.org",
"code": "1"
}
}
]
}
}
]
}
]
}