Auth0 · Schema

FlowActionEmailVerifyEmailParamsRules

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
require_mx_record boolean
block_aliases boolean
block_free_emails boolean
block_disposable_emails boolean
blocklist array
allowlist array
View JSON Schema on GitHub

JSON Schema

auth0-flowactionemailverifyemailparamsrules-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionEmailVerifyEmailParamsRules",
  "title": "FlowActionEmailVerifyEmailParamsRules",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "require_mx_record": {
      "type": "boolean"
    },
    "block_aliases": {
      "type": "boolean"
    },
    "block_free_emails": {
      "type": "boolean"
    },
    "block_disposable_emails": {
      "type": "boolean"
    },
    "blocklist": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "allowlist": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}