Form Select

Labelled dropdown select with a list of value/label options. Supports required validation and an optional placeholder prompt.

Surfaces
webmeet-stage ⚠apps-script-web
Degraded on
SurfaceNote
meet-stageRenders as a styled select; data capture requires stage-level routing
Fields
FieldType
labelstring. Visible label.required
namestring. Field identifier.required
placeholderstring. e.g. 'Select an option…'optional
options{'type': 'array', 'description': 'List of {value, label} pairs.'}required
rulesarray of strings. e.g. ['required'].optional
Example payload
{
  "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"
    }
  ]
}
ARD catalog entry
{
  "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"
  ]
}
← Full ARD catalog Try it live →
Deploy your own renderer

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 →