Docupilot · Schema

VerifyEmailAccountOTP

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
action_name string
email string
otp string
display_name string
View JSON Schema on GitHub

JSON Schema

app-VerifyEmailAccountOTP.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "VerifyEmailAccountOTP",
  "description": "",
  "type": "object",
  "properties": {
    "action_name": {
      "enum": [
        "verify",
        "update"
      ],
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email",
      "nullable": true
    },
    "otp": {
      "type": "string",
      "maxLength": 6
    },
    "display_name": {
      "type": "string"
    }
  },
  "required": [
    "action_name",
    "otp"
  ]
}