List elements render ordered (numbered) or unordered (bullet) lists with support for nested sub-lists.Documentation Index
Fetch the complete documentation index at: https://docs.autype.com/llms.txt
Use this file to discover all available pages before exploring further.
Basic list
Properties
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
type | string | Yes | — | Must be "list" |
id | string | No | — | Unique identifier. Auto-generated if not provided. Max: 100 chars. |
ordered | boolean | No | false | true = numbered list, false = bullet list. |
items | array | Yes | — | Array of list items. Min: 1, max: 50 items. |
spacing | object | No | — | Spacing override with before and after in pt (0–100). |
List items
Each item in theitems array can be either a simple string or an object with nested sub-items.
Simple string items
**bold**, *italic*, {{varName}}, etc.).
Object items with nesting
Use object items to create nested sub-lists:Object item properties
| Property | Type | Required | Description |
|---|---|---|---|
text | string | Yes | Item text content. 1–1000 chars. Supports inline formatting. |
items | array | No | Legacy nested items (inherit parent’s ordered type). Max: 20 items. |
children | object | No | Nested list with its own ordered property (supports mixed ordered/unordered). |
Children object
Thechildren property allows a nested sub-list with a different list type than the parent:
| Property | Type | Required | Description |
|---|---|---|---|
ordered | boolean | Yes | true = numbered, false = bullet. |
items | array | Yes | Array of list items (same format as parent). Max: 20 items. |
Use
children instead of items when you need the nested list to have a different type (e.g., bullet sub-list inside a numbered list). The legacy items format always inherits the parent’s ordered type.