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 doc node

Node

Description

The doc node is the root container node representing an ADF document.

Example

Java

1
2
3
4
5
doc(p(
        text("Hello "),
        text("world").strong()
));

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
{
  "version": 1,
  "type": "doc",
  "content": [
    {
      "type": "paragraph",
      "content": [
        {
          "type": "text",
          "text": "Hello "
        },
        {
          "type": "text",
          "text": "world",
          "marks": [
            {
              "type": "strong"
            }
          ]
        }
      ]
    }
  ]
}

Result

Hello world

Compatibility

Products

ConfluenceJira

Usage

  • Root node of every valid document

Marks

❌ N/A

Structure

  • type - doc
  • version - 1
  • content - array(DocContent…)

Rate this page: