FieldOptions object

An object representing the options for fields.

AttributeTypeDescriptionApplies To
choicesArray of StringsAll options that a user may select from a field.DropdownField
RadioField
MultiCheckboxField
allows_other_writeinBooleanWhether or not an Other choice is available that would requires the user to write in any string, in addition to the provided choices.RadioField
// T-shirt size options
{ 
  "choices": ["Small", "Medium", "Large"],
  "allows_other_writein": true
}