Auth0 · Schema

FlowActionOtpGenerateCodeParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
reference string
length integer
View JSON Schema on GitHub

JSON Schema

auth0-flowactionotpgeneratecodeparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionOtpGenerateCodeParams",
  "title": "FlowActionOtpGenerateCodeParams",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "reference",
    "length"
  ],
  "properties": {
    "reference": {
      "type": "string",
      "maxLength": 250
    },
    "length": {
      "type": "integer",
      "minimum": 1,
      "maximum": 10
    }
  }
}