---
title: "AddressV3"
url: "https://developers.zinnia.com/apis/new-business-annuity/versions/45a989ab-c3aa-4f85-8f67-f05c41747ed7/schemas/AddressV3"
---

> Full API specification: https://developers.zinnia.com/apis/new-business-annuity/versions/45a989ab-c3aa-4f85-8f67-f05c41747ed7.md

# AddressV3

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia New Business Annuity API
  version: 0.7.0
servers:
  - url: https://qa.api.zinnia.io
    description: QA Environment
  - url: https://dev.api.zinnia.io
    description: DEV Environment
  - url: https://uat.api.zinnia.io
    description: UAT Environment
  - url: https://api.zinnia.io
    description: PROD Environment
components:
  schemas:
    AddressV3:
      type: object
      additionalProperties: false
      required:
        - addressType
        - addressLine1
      properties:
        addressId:
          type: string
          description: Unique identifier for the address record.
          format: uuid
        addressType:
          type: string
          description: Type or classification of the address.
          enum:
            - RESIDENCE
            - BUSINESS
            - POBOX
            - SEASONAL
            - SECONDARY
            - MAILING
            - ANNUALSTATEMENTSMAILINGADDRESS
            - FOREIGNMILITARY
            - POLICYMAILINGADDRESS
        addressLine1:
          type: string
          description: Address Line 1
        addressLine2:
          type: string
          description: Address Line 2
        addressLine3:
          type: string
          description: Address Line 3
        city:
          type: string
          description: City associated with the address.
        state:
          type: string
          description: State or province associated with the address.
        zipCode:
          type: string
          description: Postal ZIP code for the address.
        zipCodeExt:
          type: string
          description: ZIP+4 extension for the address, if applicable.
        country:
          type: string
          description: Country associated with the address.
        foreignAddressInd:
          type: string
          description: Indicator specifying whether the address is a foreign (non-U.S.)
            address.
```
