Auth0 · Schema
ConnectionPasswordOptionsComplexity
Password complexity requirements configuration
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| min_length | integer | Minimum password length required (1-72 characters) |
| character_types | array | Required character types that must be present in passwords. Valid options: uppercase, lowercase, number, special |
| character_type_rule | object | |
| identical_characters | object | |
| sequential_characters | object | |
| max_length_exceeded | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ConnectionPasswordOptionsComplexity",
"title": "ConnectionPasswordOptionsComplexity",
"type": "object",
"description": "Password complexity requirements configuration",
"additionalProperties": false,
"properties": {
"min_length": {
"type": "integer",
"description": "Minimum password length required (1-72 characters)",
"minimum": 1,
"maximum": 72
},
"character_types": {
"type": "array",
"description": "Required character types that must be present in passwords. Valid options: uppercase, lowercase, number, special",
"items": {
"$ref": "#/components/schemas/PasswordCharacterTypeEnum"
}
},
"character_type_rule": {
"$ref": "#/components/schemas/PasswordCharacterTypeRulePolicyEnum"
},
"identical_characters": {
"$ref": "#/components/schemas/PasswordIdenticalCharactersPolicyEnum"
},
"sequential_characters": {
"$ref": "#/components/schemas/PasswordSequentialCharactersPolicyEnum"
},
"max_length_exceeded": {
"$ref": "#/components/schemas/PasswordMaxLengthExceededPolicyEnum"
}
}
}