---
title: "IriPartyAddress"
url: "https://developers.zinnia.com/apis/policy-service-0-1-0/versions/8306e031-b41c-452a-a7ed-d73d65602086/schemas/IriPartyAddress"
---

> Full API specification: https://developers.zinnia.com/apis/policy-service-0-1-0/versions/8306e031-b41c-452a-a7ed-d73d65602086.md

# IriPartyAddress

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://uat.api.zinnia.io
components:
  schemas:
    IriAddressType:
      type: string
      description: Type of address.
      enum:
        - RESIDENCE
        - BUSINESS
        - POBOXSEASONAL
        - OTHER
    IriPartyAddress:
      type: object
      properties:
        addressId:
          type: string
          description: Address identifier.
          example: ADDR001
          maxLength: 100
        addressType:
          $ref: "#/components/schemas/IriAddressType"
        addressLine1:
          type: string
          description: First line of the address.
          example: 123 Elm St
          maxLength: 100
        addressLine2:
          type: string
          description: Second line of the address.
          example: Unit 5
          maxLength: 100
        addressLine3:
          type: string
          description: Third line of the address.
          example: Building B
          maxLength: 100
        addressLine4:
          type: string
          description: Fourth line of the address.
          example: Floor 3
          maxLength: 100
        addressLine5:
          type: string
          description: Fifth line of the address.
          example: "Attn: Accounts"
          maxLength: 100
        city:
          type: string
          description: City name.
          example: Charlotte
          maxLength: 100
        state:
          type: string
          description: State code.
          example: NC
          pattern: ^[A-Z]{2}$
        zipCode:
          type: string
          description: Zip code.
          example: "28202"
          pattern: ^[0-9A-Za-z -]{3,10}$
        zipCodeExtension:
          type: string
          description: Zip code extension.
          example: "1234"
          pattern: ^[0-9A-Za-z]{1,4}$
        country:
          type: string
          description: Country code.
          example: US
          pattern: ^[A-Z]{2}$
      required:
        - addressType
        - addressLine1
        - city
        - state
        - zipCode
```
