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

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

# FormSignature

## 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:
    Sign:
      type: object
      properties:
        isSigned:
          type: boolean
          example: true
        signDate:
          type: object
          properties:
            text:
              type: string
              example: 2023-05-25
        signExtension:
          type: object
        signName:
          type: string
          example: ""
        signOtherTitle:
          type: string
          example: ""
        signTitle:
          type: object
          properties:
            text:
              type: string
              example: ""
        signTitles:
          type: array
          items:
            type: object
            properties:
              text:
                type: string
                example: ""
        signType:
          type: object
          properties:
            text:
              type: string
              example: OWNER
              enum:
                - OWNER
                - JOINT_OWNER
                - SPOUSE,NOTARY
        spousalConsent:
          type: object
          properties:
            text:
              type: string
              example: ""
    FormSignature:
      type: object
      properties:
        isSpousalConsentRequired:
          type: boolean
          example: true
        signatures:
          type: array
          items:
            $ref: "#/components/schemas/Sign"
```
