Auth0 · Schema

ConnectionPasswordHistoryOptions

Options for password history policy

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
enable boolean
size integer
View JSON Schema on GitHub

JSON Schema

auth0-connectionpasswordhistoryoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionPasswordHistoryOptions",
  "title": "ConnectionPasswordHistoryOptions",
  "type": [
    "object",
    "null"
  ],
  "description": "Options for password history policy",
  "additionalProperties": false,
  "required": [
    "enable"
  ],
  "properties": {
    "enable": {
      "type": "boolean"
    },
    "size": {
      "type": "integer",
      "minimum": 0,
      "maximum": 24
    }
  }
}