Auth0 · Schema

ConnectionMfa

Multi-factor authentication configuration

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
active boolean Indicates whether MFA is active for this connection
return_enroll_settings boolean Indicates whether to return MFA enrollment settings
View JSON Schema on GitHub

JSON Schema

auth0-connectionmfa-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionMfa",
  "title": "ConnectionMfa",
  "type": "object",
  "description": "Multi-factor authentication configuration",
  "properties": {
    "active": {
      "type": "boolean",
      "description": "Indicates whether MFA is active for this connection"
    },
    "return_enroll_settings": {
      "type": "boolean",
      "description": "Indicates whether to return MFA enrollment settings"
    }
  }
}