> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.theary.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Address

> Applicant address with residence date range (`YYYY-MM-DD`).

# Address

Residence address entry used in `applicant.addresses`.

## Fields

| Field            | Required | Type     | Description                                             |                                                                                                                                                 |
| ---------------- | -------- | -------- | ------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| `addressType`    | Yes      | `string` | Address category, such as `home`, `work`, or `mailing`. |                                                                                                                                                 |
| `addressLine1`   | Yes      | `string` | Street line 1.                                          |                                                                                                                                                 |
| `addressLine2`   | No       | `string` | Apartment, suite, unit, or other secondary line.        |                                                                                                                                                 |
| `addressCity`    | Yes      | `string` | City.                                                   |                                                                                                                                                 |
| `addressState`   | Yes      | `string` | Two-letter US state code.                               |                                                                                                                                                 |
| `addressZipCode` | Yes      | `string` | ZIP or postal code. Length `1–10`.                      |                                                                                                                                                 |
| `addressCountry` | No       | `string` | Two-letter country code. Defaults to `US` when omitted. |                                                                                                                                                 |
| `startDate`      | Yes      | `string` | Start of residence in `YYYY-MM-DD` format.              |                                                                                                                                                 |
| `endDate`        | No       | \`string | null\`                                                  | End of residence in `YYYY-MM-DD` format. Use `null` or omit for the current address. Exactly one address in a non-empty list should be current. |

## Example

```json theme={null}
{
  "addressType": "home",
  "addressLine1": "456 Oak Avenue",
  "addressLine2": null,
  "addressCity": "Los Angeles",
  "addressState": "CA",
  "addressZipCode": "90210",
  "addressCountry": "US",
  "startDate": "2021-01-01",
  "endDate": null
}
```

## Related schemas

* [Applicant](/api-reference/schemas/applicant)
