Auth0 · Schema

FormBlockResendButtonConfig

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
active_text string
button_text string
waiting_text string
text_alignment object
flow_id string
max_attempts number
waiting_time number
View JSON Schema on GitHub

JSON Schema

auth0-formblockresendbuttonconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormBlockResendButtonConfig",
  "title": "FormBlockResendButtonConfig",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "active_text",
    "button_text",
    "waiting_text",
    "flow_id"
  ],
  "properties": {
    "active_text": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "button_text": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "waiting_text": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "text_alignment": {
      "$ref": "#/components/schemas/FormBlockResendButtonConfigTextAlignmentEnum"
    },
    "flow_id": {
      "type": "string",
      "maxLength": 30,
      "format": "flow-id"
    },
    "max_attempts": {
      "type": "number",
      "minimum": 1,
      "maximum": 10
    },
    "waiting_time": {
      "type": "number",
      "minimum": 1,
      "maximum": 60
    }
  }
}