{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormFieldPasswordConfig", "title": "FormFieldPasswordConfig", "type": "object", "additionalProperties": false, "properties": { "hash": { "$ref": "#/components/schemas/FormFieldPasswordConfigHashEnum" }, "placeholder": { "type": "string", "maxLength": 500 }, "min_length": { "type": "integer", "minimum": 1 }, "max_length": { "type": "integer", "minimum": 1 }, "complexity": { "type": "boolean" }, "nist": { "type": "boolean" }, "strength_meter": { "type": "boolean" } } }