FHIR IG analytics| Package | se.electronichealth.fhir.nll.r4 |
| Resource Type | MedicationRequest |
| Id | dosage-example-5.json |
| FHIR Version | R4 |
No resources found
No resources found
Note: links and images are rebased to the (stated) source
Dosage instruction example
Interval administration, 1 tablet every three hours, "1 var 3t"
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": "Interval administration '1 var 3t'"
},
{
"display": "Interval administration, 1 tablet every third hour"
},
{
"display": "dosage-example-5"
}
]
},
"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 var tredje timme",
"timing": {
"repeat": {
"frequency": 1,
"period": 3,
"periodUnit": "h"
}
},
"asNeededBoolean": false,
"method": {
"coding": [
{
"code": "738995006"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"code": "{tbl}"
}
}
]
}
]
}