create_choice_field
Generate configuration for choice fields like radio buttons, checkboxes, dropdowns, and multi-select menus in Kintone forms, defining field type, label, options, and layout.
Instructions
選択肢フィールド(ラジオボタン、チェックボックス、ドロップダウン、複数選択)の設定を生成します。 フィールドコードに使用できる文字: ひらがな、カタカナ、漢字、英数字、記号(__・・$¥) 例: { "field_type": "RADIO_BUTTON", "code": "radio_field", "label": "ラジオボタン", "choices": ["選択肢1", "選択肢2", "選択肢3"], "align": "HORIZONTAL" }
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| field_type | Yes | フィールドタイプ | |
| code | No | フィールドコード(指定しない場合はlabelから自動生成) | |
| label | Yes | フィールドラベル | |
| choices | Yes | 選択肢の配列 | |
| required | No | 必須フィールドかどうか | |
| align | No | ラジオボタン・チェックボックスの配置方向 |