Interactive poll with a question and vote-count bar for each option.
| Surface | Note |
|---|---|
| meet-stage | Voting interaction requires JS not available. |
| Renders as plain list of options. |
| Field | Type | |
|---|---|---|
| question | string. Poll question. | required |
| options | array of {text, votes}. Poll choices. | required |
{
"type": "poll_block",
"question": "Which option do you prefer?",
"options": [
{
"label": "Option A",
"value": "a"
},
{
"label": "Option B",
"value": "b"
},
{
"label": "Option C",
"value": "c"
}
]
}
{
"identifier": "urn:air:a2uicatalog.ai:atom:poll_block",
"displayName": "Poll Block",
"type": "application/vnd.a2ui.atom+json",
"url": "https://a2uicatalog.ai/atoms/poll_block",
"capabilities": [
"web",
"apps-script-web"
],
"description": "Interactive poll with a question and vote-count bar for each option.",
"representativeQueries": [
"show a poll with question options and vote count bars",
"interactive poll with a question and vote-count bar for each option.",
"render a poll block"
]
}
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 →