More fun with original Text
Nov 5, 2013As I’ve described before (and here) originalText is a challenge. Firstly, originalText is a consistent pattern throughout the HL7 data types (v2, v3, and FHIR) is that a coded value is represented by some variation of a cluster that contains
- (code / system / display) 0..*
- original text
There’s variations to this theme amongst the CE/CNE,/CWE, CD/CE/CV, and Coding/CodeableConcept, but they all have the same basic pattern. The multiple codes are for equivalent codes that say the same thing in different coding systems. Here’s a v3 example (from the spec):
<code code='195967001' codeSystem='2.16.840.1.113883.19.6.96'
codeSystemName='SNOMED CT' displayName='Asthma'>
<originalText>Mild Asthma</originalText>
<translation code='49390' codeSystem='2.16.840.1.113883.19.6.2'
codeSystemName='ICD9CM' displayName='ASTHMA W/O STATUS ASTHMATICUS'/>
</code>
This has the original text “Mild Asthma”, and two different codes, one from ICD-9-CM, and one from Snomed-CT. That’s a pretty straight forward idea.
The problem
But what if the original text is something a little more complex?
Diabetes & Hypertension
The problem with this original text is that there’s going to be two codes. If we stick to just Snomed-CT, this is codes 73211009: Diabetes mellitus, and 38341003: Hypertensive disorder, systemic arterial (I think). There’s no appropriate code that covers both. And this:
<code code='73211009' codeSystem='2.16.840.1.113883.19.6.96'
codeSystemName='SNOMED CT' displayName='Diabetes mellitus'>
<originalText>Diabetes & Hypertension</originalText>
<translation code='38341003' codeSystem='2.16.840.1.113883.19.6.96'
codeSystemName='SNOMED CT' displayName='Hypertensive disorder'/>
</code>
is not legal, because there’s no way that these two codes fit anywhere near the definition of
The translations are quasi-synonyms of one real-world concept. Every translation in the set is supposed to express the same meaning “in other words.”
And this becomes not merely a thereortical problem if you’re trying to provide translations to yet another code system as well. So this is a problem - you have to pick one of the codes.
I suppose you could tell the user that “Diabetes & Hypertension” is not a valid text to insert. I’m sure they’ll be fine with that.
Not
2nd try
An alternative is to say that we ensure that in the circumstance this can arise - say, the reason for prescribing a medication - allows 0..* coded data types, not just 0..1. Then we can do this:
<code code='73211009' codeSystem='2.16.840.1.113883.19.6.96'
codeSystemName='SNOMED CT' displayName='Diabetes mellitus'/>
<code code='38341003' codeSystem='2.16.840.1.113883.19.6.96'
codeSystemName='SNOMED CT' displayName='Hypertensive disorder'/>
Only, where did the original text go? Well, you could repeat it, I suppose. That’d be technically correct:
<code code='73211009' codeSystem='2.16.840.1.113883.19.6.96'
codeSystemName='SNOMED CT' displayName='Diabetes mellitus'>
<originalText>Diabetes & Hypertension</originalText>
</code>
<code code='38341003' codeSystem='2.16.840.1.113883.19.6.96'
codeSystemName='SNOMED CT' displayName='Hypertensive disorder'>
<originalText>Diabetes & Hypertension</originalText>
</code>
So now, a receiving application has to rip through the codes and eliminate duplicate original texts - that’s not my favourite outcome.
FHIR
We have a third option in FHIR: break apart the data type, and declare that the containing element (the reason for prescription in this case) isn’t a CodeableConcept, but a complex element that has a have a text element, and 0..* coding elements that don’t have to be equivalent:
<reasonForPrescription>
<coding>
<code value='73211009'/>
<system value=http://snomed.info/id"/>
<display value='Diabetes mellitus'/>
</coding>
<coding>
<code value='38341003'/>
<system value=http://snomed.info/id"/>
<display value='Hypertensive disorder'/>
</coding>
<text value="Diabetes & Hypertension"/>
</reasonForPrescription>
Actually, this has exactly the same look on the wire, but it’s defined differently. So this is ok, but there’s no facility for providing translations to other code systems (and the RIM mapping has now become impossible because we haven’t solved this for the RIM)
Conclusion
**Original Text continues to be a problem because it cross-cuts the coding structures. If only we could force end-users to value coding enough that we could get rid of text ;-)