FHIR Chat · FHIR Resource for Pregnancy Episode · implementers

Stream: implementers

Topic: FHIR Resource for Pregnancy Episode


view this post on Zulip Binu DGIT (Nov 07 2016 at 08:36):

Hi, We are trying to build an EHR repository based on FHIR standards. While we are struggling to map pregnancy episode from antenatal visits to delivery as well as postnatal visits to a single FHIR resource. Since we are having the similar concept implemented in our in-house developed HIS, it would be definitely value added feature to form a clinical repository with visits from different institutes..
Please advise..

view this post on Zulip Grahame Grieve (Nov 07 2016 at 10:44):

I think you need to provide more information. what information do you have, and what existing resources are you using?

view this post on Zulip Binu DGIT (Nov 07 2016 at 10:56):

We have ANC-NO uniquely registered across the institutes for each pregnancy. This is being generated initially when the patient is identified with a new pregnancy. Normal way it is getting recorded from primary care centers. Our in-house developed HIS (Alshifa) is having facility to register pregnancy locally and can record information like gravida, parity etc, antenatal examination details, CPOE details etc. Further after a couple of antenatal visits, patient is being referred to polyclinic, where the care continued under the same ANC-NO and more details are recorded including ultrasound, anamoly scan etc. Patient is being referred to Tertiary care hospital for delivery, again the ANC-NO is being followed up. When we build a FHIR based repository in the central, we need refer the respective ANC-NO for a single episode and all encounters are to be grouped under the same. Moreover, I could not find a proper FHIR resource to record, pregnancy related details including gravida, parity, gestational age, risk factors and other complications etc.

view this post on Zulip Grahame Grieve (Nov 07 2016 at 11:33):

I would think that you would have multiiple encounters all linked by a single general encounter (see Encounter.partOf). Though you could also treat the overall ANC-NO as an EpisodeOfCare

view this post on Zulip Grahame Grieve (Nov 07 2016 at 11:33):

you should read the definitions of both

view this post on Zulip Grahame Grieve (Nov 07 2016 at 11:33):

you can treat most of the rest of the information as a conbination of Condition and Observation. Dealing properly with pregnancy care is on the future roadmap

view this post on Zulip Brian Postlethwaite (Nov 07 2016 at 22:49):

Yes, and EpisodeOfCare would make sense as the overall wrapper for the session.

view this post on Zulip Binu DGIT (Nov 08 2016 at 04:06):

We have the similar idea in mind.. keeping ANC-NO as the episode of care with multiple encounters from different institutes grouped under that. My worry was about the other related information.. Even though I tried to form it as part of observation, some of the details never fit into the same..
Thank you very much for the feedback..

view this post on Zulip Binu DGIT (Nov 08 2016 at 04:14):

Similarly, I found difficulty in managing sick leave, attendance certificate etc. like clinical certificates issued to patient.. If you want to move them to the central repository, which resource type would be most suitable..?

view this post on Zulip Brian Postlethwaite (Nov 08 2016 at 04:20):

Possibly the Communication resource

view this post on Zulip Lloyd McKenzie (Nov 08 2016 at 04:23):

Communication is more about sharing what someone has been told. The "attendance certificate" sounds more like a certification/credentialling process. I'd probably capture that just as encounter - Patient went to meeting XYZ. If we wanted to capture training, that would be Procedure. But if we want to capture "patient passed test XYZ showing a certain level of knowledge", that would be new. We handle that right now for practitioners, but not for patients.

view this post on Zulip Binu DGIT (Nov 08 2016 at 04:30):

We have a lot of clinical documents including medical reports from different specialties. Which would be the best resource type to map with?
We have the report made as HTML document..

view this post on Zulip Grahame Grieve (Nov 08 2016 at 04:32):

DocumentReference then

view this post on Zulip Binu DGIT (Nov 08 2016 at 04:35):

@Lloyd McKenzie Our doctors create sick leave while they are in OPD (encounter type Outpatient) or at the time of inpatient discharge. (Inpatient encounter type). So is this to be considered as another encounter or would be better to consider it as document reference?

view this post on Zulip Lloyd McKenzie (Nov 08 2016 at 04:37):

Can you explain what you mean by "create sick leave"? Do you mean "authorize sick leave"? I'm not sure we have an appropriate resource for that. It could be treated as a sort of consent, but it's far outside the scope of what the work group is currently considering for that resource.

view this post on Zulip Binu DGIT (Nov 08 2016 at 04:41):

I mean the sick leave document itself.. We have in Oman, the sick leave generated from hospitals are being reported to Ministry of Manpower to record under the employee.. For that purpose we have implemented a web service communication. While we want modify this process flow by making this available centrally at Ministry of Health Head quarters and other stake holders like ministry of manpower or other ministries can query at any point in time..

view this post on Zulip Peter Jordan (Nov 08 2016 at 05:36):

At the risk of revisiting past debates, I still believe that there should be a dedicated FHIR Resource for Pregnancy (Gravidity or Gestation are alternative names). To my mind shoe-horning such a large and significant concept into any of the existing clinical, diagnostic or care provision resources just doesn't feel right. Pregnancy not really a condition or a problem and has a number of dedicated and unique properties (Gravida, Parity, Date of Conception, LMP, Expected Delivery Dates, etc, etc. - not to mention all the events around labour and delivery). Put another way, over 80% of the EHR/EMR systems I've seen implement it as a separate entity and I've worked on 3 major maternity modules in my career. Look forward to all the (friendly?) fire that might be returned! :)

view this post on Zulip Binu DGIT (Nov 08 2016 at 05:47):

This is the same opinion I have.. :)

view this post on Zulip Binu DGIT (Nov 08 2016 at 10:02):

Considering Document Reference, data is considered as attachment and it can be send as base64Binary where the HTML tags are not allowed. How can I send HTML reports (basically it is document with HTML tag) using DOCUMENT REFERENCE resource?

view this post on Zulip Grahame Grieve (Nov 08 2016 at 10:07):

yes base64 the html

view this post on Zulip Binu DGIT (Nov 08 2016 at 10:09):

What do you mean ? I can send text containing HTML tags can be send as base64Binary?

view this post on Zulip Grahame Grieve (Nov 08 2016 at 10:10):

well, you base64 encode the html

view this post on Zulip Binu DGIT (Nov 08 2016 at 10:15):

Thats fine.. we have done the same found some issues in decoding it back ..
Is there any resource specific to map culture reports from lab? At present we have tried observation for the same while histology report is being accumulated to conclusion in DIAGNOSTIC REPORT resource type.

view this post on Zulip Grahame Grieve (Nov 08 2016 at 10:21):

there's a profile somewhere that shows how to culture reports from a lab - @Eric Haas can direct you to that

view this post on Zulip Grahame Grieve (Nov 08 2016 at 10:21):

should be no issues decoding base64 - base64 is a rather well understood encoding

view this post on Zulip Lloyd McKenzie (Nov 08 2016 at 11:55):

@Peter Jordan values such as Date of Conception, Expected Delivery Date and even LMP are all observations - they are calculations/assertions that are made by a particular person at a particular time using a particular method. And a different value might be asserted a few weeks later by a different person using a different method. (E.g. initial calculation based on reported LMP, later updated based on ultrasound). LMP is captured for all sorts of reasons, not just pregnancy and needs to be captured in the same way for consistency. Procedures captured related to pregnancy are going to be recorded and tracked for billing and other purposes in the same manner as any other procedure. There's no question that systems will have a dedicated interface to manage a pregnancy episode (just as they'll have interfaces for managing oncology and other types of specialized care). But from a data consistency/query/exchange perspective, they're still dealing with encounters, observations and procedures that are linked to a particular episode.

view this post on Zulip Peter Jordan (Nov 08 2016 at 22:29):

@Lloyd McKenzie thanks for the explanation. Because NZ has a centralised system for both ante-natal and post-natal care, with a designated Lead Maternity Carer and single sources of truth for ED dates, etc. it lends itself more to a dedicated resource. My feeling remains that without this, the current FHIR model is too complex for those attempting to exchange maternity details and I am one of those involved in building interfaces between community midwife systems and a national system. I would love to use FHIR to do this but, believe it or not, the current incumbent CDA standard is actually simpler (given that we've gone through the pain of constraining via Templates with model meaning bindings to SCT). However, if anyone can point me to a FHIR Profile that handles even an average maternity 'episode' - including labour, delivery and post-natal care up to 6 weeks - I'd be absolutely delighted to be converted.

view this post on Zulip Lloyd McKenzie (Nov 08 2016 at 22:34):

This is actually one of those situations where a logical model interface (which presents a large set of resource data as a single record) would be a really good fit. However, that's still an evolving space and probably won't be ready for prime time as part of STU 3. This would be a great test case for it (in addition to the pathology use-case Grahame has been using).

view this post on Zulip Peter Jordan (Nov 09 2016 at 08:41):

That's an excellent, constructive, suggestion @Lloyd McKenzie and has already been picked up by Lord Hay of ClinFHIR.

view this post on Zulip David Hay (Nov 10 2016 at 19:57):

https://fhirblog.com/2016/11/11/basic-pregnancy-logical-model/

view this post on Zulip Eric Haas (Nov 16 2016 at 05:54):

@Binu DGIT A little late on the follow up but here is the profile for Culture and sensitivity which we discussed on a couple of OO on FHIR calls.. I'm proposing that we update the example in the spec to this pattern. {#12240} adn add this example too


Last updated: Apr 12 2022 at 19:14 UTC