Auth0 · Schema

FormBlockJumpButtonConfig

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
text string
next_node object
style object
View JSON Schema on GitHub

JSON Schema

auth0-formblockjumpbuttonconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormBlockJumpButtonConfig",
  "title": "FormBlockJumpButtonConfig",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "text",
    "next_node"
  ],
  "properties": {
    "text": {
      "type": "string",
      "maxLength": 150
    },
    "next_node": {
      "$ref": "#/components/schemas/FormNodePointer"
    },
    "style": {
      "$ref": "#/components/schemas/FormBlockJumpButtonConfigStyle"
    }
  }
}