AU Base Implementation Guide
4.2.2-ballot - Ballot
This page is part of the Australian Base IG (v4.2.2-ballot: AU Base R4.2 Ballot 5) based on FHIR (HL7® FHIR® Standard) R4. The current version which supersedes this version is 4.1.0. For a full list of available versions, see the Directory of published versions
Page standards status: Informative |
<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>