Auth0 · Schema

FormFlowConfig

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
flow_id string
next_node object
View JSON Schema on GitHub

JSON Schema

auth0-formflowconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormFlowConfig",
  "title": "FormFlowConfig",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "flow_id"
  ],
  "properties": {
    "flow_id": {
      "type": "string",
      "maxLength": 30,
      "format": "flow-id"
    },
    "next_node": {
      "$ref": "#/components/schemas/FormNodePointer"
    }
  }
}