Auth0 · Schema

ConnectionPasswordDictionaryOptions

Options for password dictionary policy

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
enable boolean
dictionary array Custom Password Dictionary. An array of up to 200 entries.
View JSON Schema on GitHub

JSON Schema

auth0-connectionpassworddictionaryoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionPasswordDictionaryOptions",
  "title": "ConnectionPasswordDictionaryOptions",
  "type": [
    "object",
    "null"
  ],
  "description": "Options for password dictionary policy",
  "additionalProperties": false,
  "required": [
    "enable"
  ],
  "properties": {
    "enable": {
      "type": "boolean"
    },
    "dictionary": {
      "type": "array",
      "description": "Custom Password Dictionary. An array of up to 200 entries.",
      "items": {
        "type": "string",
        "description": "Custom Password Dictionary entry. 50 characters max.",
        "maxLength": 50
      }
    }
  }
}