Custom Checkbox Group

Renders a group of custom-styled checkboxes allowing multiple selections.

Surfaces
webmeet-stageapps-script-web
Fields
FieldType
group_labelstringrequired
optionslist of objects with label, value, is_checkedrequired
namestringrequired
Example payload
{
  "type": "custom_checkbox_group",
  "group_label": "Group label",
  "options": [
    {
      "label": "Option A",
      "value": "a"
    },
    {
      "label": "Option B",
      "value": "b"
    },
    {
      "label": "Option C",
      "value": "c"
    }
  ],
  "name": "Custom Checkbox Group"
}
ARD catalog entry
{
  "identifier": "urn:air:a2uicatalog.ai:atom:custom_checkbox_group",
  "displayName": "Custom Checkbox Group",
  "type": "application/vnd.a2ui.atom+json",
  "url": "https://a2uicatalog.ai/atoms/custom_checkbox_group",
  "capabilities": [
    "web",
    "meet-stage",
    "apps-script-web"
  ],
  "description": "Renders a group of custom-styled checkboxes allowing multiple selections.",
  "representativeQueries": [
    "show a styled checkbox group input",
    "renders a group of custom-styled checkboxes allowing multiple selections.",
    "render a custom checkbox group"
  ]
}
← 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 →