CDA Examples, published by Health Level Seven. This guide is not an authorized publication; it is the continuous build for version 1.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/CDA-Examples/ and changes regularly. See the Directory of published versions
Best practices for sending one or more patient aliases
This file includes examples of the following templates:
<recordTarget xmlns="urn:hl7-org:v3">
<!-- Best practices for sending one or more patient aliases -->
<!-- Note: This snippet omits other data elements required to meet C-CDA R2.1 requirements (telecom, address, etc.) -->
<patientRole>
<id nullFlavor="NI"/>
<patient>
<!-- SHALL contain at least one [1..*] US Realm Patient Name (CONF:1198-5284) -->
<name use="L">
<given>Deirdre</given>
<family>Jones</family>
</name>
<!-- Recommended way to send patient aliases; note @use='P' (pseudonym) and given/@qualifier='CL' (callme) -->
<name use="P">
<given qualifier="CL">Dee</given>
<family>Jones</family>
</name>
</patient>
</patientRole>
</recordTarget>