Numeric range slider with a min, max, and optional step. Supports continuous (smooth) and discrete (stepped) variants. Renders a labelled track with a draggable thumb.
| Surface | Note |
|---|---|
| meet-stage | Slider renders and is draggable; value capture requires stage-level routing |
| Field | Type | |
|---|---|---|
| label | string. Visible label above the slider. | optional |
| name | string. Field identifier. | required |
| min | number. Minimum value. | required |
| max | number. Maximum value. | required |
| step | number. Increment size. Omit for continuous. | optional |
| default_value | number. Initial thumb position. | optional |
| variant | string. One of: continuous, discrete. Default: continuous. | optional |
| rules | array of strings. | optional |
{
"type": "form_slider",
"name": "Form Slider",
"min": 1,
"max": 5
}
{
"identifier": "urn:air:a2uicatalog.ai:atom:form_slider",
"displayName": "Form Slider",
"type": "application/vnd.a2ui.atom+json",
"url": "https://a2uicatalog.ai/atoms/form_slider",
"capabilities": [
"web",
"meet-stage",
"apps-script-web"
],
"description": "Numeric range slider with a min, max, and optional step. Supports continuous (smooth) and discrete (stepped) variants. Renders a labelled track with a draggable thumb.",
"representativeQueries": [
"show a numeric range slider input",
"numeric range slider with a min, max, and optional step. supports continuous (smooth) and discrete (",
"render a form slider"
]
}
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 →