FHIR Chat · Ordering Provider (Diagnostic Report) · implementers

Stream: implementers

Topic: Ordering Provider (Diagnostic Report)


view this post on Zulip PhillipFry (Jan 05 2021 at 09:14):

Hi all,

Happy New Year!!

I am trying to find the best element in the resource DiagnosticReport where to fill the Ordering Provider (the physician who requested the exam).
When I read the description for the ResultsInterpreter element it says "The practitioner or organization that is responsible for the report's conclusions and interpretations.", I take it as the physician who ordered the test will be the one who will take conclusions of the report and pass it on to the patient.
Am I right to think like that? And to use this element as the OrderingProvider

What makes me doubt also is that in ServiceRequest resource, we have the requester element, that specifically says "The individual who initiated the request and has responsibility for its activation.", here it is clear that we must use the OrderingProvider.

Thanks for the attention

view this post on Zulip René Spronk (Jan 05 2021 at 11:07):

Exactly. The ordering provider is available via DiagnosticReport.basedOn(ServiceRequest).requester , so you'll need both resource types. DiagnosticReports are not about details of the request, those are on ServiceRequest.

view this post on Zulip PhillipFry (Jan 05 2021 at 11:38):

So, i will need to exchange the information in a Bundle that contains both the ServiceRequest and DiagnosticReport?

view this post on Zulip René Spronk (Jan 05 2021 at 12:27):

Whether or not one communicates these in one single Bundle depends on the context. What's your use case?

view this post on Zulip Elliot Silver (Jan 05 2021 at 17:06):

@PhillipFry, to clarify, yes, the ordering provider (e.g., referring physician) is recorded in ServiceRequest.requester, which can be referenced from the DiagnosticReport via basedOn.

The resultsInterpreter is the person who interpreted the diagnostic test. For example, this is a the radiologist "reading" CT images, and who is legally responsible for their interpretation.

Neither of these are identified as the person responsible for delivering the results to the patient.

view this post on Zulip PhillipFry (Jan 05 2021 at 17:09):

Thank you @René Spronk and @Elliot Silver for the explanation.
It was very useful!


Last updated: Apr 12 2022 at 19:14 UTC