Labelled dropdown select with a list of value/label options. Supports required validation and an optional placeholder prompt.
| Surface | Note |
|---|---|
| meet-stage | Renders as a styled select; data capture requires stage-level routing |
| Field | Type | |
|---|---|---|
| label | string. Visible label. | required |
| name | string. Field identifier. | required |
| placeholder | string. e.g. 'Select an option…' | optional |
| options | {'type': 'array', 'description': 'List of {value, label} pairs.'} | required |
| rules | array of strings. e.g. ['required']. | optional |
{
"type": "form_select",
"label": "Form Select",
"name": "Form Select",
"options": [
{
"label": "Option A",
"value": "a"
},
{
"label": "Option B",
"value": "b"
},
{
"label": "Option C",
"value": "c"
}
]
}
{
"identifier": "urn:air:a2uicatalog.ai:atom:form_select",
"displayName": "Form Select",
"type": "application/vnd.a2ui.atom+json",
"url": "https://a2uicatalog.ai/atoms/form_select",
"capabilities": [
"web",
"meet-stage",
"apps-script-web"
],
"description": "Labelled dropdown select with a list of value/label options. Supports required validation and an optional placeholder prompt.",
"representativeQueries": [
"show a labelled dropdown select with options",
"labelled dropdown select with a list of value/label options. supports required validation and an opt",
"render a form select"
]
}
The renderer is open source. Deploy your own instance in 4 commands — you own the URL, no dependency on the demo endpoint.
git clone https://github.com/a2uicatalog/a2ui
cd apps-script-surface/gas-schema-renderer
clasp push && clasp deploy
Full deploy guide →