FHIR Chat · Issued Data Absent Reason · hapi

Stream: hapi

Topic: Issued Data Absent Reason


view this post on Zulip Justin Miller (Jun 07 2021 at 16:02):

Hello, we are trying to implement a data absent reason for US Core DiagnosticReport Lab issued date . Is there a way to add a data absent reason for the Instant type or and date types for that matter?

view this post on Zulip Ian Bacher (Jun 07 2021 at 17:33):

Something like this:

InstantType it = new InstantType();
it.addExtension("http://hl7.org/fhir/StructureDefinition/data-absent-reason", new CodeType("unknown"));
diagnosticReport.setIssuedElement(it);

The same pattern should work for adding extensions to any FHIR primitive types.

view this post on Zulip Rey Limosenero (Jun 08 2021 at 14:20):

Thank you so much, we will try this out


Last updated: Apr 12 2022 at 19:14 UTC