[
  {
    "type": "paragraph",
    "content": [
      {
        "type": "text",
        "text": "User text goes here"
      }
    ]
  },
  {
    "type": "paragraph",
    "content": [
      {
        "type": "text",
        "marks": [{ "type": "strong" }],
        "text": "bold"
      }
    ]
  },
  {
    "type": "paragraph",
    "content": [
      {
        "type": "text",
        "marks": [{ "type": "em" }],
        "text": "underline"
      }
    ]
  },
  {
    "type": "paragraph",
    "content": [
      {
        "type": "text",
        "text": "link",
        "marks": [
          {
            "type": "link",
            "attrs": {
              "href": "https://cultureamp.design",
              "_metadata": null,
              "target": "_blank",
              "rel": "noreferrer"
            }
          }
        ]
      }
    ]
  },
  {
    "type": "bulletList",
    "content": [
      {
        "type": "listItem",
        "content": [
          {
            "type": "paragraph",
            "content": [{ "type": "text", "text": "Bullet list" }]
          },
          {
            "type": "bulletList",
            "content": [
              {
                "type": "listItem",
                "content": [
                  {
                    "type": "paragraph",
                    "content": [{ "type": "text", "text": "Sub list item" }]
                  },
                  {
                    "type": "bulletList",
                    "content": [
                      {
                        "type": "listItem",
                        "content": [
                          {
                            "type": "paragraph",
                            "content": [{ "type": "text", "text": "Sub-sub item" }]
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            ]
          }
        ]
      },
      {
        "type": "listItem",
        "content": [
          {
            "type": "paragraph",
            "content": [{ "type": "text", "text": "List item" }]
          }
        ]
      }
    ]
  },
  {
    "type": "orderedList",
    "attrs": { "order": 1 },
    "content": [
      {
        "type": "listItem",
        "content": [
          {
            "type": "paragraph",
            "content": [{ "type": "text", "text": "Numbered list" }]
          },
          {
            "type": "orderedList",
            "attrs": { "order": 1 },
            "content": [
              {
                "type": "listItem",
                "content": [
                  {
                    "type": "paragraph",
                    "content": [{ "type": "text", "text": "Numbered sub item" }]
                  },
                  {
                    "type": "orderedList",
                    "attrs": { "order": 1 },
                    "content": [
                      {
                        "type": "listItem",
                        "content": [
                          {
                            "type": "paragraph",
                            "content": [
                              {
                                "type": "text",
                                "text": "Numbered sub-sub item"
                              }
                            ]
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            ]
          }
        ]
      },
      {
        "type": "listItem",
        "content": [
          {
            "type": "paragraph",
            "content": [{ "type": "text", "text": "List item" }]
          }
        ]
      }
    ]
  }
]
