{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConnectionPasswordOptionsDictionary", "title": "ConnectionPasswordOptionsDictionary", "type": "object", "description": "Dictionary-based password restriction policy to prevent common passwords", "additionalProperties": false, "properties": { "active": { "type": "boolean", "description": "Enables dictionary checking to prevent use of common passwords and custom blocked words" }, "custom": { "type": "array", "description": "Array of custom words to block in passwords. Maximum 200 items, each up to 50 characters", "items": { "type": "string", "maxLength": 50 } }, "default": { "$ref": "#/components/schemas/PasswordDefaultDictionariesEnum" } } }