{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormFieldDropdownConfig", "title": "FormFieldDropdownConfig", "type": "object", "additionalProperties": false, "properties": { "multiple": { "type": "boolean" }, "options": { "type": "array", "minItems": 0, "items": { "$ref": "#/components/schemas/FormFieldDropdownConfigOption" } }, "default_value": {}, "placeholder": { "type": "string", "minLength": 1, "maxLength": 500 } } }