Form Radio Group

Labelled group of radio buttons for single-option selection. Each option has a value, visible label, and optional description.

Surfaces
webgoogle-meet-stage ⚠google-apps-script-webmcp-apps
Degraded on
SurfaceNote
google-meet-stageRadio selection renders correctly; value capture requires stage-level routing
Live preview
Fields
FieldType
labelstring. Group label.optional
namestring. Field identifier.required
options{'type': 'array', 'description': 'List of {value, label, description?} entries.'}required
default_valuestring. Pre-selected option value. `selected_value` is accepted as a synonym — the renderer read only that spelling while this file documented only this one, so the documented prop pre-selected nothing until 2026-08-14.optional
rulesarray of strings. e.g. ['required'].optional
wiredCarries `onChange` in the wired dialect, emitting the CHECKED option's value, and accepts a `value` wire that checks the matching option. The binding DELEGATES over the group rather than reading the first input, so N elements behave as one control. This is the single-select alternative to combobox for the case a dropdown gets wrong: few options, on a phone, where a dropdown costs two taps and a modal to answer a three-way question.required
Example payload
{
  "type": "form_radio_group",
  "name": "Form Radio Group",
  "options": [
    {
      "label": "Option A",
      "value": "a"
    },
    {
      "label": "Option B",
      "value": "b"
    },
    {
      "label": "Option C",
      "value": "c"
    }
  ],
  "wired": "Wired"
}
ARD catalog entry
{
  "identifier": "urn:air:a2uicatalog.ai:atom:form_radio_group",
  "displayName": "Form Radio Group",
  "type": "application/vnd.a2ui.atom+json",
  "url": "https://a2uicatalog.ai/atoms/form_radio_group",
  "capabilities": [
    "web",
    "google-meet-stage",
    "google-apps-script-web",
    "mcp-apps"
  ],
  "description": "Labelled group of radio buttons for single-option selection. Each option has a value, visible label, and optional description.",
  "representativeQueries": [
    "show a radio button group for single-option selection",
    "labelled group of radio buttons for single-option selection. each option has a value, visible label,",
    "render a form radio group"
  ]
}
← Full ARD catalog
Deploy your own Google Apps Script renderer

The renderer is an open-source Google Apps Script web app. 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 a2ui/apps-script-surface/gas-wired-renderer
clasp push && clasp deploy
Full deploy guide →