{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormFieldChoiceConfigOption", "title": "FormFieldChoiceConfigOption", "type": "object", "additionalProperties": false, "required": [ "value", "label" ], "properties": { "value": { "type": "string", "minLength": 1 }, "label": { "type": "string", "minLength": 1 } } }