{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConnectionPasswordOptionsHistory", "title": "ConnectionPasswordOptionsHistory", "type": "object", "description": "Password history policy configuration to prevent password reuse", "additionalProperties": false, "properties": { "active": { "type": "boolean", "description": "Enables password history checking to prevent users from reusing recent passwords" }, "size": { "type": "integer", "description": "Number of previous passwords to remember and prevent reuse (1-24)", "minimum": 1, "maximum": 24 } } }