Developer
News and Updates
Get Support
Sign in
Get Support
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Last updated Sep 1, 2026

ADF node: bulletList

Node

Description

A container for list items that produces a bulleted list.

Example

Java

1
2
3
4
5
ul(
        li("Hello"),
        li("World")
);

ADF

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
  "type": "doc",
  "version": 1,
  "content": [
    {
      "type": "paragraph",
      "content": [
        {
          "type": "text",
          "text": "Hello"
        }
      ]
    },
    {
      "type": "paragraph",
      "content": [
        {
          "type": "text",
          "text": "World"
        }
      ]
    }
  ]
}

Result

  • Hello
  • World

Compatibility

Products

ConfluenceJira

Usage

Marks

❌ N/A

Structure

  • type - bulletList
  • content - array(listItem…) – at least 1
  • attrs?
    • localId? - string1

Footnotes

  1. The localId, when present, will typically be a random UUID. This is not enforced by the schema.

Rate this page: