CDA Examples
1.0.0 - active United States of America flag

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

Example: Patient With Prior Addresses

Approval Status: Approved
Task Force Approval: 2018-03-06
SDWG Approval: 2018-10-01

This example illustrates how to structure multiple past addresses for a patient


  <!--  recordTarget example from C-CDA-Examples/Header/Patient Demographic Information
     added multiple home addresses  -->
<recordTarget xmlns="urn:hl7-org:v3">
  <patientRole>
    <id root="2.16.840.1.113883.3.6132" extension="345678912-0154"/>
    <!--  HP is "primary home" from valueSet 2.16.840.1.113883.1.11.10637
         and in this instance represents patient's current address  -->
    <!--  It is permissible to omit a low element to indicate current residence  -->
    <!--  It is permissible to omit a high element or use nullFlavor='NA'  -->
    <addr use="HP">
      <streetAddressLine>152 Creek Lane</streetAddressLine>
      <city>Shelburne</city>
      <state>VT</state>
      <postalCode>05455</postalCode>
      <country>US</country>
      <useablePeriod xsi:type="IVL_TS">
        <low value="20110822"/>
      </useablePeriod>
    </addr>
    <addr use="H">
      <streetAddressLine>191 S OAK AVE</streetAddressLine>
      <city>BURLINGTON</city>
      <state>VT</state>
      <postalCode>05422</postalCode>
      <country>US</country>
      <useablePeriod xsi:type="IVL_TS">
        <low value="20110131"/>
        <high value="20110821"/>
      </useablePeriod>
    </addr>
    <addr use="H">
      <streetAddressLine>1141 W MAIN AVE</streetAddressLine>
      <city>CHICAGO</city>
      <state>IL</state>
      <postalCode>60613</postalCode>
      <country>US</country>
      <useablePeriod xsi:type="IVL_TS">
        <low value="20070513"/>
        <high value="20110130"/>
      </useablePeriod>
    </addr>
    <telecom value="tel:+1(565)867-5309" use="MC"/>
    <telecom value="mailto:adam@diameterhealth.com" use="WP"/>
    <patient>
      <name use="L">
        <given>Adam</given>
        <family>Everyman</family>
      </name>
      <administrativeGenderCode displayName="Male"
                                codeSystemName="AdministrativeGender" codeSystem="2.16.840.1.113883.5.1" code="M"/>
      <birthTime value="19621022"/>
      <maritalStatusCode displayName="Married"
                         codeSystemName="MaritalStatus" codeSystem="2.16.840.1.113883.5.2" code="M"/>
      <religiousAffiliationCode
                                displayName="Christian (non-Catholic, non-specific)" codeSystemName="HL7 Religious Affiliation"
                                codeSystem="2.16.840.1.113883.5.1076" code="1013"/>
      <raceCode displayName="White"
                codeSystemName="OMB Standards for Race and Ethnicity" codeSystem="2.16.840.1.113883.6.238" code="2106-3"/>
      <ethnicGroupCode displayName="Not Hispanic or Latino"
                       codeSystemName="OMB Standards for Race and Ethnicity" codeSystem="2.16.840.1.113883.6.238" code="2186-5"/>
      <languageCommunication>
        <languageCode code="en"/>
        <modeCode displayName="Expressed spoken"
                  codeSystemName="LanguageAbilityMode" codeSystem="2.16.840.1.113883.5.60" code="ESP"/>
        <proficiencyLevelCode displayName="Excellent"
                              codeSystemName="LanguageAbilityProficiency" codeSystem="2.16.840.1.113883.5.61" code="E"/>
        <preferenceInd value="true"/>
      </languageCommunication>
      <languageCommunication>
        <languageCode code="it"/>
        <modeCode displayName="Expressed spoken"
                  codeSystemName="LanguageAbilityMode" codeSystem="2.16.840.1.113883.5.60" code="ESP"/>
        <proficiencyLevelCode displayName="Good"
                              codeSystemName="LanguageAbilityProficiency" codeSystem="2.16.840.1.113883.5.61" code="G"/>
        <preferenceInd value="false"/>
      </languageCommunication>
    </patient>
  </patientRole>
</recordTarget>