Australian Base Implementation Guide (AU Base 1.1.1)

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

Example: Patient-example3

Formats: Narrative,XML, JSON, Turtle

Raw xml


<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>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.com.au"/>
  </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>