Stream: implementers
Topic: FHIR representation of encounter transcript
Jim Steel (Jul 17 2020 at 01:16):
Does anyone have experience of representing the transcript of an encounter as a FHIR resource? E.g. what was said by each party in the encounter. I'm looking at a few options:
- Questionnaire, with single responses to each question. This is difficult to link back to Encounter
- QuestionnaireResponse, perhaps using an extension for the question.
- A pair of QuestionnaireResponse and Questionnaire, making a somewhat arbitrary choice as to who is the questioner and who is the respondent (probably patient as respondent). This feels a bit heavyweight
- Something else, like ClinicalImpression or ??
I'm also wary that down the track I might need to track transcripts involving more than one participant (more than one care provider, or perhaps relatedpersons)
Lloyd McKenzie (Jul 17 2020 at 04:28):
QuestionnaireResponse lets you capture both Question and answer.
Jim Steel (Jul 17 2020 at 06:33):
Ah, so it does. That probably makes it the best candidate, with practitioner statements as questions and patient statements as response. I guess if I need multiparty (>2) conversations, I'll have to use extensions to differentiate which actor is either asking the question or providing the response.
Lloyd McKenzie (Jul 17 2020 at 16:03):
The other possibility is to use DocumentReference and just capture it as a 'note'
Jim Steel (Jul 18 2020 at 08:01):
Yeah, that's a fallback. I'd have to put my own structured representation in there to do analysis on it afterwards (which we do need to do), and doing that completely outside of FHIR makes me feel unclean ;)
Last updated: Apr 12 2022 at 19:14 UTC