AU Base Implementation Guide
4.2.1-ci-build - CI Build Australia flag

AU Base Implementation Guide, published by HL7 Australia. This guide is not an authorized publication; it is the continuous build for version 4.2.1-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

: Patient - with birth date and birth time - XML Representation

Page standards status: Informative

Raw xml | Download



<Patient xmlns="http://hl7.org/fhir">
  <id value="example3"/>
  <meta>
    <profile value="http://hl7.org.au/fhir/StructureDefinition/au-patient"/>
  </meta>
  <text>
    <status value="extensions"/>
    <div xmlns="http://www.w3.org/1999/xhtml">
      <p><b>id</b>: example3</p>
      <p><b>name</b>: John Smith </p>
      <p><b>telecom</b>: jsmith@amail.com.au</p>
      <p><b>birthDate</b>: 1956-08-23</p>
      <p><b>birthTime</b>: 14:35:45-05:00</p>
      <p><b>address</b>: 10 Smith Street Neutral Bay NSW 2055 Australia</p>
    </div>
  </text>
  <name>
    <family value="Smith"/>
    <given value="John"/>
  </name>
  <telecom>
    <system value="email"/>
    <value value="jsmith@amail.example.com"/>
  </telecom>
  <birthDate value="1956-08-23">
    <extension
               url="http://hl7.org.au/fhir/StructureDefinition/date-accuracy-indicator">
      <valueCoding>
        <system
                value="https://healthterminologies.gov.au/fhir/CodeSystem/date-accuracy-indicator-1"/>
        <code value="AAA"/>
        <display value="Day, month and year are accurate"/>
      </valueCoding>
    </extension>
    <extension
               url="http://hl7.org/fhir/StructureDefinition/patient-birthTime">
      <valueDateTime value="1956-08-23T14:35:45-05:00"/>
    </extension>
  </birthDate>
  <address>
    <line value="10 Smith Street"/>
    <city value="Neutral Bay"/>
    <state value="NSW"/>
    <postalCode value="2055"/>
    <country value="Australia"/>
  </address>
</Patient>