---
title: "FormIrsData"
url: "https://developers.zinnia.com/apis/case-management-1-0-0/versions/0091226b-6452-4e75-93ce-4bbfe022aad5/schemas/FormIrsData"
---

> Full API specification: https://developers.zinnia.com/apis/case-management-1-0-0/versions/0091226b-6452-4e75-93ce-4bbfe022aad5.md

# FormIrsData

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Case Management API
  version: 1.0.0
servers:
  - url: https://dev.api.zinnia.io/
    description: Dev Environment
  - url: https://qa.api.zinnia.io/
    description: QA Environment
  - url: https://uat.api.zinnia.io/
    description: UAT Environment
  - url: https://api.zinnia.io/
    description: PROD Environment
components:
  schemas:
    Party:
      type: object
      properties:
        partyRoleType:
          type: string
          example: OWNER
          enum:
            - OWNER
            - ANNUITANT
            - ROLLOVER_PAYEE
            - PAYEE
            - JOINT_OWNER
        firstName:
          type: string
          example: JAMES
        middleName:
          type: string
          example: C
        lastName:
          type: string
          example: FORD
        fullName:
          type: string
          example: JAMES C FORD
        suffix:
          type: string
          example: "1"
        dob:
          type: string
          example: ""
        taxId:
          type: string
          example: "572621420"
        email:
          type: string
          example: ""
        employer:
          type: string
          example: ""
        maritalStatus:
          type: object
          properties:
            text:
              type: string
              example: Single
              enum:
                - Single
                - Married
                - Widowed
        addresses:
          type: array
          items:
            $ref: "#/components/schemas/Address"
        phones:
          type: array
          items:
            $ref: "#/components/schemas/Phone"
    TaxWithholding:
      type: object
      properties:
        place:
          type: object
          properties:
            text:
              type: string
              example: Federal
        type:
          type: object
          properties:
            text:
              type: string
              example: No Tax Withholding
        amount:
          type: object
          properties:
            text:
              type: string
              example: "0"
            amountType:
              type: string
              example: DOLLAR
              enum:
                - DOLLAR
                - PERCENT
        filingStatus:
          type: object
          properties:
            text:
              type: string
              example: ""
        exemption:
          type: object
          properties:
            text:
              type: string
              example: ""
    Address:
      type: object
      properties:
        addressLine1:
          type: string
          example: 560 calle de la sierra
        addressLine2:
          type: string
          example: ""
        addressLine3:
          type: string
          example: ""
        addressLine4:
          type: string
          example: ""
        addressType:
          type: string
          example: Default
          enum:
            - Default
            - Mailing
            - SADD
            - HADD
            - BADD
        city:
          type: string
          example: el cajon
        country:
          type: string
          example: ""
        state:
          type: string
          example: CA
        zip:
          type: string
          example: 92019-1241
        zipPlusFour:
          type: string
          example: ""
    Phone:
      type: object
      properties:
        phoneCountry:
          type: string
          example: US
        phoneNumber:
          type: string
          example: "6192001466"
        phoneTypeDesc:
          type: string
          example: Default
        phoneType:
          properties:
            text:
              type: string
              example: Owner_Phone_Day
              enum:
                - Owner_Phone_Day
                - Owner_Phone_Home
    FormIrsData:
      type: object
      properties:
        irsApplicable:
          type: boolean
          example: true
        irsSpecified:
          type: boolean
          example: true
        formParty:
          type: object
          oneOf:
            - $ref: "#/components/schemas/Party"
        irsTaxWithholding:
          type: array
          items:
            $ref: "#/components/schemas/TaxWithholding"
        irsSignature:
          type: boolean
          example: true
```
