We have picked up that we are dropping whole diagnostic reports received from an external system in 2 scenarios and I would love your feedback/ advice.
Our model: We have the diagnostic Report Resource which records the panel name linked to observation resources. We have accounted for an observation value integer and an observation value free text (but they cannot both be empty)
On occasionally an analtye cannot be performed by a lab e.g. an MCV in a CBC - so the observation is empty and then we drop the whole diagnostic report.
It seems Culture results which come i a big block of text are not being accounted for. How are cultures (urine/ blood) usually accounted for in FHIR. Should we add an extension for free text for cultures in the DR?
Observation can have a dataAbsentReason. Itâs common to have a constraint that there must either be a value, a dataAbsentReason, members or components with a value or data absent reason. You could also have an Observation with nothing but narrative or an Observation with a status other than complete/revised/etc. All of those would be valid and useful. A âcompleteâ Observation with no value, dar, members, components or narrative has questionable utility, but itâs not strictly non-conformant with the base spec so you still shouldnât âdropâ it.
The narrative would typically go into a valueString or if itâs complex with markup, even a valueAttachment. You could also put it in Observation.text if it actually represents the full Observation. If youâve got a value + narrative, then you can stick the narrative in Observation.note.
We would probably manage these culture results (block of text) that were not modelled correctly by mapping the text result similarly to other text-based results
We are limited by the external data we receive unfortunately.
We have received a LOINC code for the DiagnosticReport but not for individual observation results so this is to adapt so we capture the data we do receive appropriately.