Auth0 · Schema

FormEndingNodeRedirection

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
delay integer
target string
View JSON Schema on GitHub

JSON Schema

auth0-formendingnoderedirection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormEndingNodeRedirection",
  "title": "FormEndingNodeRedirection",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "target"
  ],
  "properties": {
    "delay": {
      "type": "integer",
      "minimum": 0,
      "maximum": 10
    },
    "target": {
      "type": "string",
      "minLength": 1,
      "maxLength": 1024
    }
  }
}