---
title: "SignatureSettings"
url: "https://devportal.jilson.dev/apis/document-generator-pkce-flow-1/versions/c7bf5731-4982-4310-bcfe-512415c7d543/schemas/SignatureSettings"
---

> Full API specification: https://devportal.jilson.dev/apis/document-generator-pkce-flow-1/versions/c7bf5731-4982-4310-bcfe-512415c7d543.md

# SignatureSettings

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Document Generator API
  version: "1.0"
components:
  schemas:
    Recipient:
      type: object
      properties:
        name:
          type: string
          nullable: true
        email:
          type: string
          nullable: true
        roleId:
          type: string
          nullable: true
      additionalProperties: false
    SignatureSettings:
      type: object
      properties:
        expiresInDays:
          type: integer
          format: int32
          nullable: true
        storageLocation:
          type: string
          nullable: true
        signerMessage:
          type: string
          nullable: true
        passcode:
          type: string
          nullable: true
        recipients:
          type: array
          items:
            $ref: "#/components/schemas/Recipient"
          nullable: true
      additionalProperties: false
```
