FHIR Chat · Chronic Condtion · implementers

Stream: implementers

Topic: Chronic Condtion


view this post on Zulip Yunwei Wang (Jun 01 2016 at 14:12):

I know this must be discussed before. But I could not find an answer in email list. So if patient has chronic conditions, such as Diabetes, and visited hospital 20 times in the last 5 years, should one condition instance of Diabetes created for each visit? If so, how do I get full history of patient's Diabetes condition? I can see two solution

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

1) use Linkage resource to link all related Diabetes conditions together. I can use FluentPath to search, such as Linkage.item.contains(Codition.code = xxx).

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

2) use regular search Condition?code=xxx&clinicalStatus=xxx.

view this post on Zulip Yunwei Wang (Jun 01 2016 at 14:15):

Any suggestions?

view this post on Zulip David Hay (Jun 01 2016 at 14:23):

Wouldn't a single instance of diabetes referenced by each encounter make more sense?

view this post on Zulip Michelle (Moseman) Miller (Jun 01 2016 at 14:30):

Some thoughts from another discussion: https://chat.fhir.org/#narrow/stream/implementers/topic/Condition's.20Priority

Representing all billed diagnoses as a single 'chronic' Condition (e.g. diabetes) triggers the question of what the Condition.code should be? For example, problems (in the US) are most often SNOMED, but diagnoses are ICD. When we discussed the possibility of "translating" SNOMED to ICD-X codes, we intentionally didn't do that because the ICD code could add inaccurate information — like initial encounter - which isn't relevant across all encounters. Keeping these conditions separated (per encounter) allowed us to maintain the accuracy of the billed diagnosis (ICD) codes in context of a specific encounter.

view this post on Zulip Yunwei Wang (Jun 01 2016 at 14:32):

But how do get all conditions for an encounter happened in 6/1/2013? I need to get certain history version of a condition.

view this post on Zulip Michelle (Moseman) Miller (Jun 01 2016 at 15:03):

Longer term, I would suggest Health Concern. Per the recently balloted Health Concern domain analysis model, use cases include:

Maintain a traceable record of a concern, for understanding, as the concern evolves. As providers investigate health issues, their understanding of the underlying problem often changes. However, it is sometimes important to be able to understand that today’s diagnosis is the same problem that initially presented as something else--pneumonia as the flu, or gastritis as chest pain.

Associate events with concerns in order to provide a consolidated view of a concern (e.g., observations ordered in the context of caring for a particular concern).

We're still discussing Health Concern representation in FHIR (e.g. one thought would be a list of concerns where each concern is a condition that links to "concern events" that could be conditions, observations, orders, etc.)

http://wiki.hl7.org/index.php?title=Health_Concern

view this post on Zulip Erich Schulz (Jun 01 2016 at 20:59):

Is a collection versionable?

view this post on Zulip Erich Schulz (Jun 01 2016 at 20:59):

Same issue applies to medication history...

view this post on Zulip Erich Schulz (Jun 01 2016 at 21:02):

Also need to differentiate "problems at time X" from "known problems at time X" and "conditions billed for at time X"

view this post on Zulip Lloyd McKenzie (Jun 01 2016 at 21:37):

If you want a point-in-time snapshot, you'd either have a specific resource (Encounter, EpisodeOfCare or Claim) point to the records (or possibly specific versions of them), or you'd use a List resource if you wanted a controlled collection that could be managed independently of one of those referencing objects. (Sometimes you might have both.)

view this post on Zulip Grahame Grieve (Jun 01 2016 at 23:06):

@Michelle (Moseman) Miller - note that the definition of health concern given in CCDA by SD makes it clear that it's a condition like any other problem. what differentiates it is the context in which it is used. If PC introduces "health concern" as a new resource, that will further confuse matters. Can PC please at least consider alternative names

view this post on Zulip Michelle (Moseman) Miller (Jun 02 2016 at 12:47):

@Grahame Grieve While no PC decisions have been made formally, my opinion based on discussions to date is what I represented earlier, which doesn't conflict with SD. Specifically, we could use the existing List resource to represent a list of concerns (based on context of who has the concern). The List.entry.item is the existing Condition resource -- and then the new piece to figure out (which isn't an ONC requirement, but is part of the DAM) is how we link the Condition (with category = concern) to the "concern events" -- meaning the related conditions, observations, orders, etc. At one point, we wanted to use the new Linkage resource for that, but I have outstanding questions whether linking heterogeneous resources is part of the scope of Linkage (which says it is normally used to link the same type of resources; often referred to as duplicates, etc.).

view this post on Zulip Grahame Grieve (Jun 02 2016 at 20:59):

agree it's not the scope of the linkage resource as defined, but I haven't found a use for Linkage yet. I keep looking at it thinking it should be what I want, but the definition is too narrow...

view this post on Zulip Grahame Grieve (Jun 02 2016 at 21:00):

what you describe is still different to what SD means when they talk about concerns. I'm not saying that what you describe doesn't make sense. It's just different, and therefore has a solid prospect of creating much confusion

view this post on Zulip Lloyd McKenzie (Jun 03 2016 at 01:54):

The initial scope of Linkage was to allow the recognition that 3 or 4 different statements about a particular problem, procedure, etc. are actually all talking about the same thing - which was one of the requirements of the Condition model that wasn't met by other capabilities.

view this post on Zulip Michelle (Moseman) Miller (Jun 03 2016 at 12:48):

That was the exact use case/question that started this discussion when @Yunwei Wang asked "how do I get full history of patient's Diabetes condition?" assuming there are multiple diabetes conditions -- each representing a diagnosis in context of a given visit/encounter (coded in ICD) as well as another condition that represents the problem on the problem list (coded in SNOMED).

view this post on Zulip Erich Schulz (Jun 03 2016 at 12:52):

are you accounting here for the fact that many diabetic complications ("retinopathy", "renal impairment", "gangrene") may not be directly linked...

view this post on Zulip Jay Lyle (Jun 03 2016 at 13:04):

Looks like CCDA says "A Health Concern is a health related matter that is of interest, importance or worry to someone," which seems in line with Michelle's comment. If it weren't, I'd suggest that's an excellent reason to define requirements independently of solutions, as far as possible.

The existing Condition resource tries to do something physiological rather than procedural, so it doesn't support the Concern case. List might, if linkage helped. That would be a design decision, I suppose.

Eric, the Concern concept does two things: it groups stuff (supporting findings, sub-concerns, etc.) for what is basically a librarian function, and one of the things it groups is the "identifying constituent," the latest of which is the current diagnosis in the case of an evolving condition. The DAM has changed a bit in the last ballot, but the foundational semantics are pretty stable.

view this post on Zulip Lloyd McKenzie (Jun 03 2016 at 13:37):

Condition captures physiological state, plus relationships with other physiological states (some via extensions). List captures concern about one or more states. Linkage allows you to tie together multiple independent views of the same "thing".

view this post on Zulip Grahame Grieve (Jun 05 2016 at 11:25):

"The existing Condition resource tries to do something physiological rather than procedural, so it doesn't support the Concern case" - I don't follow that?

view this post on Zulip Michelle (Moseman) Miller (Jun 05 2016 at 20:21):

As part of the QA of Condition, I logged GF#10090 to clean up the introduction/scope. Specific changes/clarifications needed (to better align with concern) include:

  • Loosen the restrictions that a condition is only in context of a clinician (e.g. "recognized by a clinician" or "clinician assessment")
  • Loosen the restrictions that a condition is only a medical state (e.g. "state of health" or "disease/illness")
  • Include usage for patient concern statements, such as fears, risks, or barriers (e.g. lack of transportation, travel to Africa, fear of losing a parent).
  • Include verbiage that there may not be consensus or agreement across stakeholders (e.g. clinician doesn't agree with patient fear of being overweight; patient doesn't agree with clinician's concern about unhealthy relationships)

Last updated: Apr 12 2022 at 19:14 UTC