FHIR Chat · MedicationRequest · implementers

Stream: implementers

Topic: MedicationRequest


view this post on Zulip Nata Samarina (May 26 2021 at 13:32):

Hello.
What element can be used to store information about the protocol number of the medical commission (protocol number and date) that allowed the free prescription to be issued in the MedicationRequest resource?
Under a free prescription it means that the patient will receive the drug for free.

view this post on Zulip Lloyd McKenzie (May 26 2021 at 13:55):

This sounds like Coverage. Use the MedicationRequest.insurance element to point to the Coverage resource. The Coverage resource would indicate the 'program' that's going to pay for this. If you need a per-prescription authorization, then you'd link to ClaimResponse which is used to cover prior authorizations.

view this post on Zulip Tommy Vu (Feb 15 2022 at 10:41):

Hello
How can i create a MedicationRequest that support more than one Medication reference

view this post on Zulip René Spronk (Feb 15 2022 at 11:51):

Could you elaborate as to why you'd need that?

view this post on Zulip René Spronk (Feb 15 2022 at 13:12):

(deleted)

view this post on Zulip Tommy Vu (Feb 15 2022 at 14:03):

i want to create one request with different medication

view this post on Zulip Jose Costa Teixeira (Feb 15 2022 at 15:05):

That would be several MedRequests. One request is one medication (at most a single mix of medication)

view this post on Zulip Lloyd McKenzie (Feb 15 2022 at 15:30):

Essentially a MedicationRequest is created with a granularity of what can be administered as a single dose. If you're ordering multiple meds that will be administered as separate doses, that's multiple MedicationRequest instances - though you can give them all a common groupIdentifier to indicate they were ordered as part of the same action. If you want a group of medications that must be suspended or cancelled as a collective, you can use RequestGroup to wrap them (e.g. a complex chemo regimen where you can't mess with one part without messing with everything).

view this post on Zulip Tommy Vu (Feb 16 2022 at 02:20):

clear, thank a lot

view this post on Zulip Farrukh Najmi (Mar 02 2022 at 18:14):

@Lloyd McKenzie and colleagues, I am unclear of difference between MedicationRequest and MedicationOrder. Also, unclear what role create a MedicationRequest vs MedicationOrder. Thanks for your help.

view this post on Zulip Michele Mottini (Mar 02 2022 at 18:20):

They are the same thing. MedicationOrder is in FHIR DSTU2 and then it got renamed to MedicationRequest in newer versions (STU3, R4 and R5 in the future etc)

view this post on Zulip Farrukh Najmi (Mar 02 2022 at 18:23):

Thank you @Michele Mottini ! So is there any scenario where a Patient would create a MedicationRequest / MedicationOrder? It seems not and they should only be created by a Practitioner. Am I right?

view this post on Zulip Michele Mottini (Mar 02 2022 at 18:29):

They can be created by patient to report self-prescribed meds: https://www.hl7.org/fhir/us/core/MedicationRequest-self-tylenol.html (at least if you use the US Core implementation guide)

view this post on Zulip John Silva (Mar 02 2022 at 19:11):

Hi @Farrukh Najmi !! Yes, MedicationOrder is the 'previous version' (if you will) of MedicationRequest but they are not "the same". In other words, there are many different properties in MedicationRequest that didn't exist or have been renamed between MedOrder (DSTU2) and MedicationRequest (R4). To see these changes you can use these FHIR spec pages (version diffs) described in FHIRpath, but this has to be done in "2 passes" --- diff between STU3 and DSTU2 and then diff between R4 and STU3:

https://hl7.org/fhir/stu3/medicationrequest-version-maps.html -- STU3 to DSTU2 diffs
https://hl7.org/fhir/r4/medicationrequest-version-maps.html -- R4 to STU3 diffs

A couple of examples of differences:

DSTU2 MedicationOrder.patient is the reference to the patient that this order is for,
R4 Medication.subject is the reference to the patient as above, so this essentially a property name change

view this post on Zulip Melva Peters (Mar 02 2022 at 22:52):

A patient can create a MedicationRequest with an intent of proposal. A patient would never create a request that would be acted on by a pharmacy. It would be a proposal to a prescriber or in the case of US Core, it is a self reported medication.


Last updated: Apr 12 2022 at 19:14 UTC