FieldOptionsInput
Options for choice-type fields (select, radio, checkbox).
allow_otherbooleanrequired
Whether to allow a free-text 'other' option.
choices object[]required
List of available choices.
Array [
idstring
Unique identifier for the choice. Optional on create; include to reference an existing choice on update.
labelstringrequired
Display label for the choice.
]
FieldOptionsInput
{
"allow_other": false,
"choices": [
{
"label": "Option A"
}
]
}