{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PasswordPolicyPasswordSettingsComplexity", "title": "PasswordPolicyPasswordSettingsComplexity", "type": "object", "properties": { "dictionary": { "$ref": "#/components/schemas/PasswordDictionary" }, "excludeAttributes": { "type": "array", "items": { "type": "string" } }, "excludeUsername": { "type": "boolean", "default": true }, "minLength": { "type": "integer" }, "minLowerCase": { "type": "integer" }, "minNumber": { "type": "integer" }, "minSymbol": { "type": "integer" }, "minUpperCase": { "type": "integer" } }, "x-okta-tags": [ "Policy" ] }