> ## 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.

# Employee Requirements Object

> The Zeal object representing a requirement for an employee, such as a form to be completed.

| attribute               | type   | description                             |
| :---------------------- | :----- | :-------------------------------------- |
| `employeeRequirementID` | string | ID of the employee requirement          |
| `companyID`             | string | ID of company                           |
| `employeeID`            | string | ID of employee                          |
| `date`                  | string | Date when the requirement was created   |
| `formTemplateID`        | string | ID of the form template                 |
| `workLocationID`        | string | ID of the work location                 |
| `jurisdiction`          | string | Jurisdiction of the requirement         |
| `type`                  | string | Type of requirement                     |
| `status`                | string | Status of requirement: `OPEN`, `CLOSED` |

```json theme={null}
{
  "employeeRequirementID": "8bafd033-55c7-4edc-b671-xxxxxxxxxxxx",
  "type": "FORM",
  "status": "OPEN",
  "workLocationID": "635ae06ac6cf7b0f2b1xxxxx",
  "jurisdiction": "KY",
  "formTemplateID": "form-ebc648e7-0b11-424a-b7fb-xxxxxxxxxxxx",
  "employeeID": "657b627deca2a90023bxxxxx",
  "companyID": "24b5b29f07924840b119c34c135xxxxx",
  "date": "2023-12-14T20:52:18.280Z"
}
```
