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

Node

Description

The status node is a mutable inline node that represents the state of work.

Example

Java

1
2
3
4
5
6
7
doc(p(
        status()
                .yellow()
                .text("IN PROGRESS"),
        text("Learn more about ADF")
));

ADF

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "version": 1,
  "type": "doc",
  "content": [
    {
      "type": "paragraph",
      "content": [
        {
          "type": "status",
          "attrs": {
              "color": "yellow",
              "text": "IN PROGRESS"
          }
        },
        {
          "type": "text",
          "text": "Learn more about ADF"
        }
      ]
    }
  ]
}

Compatibility

Products

ConfluenceJira

Nodes/Usage

Marks

Structure

  • type - status
  • attrs
    • color - neutral | purple | blue | red | yellow | green
    • localId? - string - UUID1
    • style? - string
    • text - string – not empty

  1. Documented, but not enforced by the schema↩︎

Rate this page: