Australian Base Implementation Guide (AU Base 1)

This page is part of the Australian Base IG (v1.0.2: AU Base 1 on STU3) based on FHIR R3. This is the current published version in it's permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions

Example: Patient-DateAccuracyIndicatorUAAexample2

Formats: Narrative,XML, JSON, Turtle

Raw xml


<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 how a birth or deceased date with unknown day, accurate month and year would be represented.</p>
            <p>Note that &quot;1978-08-00&quot; 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 &quot;1978-08-21&quot; but not &quot;1978-08-00&quot;.</li>
                <li>A date accuracy indicator of &quot;UAA&quot; indicates that the day is unknown but month and year are accurate.</li>
                <li>When a code value contains &quot;U&quot;, the corresponding date components (individual or combination) for birth or deceased dates must be ignored.</li>
                <li>When a code value contains &quot;A&quot;, 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>