FHIR IG analytics| Package | se.electronichealth.fhir.nll.r4 |
| Resource Type | MedicationRequest |
| Id | dosage-example-4.json |
| FHIR Version | R4 |
No resources found
No resources found
Note: links and images are rebased to the (stated) source
Dosage instruction example
Timed administration with time, 1 tablet at 8 AM, 1 tablet at 12 AM, 1 tablet at 6 PM, "1kl 8+1kl 12+1kl 18"
This example focuses on how to create a dosage instruction. All other information in the medication request except the dosage instruction is incomplete.
{
"resourceType": "MedicationRequest",
"id": "<uuid>",
"meta": {
"tag": [
{
"display": "Timed administration with time '1kl 8+1kl 12+1kl 18'"
},
{
"display": "Timed administration with time, 1 tablet at 8 AM, 1 tablet at 12 AM, 1 tablet at 6 PM"
},
{
"display": "dosage-example-4"
}
]
},
"text": {
"status": "generated",
"div": "<!-- snip (see above) -->"
},
"status": "unknown",
"intent": "order",
"medicationCodeableConcept": {
"text": "This order has no medication"
},
"subject": {
"reference": "Patient/<uuid>"
},
"dosageInstruction": [
{
"extension": [
{
"url": "http://electronichealth.se/fhir/StructureDefinition/NLLAdministeringInstruction",
"valueString": "sväljes"
}
],
"sequence": 1,
"patientInstruction": "1 tablett klockan 08, 1 tablett klockan 12, 1 tablett klockan 18",
"timing": {
"repeat": {
"timeOfDay": [
"08:00:00",
"12:00:00",
"18:00:00"
]
}
},
"asNeededBoolean": false,
"method": {
"coding": [
{
"code": "738995006"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"code": "{tbl}"
}
}
]
}
]
}