Stream: implementers
Topic: Possible Clinical Notes alternative
Ernus (Mar 18 2021 at 03:15):
Hi everyone
We are mapping existing consult note data to FHIR. As the clinical notes resource isn't in FHIR spec at the
moment, we've decided to use the DocumentReference resource as the resource to map to.
In our application, when a user goes to create a Consult Note, they first select the patient, and then create the consult note attached to that patient. It is not linked to anything like an appointment or a procedure, just a patient. The format of the consult note is not structured data, it is a series of "headings" or "questions" and then the responses/answers in text format under each heading.
What we're looking for is some kind of sense check or feedback on the mapping that we've done. We're hoping to get some of that here. We have already completed fairly extensive mapping exercises in house, but feel a wider community opinion will be useful too.
Attached below is the structure.
Lloyd McKenzie (Mar 18 2021 at 03:47):
Using DocumentReference for capturing consult notes is consistent with industry choice. However, having different attachments for each section is unusual. Typically you'd just have a text document, a PDF document, a CDA document or perhaps all of the above - each representing different renderings of the same content. Most systems won't know how to render multiple sections coming from distinct attachments.
Lloyd McKenzie (Mar 18 2021 at 03:48):
(And kudos on reaching out to the community to double-check your design :thumbs_up: )
Andy Bond (Mar 18 2021 at 05:08):
Lloyd, are you implying that each content entry is a different representation of the same content or can it be different parts? "There may be multiple content element repetitions, each with a different format." Maybe I am not reading that correctly.
Eric Prud'hommeaux (Mar 18 2021 at 06:36):
Ernus said:
The format of the consult note is not structured data, it is a series of "headings" or "questions" and then the responses/answers in text format under each heading.
Are these headings/questions formalized somewhere, or could they be? Would QuestionnaireResponse be appropriate?
Eric Haas (Mar 18 2021 at 14:50):
I think what lloyd is saying is the DR would typcical point to single endpoint that represent the whole thing(e.g. one pdf), not several endpoint each represent a different sections.
Eric Haas (Mar 18 2021 at 14:52):
for example see the section in US Core and the example there...
Eric Haas (Mar 18 2021 at 14:56):
and here is an example transaction to fetch a clinical note that is a pdf: http://build.fhir.org/ig/HL7/davinci-ecdx/specification.html#scenario-3
Elliot Silver (Mar 18 2021 at 17:10):
DocumentReference has support for multiple documents, but that is generally thought of as a JPEG for each page of a multipage document, or different formats of the same document. You may want to also look at DiagnosticReport, which is probably a little richer for your use case, but in FHIR R4 doesn't support "sections". To support structured documents/sections/hierarchy, right now, the main contender is Composition.
Last updated: Apr 12 2022 at 19:14 UTC