{ "version": 1, "title": "Tutorial — Choice Fields", "fields": [ { "id": "intro", "type": "note", "label": "Questbee has three choice field types: select_one (pick one), select_multiple (pick many), and select_one_other (pick one, with a free-text 'Other' fallback)." }, { "id": "divider_1", "type": "divider" }, { "id": "transport_mode", "type": "select_one", "label": "Primary transport mode", "hint": "select_one — the respondent picks exactly one option", "required": true, "options": [ {"value": "walking", "label": "Walking"}, {"value": "bicycle", "label": "Bicycle"}, {"value": "motorcycle", "label": "Motorcycle"}, {"value": "car", "label": "Car / Truck"}, {"value": "public", "label": "Public Transport"}, {"value": "boat", "label": "Boat"} ] }, { "id": "divider_2", "type": "divider" }, { "id": "languages", "type": "select_multiple", "label": "Languages spoken at home", "hint": "select_multiple — the respondent can pick any number of options", "options": [ {"value": "spanish", "label": "Spanish"}, {"value": "english", "label": "English"}, {"value": "portuguese", "label": "Portuguese"}, {"value": "french", "label": "French"}, {"value": "indigenous", "label": "Indigenous language"} ] }, { "id": "divider_3", "type": "divider" }, { "id": "water_source", "type": "select_one_other", "label": "Primary water source", "hint": "select_one_other — same as select_one but adds a free-text 'Other' option at the bottom", "options": [ {"value": "piped", "label": "Piped / Tap water"}, {"value": "well", "label": "Well"}, {"value": "river", "label": "River / Stream"}, {"value": "rainwater", "label": "Rainwater collection"}, {"value": "purchased", "label": "Purchased (tanker / bottle)"} ] } ] }