Stream: Medication
Topic: Next medication dose
Tim Blake (Apr 21 2020 at 21:16):
What would be an appropriate way to model the next scheduled dose for a medication? Using MedicationStatement?
Jose Costa Teixeira (Apr 21 2020 at 21:16):
medicationrequest, intent=instance-order
Tim Blake (Apr 23 2020 at 21:31):
I need to capture the date and time of the next actual dose administration. It's not clear how I'd do that with MedicationRequest...
Jean Duteau (Apr 23 2020 at 21:37):
use MedicationRequest:
- intent = #instance-order
- medication[x] = code for the medication
- subject = reference to patient
- dosageInstruction.timing.event = date/time for next dose
Tim Blake (Apr 23 2020 at 21:43):
Thanks. Would I then use basedOn to link to the original authorising order (which has intent = #order)?
Jean Duteau (Apr 23 2020 at 21:45):
yes
Last updated: Apr 12 2022 at 19:14 UTC