This page is part of the Australian Base IG (v1.1.1: AU Base 1.1 on STU3 Draft) based on FHIR R3. The current version which supercedes this version is 1.0.2. For a full list of available versions, see the Directory of published versions
Formats: Narrative,XML, JSON, Turtle
Raw xml
<Patient xmlns="http://hl7.org/fhir"> <id value="DateAccuracyIndicatorUUUexample4"/> <text> <status value="additional"/> <div xmlns="http://www.w3.org/1999/xhtml"> <p>This example demonstrates how a birth or deceased date with an unknown day, month and year would be represented.</p> <p>Note that "0000-00-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 "2004-12-08” but not "0000-00-00".</li> <li>A date accuracy indicator of "UUU" indicates that all date components are unknown.</li> <li>When a code value contains "U", the corresponding date components (individual or combination) for birth or deceased dates must be ignored.</li> </ul> </div> </text> <birthDate value="2004-12-08"> <extension url="http://hl7.org.au/fhir/StructureDefinition/date-accuracy-indicator"> <!-- this part of the extension states that date of birth is unknown --> <valueCoding> <system value="https://healthterminologies.gov.au/fhir/CodeSystem/date-accuracy-indicator-1"/> <code value="UUU"/> <display value="Day, month and year are unknown"/> </valueCoding> </extension> </birthDate> <deceasedDateTime value="2004-12-08T13: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 unknown --> <valueCoding> <system value="https://healthterminologies.gov.au/fhir/CodeSystem/date-accuracy-indicator-1"/> <code value="UUU"/> <display value="Day, month and year are unknown"/> </valueCoding> </extension> </deceasedDateTime> </Patient>