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

# The Document Object

> The Zeal object representing a company tax document.

| attribute     | type   | description                                                                                                                                                                                              |
| :------------ | :----- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `companyID`   | string | Zeal Company ID                                                                                                                                                                                          |
| `type`        | string | Type of Document. Holds one of the following values: `W2`, `W2C`, `1099`, `1099MISC`, `940`, `941`, `941-X`, `943`, `943X`, `944`, `944X`, `945`, `945X`, `2678`, `2848`, `state_quarterly_contribution` |
| `description` | string | Description of the Document. The description should describe the purpose of the form, its date component, etc.                                                                                           |
| `id`          | string | The id of the employee (`employeeID`) or id of the contractor (`contractorID`)                                                                                                                           |
| `link`        | string | Link to the document                                                                                                                                                                                     |
| `year`        | string | The year of the document                                                                                                                                                                                 |
| `quarter`     | string | The quarter for which the tax document was filed                                                                                                                                                         |

```json EXAMPLE DOCUMENT OBJECT theme={null}
{
  "companyID": "1b5n28nrideucd24",
  "type": "W2",
  "description": "2023 Wage and Tax Statement (Form W2)",
  "id": "1234567890",
  "link": "https://test-documents.s3.amazonaws.com/1b5n28nrideucd24-2229-W2-1234567890-document",
  "year": "2023",
  "quarter": "Q4"
}
```
