Incomplete tasks displayed as an interactive checkbox list. On GAS uses the Tasks API for live data; on other surfaces renders from an items[] array or the Google Tasks REST API.
| Field | Type | |
|---|---|---|
| title | string. Card heading. Default is "Today's Tasks". | optional |
| max_results | integer. Maximum tasks to show. Default 10. | optional |
| list_name | string (optional, gas-native). Name of the task list. | optional |
| items | array (static connector). Array of {title, due, completed} for non-GAS surfaces. | required |
| auth_token | string (api connector). OAuth2 bearer token for REST API. | required |
{
"type": "tasks_today",
"items": [
{
"label": "Item 1"
},
{
"label": "Item 2"
}
],
"auth_token": "your-api-token"
}
{
"identifier": "urn:air:a2uicatalog.ai:atom:tasks_today",
"displayName": "Tasks Today",
"type": "application/vnd.a2ui.atom+json",
"url": "https://a2uicatalog.ai/atoms/tasks_today",
"capabilities": [
"apps-script-web",
"meet-stage"
],
"description": "Incomplete tasks displayed as an interactive checkbox list. On GAS uses the Tasks API for live data; on other surfaces renders from an items[] array or the Google Tasks REST API.",
"representativeQueries": [
"show a task checklist \u2014 live via Tasks API on GAS, items[] array on other surfaces",
"incomplete tasks displayed as an interactive checkbox list. on gas uses the tasks api for live data;",
"render a tasks today"
]
}
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 →