---
title: "TaxformResponse"
url: "https://developers.zinnia.com/apis/documents-0-3-0/versions/43d1ee7b-44e7-4303-b0cd-ca813c63b625/schemas/TaxformResponse"
---

> Full API specification: https://developers.zinnia.com/apis/documents-0-3-0/versions/43d1ee7b-44e7-4303-b0cd-ca813c63b625.md

# TaxformResponse

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Enterprise Documents API
  version: 3.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:
    TaxformResponse:
      type: object
      properties:
        policyNumber:
          type: string
          description: policy number of document/tax-form
          example: "633033992"
        name:
          type: string
          description: Name of the form
          example: 1099-R
        formId:
          type: string
          description: Unique id of Form
          example: "105"
        taxYear:
          type: string
          description: Tax year of the form
          example: "2022"
        fchar:
          description: Unique string character associated with the tax-form name
          type: string
          example: R
        planCode:
          type: string
          description: Plan code associated with the document
          example: "633033992"
        documentId:
          type: string
          description: Unique Document Id (ObjectId)
          example: 68a6adf406e31b19bfcea183
        createdDate:
          type: string
          description: Created Date in UTC time zone
          format: yyyy-MM-dd'T'HH:mm:ss.SSS'Z'
          example: 2025-08-13T15:01:17.542Z
        updatedDate:
          type: string
          description: Updated Date in UTC time zone
          format: yyyy-MM-dd'T'HH:mm:ss.SSS'Z'
          example: 2025-08-13T15:01:17.542Z
        status:
          type: string
          description: Status intigating whether tax form is active or inactive
          example: active
```
