Stream: implementers
Topic: Merging care plans/protocols?
Vladimir Smirnov (Oct 09 2018 at 09:50):
If a patient has multiple comorbidities, and there are care protocols for each, are there known approaches for merging these in a single patient-specific care plan? Was there ever an operational system that implemented this? There are some academic publications on this subject, however it is hard to get started. I would appreciate if anyone could point to useful/important resources in this area.
Lloyd McKenzie (Oct 09 2018 at 14:15):
Merging them without any human intervention? I guess that's theoretically possible, but I'm pretty sure you'd want a human to intervene with the result.
Vladimir Smirnov (Oct 10 2018 at 15:51):
We see the process as akin to merging git branches: there is a history of completed treatments up to present, and the care plans currently proposed are "feature branches". In order to be put in action, they would have to be merged into the "master" in a semi-automated way, resolving potential conflicts along the way. The process might facilitate communication among clinicians. Thus, there would be a collectively maintained unified care plan in action. Apparently there was some discussion on this within HL7 last year, but nothing was published of the outcome: http://wiki.hl7.org/index.php?title=201704_Care_Plan
Abbie Watson (Oct 12 2018 at 15:25):
We've been testing some ideas on this topic. With interoperable data, we were able to model a Multiple Sclerosis patient with 3+ careplans. We store the FHIR resources in collections for each resourceType. So when the careplans come in with different goals, medications, conditions, etc; the goals all get grouped together; the meds all together; etc. With our Careplan Designer, we've been experimenting with filtering. One obvious approach for merging is the "this is what's remaining to do" careplan. So, we filter out any goals with status completed; medication orders that have been filled; conditions that are remission; etc. And whatever is remaining, we just write into an aggregate careplan.
Jeffrey Danford (Oct 12 2018 at 15:37):
We've been investigating this in the Care Coordination track at the Connectathons. In particular we've been looking at using CarePlan.partOf to link various care plans together. The issue we've been running into is that not all care will be provided by a single provider and each member of the care team may be generating their own care plans to document their part of the patient's treatment.
Lloyd McKenzie (Oct 12 2018 at 16:51):
How do you manage the "relevance" aspect? The optometrist's care plan, the gynechologist's care plan and the psychiatrist's care plan may have some level of overlap, but a lot of what's in the different plans won't be relevant (or even appropriate to share) with other plans.
Abbie Watson (Oct 12 2018 at 17:01):
We have a user interface to let the user determine relevance! :grin:
Abbie Watson (Oct 12 2018 at 17:01):
:punt:
Lloyd McKenzie (Oct 12 2018 at 17:03):
If you're providing automated merging with manual review/assistance, that makes sense. I thought some were talking about fully automated merging, which makes me a bit nervous.
Last updated: Apr 12 2022 at 19:14 UTC