Stream: implementers
Topic: Chemotherapy Cumulative Dose
Giorgio Cangioli (Jul 14 2021 at 17:03):
I have similar question for the Chemotherapy for which I need to represent the cumulative dose for each kind of product given.
I was thinking to the MedicationAdministration resource, but it is not clear to me how this information can be conveyed with the dosage BackboneElement. (maybe I'm wrong, but it seems to me that this is instead possible by using the dosage datatype used in the MedicationStatement resource)
Lloyd McKenzie (Jul 14 2021 at 18:08):
CumulativeDose seems like an Observation. It, itself, isn't describing an intervention. It's also a point-in-time assessment, may have a methodology that drives the calculation, is derived from other things, and in theory could be calculated differently by different people.
Daniel Venton (Jul 14 2021 at 18:41):
Would you even need a cumulative observation recorded into the chart? If you want to know how much radiation the patient has had in the past year, gather all the dosages and sum them just in time. If you ask the same question tomorrow, you might get a different answer based on timing, once again just in time. "As of Tue you had 200 rads in the past year. As of Wed you had 10 rads in the past year." What if some situations wanted 18 month or 24 month exposure. Do you every day record 12, 18 and 24 cumulative observations into the chart? Of course not that would be crazy. If you want to know, right now, how much they have had during X timeframe, get all the dosages and sum them.
I am a data person not a clinician. Of course this scenario presumes that you have all of the raw data in order to summarize.
Giorgio Cangioli (Jul 14 2021 at 18:44):
Daniel Venton said:
Would you even need a cumulative observation recorded into the chart? If you want to know how much radiation the patient has had in the past year, gather all the dosages and sum them just in time. If you ask the same question tomorrow, you might get a different answer based on timing, once again just in time. "As of Tue you had 200 rads in the past year. As of Wed you had 10 rads in the past year." What if some situations wanted 18 month or 24 month exposure. Do you every day record 12, 18 and 24 cumulative observations into the chart? Of course not that would be crazy. If you want to know, right now, how much they have had during X timeframe, get all the dosages and sum them.
I suppose this relates to the https://chat.fhir.org/#narrow/stream/179166-implementers/topic/Radiotherapy.20Cumulative.20Dose thread, or am I wrong ?
Giorgio Cangioli (Jul 14 2021 at 18:47):
Lloyd McKenzie said:
CumulativeDose seems like an Observation. It, itself, isn't describing an intervention. It's also a point-in-time assessment, may have a methodology that drives the calculation, is derived from other things, and in theory could be calculated differently by different people.
How do you suggest that this CumulativeDose Observation should be linked to the MedicationAdministration ? by using the Observation.partOf element ?
Lloyd McKenzie (Jul 14 2021 at 18:53):
Most correct would be an extension on Observation.derivedFrom to point to all of the records used to calculate. If what you want is "After this administration, their cumulative dose is now X", then that'd be a custom extension on the MedicationAdministration
John Moehrke (Jul 14 2021 at 19:11):
@Elliot Silver ?
Elliot Silver (Jul 14 2021 at 21:51):
Thanks @John Moehrke . I don't have any particular insight here, although I think recording the cumulative dose, rather than calculating it on the fly would be preferred. I suspect we need to know that the decision to go ahead with treatment in March was based on the fact that the patient was (just) under their total lifetime safe dosage. What happens if we find out in May that the patient also had had a January treatment which now means that the March treatment puts them over the limit? The measure we used shouldn't come up with a different answer (although, we may want to have a new measure based on the current information).
If there is ambiguity here, I suggest following up with @Abderrazek Boufahja, @Christopher Lindop, or @Jonathan Whitby
Abderrazek Boufahja (Jul 15 2021 at 08:20):
In the Radiation Dose Summary IG, we avoided reporting cumulative dose; the IG is about reporting the procedures radiation summaries, punctually, one by one. This was for the following reasons: the meaning of cumulative dose over multiple procedures was not yet clear (at least for me), its definition may varies, and the cumulative dose may depend on many parameters (from which date to which date it is calculated, the weighting technique, the modality type, etc.). Using FHIR Operations was a possible solution for calculating Cumulative dose for the Radiation Dose Summary IG. Things with RT and Chemotherapy may be different about the Cumulative Dose, which may have a strict definition, and thus using operations may not be relevant.
Last updated: Apr 12 2022 at 19:14 UTC