{ "$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" } } }