Chilkat Online Tools

DataFlex / Atlassian Confluence Cloud / Create or update attachment

Back to Collection Items

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vReq
    Handle hoReq
    Variant vResp
    Handle hoResp
    Variant vSbResponseBody
    Handle hoSbResponseBody
    Handle hoJResp
    Integer iRespStatusCode
    String sTemp1
    Boolean bTemp1

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    Get Create (RefClass(cComChilkatHttpRequest)) To hoReq
    If (Not(IsComObjectCreated(hoReq))) Begin
        Send CreateComObject of hoReq
    End
    Set ComHttpVerb Of hoReq To "PUT"
    Set ComPath Of hoReq To "/wiki/rest/api/content/:id/child/attachment?status=current"
    Set ComContentType Of hoReq To "multipart/form-data"
    Send ComAddParam To hoReq "file" "<binary>"

    Send ComAddParam To hoReq "minorEdit" "<binary><binary>"

    Send ComAddParam To hoReq "comment" "<binary><binary><binary>"

    Send ComAddHeader To hoReq "Authorization" "Bearer <access_token>"

    Get pvComObject of hoReq to vReq
    Get ComSynchronousRequest Of hoHttp "your-domain.atlassian.net" 443 True vReq To vResp
    If (IsComObject(vResp)) Begin
        Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
        Set pvComObject Of hoResp To vResp
    End
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
    If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
        Send CreateComObject of hoSbResponseBody
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComGetBodySb Of hoResp vSbResponseBody To iSuccess

    Get Create (RefClass(cComChilkatJsonObject)) To hoJResp
    If (Not(IsComObjectCreated(hoJResp))) Begin
        Send CreateComObject of hoJResp
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess
    Set ComEmitCompact Of hoJResp To False

    Showln "Response Body:"
    Get ComEmit Of hoJResp To sTemp1
    Showln sTemp1

    Get ComStatusCode Of hoResp To iRespStatusCode
    Showln "Response Status Code = " iRespStatusCode
    If (iRespStatusCode >= 400) Begin
        Showln "Response Header:"
        Get ComHeader Of hoResp To sTemp1
        Showln sTemp1
        Showln "Failed."
        Send Destroy of hoResp
        Procedure_Return
    End

    Send Destroy of hoResp


End_Procedure

Curl Command

curl -X PUT
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: multipart/form-data"
	--form 'file=<binary>'
	--form 'minorEdit=<binary><binary>'
	--form 'comment=<binary><binary><binary>'
https://your-domain.atlassian.net/wiki/rest/api/content/:id/child/attachment?status=current

Postman Collection Item JSON

{
  "name": "Create or update attachment",
  "request": {
    "auth": {
      "type": "oauth2"
    },
    "method": "PUT",
    "header": [
      {
        "key": "Content-Type",
        "value": "multipart/form-data"
      }
    ],
    "body": {
      "mode": "formdata",
      "formdata": [
        {
          "key": "file",
          "value": "<binary>",
          "description": "The relative location and name of the attachment to be added to\nthe content.",
          "type": "text"
        },
        {
          "key": "minorEdit",
          "value": "<binary>",
          "description": "If `minorEdits` is set to 'true', no notification email or activity stream\nwill be generated when the attachment is added to the content.",
          "type": "text"
        },
        {
          "key": "comment",
          "value": "<binary>",
          "description": "The comment for the attachment that is being added.\nIf you specify a comment, then every file must have a comment and\nthe comments must be in the same order as the files. Alternatively,\ndon't specify any comments.",
          "type": "text"
        }
      ]
    },
    "url": {
      "raw": "{{baseUrl}}/api/content/:id/child/attachment?status=current",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "content",
        ":id",
        "child",
        "attachment"
      ],
      "query": [
        {
          "key": "status",
          "value": "current",
          "description": "The status of the content that the attachment is being added to.\nThis should always be set to 'current'."
        }
      ],
      "variable": [
        {
          "key": "id",
          "value": "<string>",
          "type": "string",
          "description": "(Required) The ID of the content to add the attachment to."
        }
      ]
    },
    "description": "Adds an attachment to a piece of content. If the attachment already exists\nfor the content, then the attachment is updated (i.e. a new version of the\nattachment is created).\n\nNote, you must set a `X-Atlassian-Token: nocheck` header on the request\nfor this method, otherwise it will be blocked. This protects against XSRF\nattacks, which is necessary as this method accepts multipart/form-data.\n\nThe media type 'multipart/form-data' is defined in [RFC 1867](https://www.ietf.org/rfc/rfc1867.txt).\nMost client libraries have classes that make it easier to implement\nmultipart posts, like the [MultiPartEntity](http://hc.apache.org/httpcomponents-client-ga/httpmime/apidocs/org/apache/http/entity/mime/MultipartEntity.html)\nJava class provided by Apache HTTP Components.\n\nExample: This curl command attaches a file ('example.txt') to a piece of\ncontent (id='123') with a comment and `minorEdits`=true. If the 'example.txt'\nfile already exists, it will update it with a new version of the attachment.\n\n``` bash\ncurl -D- \\\n  -u admin:admin \\\n  -X PUT \\\n  -H \"X-Atlassian-Token: nocheck\" \\\n  -F \"file=@example.txt\" \\\n  -F \"minorEdit=true\" \\\n  -F \"comment=Example attachment comment\" \\\n  http://myhost/rest/api/content/123/child/attachment\n```\n**[Permissions](https://confluence.atlassian.com/x/_AozKw) required**:\nPermission to update the content."
  },
  "response": [
    {
      "name": "Returned if the attachments were added to the content.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": {
              "content": "Added as a part of security scheme: oauth2",
              "type": "text/plain"
            },
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/content/:id/child/attachment?status=current",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "content",
            ":id",
            "child",
            "attachment"
          ],
          "query": [
            {
              "key": "status",
              "value": "current"
            }
          ],
          "variable": [
            {
              "key": "id"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"results\": [\n  {\n   \"id\": \"sunt id in nisi ea\",\n   \"type\": \"dolor\",\n   \"status\": \"ut sunt\",\n   \"title\": \"voluptate in mollit pariatur laboris\",\n   \"_expandable\": {\n    \"childTypes\": \"veniam ad tempor deserunt irure\",\n    \"container\": \"sit Lorem adipisicing nisi nulla\",\n    \"metadata\": \"labore Excepteur\",\n    \"operations\": \"aliquip ut nostrud mollit\",\n    \"children\": \"sit esse Duis eiusmod ipsum\",\n    \"restrictions\": \"enim Duis non sed\",\n    \"history\": \"ad sed do\",\n    \"ancestors\": \"ipsum occaecat Ut\",\n    \"body\": \"aliqua tempor non sit reprehenderit\",\n    \"version\": \"do mollit amet ipsum\",\n    \"descendants\": \"ex Ut non cillum\",\n    \"space\": \"tempor Ut ad mollit occaecat\"\n   },\n   \"space\": {\n    \"id\": 16873534,\n    \"key\": \"pariatur commodo Ut\",\n    \"name\": \"cillum anim ut officia\",\n    \"type\": \"deserunt\",\n    \"status\": \"ut nostrud enim dolor\",\n    \"_expandable\": {\n     \"settings\": \"sunt proident quis\",\n     \"metadata\": \"Duis commodo\",\n     \"operations\": \"consectetur tempor aliqua quis\",\n     \"lookAndFeel\": \"consequat eiusmod aliquip\",\n     \"permissions\": \"cillum occaecat eu\",\n     \"icon\": \"sint cillum id of\",\n     \"description\": \"quis laboris ad\",\n     \"theme\": \"eni\",\n     \"history\": \"deserunt\",\n     \"homepage\": \"cillum aliquip cupidatat\"\n    },\n    \"_links\": {},\n    \"icon\": {\n     \"path\": \"anim aliqua laborum\",\n     \"width\": -63310615,\n     \"height\": 70058486,\n     \"isDefault\": false\n    },\n    \"description\": {\n     \"plain\": {\n      \"value\": \"dolore\",\n      \"representation\": \"view\",\n      \"embeddedContent\": [\n       {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      ]\n     },\n     \"view\": {\n      \"value\": \"officia mollit\",\n      \"representation\": \"plain\",\n      \"embeddedContent\": [\n       {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      ]\n     }\n    },\n    \"homepage\": {\n     \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n    },\n    \"metadata\": {\n     \"labels\": {\n      \"results\": [\n       {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      ],\n      \"start\": -17156204,\n      \"limit\": 82123870,\n      \"size\": 34031756,\n      \"_links\": {}\n     }\n    },\n    \"operations\": [\n     {\n      \"operation\": \"restore\",\n      \"targetType\": \"attachment\"\n     },\n     {\n      \"operation\": \"purge_version\",\n      \"targetType\": \"attachment\"\n     }\n    ],\n    \"permissions\": [\n     {\n      \"subjects\": {\n       \"_expandable\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"user\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"group\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"operation\": {\n       \"operation\": \"update\",\n       \"targetType\": \"page\"\n      },\n      \"anonymousAccess\": false,\n      \"unlicensedAccess\": false\n     },\n     {\n      \"subjects\": {\n       \"_expandable\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"user\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"group\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"operation\": {\n       \"operation\": \"create\",\n       \"targetType\": \"blogpost\"\n      },\n      \"anonymousAccess\": false,\n      \"unlicensedAccess\": false\n     }\n    ],\n    \"settings\": {\n     \"routeOverrideEnabled\": true,\n     \"_links\": {}\n    },\n    \"theme\": {},\n    \"lookAndFeel\": {\n     \"headings\": {\n      \"color\": \"pariatur sunt occaecat laboris\"\n     },\n     \"links\": {\n      \"color\": \"ad \"\n     },\n     \"menus\": {\n      \"hoverOrFocus\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"color\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     },\n     \"header\": {\n      \"backgroundColor\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"button\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"primaryNavigation\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"secondaryNavigation\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"search\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     },\n     \"content\": {\n      \"screen\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"container\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"header\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"body\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     },\n     \"bordersAndDividers\": {\n      \"color\": \"ad anim nulla ame\"\n     }\n    },\n    \"history\": {\n     \"createdDate\": \"2013-07-08T02:13:30.824Z\"\n    }\n   },\n   \"history\": {\n    \"latest\": false,\n    \"createdBy\": {\n     \"type\": \"anonymous\",\n     \"accountId\": \"velit\",\n     \"accountType\": \"atlassian\",\n     \"email\": \"fugiat enim dolor consequat\",\n     \"publicName\": \"aute laboris\",\n     \"profilePicture\": {\n      \"path\": \"dolo\",\n      \"width\": 84840995,\n      \"height\": 23079789,\n      \"isDefault\": true\n     },\n     \"displayName\": \"voluptate ad veniam\",\n     \"_expandable\": {\n      \"operations\": \"irure non reprehenderit Ut\",\n      \"details\": \"ut commodo voluptate Ut\",\n      \"personalSpace\": \"velit Duis\"\n     },\n     \"_links\": {},\n     \"username\": \"qui dol\",\n     \"userKey\": \"Ut consectetur ullamco ad\",\n     \"operations\": [\n      {\n       \"operation\": \"use\",\n       \"targetType\": \"comment\"\n      },\n      {\n       \"operation\": \"delete\",\n       \"targetType\": \"comment\"\n      }\n     ],\n     \"details\": {\n      \"business\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"personal\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     },\n     \"personalSpace\": {\n      \"id\": 24948588,\n      \"key\": \"ipsum deserunt eiusmod\",\n      \"name\": \"amet\",\n      \"type\": \"ut ut eu aute\",\n      \"status\": \"commodo non nostrud\",\n      \"_expandable\": {\n       \"settings\": \"dolore Excepteur\",\n       \"metadata\": \"irure est\",\n       \"operations\": \"fugiat repre\",\n       \"lookAndFeel\": \"in ad officia aliqua in\",\n       \"permissions\": \"in Duis elit\",\n       \"icon\": \"incididunt ea nulla est\",\n       \"description\": \"velit aliqua dolore est\",\n       \"theme\": \"officia elit amet dolor\",\n       \"history\": \"proident officia dolor irure\",\n       \"homepage\": \"enim deserunt et\"\n      },\n      \"_links\": {},\n      \"icon\": {\n       \"path\": \"et minim\",\n       \"width\": 55391682,\n       \"height\": 68694495,\n       \"isDefault\": true\n      },\n      \"description\": {\n       \"plain\": {\n        \"value\": \"culpa proident reprehenderit\",\n        \"representation\": \"plain\",\n        \"embeddedContent\": [\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        ]\n       },\n       \"view\": {\n        \"value\": \"in dolor eu anim\",\n        \"representation\": \"plain\",\n        \"embeddedContent\": [\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        ]\n       }\n      },\n      \"homepage\": {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      },\n      \"metadata\": {\n       \"labels\": {\n        \"results\": [\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        ],\n        \"start\": 41463839,\n        \"limit\": -60709100,\n        \"size\": 97431267,\n        \"_links\": {}\n       }\n      },\n      \"operations\": [\n       {\n        \"operation\": \"copy\",\n        \"targetType\": \"blogpost\"\n       },\n       {\n        \"operation\": \"export\",\n        \"targetType\": \"attachment\"\n       }\n      ],\n      \"permissions\": [\n       {\n        \"subjects\": {\n         \"_expandable\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"user\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"group\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"operation\": {\n         \"operation\": \"use\",\n         \"targetType\": \"blogpost\"\n        },\n        \"anonymousAccess\": false,\n        \"unlicensedAccess\": false\n       },\n       {\n        \"subjects\": {\n         \"_expandable\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"user\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"group\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"operation\": {\n         \"operation\": \"delete\",\n         \"targetType\": \"attachment\"\n        },\n        \"anonymousAccess\": false,\n        \"unlicensedAccess\": false\n       }\n      ],\n      \"settings\": {\n       \"routeOverrideEnabled\": true,\n       \"_links\": {}\n      },\n      \"theme\": {},\n      \"lookAndFeel\": {\n       \"headings\": {\n        \"color\": \"quis dolore consectetur velit Ut\"\n       },\n       \"links\": {\n        \"color\": \"sunt non\"\n       },\n       \"menus\": {\n        \"hoverOrFocus\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"color\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n       },\n       \"header\": {\n        \"backgroundColor\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"button\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"primaryNavigation\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"secondaryNavigation\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"search\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n       },\n       \"content\": {\n        \"screen\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"container\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"header\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"body\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n       },\n       \"bordersAndDividers\": {\n        \"color\": \"ex et sint proident\"\n       }\n      },\n      \"history\": {\n       \"createdDate\": \"1941-05-08T11:20:23.521Z\"\n      }\n     }\n    },\n    \"createdDate\": \"1968-09-19T01:46:40.264Z\",\n    \"lastUpdated\": {\n     \"by\": {\n      \"type\": \"user\",\n      \"accountId\": \"amet occaecat fugiat aliquip nulla\",\n      \"accountType\": \"atlassian\",\n      \"email\": \"culpa id cillum laborum\",\n      \"publicName\": \"non ad velit ex\",\n      \"profilePicture\": {\n       \"path\": \"eiusmod exercitation\",\n       \"width\": -70974619,\n       \"height\": -19820164,\n       \"isDefault\": true\n      },\n      \"displayName\": \"enim ad\",\n      \"_expandable\": {\n       \"operations\": \"pariatur et sit est\",\n       \"details\": \"sed qui eu\",\n       \"personalSpace\": \"cupidatat Lorem commodo\"\n      },\n      \"_links\": {},\n      \"username\": \"sint\",\n      \"userKey\": \"ipsum pariatur\",\n      \"operations\": [\n       {\n        \"operation\": \"create\",\n        \"targetType\": \"space\"\n       },\n       {\n        \"operation\": \"copy\",\n        \"targetType\": \"comment\"\n       }\n      ],\n      \"details\": {\n       \"business\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"personal\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"personalSpace\": {\n       \"id\": -20168008,\n       \"key\": \"sint consectetur cupidatat eiusmod\",\n       \"name\": \"fugiat minim in dolore in\",\n       \"type\": \"voluptate sed sit ipsum\",\n       \"status\": \"ut ullamco mollit\",\n       \"_expandable\": {\n        \"settings\": \"sed tempor qui\",\n        \"metadata\": \"qui aliqua\",\n        \"operations\": \"dolore officia\",\n        \"lookAndFeel\": \"enim labore anim\",\n        \"permissions\": \"elit in\",\n        \"icon\": \"ut ad irure mollit enim\",\n        \"description\": \"tempor nulla officia laboris\",\n        \"theme\": \"cupidatat culpa laborum non sunt\",\n        \"history\": \"mollit qui aliqua consectetur\",\n        \"homepage\": \"Duis\"\n       },\n       \"_links\": {},\n       \"icon\": {\n        \"path\": \"cillum\",\n        \"width\": -70848684,\n        \"height\": -35180878,\n        \"isDefault\": true\n       },\n       \"description\": {\n        \"plain\": {\n         \"value\": \"\",\n         \"representation\": \"view\",\n         \"embeddedContent\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ]\n        },\n        \"view\": {\n         \"value\": \"esse\",\n         \"representation\": \"view\",\n         \"embeddedContent\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ]\n        }\n       },\n       \"homepage\": {\n        \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n       },\n       \"metadata\": {\n        \"labels\": {\n         \"results\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ],\n         \"start\": -88619846,\n         \"limit\": 45143577,\n         \"size\": -87250421,\n         \"_links\": {}\n        }\n       },\n       \"operations\": [\n        {\n         \"operation\": \"export\",\n         \"targetType\": \"page\"\n        },\n        {\n         \"operation\": \"export\",\n         \"targetType\": \"blogpost\"\n        }\n       ],\n       \"permissions\": [\n        {\n         \"subjects\": {\n          \"_expandable\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"user\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"group\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         },\n         \"operation\": {\n          \"operation\": \"copy\",\n          \"targetType\": \"attachment\"\n         },\n         \"anonymousAccess\": false,\n         \"unlicensedAccess\": false\n        },\n        {\n         \"subjects\": {\n          \"_expandable\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"user\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"group\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         },\n         \"operation\": {\n          \"operation\": \"purge_version\",\n          \"targetType\": \"page\"\n         },\n         \"anonymousAccess\": false,\n         \"unlicensedAccess\": false\n        }\n       ],\n       \"settings\": {\n        \"routeOverrideEnabled\": true,\n        \"_links\": {}\n       },\n       \"theme\": {},\n       \"lookAndFeel\": {\n        \"headings\": {\n         \"color\": \"nisi Lorem sint occaecat sunt\"\n        },\n        \"links\": {\n         \"color\": \"enim ad\"\n        },\n        \"menus\": {\n         \"hoverOrFocus\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"color\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"header\": {\n         \"backgroundColor\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"button\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"primaryNavigation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"secondaryNavigation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"search\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"content\": {\n         \"screen\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"container\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"header\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"body\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"bordersAndDividers\": {\n         \"color\": \"amet dolor laboris exercitation\"\n        }\n       },\n       \"history\": {\n        \"createdDate\": \"1989-12-03T10:36:25.161Z\"\n       }\n      }\n     },\n     \"when\": \"1969-07-11T20:52:11.012Z\",\n     \"friendlyWhen\": \"sint do sit adipisic\",\n     \"message\": \"ut culpa qui cillum ipsum\",\n     \"number\": 16758223,\n     \"minorEdit\": true,\n     \"_expandable\": {\n      \"content\": \"deserunt in aliqua\",\n      \"collaborators\": \"nisi\"\n     },\n     \"_links\": {},\n     \"content\": {\n      \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n     },\n     \"collaborators\": {\n      \"users\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"userKeys\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"_links\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     }\n    },\n    \"previousVersion\": {\n     \"by\": {\n      \"type\": \"anonymous\",\n      \"accountId\": \"tempor dolor Lorem eiusmod\",\n      \"accountType\": \"atlassian\",\n      \"email\": \"velit dolore nostrud\",\n      \"publicName\": \"dolore nostrud\",\n      \"profilePicture\": {\n       \"path\": \"laborum ut\",\n       \"width\": -64667298,\n       \"height\": 11402408,\n       \"isDefault\": true\n      },\n      \"displayName\": \"et in laboris qui\",\n      \"_expandable\": {\n       \"operations\": \"in eu consequat aliquip\",\n       \"details\": \"irure laboris labore ut\",\n       \"personalSpace\": \"sint id reprehenderit\"\n      },\n      \"_links\": {},\n      \"username\": \"enim ad dolore aute\",\n      \"userKey\": \"do ut\",\n      \"operations\": [\n       {\n        \"operation\": \"create\",\n        \"targetType\": \"attachment\"\n       },\n       {\n        \"operation\": \"use\",\n        \"targetType\": \"page\"\n       }\n      ],\n      \"details\": {\n       \"business\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"personal\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"personalSpace\": {\n       \"id\": 26299907,\n       \"key\": \"sint laboris ad a\",\n       \"name\": \"cupidatat aute ut culpa\",\n       \"type\": \"enim velit\",\n       \"status\": \"commodo amet\",\n       \"_expandable\": {\n        \"settings\": \"magna officia quis dolor aliquip\",\n        \"metadata\": \"est ea\",\n        \"operations\": \"ad exercitation\",\n        \"lookAndFeel\": \"sit pariatur ut\",\n        \"permissions\": \"minim Duis nisi commodo\",\n        \"icon\": \"tempor consequat\",\n        \"description\": \"cillum ut\",\n        \"theme\": \"officia exercitat\",\n        \"history\": \"non dolore sed ipsum\",\n        \"homepage\": \"deserunt amet in\"\n       },\n       \"_links\": {},\n       \"icon\": {\n        \"path\": \"ea laborum laboris esse cupidatat\",\n        \"width\": -16771963,\n        \"height\": 1532427,\n        \"isDefault\": false\n       },\n       \"description\": {\n        \"plain\": {\n         \"value\": \"proident\",\n         \"representation\": \"view\",\n         \"embeddedContent\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ]\n        },\n        \"view\": {\n         \"value\": \"officia aute consectetur est\",\n         \"representation\": \"plain\",\n         \"embeddedContent\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ]\n        }\n       },\n       \"homepage\": {\n        \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n       },\n       \"metadata\": {\n        \"labels\": {\n         \"results\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ],\n         \"start\": -95969759,\n         \"limit\": 28274091,\n         \"size\": -26021625,\n         \"_links\": {}\n        }\n       },\n       \"operations\": [\n        {\n         \"operation\": \"move\",\n         \"targetType\": \"attachment\"\n        },\n        {\n         \"operation\": \"administer\",\n         \"targetType\": \"blogpost\"\n        }\n       ],\n       \"permissions\": [\n        {\n         \"subjects\": {\n          \"_expandable\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"user\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"group\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         },\n         \"operation\": {\n          \"operation\": \"update\",\n          \"targetType\": \"application\"\n         },\n         \"anonymousAccess\": false,\n         \"unlicensedAccess\": false\n        },\n        {\n         \"subjects\": {\n          \"_expandable\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"user\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"group\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         },\n         \"operation\": {\n          \"operation\": \"delete\",\n          \"targetType\": \"application\"\n         },\n         \"anonymousAccess\": false,\n         \"unlicensedAccess\": false\n        }\n       ],\n       \"settings\": {\n        \"routeOverrideEnabled\": false,\n        \"_links\": {}\n       },\n       \"theme\": {},\n       \"lookAndFeel\": {\n        \"headings\": {\n         \"color\": \"Lorem\"\n        },\n        \"links\": {\n         \"color\": \"consectetur ut do\"\n        },\n        \"menus\": {\n         \"hoverOrFocus\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"color\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"header\": {\n         \"backgroundColor\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"button\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"primaryNavigation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"secondaryNavigation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"search\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"content\": {\n         \"screen\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"container\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"header\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"body\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"bordersAndDividers\": {\n         \"color\": \"elit reprehenderit veniam\"\n        }\n       },\n       \"history\": {\n        \"createdDate\": \"2002-03-19T07:06:34.520Z\"\n       }\n      }\n     },\n     \"when\": \"2020-09-11T18:02:13.878Z\",\n     \"friendlyWhen\": \"ut\",\n     \"message\": \"sed ipsum\",\n     \"number\": -51208110,\n     \"minorEdit\": true,\n     \"_expandable\": {\n      \"content\": \"quis fugiat voluptate\",\n      \"collaborators\": \"magna dolor\"\n     },\n     \"_links\": {},\n     \"content\": {\n      \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n     },\n     \"collaborators\": {\n      \"users\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"userKeys\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"_links\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     }\n    },\n    \"contributors\": {\n     \"publishers\": {\n      \"users\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"userKeys\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"_links\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     }\n    },\n    \"nextVersion\": {\n     \"by\": {\n      \"type\": \"anonymous\",\n      \"accountId\": \"elit sint \",\n      \"accountType\": \"atlassian\",\n      \"email\": \"sunt nulla cillum dolor cupidatat\",\n      \"publicName\": \"sed culpa nostrud\",\n      \"profilePicture\": {\n       \"path\": \"sed in\",\n       \"width\": 18869084,\n       \"height\": -66953146,\n       \"isDefault\": true\n      },\n      \"displayName\": \"reprehenderit dolore\",\n      \"_expandable\": {\n       \"operations\": \"aliquip exercitation\",\n       \"details\": \"in exer\",\n       \"personalSpace\": \"irure dolor\"\n      },\n      \"_links\": {},\n      \"username\": \"Excepteur velit laborum\",\n      \"userKey\": \"fugiat deserunt occaecat velit\",\n      \"operations\": [\n       {\n        \"operation\": \"move\",\n        \"targetType\": \"blogpost\"\n       },\n       {\n        \"operation\": \"use\",\n        \"targetType\": \"blogpost\"\n       }\n      ],\n      \"details\": {\n       \"business\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"personal\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"personalSpace\": {\n       \"id\": 93144230,\n       \"key\": \"p\",\n       \"name\": \"sit\",\n       \"type\": \"aliquip anim fugiat\",\n       \"status\": \"Duis Lorem\",\n       \"_expandable\": {\n        \"settings\": \"nulla consequ\",\n        \"metadata\": \"et sunt fugiat\",\n        \"operations\": \"qui\",\n        \"lookAndFeel\": \"sunt nostrud Lorem\",\n        \"permissions\": \"id\",\n        \"icon\": \"eu officia\",\n        \"description\": \"exercitation magna enim\",\n        \"theme\": \"anim nostrud qui Lorem\",\n        \"history\": \"adipisicing id sit nisi\",\n        \"homepage\": \"ea commodo eiusm\"\n       },\n       \"_links\": {},\n       \"icon\": {\n        \"path\": \"elit ipsum tempor e\",\n        \"width\": -69865420,\n        \"height\": -39609667,\n        \"isDefault\": true\n       },\n       \"description\": {\n        \"plain\": {\n         \"value\": \"q\",\n         \"representation\": \"plain\",\n         \"embeddedContent\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ]\n        },\n        \"view\": {\n         \"value\": \"reprehenderit ex\",\n         \"representation\": \"view\",\n         \"embeddedContent\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ]\n        }\n       },\n       \"homepage\": {\n        \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n       },\n       \"metadata\": {\n        \"labels\": {\n         \"results\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ],\n         \"start\": 39280383,\n         \"limit\": -68729248,\n         \"size\": 17505537,\n         \"_links\": {}\n        }\n       },\n       \"operations\": [\n        {\n         \"operation\": \"copy\",\n         \"targetType\": \"page\"\n        },\n        {\n         \"operation\": \"copy\",\n         \"targetType\": \"comment\"\n        }\n       ],\n       \"permissions\": [\n        {\n         \"subjects\": {\n          \"_expandable\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"user\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"group\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         },\n         \"operation\": {\n          \"operation\": \"delete\",\n          \"targetType\": \"application\"\n         },\n         \"anonymousAccess\": false,\n         \"unlicensedAccess\": false\n        },\n        {\n         \"subjects\": {\n          \"_expandable\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"user\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"group\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         },\n         \"operation\": {\n          \"operation\": \"administer\",\n          \"targetType\": \"application\"\n         },\n         \"anonymousAccess\": false,\n         \"unlicensedAccess\": false\n        }\n       ],\n       \"settings\": {\n        \"routeOverrideEnabled\": true,\n        \"_links\": {}\n       },\n       \"theme\": {},\n       \"lookAndFeel\": {\n        \"headings\": {\n         \"color\": \"in proident ipsum\"\n        },\n        \"links\": {\n         \"color\": \"esse est sint officia Lorem\"\n        },\n        \"menus\": {\n         \"hoverOrFocus\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"color\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"header\": {\n         \"backgroundColor\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"button\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"primaryNavigation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"secondaryNavigation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"search\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"content\": {\n         \"screen\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"container\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"header\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"body\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"bordersAndDividers\": {\n         \"color\": \"cupidatat in dolore sit\"\n        }\n       },\n       \"history\": {\n        \"createdDate\": \"1987-05-01T01:57:05.382Z\"\n       }\n      }\n     },\n     \"when\": \"1959-11-15T17:26:50.479Z\",\n     \"friendlyWhen\": \"voluptate do ut quis\",\n     \"message\": \"in\",\n     \"number\": -65224227,\n     \"minorEdit\": false,\n     \"_expandable\": {\n      \"content\": \"ea consequat\",\n      \"collaborators\": \"consequat eu et in\"\n     },\n     \"_links\": {},\n     \"content\": {\n      \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n     },\n     \"collaborators\": {\n      \"users\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"userKeys\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"_links\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     }\n    },\n    \"_expandable\": {\n     \"lastUpdated\": \"in anim adipisicing\",\n     \"previousVersion\": \"cillum eu\",\n     \"contributors\": \"anim incididunt\",\n     \"nextVersion\": \"Excepteur\"\n    },\n    \"_links\": {}\n   },\n   \"version\": {\n    \"by\": {\n     \"type\": \"known\",\n     \"accountId\": \"am\",\n     \"accountType\": \"app (if this user is a bot user created on behalf of an Atlassian app)\",\n     \"email\": \"dolor Lorem enim\",\n     \"publicName\": \"voluptate ipsum reprehenderit esse\",\n     \"profilePicture\": {\n      \"path\": \"ut ipsum\",\n      \"width\": 21238875,\n      \"height\": -51224972,\n      \"isDefault\": false\n     },\n     \"displayName\": \"anim\",\n     \"_expandable\": {\n      \"operations\": \"quis consectetur reprehenderit voluptate\",\n      \"details\": \"nisi adipisicing\",\n      \"personalSpace\": \"ex cupidatat ullamco\"\n     },\n     \"_links\": {},\n     \"username\": \"ullamco aute\",\n     \"userKey\": \"magna eu\",\n     \"operations\": [\n      {\n       \"operation\": \"restore\",\n       \"targetType\": \"blogpost\"\n      },\n      {\n       \"operation\": \"copy\",\n       \"targetType\": \"blogpost\"\n      }\n     ],\n     \"details\": {\n      \"business\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"personal\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     },\n     \"personalSpace\": {\n      \"id\": 19261333,\n      \"key\": \"ex dolor non\",\n      \"name\": \"consectetur in\",\n      \"type\": \"aute ex\",\n      \"status\": \"et sunt Ut\",\n      \"_expandable\": {\n       \"settings\": \"et voluptate elit Ut\",\n       \"metadata\": \"exercitation elit\",\n       \"operations\": \"nostrud eiusmod\",\n       \"lookAndFeel\": \"dolore commodo\",\n       \"permissions\": \"laboris ut anim sint\",\n       \"icon\": \"Ut labor\",\n       \"description\": \"enim occaecat pariatur\",\n       \"theme\": \"magna fugiat\",\n       \"history\": \"pariatur minim magna\",\n       \"homepage\": \"reprehenderit Ut in anim\"\n      },\n      \"_links\": {},\n      \"icon\": {\n       \"path\": \"in deserunt ullamco\",\n       \"width\": 29014740,\n       \"height\": 21823076,\n       \"isDefault\": false\n      },\n      \"description\": {\n       \"plain\": {\n        \"value\": \"enim aliquip dolore culpa\",\n        \"representation\": \"plain\",\n        \"embeddedContent\": [\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        ]\n       },\n       \"view\": {\n        \"value\": \"pariatur amet eu\",\n        \"representation\": \"plain\",\n        \"embeddedContent\": [\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        ]\n       }\n      },\n      \"homepage\": {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      },\n      \"metadata\": {\n       \"labels\": {\n        \"results\": [\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        ],\n        \"start\": -563527,\n        \"limit\": 28678873,\n        \"size\": 62383200,\n        \"_links\": {}\n       }\n      },\n      \"operations\": [\n       {\n        \"operation\": \"read\",\n        \"targetType\": \"space\"\n       },\n       {\n        \"operation\": \"export\",\n        \"targetType\": \"page\"\n       }\n      ],\n      \"permissions\": [\n       {\n        \"subjects\": {\n         \"_expandable\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"user\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"group\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"operation\": {\n         \"operation\": \"administer\",\n         \"targetType\": \"comment\"\n        },\n        \"anonymousAccess\": false,\n        \"unlicensedAccess\": false\n       },\n       {\n        \"subjects\": {\n         \"_expandable\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"user\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"group\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"operation\": {\n         \"operation\": \"copy\",\n         \"targetType\": \"attachment\"\n        },\n        \"anonymousAccess\": false,\n        \"unlicensedAccess\": false\n       }\n      ],\n      \"settings\": {\n       \"routeOverrideEnabled\": true,\n       \"_links\": {}\n      },\n      \"theme\": {},\n      \"lookAndFeel\": {\n       \"headings\": {\n        \"color\": \"ut ullamco nostrud\"\n       },\n       \"links\": {\n        \"color\": \"occaecat aute\"\n       },\n       \"menus\": {\n        \"hoverOrFocus\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"color\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n       },\n       \"header\": {\n        \"backgroundColor\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"button\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"primaryNavigation\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"secondaryNavigation\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"search\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n       },\n       \"content\": {\n        \"screen\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"container\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"header\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"body\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n       },\n       \"bordersAndDividers\": {\n        \"color\": \"fugiat sunt ea dolore\"\n       }\n      },\n      \"history\": {\n       \"createdDate\": \"2012-01-13T01:56:41.993Z\"\n      }\n     }\n    },\n    \"when\": \"1952-05-17T03:11:39.125Z\",\n    \"friendlyWhen\": \"sit veniam\",\n    \"message\": \"aute magna sunt Duis\",\n    \"number\": 40020334,\n    \"minorEdit\": false,\n    \"_expandable\": {\n     \"content\": \"mollit\",\n     \"collaborators\": \"ut\"\n    },\n    \"_links\": {},\n    \"content\": {\n     \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n    },\n    \"collaborators\": {\n     \"users\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"userKeys\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"_links\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"ancestors\": [\n    {\n     \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n    },\n    {\n     \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n    }\n   ],\n   \"operations\": [\n    {\n     \"operation\": \"purge_version\",\n     \"targetType\": \"attachment\"\n    },\n    {\n     \"operation\": \"update\",\n     \"targetType\": \"blogpost\"\n    }\n   ],\n   \"children\": {\n    \"_expandable\": {\n     \"attachment\": \"consectetur commodo\",\n     \"comment\": \"mollit\",\n     \"page\": \"eiusmod minim\"\n    },\n    \"_links\": {},\n    \"attachment\": {\n     \"results\": [\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      },\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      }\n     ],\n     \"start\": 38410693,\n     \"limit\": 84091301,\n     \"size\": -3678287,\n     \"_links\": {}\n    },\n    \"comment\": {\n     \"results\": [\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      },\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      }\n     ],\n     \"start\": -43136927,\n     \"limit\": 31051025,\n     \"size\": -22628659,\n     \"_links\": {}\n    },\n    \"page\": {\n     \"results\": [\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      },\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      }\n     ],\n     \"start\": -41851340,\n     \"limit\": -92414912,\n     \"size\": -23424054,\n     \"_links\": {}\n    }\n   },\n   \"childTypes\": {\n    \"_expandable\": {\n     \"all\": \"deserunt magna ull\",\n     \"attachment\": \"fugiat amet\",\n     \"comment\": \"irure dolore magna nulla\",\n     \"page\": \"fugiat commodo proident cillum\"\n    },\n    \"attachment\": {\n     \"value\": false,\n     \"_links\": {}\n    },\n    \"comment\": {\n     \"value\": true,\n     \"_links\": {}\n    },\n    \"page\": {\n     \"value\": false,\n     \"_links\": {}\n    }\n   },\n   \"descendants\": {\n    \"_expandable\": {\n     \"attachment\": \"dolor officia\",\n     \"comment\": \"ad velit\",\n     \"page\": \"elit dolor\"\n    },\n    \"_links\": {},\n    \"attachment\": {\n     \"results\": [\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      },\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      }\n     ],\n     \"start\": 95443512,\n     \"limit\": 48927243,\n     \"size\": 4186871,\n     \"_links\": {}\n    },\n    \"comment\": {\n     \"results\": [\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      },\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      }\n     ],\n     \"start\": -54958738,\n     \"limit\": 22412835,\n     \"size\": 94375141,\n     \"_links\": {}\n    },\n    \"page\": {\n     \"results\": [\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      },\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      }\n     ],\n     \"start\": -35469843,\n     \"limit\": -78971038,\n     \"size\": 68314046,\n     \"_links\": {}\n    }\n   },\n   \"container\": {},\n   \"body\": {\n    \"_expandable\": {\n     \"editor\": \"Ut proident do pariatur\",\n     \"view\": \"aute Lorem aliquip labore\",\n     \"export_view\": \"mollit fugiat\",\n     \"styled_view\": \"laborum tempor\",\n     \"storage\": \"officia exercitation deserunt\",\n     \"editor2\": \"ad sunt velit\",\n     \"anonymous_export_view\": \"esse ut et exercitation\"\n    }\n   },\n   \"restrictions\": {\n    \"_links\": {},\n    \"read\": {\n     \"operation\": \"create\",\n     \"_expandable\": {\n      \"restrictions\": \"sunt in laboris Ut\",\n      \"content\": \"ipsum ullamco\"\n     },\n     \"_links\": {},\n     \"restrictions\": {\n      \"user\": {\n       \"results\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"start\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"limit\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"size\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"group\": {\n       \"results\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"start\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"limit\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"size\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"_expandable\": {\n       \"user\": \"est cupidatat\",\n       \"group\": \"sit\"\n      }\n     },\n     \"content\": {\n      \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n     }\n    },\n    \"update\": {\n     \"operation\": \"restore\",\n     \"_expandable\": {\n      \"restrictions\": \"commodo velit ullamco\",\n      \"content\": \"nostrud Ut cillum ul\"\n     },\n     \"_links\": {},\n     \"restrictions\": {\n      \"user\": {\n       \"results\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"start\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"limit\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"size\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"group\": {\n       \"results\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"start\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"limit\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"size\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"_expandable\": {\n       \"user\": \"dolor amet Ut\",\n       \"group\": \"sed\"\n      }\n     },\n     \"content\": {\n      \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n     }\n    }\n   },\n   \"_links\": {}\n  },\n  {\n   \"id\": \"voluptate laboris cillum\",\n   \"type\": \"et deserunt fugiat nulla\",\n   \"status\": \"adipisicing anim Lorem ut\",\n   \"title\": \"dolor labore\",\n   \"_expandable\": {\n    \"childTypes\": \"sint\",\n    \"container\": \"aute ut ullamco\",\n    \"metadata\": \"tempor enim\",\n    \"operations\": \"id in ex\",\n    \"children\": \"cillum consectetur adipisicing ad\",\n    \"restrictions\": \"eiusmod anim\",\n    \"history\": \"non culpa eiusmod\",\n    \"ancestors\": \"sunt cillum ullamco\",\n    \"body\": \"anim exercitation con\",\n    \"version\": \"nostrud consequat quis\",\n    \"descendants\": \"culpa esse commodo proident\",\n    \"space\": \"sunt cupidatat proident mollit Lorem\"\n   },\n   \"space\": {\n    \"id\": 64512848,\n    \"key\": \"\",\n    \"name\": \"ut in\",\n    \"type\": \"culpa in reprehenderit aliqua\",\n    \"status\": \"culpa velit aliquip dolore\",\n    \"_expandable\": {\n     \"settings\": \"nisi Lorem non\",\n     \"metadata\": \"fugiat\",\n     \"operations\": \"aliquip mollit tempor ut\",\n     \"lookAndFeel\": \"et deserunt Ut\",\n     \"permissions\": \"magna eiusmod\",\n     \"icon\": \"reprehenderit dolore nisi proident mollit\",\n     \"description\": \"sit eiusmod\",\n     \"theme\": \"esse consectetur ad\",\n     \"history\": \"cupidatat officia fugi\",\n     \"homepage\": \"velit cillum ex ullamco\"\n    },\n    \"_links\": {},\n    \"icon\": {\n     \"path\": \"irure officia culpa\",\n     \"width\": -1219684,\n     \"height\": 8257719,\n     \"isDefault\": true\n    },\n    \"description\": {\n     \"plain\": {\n      \"value\": \"amet elit cupidatat fugiat\",\n      \"representation\": \"view\",\n      \"embeddedContent\": [\n       {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      ]\n     },\n     \"view\": {\n      \"value\": \"irure pariatur cupidatat\",\n      \"representation\": \"view\",\n      \"embeddedContent\": [\n       {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      ]\n     }\n    },\n    \"homepage\": {\n     \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n    },\n    \"metadata\": {\n     \"labels\": {\n      \"results\": [\n       {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      ],\n      \"start\": 3879275,\n      \"limit\": 3267841,\n      \"size\": 33750355,\n      \"_links\": {}\n     }\n    },\n    \"operations\": [\n     {\n      \"operation\": \"copy\",\n      \"targetType\": \"blogpost\"\n     },\n     {\n      \"operation\": \"use\",\n      \"targetType\": \"application\"\n     }\n    ],\n    \"permissions\": [\n     {\n      \"subjects\": {\n       \"_expandable\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"user\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"group\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"operation\": {\n       \"operation\": \"move\",\n       \"targetType\": \"page\"\n      },\n      \"anonymousAccess\": false,\n      \"unlicensedAccess\": false\n     },\n     {\n      \"subjects\": {\n       \"_expandable\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"user\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"group\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"operation\": {\n       \"operation\": \"move\",\n       \"targetType\": \"comment\"\n      },\n      \"anonymousAccess\": false,\n      \"unlicensedAccess\": false\n     }\n    ],\n    \"settings\": {\n     \"routeOverrideEnabled\": false,\n     \"_links\": {}\n    },\n    \"theme\": {},\n    \"lookAndFeel\": {\n     \"headings\": {\n      \"color\": \"quis elit\"\n     },\n     \"links\": {\n      \"color\": \"dolore in ad\"\n     },\n     \"menus\": {\n      \"hoverOrFocus\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"color\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     },\n     \"header\": {\n      \"backgroundColor\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"button\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"primaryNavigation\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"secondaryNavigation\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"search\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     },\n     \"content\": {\n      \"screen\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"container\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"header\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"body\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     },\n     \"bordersAndDividers\": {\n      \"color\": \"do laboris\"\n     }\n    },\n    \"history\": {\n     \"createdDate\": \"1976-09-30T18:25:28.640Z\"\n    }\n   },\n   \"history\": {\n    \"latest\": true,\n    \"createdBy\": {\n     \"type\": \"unknown\",\n     \"accountId\": \"est\",\n     \"accountType\": \"app (if this user is a bot user created on behalf of an Atlassian app)\",\n     \"email\": \"Ut reprehenderit\",\n     \"publicName\": \"velit tempor reprehenderit est\",\n     \"profilePicture\": {\n      \"path\": \"in proident Duis qui elit\",\n      \"width\": -48332853,\n      \"height\": -47159212,\n      \"isDefault\": true\n     },\n     \"displayName\": \"cillum\",\n     \"_expandable\": {\n      \"operations\": \"consequat repreh\",\n      \"details\": \"sun\",\n      \"personalSpace\": \"amet ipsum\"\n     },\n     \"_links\": {},\n     \"username\": \"adipisicing Ut eiusmod\",\n     \"userKey\": \"sit\",\n     \"operations\": [\n      {\n       \"operation\": \"use\",\n       \"targetType\": \"space\"\n      },\n      {\n       \"operation\": \"purge\",\n       \"targetType\": \"application\"\n      }\n     ],\n     \"details\": {\n      \"business\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"personal\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     },\n     \"personalSpace\": {\n      \"id\": -49753465,\n      \"key\": \"minim mollit\",\n      \"name\": \"Ut mollit ullamco exercitation\",\n      \"type\": \"et labore\",\n      \"status\": \"incididunt veniam\",\n      \"_expandable\": {\n       \"settings\": \"ut commodo\",\n       \"metadata\": \"dolor irure esse ut proident\",\n       \"operations\": \"laboris irure\",\n       \"lookAndFeel\": \"aute fugiat v\",\n       \"permissions\": \"sed voluptate\",\n       \"icon\": \"quis\",\n       \"description\": \"veniam labore consectetur\",\n       \"theme\": \"in elit deserunt\",\n       \"history\": \"ea aute\",\n       \"homepage\": \"in\"\n      },\n      \"_links\": {},\n      \"icon\": {\n       \"path\": \"dolor consequat cillum\",\n       \"width\": -53961199,\n       \"height\": 33654487,\n       \"isDefault\": false\n      },\n      \"description\": {\n       \"plain\": {\n        \"value\": \"d\",\n        \"representation\": \"plain\",\n        \"embeddedContent\": [\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        ]\n       },\n       \"view\": {\n        \"value\": \"labore deserunt nostrud\",\n        \"representation\": \"plain\",\n        \"embeddedContent\": [\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        ]\n       }\n      },\n      \"homepage\": {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      },\n      \"metadata\": {\n       \"labels\": {\n        \"results\": [\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        ],\n        \"start\": -87299979,\n        \"limit\": 87347197,\n        \"size\": -65353298,\n        \"_links\": {}\n       }\n      },\n      \"operations\": [\n       {\n        \"operation\": \"read\",\n        \"targetType\": \"page\"\n       },\n       {\n        \"operation\": \"delete\",\n        \"targetType\": \"comment\"\n       }\n      ],\n      \"permissions\": [\n       {\n        \"subjects\": {\n         \"_expandable\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"user\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"group\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"operation\": {\n         \"operation\": \"export\",\n         \"targetType\": \"application\"\n        },\n        \"anonymousAccess\": false,\n        \"unlicensedAccess\": false\n       },\n       {\n        \"subjects\": {\n         \"_expandable\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"user\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"group\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"operation\": {\n         \"operation\": \"purge\",\n         \"targetType\": \"space\"\n        },\n        \"anonymousAccess\": false,\n        \"unlicensedAccess\": false\n       }\n      ],\n      \"settings\": {\n       \"routeOverrideEnabled\": true,\n       \"_links\": {}\n      },\n      \"theme\": {},\n      \"lookAndFeel\": {\n       \"headings\": {\n        \"color\": \"quis do adipisicing\"\n       },\n       \"links\": {\n        \"color\": \"labore in\"\n       },\n       \"menus\": {\n        \"hoverOrFocus\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"color\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n       },\n       \"header\": {\n        \"backgroundColor\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"button\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"primaryNavigation\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"secondaryNavigation\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"search\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n       },\n       \"content\": {\n        \"screen\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"container\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"header\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"body\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n       },\n       \"bordersAndDividers\": {\n        \"color\": \"est eu adipisicing anim labore\"\n       }\n      },\n      \"history\": {\n       \"createdDate\": \"1964-12-01T11:55:58.778Z\"\n      }\n     }\n    },\n    \"createdDate\": \"2003-06-24T00:20:00.867Z\",\n    \"lastUpdated\": {\n     \"by\": {\n      \"type\": \"user\",\n      \"accountId\": \"ullamco cillum d\",\n      \"accountType\": \"app (if this user is a bot user created on behalf of an Atlassian app)\",\n      \"email\": \"cupidatat nulla dolor sed cillum\",\n      \"publicName\": \"nulla sint\",\n      \"profilePicture\": {\n       \"path\": \"commodo et sunt mollit\",\n       \"width\": -5993245,\n       \"height\": 14051874,\n       \"isDefault\": false\n      },\n      \"displayName\": \"in pariatur sunt anim\",\n      \"_expandable\": {\n       \"operations\": \"Duis elit\",\n       \"details\": \"ut sint et\",\n       \"personalSpace\": \"incidid\"\n      },\n      \"_links\": {},\n      \"username\": \"in aliquip nisi ex\",\n      \"userKey\": \"Duis velit\",\n      \"operations\": [\n       {\n        \"operation\": \"use\",\n        \"targetType\": \"space\"\n       },\n       {\n        \"operation\": \"read\",\n        \"targetType\": \"attachment\"\n       }\n      ],\n      \"details\": {\n       \"business\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"personal\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"personalSpace\": {\n       \"id\": 96469905,\n       \"key\": \"adipisicing mollit ut Excepteur\",\n       \"name\": \"ut velit\",\n       \"type\": \"sed tempor consectetur mollit sint\",\n       \"status\": \"aute consequat ullamco tempor Duis\",\n       \"_expandable\": {\n        \"settings\": \"dolore \",\n        \"metadata\": \"aliqua commodo tempor\",\n        \"operations\": \"quis consequat ea ullamco labore\",\n        \"lookAndFeel\": \"veniam ut ad nostrud\",\n        \"permissions\": \"reprehenderit ad\",\n        \"icon\": \"ad irure occaecat cillum\",\n        \"description\": \"nisi mollit magna in\",\n        \"theme\": \"pariatur\",\n        \"history\": \"nostrud Ut cillum\",\n        \"homepage\": \"sunt dolore in veniam incididunt\"\n       },\n       \"_links\": {},\n       \"icon\": {\n        \"path\": \"labore aliquip\",\n        \"width\": 22480819,\n        \"height\": -27781951,\n        \"isDefault\": true\n       },\n       \"description\": {\n        \"plain\": {\n         \"value\": \"velit ut reprehenderit\",\n         \"representation\": \"view\",\n         \"embeddedContent\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ]\n        },\n        \"view\": {\n         \"value\": \"eu occaecat nulla\",\n         \"representation\": \"view\",\n         \"embeddedContent\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ]\n        }\n       },\n       \"homepage\": {\n        \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n       },\n       \"metadata\": {\n        \"labels\": {\n         \"results\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ],\n         \"start\": -2573202,\n         \"limit\": 20384907,\n         \"size\": 29776131,\n         \"_links\": {}\n        }\n       },\n       \"operations\": [\n        {\n         \"operation\": \"delete\",\n         \"targetType\": \"blogpost\"\n        },\n        {\n         \"operation\": \"read\",\n         \"targetType\": \"page\"\n        }\n       ],\n       \"permissions\": [\n        {\n         \"subjects\": {\n          \"_expandable\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"user\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"group\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         },\n         \"operation\": {\n          \"operation\": \"read\",\n          \"targetType\": \"comment\"\n         },\n         \"anonymousAccess\": false,\n         \"unlicensedAccess\": false\n        },\n        {\n         \"subjects\": {\n          \"_expandable\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"user\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"group\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         },\n         \"operation\": {\n          \"operation\": \"purge_version\",\n          \"targetType\": \"page\"\n         },\n         \"anonymousAccess\": false,\n         \"unlicensedAccess\": false\n        }\n       ],\n       \"settings\": {\n        \"routeOverrideEnabled\": true,\n        \"_links\": {}\n       },\n       \"theme\": {},\n       \"lookAndFeel\": {\n        \"headings\": {\n         \"color\": \"aliqua minim adipisicing ad\"\n        },\n        \"links\": {\n         \"color\": \"labo\"\n        },\n        \"menus\": {\n         \"hoverOrFocus\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"color\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"header\": {\n         \"backgroundColor\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"button\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"primaryNavigation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"secondaryNavigation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"search\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"content\": {\n         \"screen\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"container\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"header\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"body\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"bordersAndDividers\": {\n         \"color\": \"Ut in ut deserunt\"\n        }\n       },\n       \"history\": {\n        \"createdDate\": \"2011-06-06T08:44:11.172Z\"\n       }\n      }\n     },\n     \"when\": \"1945-08-01T02:42:30.892Z\",\n     \"friendlyWhen\": \"quis ullamco ea\",\n     \"message\": \"elit sed aute\",\n     \"number\": -24542201,\n     \"minorEdit\": true,\n     \"_expandable\": {\n      \"content\": \"minim deserunt\",\n      \"collaborators\": \"reprehenderit culpa non\"\n     },\n     \"_links\": {},\n     \"content\": {\n      \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n     },\n     \"collaborators\": {\n      \"users\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"userKeys\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"_links\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     }\n    },\n    \"previousVersion\": {\n     \"by\": {\n      \"type\": \"anonymous\",\n      \"accountId\": \"cupidatat\",\n      \"accountType\": \"atlassian\",\n      \"email\": \"sunt elit tempor qui\",\n      \"publicName\": \"minim do ullamco\",\n      \"profilePicture\": {\n       \"path\": \"eiusmod dolore sit\",\n       \"width\": -2357080,\n       \"height\": 73392272,\n       \"isDefault\": false\n      },\n      \"displayName\": \"reprehenderit nisi eiusmod\",\n      \"_expandable\": {\n       \"operations\": \"dolor ut\",\n       \"details\": \"ipsum\",\n       \"personalSpace\": \"nostrud ad\"\n      },\n      \"_links\": {},\n      \"username\": \"incididunt exercitation ad\",\n      \"userKey\": \"consequat sunt aliquip nisi cupidatat\",\n      \"operations\": [\n       {\n        \"operation\": \"export\",\n        \"targetType\": \"blogpost\"\n       },\n       {\n        \"operation\": \"use\",\n        \"targetType\": \"application\"\n       }\n      ],\n      \"details\": {\n       \"business\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"personal\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"personalSpace\": {\n       \"id\": -69251239,\n       \"key\": \"aliqua ea adipisicing quis\",\n       \"name\": \"minim laborum Excepteur sint tempor\",\n       \"type\": \"est veniam\",\n       \"status\": \"mollit irure ut laborum\",\n       \"_expandable\": {\n        \"settings\": \"in sint mollit esse tempor\",\n        \"metadata\": \"amet irure culpa ullamco\",\n        \"operations\": \"dolore magna\",\n        \"lookAndFeel\": \"veniam pariatur eu\",\n        \"permissions\": \"consectetur sed sunt nulla\",\n        \"icon\": \"nisi eu dolor ut\",\n        \"description\": \"proident laborum\",\n        \"theme\": \"laboris eu qui\",\n        \"history\": \"officia et ullamco\",\n        \"homepage\": \"irure est\"\n       },\n       \"_links\": {},\n       \"icon\": {\n        \"path\": \"deserunt proident e\",\n        \"width\": -12128831,\n        \"height\": 79931084,\n        \"isDefault\": true\n       },\n       \"description\": {\n        \"plain\": {\n         \"value\": \"qui ipsum exercitation laboris mollit\",\n         \"representation\": \"plain\",\n         \"embeddedContent\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ]\n        },\n        \"view\": {\n         \"value\": \"proident ipsum non in\",\n         \"representation\": \"view\",\n         \"embeddedContent\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ]\n        }\n       },\n       \"homepage\": {\n        \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n       },\n       \"metadata\": {\n        \"labels\": {\n         \"results\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ],\n         \"start\": -9315968,\n         \"limit\": 85082435,\n         \"size\": -1071961,\n         \"_links\": {}\n        }\n       },\n       \"operations\": [\n        {\n         \"operation\": \"update\",\n         \"targetType\": \"space\"\n        },\n        {\n         \"operation\": \"copy\",\n         \"targetType\": \"space\"\n        }\n       ],\n       \"permissions\": [\n        {\n         \"subjects\": {\n          \"_expandable\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"user\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"group\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         },\n         \"operation\": {\n          \"operation\": \"delete\",\n          \"targetType\": \"comment\"\n         },\n         \"anonymousAccess\": false,\n         \"unlicensedAccess\": false\n        },\n        {\n         \"subjects\": {\n          \"_expandable\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"user\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"group\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         },\n         \"operation\": {\n          \"operation\": \"delete\",\n          \"targetType\": \"comment\"\n         },\n         \"anonymousAccess\": false,\n         \"unlicensedAccess\": false\n        }\n       ],\n       \"settings\": {\n        \"routeOverrideEnabled\": true,\n        \"_links\": {}\n       },\n       \"theme\": {},\n       \"lookAndFeel\": {\n        \"headings\": {\n         \"color\": \"elit nisi\"\n        },\n        \"links\": {\n         \"color\": \"dolore adipisicing Excepteur\"\n        },\n        \"menus\": {\n         \"hoverOrFocus\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"color\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"header\": {\n         \"backgroundColor\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"button\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"primaryNavigation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"secondaryNavigation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"search\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"content\": {\n         \"screen\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"container\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"header\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"body\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"bordersAndDividers\": {\n         \"color\": \"est minim dolore\"\n        }\n       },\n       \"history\": {\n        \"createdDate\": \"2011-12-09T16:03:51.887Z\"\n       }\n      }\n     },\n     \"when\": \"1955-06-04T18:09:00.319Z\",\n     \"friendlyWhen\": \"deserunt consectetur mi\",\n     \"message\": \"minim dolore cillum\",\n     \"number\": -3853473,\n     \"minorEdit\": true,\n     \"_expandable\": {\n      \"content\": \"occ\",\n      \"collaborators\": \"irure magna\"\n     },\n     \"_links\": {},\n     \"content\": {\n      \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n     },\n     \"collaborators\": {\n      \"users\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"userKeys\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"_links\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     }\n    },\n    \"contributors\": {\n     \"publishers\": {\n      \"users\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"userKeys\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"_links\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     }\n    },\n    \"nextVersion\": {\n     \"by\": {\n      \"type\": \"known\",\n      \"accountId\": \"est in\",\n      \"accountType\": \"atlassian\",\n      \"email\": \"veniam cupidatat esse\",\n      \"publicName\": \"in\",\n      \"profilePicture\": {\n       \"path\": \"dolore ea pariatur commodo mollit\",\n       \"width\": 13837711,\n       \"height\": 50185201,\n       \"isDefault\": false\n      },\n      \"displayName\": \"deserunt magna culpa\",\n      \"_expandable\": {\n       \"operations\": \"ex elit labore enim est\",\n       \"details\": \"in anim\",\n       \"personalSpace\": \"culpa consectetur consequat\"\n      },\n      \"_links\": {},\n      \"username\": \"fugiat\",\n      \"userKey\": \"ipsum ex qui sunt non\",\n      \"operations\": [\n       {\n        \"operation\": \"use\",\n        \"targetType\": \"space\"\n       },\n       {\n        \"operation\": \"move\",\n        \"targetType\": \"application\"\n       }\n      ],\n      \"details\": {\n       \"business\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"personal\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"personalSpace\": {\n       \"id\": -51430784,\n       \"key\": \"culpa Duis aliquip ad\",\n       \"name\": \"officia magna consectetur\",\n       \"type\": \"elit ullamco\",\n       \"status\": \"minim ut dolore cupidatat dolore\",\n       \"_expandable\": {\n        \"settings\": \"est ipsum\",\n        \"metadata\": \"culpa nulla ad sunt\",\n        \"operations\": \"proident\",\n        \"lookAndFeel\": \"anim reprehenderit laboru\",\n        \"permissions\": \"amet velit ut\",\n        \"icon\": \"eiusmod Ut\",\n        \"description\": \"proident laborum fugiat nisi ea\",\n        \"theme\": \"consectetur laborum\",\n        \"history\": \"Ut ad adipisicing voluptate\",\n        \"homepage\": \"ip\"\n       },\n       \"_links\": {},\n       \"icon\": {\n        \"path\": \"culpa sunt proident non\",\n        \"width\": -52461203,\n        \"height\": 5499193,\n        \"isDefault\": true\n       },\n       \"description\": {\n        \"plain\": {\n         \"value\": \"enim\",\n         \"representation\": \"plain\",\n         \"embeddedContent\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ]\n        },\n        \"view\": {\n         \"value\": \"mollit incididunt tempo\",\n         \"representation\": \"view\",\n         \"embeddedContent\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ]\n        }\n       },\n       \"homepage\": {\n        \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n       },\n       \"metadata\": {\n        \"labels\": {\n         \"results\": [\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         ],\n         \"start\": -2876141,\n         \"limit\": 64905986,\n         \"size\": -50011666,\n         \"_links\": {}\n        }\n       },\n       \"operations\": [\n        {\n         \"operation\": \"update\",\n         \"targetType\": \"application\"\n        },\n        {\n         \"operation\": \"purge\",\n         \"targetType\": \"space\"\n        }\n       ],\n       \"permissions\": [\n        {\n         \"subjects\": {\n          \"_expandable\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"user\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"group\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         },\n         \"operation\": {\n          \"operation\": \"move\",\n          \"targetType\": \"application\"\n         },\n         \"anonymousAccess\": false,\n         \"unlicensedAccess\": false\n        },\n        {\n         \"subjects\": {\n          \"_expandable\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"user\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"group\": {\n           \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n         },\n         \"operation\": {\n          \"operation\": \"purge\",\n          \"targetType\": \"page\"\n         },\n         \"anonymousAccess\": false,\n         \"unlicensedAccess\": false\n        }\n       ],\n       \"settings\": {\n        \"routeOverrideEnabled\": true,\n        \"_links\": {}\n       },\n       \"theme\": {},\n       \"lookAndFeel\": {\n        \"headings\": {\n         \"color\": \"in adipisicing Lorem fugiat\"\n        },\n        \"links\": {\n         \"color\": \"in sunt tempor esse nostrud\"\n        },\n        \"menus\": {\n         \"hoverOrFocus\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"color\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"header\": {\n         \"backgroundColor\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"button\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"primaryNavigation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"secondaryNavigation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"search\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"content\": {\n         \"screen\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"container\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"header\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"body\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"bordersAndDividers\": {\n         \"color\": \"ut\"\n        }\n       },\n       \"history\": {\n        \"createdDate\": \"1961-08-12T15:40:44.956Z\"\n       }\n      }\n     },\n     \"when\": \"1958-10-20T22:58:34.705Z\",\n     \"friendlyWhen\": \"eu nisi reprehenderit\",\n     \"message\": \"dolore mollit qui nisi\",\n     \"number\": 12795680,\n     \"minorEdit\": true,\n     \"_expandable\": {\n      \"content\": \"nostrud eiusmod aliqua\",\n      \"collaborators\": \"ullamco amet proid\"\n     },\n     \"_links\": {},\n     \"content\": {\n      \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n     },\n     \"collaborators\": {\n      \"users\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"userKeys\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"_links\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     }\n    },\n    \"_expandable\": {\n     \"lastUpdated\": \"Ut non\",\n     \"previousVersion\": \"enim\",\n     \"contributors\": \"elit tempor\",\n     \"nextVersion\": \"id eiusmod quis officia\"\n    },\n    \"_links\": {}\n   },\n   \"version\": {\n    \"by\": {\n     \"type\": \"user\",\n     \"accountId\": \"voluptate nulla occaecat officia\",\n     \"accountType\": \"atlassian\",\n     \"email\": \"eiusmod officia aliquip esse dolore\",\n     \"publicName\": \"dolore veniam nulla nisi\",\n     \"profilePicture\": {\n      \"path\": \"ad consequat\",\n      \"width\": 38834800,\n      \"height\": -75133319,\n      \"isDefault\": false\n     },\n     \"displayName\": \"sed ex veniam officia dolore\",\n     \"_expandable\": {\n      \"operations\": \"enim culpa minim do ut\",\n      \"details\": \"enim anim elit do amet\",\n      \"personalSpace\": \"mollit Ut labore in\"\n     },\n     \"_links\": {},\n     \"username\": \"mollit ea eiusmod non enim\",\n     \"userKey\": \"id tempor et\",\n     \"operations\": [\n      {\n       \"operation\": \"purge_version\",\n       \"targetType\": \"attachment\"\n      },\n      {\n       \"operation\": \"copy\",\n       \"targetType\": \"blogpost\"\n      }\n     ],\n     \"details\": {\n      \"business\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"personal\": {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     },\n     \"personalSpace\": {\n      \"id\": -15453572,\n      \"key\": \"do\",\n      \"name\": \"eu sed\",\n      \"type\": \"esse in aute\",\n      \"status\": \"nulla eu\",\n      \"_expandable\": {\n       \"settings\": \"amet incididunt ea\",\n       \"metadata\": \"Lorem consequat eu aliquip\",\n       \"operations\": \"veniam eu \",\n       \"lookAndFeel\": \"quis aliqua minim cillum\",\n       \"permissions\": \"in\",\n       \"icon\": \"nulla eiusmod\",\n       \"description\": \"in non\",\n       \"theme\": \"ea Lorem ut\",\n       \"history\": \"qui ut aute amet\",\n       \"homepage\": \"proident aute eiusmod \"\n      },\n      \"_links\": {},\n      \"icon\": {\n       \"path\": \"sed\",\n       \"width\": -10220941,\n       \"height\": 16963136,\n       \"isDefault\": true\n      },\n      \"description\": {\n       \"plain\": {\n        \"value\": \"dolore incididunt nisi nulla\",\n        \"representation\": \"plain\",\n        \"embeddedContent\": [\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        ]\n       },\n       \"view\": {\n        \"value\": \"deserunt Excepteur\",\n        \"representation\": \"view\",\n        \"embeddedContent\": [\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        ]\n       }\n      },\n      \"homepage\": {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      },\n      \"metadata\": {\n       \"labels\": {\n        \"results\": [\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        ],\n        \"start\": -31375967,\n        \"limit\": 41711339,\n        \"size\": -9837808,\n        \"_links\": {}\n       }\n      },\n      \"operations\": [\n       {\n        \"operation\": \"use\",\n        \"targetType\": \"space\"\n       },\n       {\n        \"operation\": \"copy\",\n        \"targetType\": \"blogpost\"\n       }\n      ],\n      \"permissions\": [\n       {\n        \"subjects\": {\n         \"_expandable\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"user\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"group\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"operation\": {\n         \"operation\": \"export\",\n         \"targetType\": \"comment\"\n        },\n        \"anonymousAccess\": false,\n        \"unlicensedAccess\": false\n       },\n       {\n        \"subjects\": {\n         \"_expandable\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"user\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         },\n         \"group\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n         }\n        },\n        \"operation\": {\n         \"operation\": \"restore\",\n         \"targetType\": \"application\"\n        },\n        \"anonymousAccess\": false,\n        \"unlicensedAccess\": false\n       }\n      ],\n      \"settings\": {\n       \"routeOverrideEnabled\": true,\n       \"_links\": {}\n      },\n      \"theme\": {},\n      \"lookAndFeel\": {\n       \"headings\": {\n        \"color\": \"nisi\"\n       },\n       \"links\": {\n        \"color\": \"id qui irure\"\n       },\n       \"menus\": {\n        \"hoverOrFocus\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"color\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n       },\n       \"header\": {\n        \"backgroundColor\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"button\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"primaryNavigation\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"secondaryNavigation\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"search\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n       },\n       \"content\": {\n        \"screen\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"container\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"header\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"body\": {\n         \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n       },\n       \"bordersAndDividers\": {\n        \"color\": \"ad\"\n       }\n      },\n      \"history\": {\n       \"createdDate\": \"1989-04-24T22:21:06.323Z\"\n      }\n     }\n    },\n    \"when\": \"1944-11-06T16:31:25.950Z\",\n    \"friendlyWhen\": \"nulla\",\n    \"message\": \"consectetur et\",\n    \"number\": -32204722,\n    \"minorEdit\": false,\n    \"_expandable\": {\n     \"content\": \"laborum enim\",\n     \"collaborators\": \"adipisicing nulla\"\n    },\n    \"_links\": {},\n    \"content\": {\n     \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n    },\n    \"collaborators\": {\n     \"users\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"userKeys\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"_links\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"ancestors\": [\n    {\n     \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n    },\n    {\n     \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n    }\n   ],\n   \"operations\": [\n    {\n     \"operation\": \"update\",\n     \"targetType\": \"page\"\n    },\n    {\n     \"operation\": \"export\",\n     \"targetType\": \"attachment\"\n    }\n   ],\n   \"children\": {\n    \"_expandable\": {\n     \"attachment\": \"dolore id nostrud\",\n     \"comment\": \"est irure ea velit\",\n     \"page\": \"ni\"\n    },\n    \"_links\": {},\n    \"attachment\": {\n     \"results\": [\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      },\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      }\n     ],\n     \"start\": -27568207,\n     \"limit\": 48124922,\n     \"size\": -84587001,\n     \"_links\": {}\n    },\n    \"comment\": {\n     \"results\": [\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      },\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      }\n     ],\n     \"start\": 89974377,\n     \"limit\": -98089646,\n     \"size\": 95871339,\n     \"_links\": {}\n    },\n    \"page\": {\n     \"results\": [\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      },\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      }\n     ],\n     \"start\": -59879984,\n     \"limit\": -41577081,\n     \"size\": -11068095,\n     \"_links\": {}\n    }\n   },\n   \"childTypes\": {\n    \"_expandable\": {\n     \"all\": \"ut\",\n     \"attachment\": \"consectetur amet eiusmod mollit\",\n     \"comment\": \"elit est Ut cillum\",\n     \"page\": \"pr\"\n    },\n    \"attachment\": {\n     \"value\": false,\n     \"_links\": {}\n    },\n    \"comment\": {\n     \"value\": false,\n     \"_links\": {}\n    },\n    \"page\": {\n     \"value\": false,\n     \"_links\": {}\n    }\n   },\n   \"descendants\": {\n    \"_expandable\": {\n     \"attachment\": \"nostrud pariatur\",\n     \"comment\": \"cillum nostrud tempor eiusmod\",\n     \"page\": \"est mollit eiusmod\"\n    },\n    \"_links\": {},\n    \"attachment\": {\n     \"results\": [\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      },\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      }\n     ],\n     \"start\": 28143312,\n     \"limit\": -2471694,\n     \"size\": -6394417,\n     \"_links\": {}\n    },\n    \"comment\": {\n     \"results\": [\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      },\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      }\n     ],\n     \"start\": 22024573,\n     \"limit\": 87455835,\n     \"size\": 18064087,\n     \"_links\": {}\n    },\n    \"page\": {\n     \"results\": [\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      },\n      {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      }\n     ],\n     \"start\": 20910964,\n     \"limit\": 50359145,\n     \"size\": -23723432,\n     \"_links\": {}\n    }\n   },\n   \"container\": {},\n   \"body\": {\n    \"_expandable\": {\n     \"editor\": \"proident aute\",\n     \"view\": \"dolore in dolor nisi\",\n     \"export_view\": \"et eiusmod\",\n     \"styled_view\": \"aliquip sed ex deserunt\",\n     \"storage\": \"veniam ut eu\",\n     \"editor2\": \"cupidatat eiusmod deserunt voluptate\",\n     \"anonymous_export_view\": \"amet dolor culpa\"\n    }\n   },\n   \"restrictions\": {\n    \"_links\": {},\n    \"read\": {\n     \"operation\": \"purge_version\",\n     \"_expandable\": {\n      \"restrictions\": \"tempor fugiat ipsum est Duis\",\n      \"content\": \"elit\"\n     },\n     \"_links\": {},\n     \"restrictions\": {\n      \"user\": {\n       \"results\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"start\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"limit\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"size\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"group\": {\n       \"results\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"start\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"limit\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"size\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"_expandable\": {\n       \"user\": \"tempor commodo nulla qui\",\n       \"group\": \"id reprehenderit est cupidatat\"\n      }\n     },\n     \"content\": {\n      \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n     }\n    },\n    \"update\": {\n     \"operation\": \"read\",\n     \"_expandable\": {\n      \"restrictions\": \"Excepteur do mollit\",\n      \"content\": \"reprehenderit labore\"\n     },\n     \"_links\": {},\n     \"restrictions\": {\n      \"user\": {\n       \"results\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"start\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"limit\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"size\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"group\": {\n       \"results\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"start\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"limit\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"size\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      \"_expandable\": {\n       \"user\": \"aliquip dolore ad ex\",\n       \"group\": \"tempor magna ea consequat\"\n      }\n     },\n     \"content\": {\n      \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n     }\n    }\n   },\n   \"_links\": {}\n  }\n ],\n \"start\": -67365052,\n \"limit\": -16771933,\n \"size\": 14860140,\n \"_links\": {}\n}"
    },
    {
      "name": "Returned if;\n\n- Attachments are disabled.\n- The calling user does not have permission to add attachments to the\ncontent.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": {
              "content": "Added as a part of security scheme: oauth2",
              "type": "text/plain"
            },
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/content/:id/child/attachment?status=current",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "content",
            ":id",
            "child",
            "attachment"
          ],
          "query": [
            {
              "key": "status",
              "value": "current"
            }
          ],
          "variable": [
            {
              "key": "id"
            }
          ]
        }
      },
      "status": "Forbidden",
      "code": 403,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "Returned if;\n\n- The requested content is not found.\n- The user does not have permission to view it.\n- The attachment exceeds the maximum configured attachment size.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": {
              "content": "Added as a part of security scheme: oauth2",
              "type": "text/plain"
            },
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/content/:id/child/attachment?status=current",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "content",
            ":id",
            "child",
            "attachment"
          ],
          "query": [
            {
              "key": "status",
              "value": "current"
            }
          ],
          "variable": [
            {
              "key": "id"
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}