Auth0 · Schema

FlowActionOtpVerifyCodeParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
reference string
code object
View JSON Schema on GitHub

JSON Schema

auth0-flowactionotpverifycodeparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionOtpVerifyCodeParams",
  "title": "FlowActionOtpVerifyCodeParams",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "reference",
    "code"
  ],
  "properties": {
    "reference": {
      "type": "string",
      "maxLength": 250
    },
    "code": {
      "$ref": "#/components/schemas/FlowActionOtpVerifyCodeParamsCode"
    }
  }
}