Auth0 · Schema

ConnectionPasswordOptionsHistory

Password history policy configuration to prevent password reuse

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
active boolean Enables password history checking to prevent users from reusing recent passwords
size integer Number of previous passwords to remember and prevent reuse (1-24)
View JSON Schema on GitHub

JSON Schema

auth0-connectionpasswordoptionshistory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionPasswordOptionsHistory",
  "title": "ConnectionPasswordOptionsHistory",
  "type": "object",
  "description": "Password history policy configuration to prevent password reuse",
  "additionalProperties": false,
  "properties": {
    "active": {
      "type": "boolean",
      "description": "Enables password history checking to prevent users from reusing recent passwords"
    },
    "size": {
      "type": "integer",
      "description": "Number of previous passwords to remember and prevent reuse (1-24)",
      "minimum": 1,
      "maximum": 24
    }
  }
}