Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
titleLocation Element
linenumberstrue
 <Location>
    <Address><Address type="residential">
        <AddressLine1>First line of address</AddressLine1>
        <AddressLine2>Optional second line if needed</AddressLine2>
        <City>City</City>
        <Ward>Optional ward/county/voting precinct if being tracked</Ward>
        <State>State/Province/County</State>
        <Postcode>ZIP/PostalCode</Postcode>
        <Country>ISOCode</Country>
    </Address>
    <Coordinates>
        <Latitude>43.000871</Latitude>
        <Longitude>-82.356519</Longitude>
    </Coordinates>
</Location>

The Address element requires a "type" attribute. The type is one of:

  • residential
  • business

Within the address there are several optional components:

...