{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormFieldChoiceConfig", "title": "FormFieldChoiceConfig", "type": "object", "additionalProperties": false, "properties": { "multiple": { "type": "boolean" }, "options": { "type": "array", "minItems": 0, "items": { "$ref": "#/components/schemas/FormFieldChoiceConfigOption" } }, "allow_other": { "$ref": "#/components/schemas/FormFieldChoiceConfigAllowOther" }, "default_value": {} } }