Patient Cost Transparency Implementation Guide
2.0.0-ballot - STU 2 Ballot United States of America flag

Patient Cost Transparency Implementation Guide, published by HL7 International / Financial Management. This guide is not an authorized publication; it is the continuous build for version 2.0.0-ballot built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/davinci-pct/ and changes regularly. See the Directory of published versions

: patient1001 - XML Representation

Page standards status: Informative

Raw xml | Download



<Patient xmlns="http://hl7.org/fhir">
  <id value="patient1001"/>
  <meta>
    <profile
             value="http://hl7.org/fhir/us/davinci-hrex/StructureDefinition/hrex-patient-demographics"/>
  </meta>
  <text>
    <status value="additional"/>
    <div xmlns="http://www.w3.org/1999/xhtml"><p style="border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;"><b>Eve Betterhalf</b> female, DoB: 1955-07-23 ( <code>http://example.com/identifiers/patient</code>/1001)</p><hr/><table class="grid"><tr><td style="background-color: #f3f5da" title="Known Marital status of Patient">Marital Status:</td><td colspan="3"><span title="Codes: {http://terminology.hl7.org/CodeSystem/v3-MaritalStatus U}">unmarried</span></td></tr><tr><td style="background-color: #f3f5da" title="Ways to contact the Patient">Contact Details:</td><td colspan="3"><ul><li>ph: 781-949-4949(MOBILE)</li><li>222 Burlington Road, Bedford MA 01730</li></ul></td></tr><tr><td style="background-color: #f3f5da" title="Languages spoken">Language:</td><td colspan="3"><span title="Codes: {urn:ietf:bcp:47 en-US}">English (United States)</span> (preferred)</td></tr></table></div>
  </text>
  <identifier>
    <system value="http://example.com/identifiers/patient"/>
    <value value="1001"/>
  </identifier>
  <name>
    <text value="Eve Betterhalf"/>
    <family value="Betterhalf"/>
    <given value="Eve"/>
  </name>
  <telecom>
    <system value="phone"/>
    <value value="781-949-4949"/>
    <use value="mobile"/>
  </telecom>
  <gender value="female"/>
  <birthDate value="1955-07-23"/>
  <address>
    <text value="222 Burlington Road, Bedford MA 01730"/>
  </address>
  <maritalStatus>
    <coding>
      <system value="http://terminology.hl7.org/CodeSystem/v3-MaritalStatus"/>
      <code value="U"/>
      <display value="unmarried"/>
    </coding>
  </maritalStatus>
  <communication>
    <language>
      <coding>
        <system value="urn:ietf:bcp:47"/>
        <code value="en-US"/>
        <display value="English (United States)"/>
      </coding>
    </language>
    <preferred value="true"/>
  </communication>
</Patient>