Stream: implementers
Topic: DRG and ICD10
Mohsen Jafari (Mar 11 2022 at 10:34):
I am generating condition resources based on a local database which holds the patients' data. The rows in the local database have DRG and ICD10 codes at the same time (i.e., two different columns). For the DRG code there is also another column which holds the severity but for the ICD10 no column for the severity. Is that meaningful/allowed to generated two conditions for each row, so that one condition with DRG code having severity and the other condition with ICD10 code without severity element?
Lloyd McKenzie (Mar 11 2022 at 15:29):
Better is to have a single Condition and put two translations on the Condition.code and also populate the severity. It's common for some code systems to pre-coordinate concepts and other models to break them out. It's still the same Condition. There's a possibility of saying something that's inconsistent, but that's not really something we can avoid.
Mohsen Jafari (Mar 11 2022 at 19:26):
So, if I put two codes in the Condition.code
and populate the Condition.severity
, then how can other people know that to which Condition.code
(between the two) does the Condition.severity
belong to?
Lloyd McKenzie (Mar 11 2022 at 20:20):
The severity doesn't belong to a Condition.code, it belongs to a Condition. If you have a Condition with severity 'severe' and a code.coding that says 'rash' and another code that says 'severe rash', it's clear what's going on. There is no specific association of the severity with one coding vs. the other.
Last updated: Apr 12 2022 at 19:14 UTC