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: taskList

Node

Description

Task lists provide lists that look much like a bulletList, but there are differences in their visual representation. They can be nested (although at least one taskItem has to be provided before any nested task lists). The task items also require identifier strings that can be used to associate them with information in other systems.

Example

Java

1
2
3
4
5
6
7
8
9
10
11
12
taskList(
        "test-list-id",
        taskItem()
                .todo()
                .localId("test-id1")
                .content("Do this!"),
        taskItem()
                .localId("test-id2")
                .state(DONE)
                .content("This is completed")
);

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
26
27
28
29
30
31
32
33
34
35
{
  "type": "taskList",
  "attrs": {
    "localId": "test-list-id"
  },
  "content": [
    {
      "type": "taskItem",
      "attrs": {
        "localId": "test-id1",
        "state": "TODO"
      },
      "content": [
        {
          "type": "text",
          "text": "Do this!"
        }
      ]
    },
    {
      "type": "taskItem",
      "attrs": {
        "localId": "test-id2",
        "state": "DONE"
      },
      "content": [
        {
          "type": "text",
          "text": "This is completed"
        }
      ]
    }
  ]
}

Result

  • Do this!
  • This is completed

Compatibility

Products

ConfluenceJira

Usage

Marks

❌ N/A

Structure

Rate this page: