Auth0 · Schema

ConnectionPasswordOptionsDictionary

Dictionary-based password restriction policy to prevent common passwords

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
active boolean Enables dictionary checking to prevent use of common passwords and custom blocked words
custom array Array of custom words to block in passwords. Maximum 200 items, each up to 50 characters
default object
View JSON Schema on GitHub

JSON Schema

auth0-connectionpasswordoptionsdictionary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionPasswordOptionsDictionary",
  "title": "ConnectionPasswordOptionsDictionary",
  "type": "object",
  "description": "Dictionary-based password restriction policy to prevent common passwords",
  "additionalProperties": false,
  "properties": {
    "active": {
      "type": "boolean",
      "description": "Enables dictionary checking to prevent use of common passwords and custom blocked words"
    },
    "custom": {
      "type": "array",
      "description": "Array of custom words to block in passwords. Maximum 200 items, each up to 50 characters",
      "items": {
        "type": "string",
        "maxLength": 50
      }
    },
    "default": {
      "$ref": "#/components/schemas/PasswordDefaultDictionariesEnum"
    }
  }
}