{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormFieldTextConfig", "title": "FormFieldTextConfig", "type": "object", "allOf": [ { "type": "object", "additionalProperties": true }, { "type": "object", "additionalProperties": true }, { "type": "object", "additionalProperties": true } ], "additionalProperties": false, "properties": { "multiline": { "type": "boolean" }, "default_value": { "type": "string", "minLength": 1 }, "placeholder": { "type": "string", "minLength": 1, "maxLength": 500 }, "min_length": { "type": "integer", "minimum": 1 }, "max_length": { "type": "integer", "minimum": 1 } } }