FHIR Chat · Medication · implementers

Stream: implementers

Topic: Medication


view this post on Zulip Shweta Katdare (Jun 01 2016 at 17:25):

Hello all,
I am trying to implement a clinical decision support functionality using fhir. One of the features is to detect issues with medication(s) that is not prescribed but will be prescribed if there are no concerns. How would one differentiate between those two types of medications ?

view this post on Zulip Yunwei Wang (Jun 01 2016 at 17:26):

It sounds like you can check MedicationOrder.status

view this post on Zulip Yunwei Wang (Jun 01 2016 at 17:26):

http://hl7-fhir.github.io/medicationorder-definitions.html#MedicationOrder.status

view this post on Zulip Shweta Katdare (Jun 01 2016 at 17:31):

It looks like 'draft' status code would help. Thanks @Yunwei Wang

view this post on Zulip Shweta Katdare (Jun 07 2016 at 15:51):

What would be the most efficient way to map/link MedicationOrders with Medications in a Bundle ? I want to process a list of
medication orders and medications prescribed to a patient without having to use medication reference links
.

view this post on Zulip Yunwei Wang (Jun 07 2016 at 15:54):

Use _include in search

view this post on Zulip Yunwei Wang (Jun 07 2016 at 15:55):

Ex: [baseUrl]/MedicationOrder?_id=71374&_include=MedicationOrder:medication

view this post on Zulip Shweta Katdare (Jun 07 2016 at 16:26):

That would only bring back Medication Element with links. It would be nice if a MedicationOrder has a medication identifier and description along with link. that way one doesn't have to make an addition call to fetch Medication identifier

view this post on Zulip Yunwei Wang (Jun 07 2016 at 16:27):

The returned bundle has both MedicationOrder resource and Medication resources.
If this is not what you want, then

view this post on Zulip Yunwei Wang (Jun 07 2016 at 16:30):

MedicationOrder.medication can be either reference to Medication resource or codeabbleConcept.

view this post on Zulip Yunwei Wang (Jun 07 2016 at 16:30):

So you can return build your Medication resource using medication codeableConcept instead of reference.

view this post on Zulip Shweta Katdare (Jun 13 2016 at 13:36):

thanks @Yunwei Wang . I can add this a s a constraint in my profile


Last updated: Apr 12 2022 at 19:14 UTC