Personal Health Records, published by HL7 International / Patient Empowerment. This guide is not an authorized publication; it is the continuous build for version 1.0.0-ballot2 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/personal-health-record-format-ig/ and changes regularly. See the Directory of published versions
Page standards status: Informative |
<Patient xmlns="http://hl7.org/fhir">
<id value="jane-doe"/>
<meta>
<profile
value="http://hl7.org/fhir/uv/phr/StructureDefinition/PhrPatient"/>
</meta>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml"><p>Jane Doe Example</p></div>
</text>
<identifier>
<system value="http://hospital.example.org/patient"/>
<value value="12345"/>
</identifier>
<active value="true"/>
<name>
<use value="official"/>
<family value="Doe"/>
<given value="Jane"/>
</name>
<telecom>
<system value="phone"/>
<value value="555-123-4567"/>
<use value="mobile"/>
</telecom>
<gender value="female"/>
<birthDate value="1985-05-15"/>
<address>
<line value="123 Main St"/>
<city value="Springfield"/>
<state value="IL"/>
<postalCode value="62704"/>
<country value="USA"/>
</address>
</Patient>