{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConnectionPasswordDictionaryOptions", "title": "ConnectionPasswordDictionaryOptions", "type": [ "object", "null" ], "description": "Options for password dictionary policy", "additionalProperties": false, "required": [ "enable" ], "properties": { "enable": { "type": "boolean" }, "dictionary": { "type": "array", "description": "Custom Password Dictionary. An array of up to 200 entries.", "items": { "type": "string", "description": "Custom Password Dictionary entry. 50 characters max.", "maxLength": 50 } } } }