[
  {
    "type": "paragraph",
    "content": [
      {
        "type": "text",
        "marks": [{ "type": "strong" }],
        "text": "Some notes I'd like to share in bold text:"
      }
    ]
  },
  {
    "type": "bulletList",
    "content": [
      {
        "type": "listItem",
        "content": [
          {
            "type": "paragraph",
            "content": [
              { "type": "text", "text": "Note 1 " },
              {
                "type": "text",
                "marks": [
                  {
                    "type": "link",
                    "attrs": {
                      "href": "https://cultureamp.design",
                      "_metadata": null,
                      "target": "_blank",
                      "rel": "noreferrer"
                    }
                  }
                ],
                "text": "with link"
              }
            ]
          },
          {
            "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": "Another really " },
              {
                "type": "text",
                "marks": [{ "type": "underline" }],
                "text": "important note"
              },
              { "type": "text", "text": " " },
              {
                "type": "text",
                "marks": [{ "type": "em" }],
                "text": "(that I'd like to emphasise)"
              }
            ]
          }
        ]
      }
    ]
  },
  {
    "type": "paragraph",
    "content": [{ "type": "text", "text": "Additionally:" }]
  },
  {
    "type": "orderedList",
    "attrs": { "order": 1 },
    "content": [
      {
        "type": "listItem",
        "content": [
          {
            "type": "paragraph",
            "content": [{ "type": "text", "text": "Point one" }]
          },
          {
            "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": "Point two" }]
          }
        ]
      }
    ]
  }
]
