FHIR Chat · Mamogram patients · implementers

Stream: implementers

Topic: Mamogram patients


view this post on Zulip Matthew Oliveira (Jul 08 2021 at 18:22):

How would I find mammogram patients using FHIR, sorry I'm rather new to everything

view this post on Zulip Lloyd McKenzie (Jul 08 2021 at 18:53):

@John Doe One of the quirks to learn with Zulip is to change the topic name when you post if you want to talk about something different. (This was originally listed under "Repeat prescription request" but I moved it to a new topic name.

Can you explain your question more? Do you want a list of patients who are due for mammograms? Who are scheduled for mammograms? Who have recently had mammograms?

view this post on Zulip Matthew Oliveira (Jul 08 2021 at 19:59):

Sorry about that, my apologies. Thank you for correcting my error. So I've been playing around with the FHIR servers using insomnia. I have been using the Hapi FHIR server R4 connecting with Observation and Patient data. Understanding how to add, edit, and search for specific data. Currently my team is looking into breast radiology primarily mammograms (patients who are due, patients who are scheduled, patients who have had one recently - all of it). Whenever attempting to connect to the ( http://hl7.org/fhir/us/breast-radiology/ ) I get stuck on this page

Screen-Shot-2021-07-08-at-3.58.12-PM.png

Any guidance on how to reach the data for mammograms would be extremely helpful

view this post on Zulip David Pyke (Jul 08 2021 at 20:30):

The FHIR IG for Breast Cancer Radiology is here: http://build.fhir.org/ig/HL7/fhir-breast-radiology-ig/ That will give you the profiles you need to search for. This assumes that the server you're querying supports that FHIR IG. If not, you might be needing far more specific queries based on Observation and Diagnostic Report

view this post on Zulip Elliot Silver (Jul 08 2021 at 22:01):

I'm worried that there might be confusion here between an implementation guide (the Breast Cancer Radiology IG, which provides guidance to vendors making products) and an actual clinical FHIR server with patient information in it.

That said, as David pointed out, Oberservation is used for specific measurements and "findings", DiagnosticReport captures the radiologist's report (although more complex reports may use Composition as well, depending on which release of FHIR you're targeting), Procedure captures the order details, and ImagingStudy lists the images captured. Patient is self-explanitory, Practitioner (or PractitionerRole) documents the radiologist, technician, and others. Your environment may capture a copy of a paper requisition in DocumentReference. Other resources may be involved as well.

view this post on Zulip Matthew Oliveira (Jul 12 2021 at 20:39):

What would be the best suggestion for pulling mammogram data from FHIR? I am looking for o
-a list of patients who are due for mammograms
-scheduled for mammograms
-recently had mammograms?

Any help accessing this data would be greatly appreciated, so far havent had any luck :/

view this post on Zulip Lloyd McKenzie (Jul 12 2021 at 21:19):

Recently had is simplest - you can look for Observations and DiagnosticReports that have a code indicating they're a mammogram and grab the Patient off those. (You'd filter by date and by status.)

For scheduled, you'd look at ServiceRequests where the code indicated mammogram (CPT or SNOMED), also filtering by date and status and then grab the patient.

Due for is harder - you'd need to look at patient demographics (age, gender) and perhaps look for observations indicating clinical gender, procedures indicating past mastectomies, etc. You might also want to look at FamilyMemberHistory and Observation for risk factors for breast cancer, including genetic characteristics. You'd also need to look to see when the last record of mammogram and use whatever protocol your jurisdiction uses to take all of those factors into account to determine when they are 'due' for their next one. No matter what you do, the list will be imperfect - you'll miss some folks and will have other folks in the list who aren't appropriate.

view this post on Zulip Matthew Oliveira (Jul 13 2021 at 19:28):

Is there anyway of switching to the 0.3.0 version of FHIR?

view this post on Zulip David Pyke (Jul 13 2021 at 19:30):

I think you may have confused version numbering. Where did you get that version from?

view this post on Zulip Matthew Oliveira (Jul 13 2021 at 19:31):

I was looking in the fhir-breast-radiology-ig on GH, within the fsh-generated/resource

view this post on Zulip Matthew Oliveira (Jul 13 2021 at 19:32):

Not too sure if I am able to send links on here but: https://github.com/HL7/fhir-breast-radiology-ig/tree/master/fsh-generated/resources here it is for easier access

view this post on Zulip David Pyke (Jul 13 2021 at 19:32):

Okay, that's the version of the FHIR IG and it's artifacts, not the FHIR version. It uses FHIR R4.

view this post on Zulip David Pyke (Jul 13 2021 at 19:32):

Which is FHIR version 4.0.1

view this post on Zulip Matthew Oliveira (Jul 13 2021 at 19:33):

Thank you for clearing that up, much appreciated


Last updated: Apr 12 2022 at 19:14 UTC