AU Base Implementation Guide
4.2.2-ci-build - CI Build
AU Base Implementation Guide, published by HL7 Australia. This guide is not an authorized publication; it is the continuous build for version 4.2.2-ci-build built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/hl7au/au-fhir-base/ and changes regularly. See the Directory of published versions
Page standards status: Informative |
<Patient xmlns="http://hl7.org/fhir">
<id value="DateAccuracyIndicatorUAAexample2"/>
<text>
<status value="additional"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>This example demonstrates birth date and deceased date with unknown day, accurate month and year.</p>
<p>Note that "1978-08-00" is NOT a valid FHIR date.</p>
<p>Details include:</p>
<ul>
<li>A valid FHIR date example for birth date and deceased date is "1978-08-21" but not "1978-08-00".</li>
<li>A date accuracy indicator of "UAA" indicates that the day is unknown but month and year are accurate.</li>
<li>When a code value contains "U", the corresponding date components (individual or combination) for birth or deceased dates must be ignored.</li>
<li>When a code value contains "A", the corresponding date components (individual or combination) for birth or deceased dates must be accurate.</li>
</ul>
</div>
</text>
<birthDate value="1978-08-21">
<extension
url="http://hl7.org.au/fhir/StructureDefinition/date-accuracy-indicator">
<!-- this part of the extension states that date of birth is partially accurate -->
<valueCoding>
<system
value="https://healthterminologies.gov.au/fhir/CodeSystem/date-accuracy-indicator-1"/>
<code value="UAA"/>
<display value="Day is unknown, month and year are accurate"/>
</valueCoding>
</extension>
</birthDate>
<deceasedDateTime value="1978-08-21T13:42:00+10:00">
<extension
url="http://hl7.org.au/fhir/StructureDefinition/date-accuracy-indicator">
<!-- this part of the extension states that deceased date is partially accurate -->
<valueCoding>
<system
value="https://healthterminologies.gov.au/fhir/CodeSystem/date-accuracy-indicator-1"/>
<code value="UAA"/>
<display value="Day is unknown, month and year are accurate"/>
</valueCoding>
</extension>
</deceasedDateTime>
</Patient>