---
title: "EmploymentPatch"
url: "https://developers.zinnia.com/apis/new-business/versions/b8532e16-b28e-4393-9305-def50b91e40e/schemas/EmploymentPatch"
---

> Full API specification: https://developers.zinnia.com/apis/new-business/versions/b8532e16-b28e-4393-9305-def50b91e40e.md

# EmploymentPatch

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia New Business API.
  version: 0.9.8
servers:
  - url: https://qa.api.zinnia.io
    description: QA Environment
  - url: https://dev.api.zinnia.io
    description: DEV Environment
  - url: https://uat.api.zinnia.io
    description: UAT Environment
  - url: https://api.zinnia.io
    description: PROD Environment
components:
  schemas:
    EmploymentPatch:
      type: object
      properties:
        employed:
          type: boolean
          default: true
        status:
          type: string
          enum:
            - FULL_TIME
            - PART_TIME
            - SELF_EMPLOYED
            - UNEMPLOYED
            - RETIRED
            - DISABLED
            - LAID_OFF
            - LEAVE_DUE_TO_CHILDBIRTH
            - LEAVE_DUE_TO_MILITARY_SERVICE
            - LEAVE_OF_ABSENCE
            - RESIGNED
            - SHORT_TERM_DISABILITY
            - TERMINATED
            - UNKNOWN
            - OTHER
          example: FULL_TIME
        occupation:
          type: string
          example: Engineer
        householdIncome:
          type: number
          format: double
          minimum: 0
          example: 250000
        netAnnualIncome:
          type: number
          format: double
          minimum: 0
          example: 250000
```
