List Component Blocks

List component blocks display ordered and unordered lists. For an overview of block structure and all available block types, see Component Blocks for Marketing Cloud Next.

lightning/list 

Container for list content. Uses a nested structure: lightning/list contains a lightning/listElement, which contains one or more lightning/listItem blocks, each of which contains a lightning/paragraph.

Example
1{
2  "type": "block",
3  "definition": "lightning/list",
4  "attributes": {
5    "content": {
6      "type": "block",
7      "definition": "lightning/listElement",
8      "attributes": {
9        "listStyle": "unordered"
10      },
11      "children": [
12        {
13          "type": "block",
14          "definition": "lightning/listItem",
15          "children": [
16            {
17              "type": "block",
18              "definition": "lightning/paragraph",
19              "attributes": {
20                "text": "Early notifications for exciting in-store events."
21              }
22            }
23          ]
24        }
25      ]
26    }
27  }
28}

See Also