<?xml version="1.0" encoding="UTF-8"?>
<!-- The same customer as customer.json, written as XML instead, so the two
     can be converted with the same field mappings and compared. -->
<customer>
  <first_name>Ada</first_name>
  <last_name>Lovelace</last_name>
  <signup_date>2026-01-15</signup_date>
  <address>
    <city>London</city>
    <state>England</state>
    <zip>SW1</zip>
    <geo>
      <lat>51.5007</lat>
      <lng>-0.1246</lng>
    </geo>
  </address>
  <orders>
    <order id="A-1001">
      <title>Difference Engine</title>
      <total>9.99</total>
    </order>
    <order id="A-1002">
      <title>Analytical Engine</title>
      <total>24.50</total>
    </order>
  </orders>
</customer>
