Chilkat Online Tools

DataFlex / Atlassian Confluence Cloud / Search content

Back to Collection Items

Use ChilkatAx-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vQueryParams
    Handle hoQueryParams
    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(cComChilkatJsonObject)) To hoQueryParams
    If (Not(IsComObjectCreated(hoQueryParams))) Begin
        Send CreateComObject of hoQueryParams
    End
    Get ComUpdateString Of hoQueryParams "cql" "<string>" To iSuccess
    Get ComUpdateString Of hoQueryParams "cqlcontext" "<string>" To iSuccess
    Get ComUpdateString Of hoQueryParams "cursor" "<string>" To iSuccess
    Get ComUpdateInt Of hoQueryParams "limit" 25 To iSuccess
    Get ComUpdateString Of hoQueryParams "includeArchivedSpaces" "false" To iSuccess

    // Adds the "Authorization: Bearer <access_token>" header.
    Set ComAuthToken Of hoHttp To "<access_token>"

    Get pvComObject of hoQueryParams to vQueryParams
    Get ComQuickRequestParams Of hoHttp "GET" "https://your-domain.atlassian.net/wiki/rest/api/search" vQueryParams 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 -G -d "cql=%3Cstring%3E"
	-d "cqlcontext=%3Cstring%3E"
	-d "cursor=%3Cstring%3E"
	-d "limit=25"
	-d "includeArchivedSpaces=false"
	-H "Authorization: Bearer <access_token>"
https://your-domain.atlassian.net/wiki/rest/api/search

Postman Collection Item JSON

{
  "name": "Search content",
  "request": {
    "auth": {
      "type": "oauth2"
    },
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{baseUrl}}/api/search?cql=<string>&cqlcontext=<string>&cursor=<string>&limit=25&includeArchivedSpaces=false",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "search"
      ],
      "query": [
        {
          "key": "cql",
          "value": "<string>",
          "description": "(Required) The CQL query to be used for the search. See\n[Advanced Searching using CQL](https://developer.atlassian.com/cloud/confluence/advanced-searching-using-cql/)\nfor instructions on how to build a CQL query."
        },
        {
          "key": "cqlcontext",
          "value": "<string>",
          "description": "The space, content, and content status to execute the search\nagainst.\n\n- `spaceKey` Key of the space to search against. Optional.\n- `contentId` ID of the content to search against. Optional. Must be\nin the space specified by `spaceKey`.\n- `contentStatuses` Content statuses to search against. Optional.\n\nSpecify these values in an object. For example,\n`cqlcontext={%22spaceKey%22:%22TEST%22, %22contentId%22:%22123%22}`"
        },
        {
          "key": "cursor",
          "value": "<string>",
          "description": "Pointer to a set of search results, returned as part of the `next` or `prev` URL from the previous search call."
        },
        {
          "key": "limit",
          "value": "25",
          "description": "The maximum number of content objects to return per page.\nNote, this may be restricted by fixed system limits."
        },
        {
          "key": "includeArchivedSpaces",
          "value": "false",
          "description": "Include content from archived spaces in the results."
        }
      ]
    },
    "description": "Searches for content using the\n[Confluence Query Language (CQL)](https://developer.atlassian.com/cloud/confluence/advanced-searching-using-cql/)\n\nExample initial call:\n```\nhttps://your-domain.atlassian.net/wiki/rest/api/search?cql=type=page&limit=25\n```\n\nExample response:\n```\n{\n  \"results\": [\n    { ... },\n    { ... },\n    ...\n    { ... }\n  ],\n  \"limit\": 25,\n  \"size\": 25,\n  ...\n  \"_links\": {\n    \"base\": \"<url>\",\n    \"context\": \"<url>\",\n    \"next\": \"/rest/api/search?cql=type=page&limit=25&cursor=raNDoMsTRiNg\",\n    \"self\": \"<url>\"\n  }\n}\n```\n\nWhen additional results are available, returns `next` and `prev` URLs to retrieve them in subsequent calls. The URLs each contain a cursor that points to the appropriate set of results. Use `limit` to specify the number of results returned in each call.\n\nExample subsequent call (taken from example response):\n```\nhttps://your-domain.atlassian.net/wiki/rest/api/search?cql=type=page&limit=25&cursor=raNDoMsTRiNg\n```\nThe response to this will have a `prev` URL similar to the `next` in the example response.\n\n**[Permissions](https://confluence.atlassian.com/x/_AozKw) required**:\nPermission to view the entities. Note, only entities that the user has\npermission to view will be returned."
  },
  "response": [
    {
      "name": "Returned if the requested results are returned.",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": {
              "content": "Added as a part of security scheme: oauth2",
              "type": "text/plain"
            },
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/search?cql=<string>&cqlcontext=<string>&cursor=<string>&limit=25&includeArchivedSpaces=false",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "search"
          ],
          "query": [
            {
              "key": "cql",
              "value": "<string>"
            },
            {
              "key": "cqlcontext",
              "value": "<string>"
            },
            {
              "key": "cursor",
              "value": "<string>"
            },
            {
              "key": "limit",
              "value": "25"
            },
            {
              "key": "includeArchivedSpaces",
              "value": "false"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"results\": [\n  {\n   \"content\": {\n    \"id\": \"aliqua commodo dolor non\",\n    \"type\": \"par\",\n    \"status\": \"incididunt pariatur id\",\n    \"title\": \"enim deserunt eu\",\n    \"_expandable\": {\n     \"childTypes\": \"Ut\",\n     \"container\": \"commodo in ad laboris ipsum\",\n     \"metadata\": \"laboris do\",\n     \"operations\": \"Duis\",\n     \"children\": \"in esse adipisicing\",\n     \"restrictions\": \"ex pariatur\",\n     \"history\": \"eu officia\",\n     \"ancestors\": \"pariatur sed\",\n     \"body\": \"deserunt nisi nostrud\",\n     \"version\": \"sint cillum\",\n     \"descendants\": \"dolor\",\n     \"space\": \"voluptate\"\n    },\n    \"space\": {\n     \"id\": 11170177,\n     \"key\": \"qui labore velit ex\",\n     \"name\": \"nisi exercitation est\",\n     \"type\": \"adipisicing cupidatat\",\n     \"status\": \"repre\",\n     \"_expandable\": {\n      \"settings\": \"ex\",\n      \"metadata\": \"velit adipisicing magna\",\n      \"operations\": \"voluptate dolore\",\n      \"lookAndFeel\": \"ex exercitation\",\n      \"permissions\": \"exercitation\",\n      \"icon\": \"minim adipisicing laboris amet quis\",\n      \"description\": \"eu exercitation\",\n      \"theme\": \"velit fugiat\",\n      \"history\": \"ut Lorem\",\n      \"homepage\": \"cupidatat ad Excepteur nisi esse\"\n     },\n     \"_links\": {},\n     \"icon\": {\n      \"path\": \"ad consequat id elit aliqua\",\n      \"width\": -37896481,\n      \"height\": -38174251,\n      \"isDefault\": true\n     },\n     \"description\": {\n      \"plain\": {\n       \"value\": \"in aliquip anim\",\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\": \"nisi\",\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\": -77551448,\n       \"limit\": 76168289,\n       \"size\": 13730440,\n       \"_links\": {}\n      }\n     },\n     \"operations\": [\n      {\n       \"operation\": \"update\",\n       \"targetType\": \"application\"\n      },\n      {\n       \"operation\": \"move\",\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\": \"purge_version\",\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\": \"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\": \"sunt sed\"\n      },\n      \"links\": {\n       \"color\": \"pariatur eu Duis\"\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 voluptate\"\n      }\n     },\n     \"history\": {\n      \"createdDate\": \"1987-08-03T12:34:17.881Z\"\n     }\n    },\n    \"history\": {\n     \"latest\": true,\n     \"createdBy\": {\n      \"type\": \"user\",\n      \"accountId\": \"do aliquip laboris aute Lorem\",\n      \"accountType\": \"atlassian\",\n      \"email\": \"irure minim do deserunt sint\",\n      \"publicName\": \"\",\n      \"profilePicture\": {\n       \"path\": \"Lorem laboris aliquip\",\n       \"width\": 6712497,\n       \"height\": -50416789,\n       \"isDefault\": true\n      },\n      \"displayName\": \"ut sed\",\n      \"_expandable\": {\n       \"operations\": \"voluptate sit culpa\",\n       \"details\": \"labore\",\n       \"personalSpace\": \"culpa qui proident\"\n      },\n      \"_links\": {},\n      \"username\": \"ad\",\n      \"userKey\": \"quis\",\n      \"operations\": [\n       {\n        \"operation\": \"purge_version\",\n        \"targetType\": \"blogpost\"\n       },\n       {\n        \"operation\": \"delete\",\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\": -47028358,\n       \"key\": \"officia quis amet\",\n       \"name\": \"aliqua et nisi enim\",\n       \"type\": \"est enim id dolore\",\n       \"status\": \"quis esse est nisi\",\n       \"_expandable\": {\n        \"settings\": \"incididunt anim do\",\n        \"metadata\": \"aute dolor\",\n        \"operations\": \"in cupidatat qui et\",\n        \"lookAndFeel\": \"ut nostrud quis\",\n        \"permissions\": \"do aute et reprehenderit\",\n        \"icon\": \"Duis nostrud aute\",\n        \"description\": \"elit irure aliqua\",\n        \"theme\": \"Duis\",\n        \"history\": \"voluptate elit\",\n        \"homepage\": \"anim enim Lorem\"\n       },\n       \"_links\": {},\n       \"icon\": {\n        \"path\": \"in dolor aute pariatur\",\n        \"width\": 75404186,\n        \"height\": 8424708,\n        \"isDefault\": false\n       },\n       \"description\": {\n        \"plain\": {\n         \"value\": \"aliqui\",\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\": \"irure\",\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\": -78847517,\n         \"limit\": 26692806,\n         \"size\": 60782990,\n         \"_links\": {}\n        }\n       },\n       \"operations\": [\n        {\n         \"operation\": \"export\",\n         \"targetType\": \"application\"\n        },\n        {\n         \"operation\": \"purge_version\",\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\": \"use\",\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\": \"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\": \"in\"\n        },\n        \"links\": {\n         \"color\": \"aliqua aliquip incididunt\"\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\": \"occaecat dolore nisi ad\"\n        }\n       },\n       \"history\": {\n        \"createdDate\": \"1974-04-23T10:20:46.781Z\"\n       }\n      }\n     },\n     \"createdDate\": \"2006-07-02T22:02:37.872Z\",\n     \"lastUpdated\": {\n      \"by\": {\n       \"type\": \"unknown\",\n       \"accountId\": \"culpa tempor reprehenderit non\",\n       \"accountType\": \"app (if this user is a bot user created on behalf of an Atlassian app)\",\n       \"email\": \"ea\",\n       \"publicName\": \"elit dolore Excepteur\",\n       \"profilePicture\": {\n        \"path\": \"deserunt\",\n        \"width\": 73968675,\n        \"height\": 68254753,\n        \"isDefault\": false\n       },\n       \"displayName\": \"magna\",\n       \"_expandable\": {\n        \"operations\": \"aute in nisi minim\",\n        \"details\": \"elit esse aliqua\",\n        \"personalSpace\": \"dolore amet veniam\"\n       },\n       \"_links\": {},\n       \"username\": \"pariatur mollit ad veniam\",\n       \"userKey\": \"veniam magna culpa Lorem\",\n       \"operations\": [\n        {\n         \"operation\": \"update\",\n         \"targetType\": \"blogpost\"\n        },\n        {\n         \"operation\": \"purge_version\",\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\": 29837267,\n        \"key\": \"pariatur nostrud aute commodo\",\n        \"name\": \"ut nisi elit\",\n        \"type\": \"fugiat ipsum exercitation nostru\",\n        \"status\": \"Exce\",\n        \"_expandable\": {\n         \"settings\": \"velit reprehenderit commodo dolore\",\n         \"metadata\": \"magna ea laborum dolore id\",\n         \"operations\": \"eu aute ex\",\n         \"lookAndFeel\": \"irure commodo\",\n         \"permissions\": \"ullamco exercitation voluptate\",\n         \"icon\": \"ipsum ut mollit\",\n         \"description\": \"laborum Ut id irure\",\n         \"theme\": \"qui mollit i\",\n         \"history\": \"reprehenderit officia\",\n         \"homepage\": \"ad\"\n        },\n        \"_links\": {},\n        \"icon\": {\n         \"path\": \"et\",\n         \"width\": -22297185,\n         \"height\": -79012653,\n         \"isDefault\": true\n        },\n        \"description\": {\n         \"plain\": {\n          \"value\": \"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         \"view\": {\n          \"value\": \"sunt culpa ut commodo\",\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\": 49992118,\n          \"limit\": 2332340,\n          \"size\": 91747294,\n          \"_links\": {}\n         }\n        },\n        \"operations\": [\n         {\n          \"operation\": \"purge_version\",\n          \"targetType\": \"page\"\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\": \"copy\",\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\": \"dolore amet conse\"\n         },\n         \"links\": {\n          \"color\": \"Ut aute aliquip\"\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\": \"in nostrud fu\"\n         }\n        },\n        \"history\": {\n         \"createdDate\": \"1949-09-15T16:41:35.705Z\"\n        }\n       }\n      },\n      \"when\": \"2006-12-01T17:02:48.613Z\",\n      \"friendlyWhen\": \"est proident\",\n      \"message\": \"dolore proident ad offic\",\n      \"number\": 35419215,\n      \"minorEdit\": false,\n      \"_expandable\": {\n       \"content\": \"amet Ut ea in\",\n       \"collaborators\": \"sed dolore mollit deserunt ea\"\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\": \"nisi\",\n       \"accountType\": \"app (if this user is a bot user created on behalf of an Atlassian app)\",\n       \"email\": \"velit laborum est dolore\",\n       \"publicName\": \"magna fugiat exercitation\",\n       \"profilePicture\": {\n        \"path\": \"nostrud id esse non est\",\n        \"width\": -41399681,\n        \"height\": -21659405,\n        \"isDefault\": true\n       },\n       \"displayName\": \"labore ea irure\",\n       \"_expandable\": {\n        \"operations\": \"nisi Ut est nulla adipisicing\",\n        \"details\": \"in e\",\n        \"personalSpace\": \"eu occaeca\"\n       },\n       \"_links\": {},\n       \"username\": \"officia irure ipsum exercitation\",\n       \"userKey\": \"veniam ex\",\n       \"operations\": [\n        {\n         \"operation\": \"move\",\n         \"targetType\": \"blogpost\"\n        },\n        {\n         \"operation\": \"delete\",\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\": -57789638,\n        \"key\": \"cillum sunt Excepteur\",\n        \"name\": \"ea Duis in\",\n        \"type\": \"ullamco sit\",\n        \"status\": \"aute non dolor\",\n        \"_expandable\": {\n         \"settings\": \"qui Lorem\",\n         \"metadata\": \"Duis occaecat minim id\",\n         \"operations\": \"est cillum velit nulla\",\n         \"lookAndFeel\": \"tempor\",\n         \"permissions\": \"ut fugiat laboris\",\n         \"icon\": \"nisi\",\n         \"description\": \"veniam mollit exercitation sed\",\n         \"theme\": \"adipisicing sunt ut ex\",\n         \"history\": \"Lorem\",\n         \"homepage\": \"et id\"\n        },\n        \"_links\": {},\n        \"icon\": {\n         \"path\": \"elit anim fugiat in cillum\",\n         \"width\": 14578276,\n         \"height\": -89499036,\n         \"isDefault\": true\n        },\n        \"description\": {\n         \"plain\": {\n          \"value\": \"sed\",\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\": \"non velit irure 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        },\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\": 82962228,\n          \"limit\": 75972338,\n          \"size\": -58121314,\n          \"_links\": {}\n         }\n        },\n        \"operations\": [\n         {\n          \"operation\": \"read\",\n          \"targetType\": \"blogpost\"\n         },\n         {\n          \"operation\": \"delete\",\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\": \"copy\",\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\": \"update\",\n           \"targetType\": \"space\"\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\": \"vol\"\n         },\n         \"links\": {\n          \"color\": \"magna nisi aliqua\"\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\": \"exercitation veniam commodo\"\n         }\n        },\n        \"history\": {\n         \"createdDate\": \"2007-04-14T03:34:50.254Z\"\n        }\n       }\n      },\n      \"when\": \"1949-08-12T00:30:04.650Z\",\n      \"friendlyWhen\": \"ut aliquip nisi laboris\",\n      \"message\": \"quis adipisicing cillum\",\n      \"number\": -82219268,\n      \"minorEdit\": true,\n      \"_expandable\": {\n       \"content\": \"ad Ut cillu\",\n       \"collaborators\": \"esse dolor eiusmod\"\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\": \"user\",\n       \"accountId\": \"veniam consequat qui commodo\",\n       \"accountType\": \"atlassian\",\n       \"email\": \"veniam \",\n       \"publicName\": \"deserunt in ad velit\",\n       \"profilePicture\": {\n        \"path\": \"aliqua re\",\n        \"width\": 11003642,\n        \"height\": 99744577,\n        \"isDefault\": true\n       },\n       \"displayName\": \"ad ipsum Excepteur\",\n       \"_expandable\": {\n        \"operations\": \"consectetur sit laboris aute do\",\n        \"details\": \"deserunt incididu\",\n        \"personalSpace\": \"nostrud non\"\n       },\n       \"_links\": {},\n       \"username\": \"in sed\",\n       \"userKey\": \"officia enim dolore ex\",\n       \"operations\": [\n        {\n         \"operation\": \"create\",\n         \"targetType\": \"blogpost\"\n        },\n        {\n         \"operation\": \"update\",\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\": -75522059,\n        \"key\": \"ipsum dolor velit non sit\",\n        \"name\": \"et do elit labore\",\n        \"type\": \"exercitation nisi mollit minim id\",\n        \"status\": \"dolore fugiat magna\",\n        \"_expandable\": {\n         \"settings\": \"voluptate dolor laboris \",\n         \"metadata\": \"esse dolore enim\",\n         \"operations\": \"commodo\",\n         \"lookAndFeel\": \"officia amet et reprehenderit cupidatat\",\n         \"permissions\": \"cupidatat laboris\",\n         \"icon\": \"aliqua consequat Ut id sunt\",\n         \"description\": \"amet dolore non aliquip\",\n         \"theme\": \"velit nulla fugiat minim\",\n         \"history\": \"Excepteur veniam\",\n         \"homepage\": \"dolor in commodo enim\"\n        },\n        \"_links\": {},\n        \"icon\": {\n         \"path\": \"Ut ipsum nulla incididunt non\",\n         \"width\": 56945068,\n         \"height\": -47547831,\n         \"isDefault\": false\n        },\n        \"description\": {\n         \"plain\": {\n          \"value\": \"amet adipisicing\",\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\": \"enim 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        },\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\": 15339593,\n          \"limit\": -22477674,\n          \"size\": 59215806,\n          \"_links\": {}\n         }\n        },\n        \"operations\": [\n         {\n          \"operation\": \"delete\",\n          \"targetType\": \"space\"\n         },\n         {\n          \"operation\": \"administer\",\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\": \"export\",\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\": \"copy\",\n           \"targetType\": \"page\"\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\": \"et amet\"\n         },\n         \"links\": {\n          \"color\": \"in pariatur id\"\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\": \"nisi ipsum\"\n         }\n        },\n        \"history\": {\n         \"createdDate\": \"2000-08-22T01:08:47.208Z\"\n        }\n       }\n      },\n      \"when\": \"1968-07-01T08:21:17.143Z\",\n      \"friendlyWhen\": \"mini\",\n      \"message\": \"sit ut tempor\",\n      \"number\": -42553635,\n      \"minorEdit\": false,\n      \"_expandable\": {\n       \"content\": \"laborum cupidatat commodo incididunt cillum\",\n       \"collaborators\": \"id pariatur dolor culpa\"\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\": \"ipsum do\",\n      \"previousVersion\": \"ullamco fugiat dolor proident\",\n      \"contributors\": \"consequat Ut minim occaecat\",\n      \"nextVersion\": \"ullamco nulla reprehenderit dolor veniam\"\n     },\n     \"_links\": {}\n    },\n    \"version\": {\n     \"by\": {\n      \"type\": \"anonymous\",\n      \"accountId\": \"dolor mollit ullamco dolore\",\n      \"accountType\": \"app (if this user is a bot user created on behalf of an Atlassian app)\",\n      \"email\": \"aute occaecat\",\n      \"publicName\": \"anim\",\n      \"profilePicture\": {\n       \"path\": \"in proident laborum ex\",\n       \"width\": 89939758,\n       \"height\": 61439856,\n       \"isDefault\": false\n      },\n      \"displayName\": \"incididunt sed irure eiusmod\",\n      \"_expandable\": {\n       \"operations\": \"cupidatat amet\",\n       \"details\": \"anim occaecat irure enim\",\n       \"personalSpace\": \"sint non Ut sed ipsum\"\n      },\n      \"_links\": {},\n      \"username\": \"minim\",\n      \"userKey\": \"ex labore sit elit esse\",\n      \"operations\": [\n       {\n        \"operation\": \"export\",\n        \"targetType\": \"space\"\n       },\n       {\n        \"operation\": \"create\",\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\": 96647785,\n       \"key\": \"fugiat velit labore\",\n       \"name\": \"non fugiat anim Duis deserunt\",\n       \"type\": \"ipsum dolore aliqua\",\n       \"status\": \"eiusmod\",\n       \"_expandable\": {\n        \"settings\": \"adipisicing minim\",\n        \"metadata\": \"reprehenderit ut sint in Excepteur\",\n        \"operations\": \"ad sed tempor laboris\",\n        \"lookAndFeel\": \"laborum anim velit ex\",\n        \"permissions\": \"c\",\n        \"icon\": \"irure e\",\n        \"description\": \"qui est\",\n        \"theme\": \"adip\",\n        \"history\": \"Duis adipisicing eiusmod anim\",\n        \"homepage\": \"adipisicing veniam\"\n       },\n       \"_links\": {},\n       \"icon\": {\n        \"path\": \"in aute\",\n        \"width\": 52007144,\n        \"height\": 63146473,\n        \"isDefault\": false\n       },\n       \"description\": {\n        \"plain\": {\n         \"value\": \"esse quis\",\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\": \"nisi ullamco ut\",\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\": -65536379,\n         \"limit\": -92820266,\n         \"size\": 57478570,\n         \"_links\": {}\n        }\n       },\n       \"operations\": [\n        {\n         \"operation\": \"export\",\n         \"targetType\": \"space\"\n        },\n        {\n         \"operation\": \"export\",\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\": \"update\",\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\": \"read\",\n          \"targetType\": \"space\"\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\": \"dolore\"\n        },\n        \"links\": {\n         \"color\": \"qui sit Ut ex adipisicing\"\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 elit\"\n        }\n       },\n       \"history\": {\n        \"createdDate\": \"2012-11-03T21:25:51.096Z\"\n       }\n      }\n     },\n     \"when\": \"1992-12-19T21:58:47.635Z\",\n     \"friendlyWhen\": \"voluptate aliquip laboris ad enim\",\n     \"message\": \"dolor qui\",\n     \"number\": 88278191,\n     \"minorEdit\": true,\n     \"_expandable\": {\n      \"content\": \"in mollit ut voluptate\",\n      \"collaborators\": \"veniam 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    \"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\": \"create\",\n      \"targetType\": \"space\"\n     },\n     {\n      \"operation\": \"administer\",\n      \"targetType\": \"page\"\n     }\n    ],\n    \"children\": {\n     \"_expandable\": {\n      \"attachment\": \"Duis dolore et deserunt\",\n      \"comment\": \"deserunt veniam enim\",\n      \"page\": \"ullamco cupidatat laborum aute in\"\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\": -61538338,\n      \"limit\": -99892509,\n      \"size\": -29325756,\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\": 39220281,\n      \"limit\": -37434473,\n      \"size\": 7715506,\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\": -14633400,\n      \"limit\": 44524527,\n      \"size\": -90763380,\n      \"_links\": {}\n     }\n    },\n    \"childTypes\": {\n     \"_expandable\": {\n      \"all\": \"culpa reprehenderit est pariatur labore\",\n      \"attachment\": \"Excepteur dolor qui\",\n      \"comment\": \"sunt ipsum anim\",\n      \"page\": \"non amet\"\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\": \"in consectetur cil\",\n      \"comment\": \"qui consectetur\",\n      \"page\": \"occaecat dolor amet\"\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\": -41608615,\n      \"limit\": 82317044,\n      \"size\": 18435534,\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\": -9837901,\n      \"limit\": -56262486,\n      \"size\": 16492569,\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\": -33825661,\n      \"limit\": -79325786,\n      \"size\": -83306277,\n      \"_links\": {}\n     }\n    },\n    \"container\": {},\n    \"body\": {\n     \"_expandable\": {\n      \"editor\": \"ad\",\n      \"view\": \"nisi repr\",\n      \"export_view\": \"aute sed\",\n      \"styled_view\": \"sint laborum\",\n      \"storage\": \"amet ea aliqua consequat\",\n      \"editor2\": \"in cupidatat sit\",\n      \"anonymous_export_view\": \"Ut esse\"\n     }\n    },\n    \"restrictions\": {\n     \"_links\": {},\n     \"read\": {\n      \"operation\": \"purge\",\n      \"_expandable\": {\n       \"restrictions\": \"ut ad\",\n       \"content\": \"minim dolore 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\": \"ullamco dolore fugiat reprehenderit in\",\n        \"group\": \"aliquip aliqua\"\n       }\n      },\n      \"content\": {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      }\n     },\n     \"update\": {\n      \"operation\": \"use\",\n      \"_expandable\": {\n       \"restrictions\": \"do dolore Lorem culpa\",\n       \"content\": \"occaecat e\"\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\": \"amet\",\n        \"group\": \"magna cupidatat deserunt\"\n       }\n      },\n      \"content\": {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      }\n     }\n    },\n    \"_links\": {}\n   },\n   \"title\": \"nostrud sed voluptate\",\n   \"excerpt\": \"cupidatat ut\",\n   \"url\": \"officia mollit sed cupidatat\",\n   \"resultParentContainer\": {\n    \"title\": \"laborum cillum laboris anim\",\n    \"displayUrl\": \"sit cupidatat nostrud non\"\n   },\n   \"resultGlobalContainer\": {\n    \"title\": \"deserunt ea sunt in ut\",\n    \"displayUrl\": \"commodo cupidatat la\"\n   },\n   \"breadcrumbs\": [\n    {\n     \"label\": \"ex ut\",\n     \"url\": \"amet\",\n     \"separator\": \"labore\"\n    },\n    {\n     \"label\": \"id dolore\",\n     \"url\": \"consectetur in sit ut culpa\",\n     \"separator\": \"occaecat aliquip in sunt\"\n    }\n   ],\n   \"entityType\": \"culpa consectetur\",\n   \"iconCssClass\": \"magna tempor nisi\",\n   \"lastModified\": \"1967-08-29T13:24:29.725Z\",\n   \"friendlyLastModified\": \"non labore irure tempor\"\n  },\n  {\n   \"content\": {\n    \"id\": \"minim eiusmod culpa velit\",\n    \"type\": \"mollit ex reprehenderit dolore eiusmod\",\n    \"status\": \"elit culpa pariatur commodo\",\n    \"title\": \"nisi dolor\",\n    \"_expandable\": {\n     \"childTypes\": \"aliqua cillum deserunt fugiat\",\n     \"container\": \"laboris occaecat\",\n     \"metadata\": \"culpa ut qui\",\n     \"operations\": \"quis in\",\n     \"children\": \"laborum fugiat sit adipisicing magna\",\n     \"restrictions\": \"occaecat adipisicing\",\n     \"history\": \"consequat in\",\n     \"ancestors\": \"tempor ipsum commodo\",\n     \"body\": \"quis non ex do\",\n     \"version\": \"ipsum ullamco deserunt\",\n     \"descendants\": \"est in sint voluptate\",\n     \"space\": \"ex eu\"\n    },\n    \"space\": {\n     \"id\": -50175411,\n     \"key\": \"in incididunt\",\n     \"name\": \"consequat incididunt sit consectetur\",\n     \"type\": \"exercitation qui\",\n     \"status\": \"qui cillum pariatur et\",\n     \"_expandable\": {\n      \"settings\": \"occaecat ex\",\n      \"metadata\": \"cillum ut\",\n      \"operations\": \"nulla con\",\n      \"lookAndFeel\": \"tempor Lorem cupidata\",\n      \"permissions\": \"elit laborum\",\n      \"icon\": \"nulla esse in laborum\",\n      \"description\": \"culpa mollit\",\n      \"theme\": \"dolor sint\",\n      \"history\": \"ex\",\n      \"homepage\": \"Lorem elit occaecat\"\n     },\n     \"_links\": {},\n     \"icon\": {\n      \"path\": \"Excepteur sit incididunt\",\n      \"width\": -37306321,\n      \"height\": 92271381,\n      \"isDefault\": true\n     },\n     \"description\": {\n      \"plain\": {\n       \"value\": \"quis\",\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\": \"culpa deserunt\",\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\": -17725032,\n       \"limit\": -40695281,\n       \"size\": -2036852,\n       \"_links\": {}\n      }\n     },\n     \"operations\": [\n      {\n       \"operation\": \"purge\",\n       \"targetType\": \"attachment\"\n      },\n      {\n       \"operation\": \"restore\",\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\": \"restore\",\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\": \"export\",\n        \"targetType\": \"page\"\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\": \"in\"\n      },\n      \"links\": {\n       \"color\": \"minim cillum\"\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\": \"irure deserunt esse dolor laborum\"\n      }\n     },\n     \"history\": {\n      \"createdDate\": \"1951-03-07T11:09:41.530Z\"\n     }\n    },\n    \"history\": {\n     \"latest\": true,\n     \"createdBy\": {\n      \"type\": \"user\",\n      \"accountId\": \"velit Lorem Excepteur sit occaecat\",\n      \"accountType\": \"app (if this user is a bot user created on behalf of an Atlassian app)\",\n      \"email\": \"dolore reprehenderit\",\n      \"publicName\": \"dolore pariatur sit in\",\n      \"profilePicture\": {\n       \"path\": \"officia reprehenderit dolore labore in\",\n       \"width\": 13178899,\n       \"height\": 6924716,\n       \"isDefault\": true\n      },\n      \"displayName\": \"Ut do pariatur\",\n      \"_expandable\": {\n       \"operations\": \"in\",\n       \"details\": \"sit mollit Excepteur labore\",\n       \"personalSpace\": \"aute amet ullamco ex\"\n      },\n      \"_links\": {},\n      \"username\": \"anim nulla ullamco nisi\",\n      \"userKey\": \"dolor consectetur exercitation dolor\",\n      \"operations\": [\n       {\n        \"operation\": \"purge_version\",\n        \"targetType\": \"attachment\"\n       },\n       {\n        \"operation\": \"administer\",\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\": -85689012,\n       \"key\": \"fugiat\",\n       \"name\": \"irure Lorem labore\",\n       \"type\": \"ipsum magna sunt\",\n       \"status\": \"aliqua dolor\",\n       \"_expandable\": {\n        \"settings\": \"ipsum quis\",\n        \"metadata\": \"sit dolore culpa dolore\",\n        \"operations\": \"incididunt dolore Duis quis minim\",\n        \"lookAndFeel\": \"enim consequat aliquip\",\n        \"permissions\": \"sint fugiat reprehenderit eiusmod\",\n        \"icon\": \"ut minim\",\n        \"description\": \"minim\",\n        \"theme\": \"do non\",\n        \"history\": \"nulla\",\n        \"homepage\": \"adipi\"\n       },\n       \"_links\": {},\n       \"icon\": {\n        \"path\": \"voluptate\",\n        \"width\": -53644145,\n        \"height\": 93125502,\n        \"isDefault\": true\n       },\n       \"description\": {\n        \"plain\": {\n         \"value\": \"in Lorem\",\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\": \"id ea ut in officia\",\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\": -83849442,\n         \"limit\": 36863697,\n         \"size\": -58581922,\n         \"_links\": {}\n        }\n       },\n       \"operations\": [\n        {\n         \"operation\": \"administer\",\n         \"targetType\": \"blogpost\"\n        },\n        {\n         \"operation\": \"purge_version\",\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\": \"read\",\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\": \"copy\",\n          \"targetType\": \"page\"\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\": \"fugiat quis Ut\"\n        },\n        \"links\": {\n         \"color\": \"proident labore consequat 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\": \"ut occaecat mollit et\"\n        }\n       },\n       \"history\": {\n        \"createdDate\": \"1951-11-13T20:35:33.465Z\"\n       }\n      }\n     },\n     \"createdDate\": \"1973-03-20T06:08:10.610Z\",\n     \"lastUpdated\": {\n      \"by\": {\n       \"type\": \"anonymous\",\n       \"accountId\": \"mollit velit cillum ei\",\n       \"accountType\": \"atlassian\",\n       \"email\": \"consequat amet mollit occaecat\",\n       \"publicName\": \"consequat non quis\",\n       \"profilePicture\": {\n        \"path\": \"dolore anim sint quis id\",\n        \"width\": -48735116,\n        \"height\": -7465472,\n        \"isDefault\": false\n       },\n       \"displayName\": \"in deserunt\",\n       \"_expandable\": {\n        \"operations\": \"voluptate ex\",\n        \"details\": \"eiu\",\n        \"personalSpace\": \"qui nostrud sit\"\n       },\n       \"_links\": {},\n       \"username\": \"dolor \",\n       \"userKey\": \"esse qui\",\n       \"operations\": [\n        {\n         \"operation\": \"administer\",\n         \"targetType\": \"comment\"\n        },\n        {\n         \"operation\": \"purge\",\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\": 81226786,\n        \"key\": \"Lorem ad officia nostrud\",\n        \"name\": \"sit dolore aliqua in ex\",\n        \"type\": \"consequat Lorem nulla\",\n        \"status\": \"deserunt magna\",\n        \"_expandable\": {\n         \"settings\": \"velit dolor nulla sit\",\n         \"metadata\": \"ad Ut\",\n         \"operations\": \"i\",\n         \"lookAndFeel\": \"amet proident qui velit\",\n         \"permissions\": \"qui\",\n         \"icon\": \"mollit magna\",\n         \"description\": \"velit dolor\",\n         \"theme\": \"veniam velit\",\n         \"history\": \"qui labore\",\n         \"homepage\": \"qui laborum do\"\n        },\n        \"_links\": {},\n        \"icon\": {\n         \"path\": \"sit consequat ad occaecat est\",\n         \"width\": 90559727,\n         \"height\": 85822128,\n         \"isDefault\": true\n        },\n        \"description\": {\n         \"plain\": {\n          \"value\": \"ullamco et commodo Lorem qui\",\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\": \"sed do\",\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\": 20082380,\n          \"limit\": 64575498,\n          \"size\": -83085930,\n          \"_links\": {}\n         }\n        },\n        \"operations\": [\n         {\n          \"operation\": \"create\",\n          \"targetType\": \"blogpost\"\n         },\n         {\n          \"operation\": \"purge\",\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\": \"administer\",\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\": \"purge\",\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\": \"cillum aute veniam consectetur\"\n         },\n         \"links\": {\n          \"color\": \"est ullamco laborum\"\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\": \"commodo \"\n         }\n        },\n        \"history\": {\n         \"createdDate\": \"1944-12-20T17:57:09.572Z\"\n        }\n       }\n      },\n      \"when\": \"1976-12-27T15:50:31.921Z\",\n      \"friendlyWhen\": \"occaecat\",\n      \"message\": \"est sunt eiusmod cul\",\n      \"number\": 78768804,\n      \"minorEdit\": false,\n      \"_expandable\": {\n       \"content\": \"ipsum in\",\n       \"collaborators\": \"proident\"\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\": \"fugiat labore eiusmod\",\n       \"accountType\": \"atlassian\",\n       \"email\": \"magna dolore laborum\",\n       \"publicName\": \"officia anim in deserunt\",\n       \"profilePicture\": {\n        \"path\": \"adipisicing in\",\n        \"width\": 37457581,\n        \"height\": -45159182,\n        \"isDefault\": true\n       },\n       \"displayName\": \"Ut esse ut conse\",\n       \"_expandable\": {\n        \"operations\": \"amet pariatur nostrud anim\",\n        \"details\": \"esse sint dolor\",\n        \"personalSpace\": \"in et dolor\"\n       },\n       \"_links\": {},\n       \"username\": \"nostrud veniam dolor\",\n       \"userKey\": \"pariatur ut sunt velit\",\n       \"operations\": [\n        {\n         \"operation\": \"read\",\n         \"targetType\": \"page\"\n        },\n        {\n         \"operation\": \"delete\",\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\": 50132931,\n        \"key\": \"dolore adipisicing ullamco tempor quis\",\n        \"name\": \"cupidatat Duis sint\",\n        \"type\": \"elit in nostrud dolo\",\n        \"status\": \"laborum est veniam ipsum\",\n        \"_expandable\": {\n         \"settings\": \"minim sint labore consequat proident\",\n         \"metadata\": \"tempor aliqua adipisicin\",\n         \"operations\": \"Exc\",\n         \"lookAndFeel\": \"dolore tempor mollit quis non\",\n         \"permissions\": \"reprehenderit incididunt sunt occaecat\",\n         \"icon\": \"Duis ea nulla voluptate eu\",\n         \"description\": \"ipsum ut ullamco\",\n         \"theme\": \"ex do\",\n         \"history\": \"anim veniam esse ipsum\",\n         \"homepage\": \"sed et dolore consequat\"\n        },\n        \"_links\": {},\n        \"icon\": {\n         \"path\": \"consequat magna nisi\",\n         \"width\": -97824949,\n         \"height\": -4794788,\n         \"isDefault\": false\n        },\n        \"description\": {\n         \"plain\": {\n          \"value\": \"id minim\",\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\": \"Ut minim nostrud quis\",\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\": 44482327,\n          \"limit\": 52902533,\n          \"size\": -13902375,\n          \"_links\": {}\n         }\n        },\n        \"operations\": [\n         {\n          \"operation\": \"restore\",\n          \"targetType\": \"application\"\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\": \"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\": \"export\",\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\": \"enim velit ea exercitation\"\n         },\n         \"links\": {\n          \"color\": \"Duis laboris 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\": \"in Lorem ipsum\"\n         }\n        },\n        \"history\": {\n         \"createdDate\": \"1947-07-13T10:41:29.660Z\"\n        }\n       }\n      },\n      \"when\": \"1990-03-25T12:57:46.826Z\",\n      \"friendlyWhen\": \"fugiat paria\",\n      \"message\": \"\",\n      \"number\": 60958997,\n      \"minorEdit\": false,\n      \"_expandable\": {\n       \"content\": \"qui dolore veniam aliqua\",\n       \"collaborators\": \"dolore laboris proident ipsum\"\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\": \"culpa incididunt aute officia commodo\",\n       \"accountType\": \"app (if this user is a bot user created on behalf of an Atlassian app)\",\n       \"email\": \"ullamco voluptate\",\n       \"publicName\": \"et consectetur sunt ex incididunt\",\n       \"profilePicture\": {\n        \"path\": \"do mollit quis\",\n        \"width\": -78770328,\n        \"height\": -63628598,\n        \"isDefault\": true\n       },\n       \"displayName\": \"in\",\n       \"_expandable\": {\n        \"operations\": \"ea amet irure consectetur sit\",\n        \"details\": \"ex eiusmod dolor culpa\",\n        \"personalSpace\": \"et elit enim\"\n       },\n       \"_links\": {},\n       \"username\": \"ipsum ad proident\",\n       \"userKey\": \"Lorem sint\",\n       \"operations\": [\n        {\n         \"operation\": \"purge\",\n         \"targetType\": \"attachment\"\n        },\n        {\n         \"operation\": \"read\",\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\": -67670838,\n        \"key\": \"qui\",\n        \"name\": \"cillum tempor\",\n        \"type\": \"ipsum in\",\n        \"status\": \"laborum cillum nostru\",\n        \"_expandable\": {\n         \"settings\": \"anim irure\",\n         \"metadata\": \"elit sed conse\",\n         \"operations\": \"proident nisi Ut irure\",\n         \"lookAndFeel\": \"ipsum dolore nulla commodo\",\n         \"permissions\": \"ut consectetur do dolore\",\n         \"icon\": \"et dolore cupidatat proident\",\n         \"description\": \"et qui Duis\",\n         \"theme\": \"ut velit id officia\",\n         \"history\": \"culpa nisi est cupidatat dolore\",\n         \"homepage\": \"sed\"\n        },\n        \"_links\": {},\n        \"icon\": {\n         \"path\": \"dolore magna\",\n         \"width\": 67917526,\n         \"height\": 47287962,\n         \"isDefault\": true\n        },\n        \"description\": {\n         \"plain\": {\n          \"value\": \"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\": \"qui\",\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\": 55371517,\n          \"limit\": 64961236,\n          \"size\": 53660391,\n          \"_links\": {}\n         }\n        },\n        \"operations\": [\n         {\n          \"operation\": \"use\",\n          \"targetType\": \"page\"\n         },\n         {\n          \"operation\": \"purge\",\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\": \"read\",\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\": \"attachment\"\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\": \"commodo esse id sint\"\n         },\n         \"links\": {\n          \"color\": \"elit laborum\"\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\": \"culpa Duis\"\n         }\n        },\n        \"history\": {\n         \"createdDate\": \"1950-07-31T13:34:34.062Z\"\n        }\n       }\n      },\n      \"when\": \"1974-06-25T14:29:06.518Z\",\n      \"friendlyWhen\": \"esse cupidatat\",\n      \"message\": \"in occaecat\",\n      \"number\": 63724302,\n      \"minorEdit\": false,\n      \"_expandable\": {\n       \"content\": \"exercitation dolor in laboris\",\n       \"collaborators\": \"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\": \"velit aliqua ea in\",\n      \"previousVersion\": \"anim\",\n      \"contributors\": \"aliquip eiusmod nulla do\",\n      \"nextVersion\": \"sit elit velit\"\n     },\n     \"_links\": {}\n    },\n    \"version\": {\n     \"by\": {\n      \"type\": \"user\",\n      \"accountId\": \"qui fugiat\",\n      \"accountType\": \"app (if this user is a bot user created on behalf of an Atlassian app)\",\n      \"email\": \"do\",\n      \"publicName\": \"ex amet\",\n      \"profilePicture\": {\n       \"path\": \"anim officia est\",\n       \"width\": 83739245,\n       \"height\": 32705459,\n       \"isDefault\": true\n      },\n      \"displayName\": \"ullamco voluptate amet\",\n      \"_expandable\": {\n       \"operations\": \"labore dolor nostrud quis eiusmod\",\n       \"details\": \"laboris dolor Ut\",\n       \"personalSpace\": \"mollit cillum dolor voluptate consequat\"\n      },\n      \"_links\": {},\n      \"username\": \"cillum\",\n      \"userKey\": \"adipisicing Duis in quis Excepteur\",\n      \"operations\": [\n       {\n        \"operation\": \"administer\",\n        \"targetType\": \"comment\"\n       },\n       {\n        \"operation\": \"purge\",\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\": -19258429,\n       \"key\": \"eiusmod voluptate\",\n       \"name\": \"sunt sit Lorem aute\",\n       \"type\": \"in consequat officia\",\n       \"status\": \"laborum culpa\",\n       \"_expandable\": {\n        \"settings\": \"Lorem sed comm\",\n        \"metadata\": \"Excepteur commodo\",\n        \"operations\": \"fugiat dolore\",\n        \"lookAndFeel\": \"cillum sunt\",\n        \"permissions\": \"Ut non ullamco consequat eu\",\n        \"icon\": \"ex in officia in\",\n        \"description\": \"velit nulla fugiat dolore nostrud\",\n        \"theme\": \"\",\n        \"history\": \"esse\",\n        \"homepage\": \"dolor minim\"\n       },\n       \"_links\": {},\n       \"icon\": {\n        \"path\": \"labor\",\n        \"width\": 68685339,\n        \"height\": 93845715,\n        \"isDefault\": false\n       },\n       \"description\": {\n        \"plain\": {\n         \"value\": \"est dolor aliqua\",\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\": \"quis mollit Lorem\",\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\": -51098344,\n         \"limit\": 69952204,\n         \"size\": 13065789,\n         \"_links\": {}\n        }\n       },\n       \"operations\": [\n        {\n         \"operation\": \"read\",\n         \"targetType\": \"blogpost\"\n        },\n        {\n         \"operation\": \"move\",\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\": \"space\"\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\": \"attachment\"\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\": \"elit ad minim fugiat\"\n        },\n        \"links\": {\n         \"color\": \"est magna nisi\"\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\": \"mollit consectetur ea exercitation minim\"\n        }\n       },\n       \"history\": {\n        \"createdDate\": \"2016-04-17T15:18:56.635Z\"\n       }\n      }\n     },\n     \"when\": \"1998-02-27T19:08:27.534Z\",\n     \"friendlyWhen\": \"dolor pariatur magna et\",\n     \"message\": \"Lorem labore\",\n     \"number\": -31534340,\n     \"minorEdit\": true,\n     \"_expandable\": {\n      \"content\": \"des\",\n      \"collaborators\": \"ut dolore veniam 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    \"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\": \"read\",\n      \"targetType\": \"application\"\n     },\n     {\n      \"operation\": \"move\",\n      \"targetType\": \"blogpost\"\n     }\n    ],\n    \"children\": {\n     \"_expandable\": {\n      \"attachment\": \"ex dolore mi\",\n      \"comment\": \"sit non voluptate\",\n      \"page\": \"nulla anim dolore 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\": -99699037,\n      \"limit\": 91859923,\n      \"size\": -65533909,\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\": -13436101,\n      \"limit\": 71300814,\n      \"size\": 89442686,\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\": -86473812,\n      \"limit\": 48515695,\n      \"size\": 28633818,\n      \"_links\": {}\n     }\n    },\n    \"childTypes\": {\n     \"_expandable\": {\n      \"all\": \"anim officia eiusmod\",\n      \"attachment\": \"labore elit\",\n      \"comment\": \"labore reprehenderit aliqua quis\",\n      \"page\": \"adipisicing\"\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\": \"reprehenderit sit\",\n      \"comment\": \"et occaecat\",\n      \"page\": \"consequat\"\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\": -9153815,\n      \"limit\": 88342633,\n      \"size\": 11322946,\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\": -16234411,\n      \"limit\": 16432254,\n      \"size\": -44386060,\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\": -83592144,\n      \"limit\": 50265352,\n      \"size\": 86885783,\n      \"_links\": {}\n     }\n    },\n    \"container\": {},\n    \"body\": {\n     \"_expandable\": {\n      \"editor\": \"ut quis\",\n      \"view\": \"est dolore mollit aliquip\",\n      \"export_view\": \"dolore id magna sit dolor\",\n      \"styled_view\": \"occaecat laboris anim Excepteur\",\n      \"storage\": \"quis pariatur irure aliq\",\n      \"editor2\": \"sed Duis ad\",\n      \"anonymous_export_view\": \"do voluptate in\"\n     }\n    },\n    \"restrictions\": {\n     \"_links\": {},\n     \"read\": {\n      \"operation\": \"use\",\n      \"_expandable\": {\n       \"restrictions\": \"ex amet nisi\",\n       \"content\": \"dolor Duis nisi\"\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\": \"nulla occaecat dolore sint commodo\",\n        \"group\": \"sunt culpa irure\"\n       }\n      },\n      \"content\": {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      }\n     },\n     \"update\": {\n      \"operation\": \"copy\",\n      \"_expandable\": {\n       \"restrictions\": \"sunt est\",\n       \"content\": \"labore dolor\"\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\": \"do\",\n        \"group\": \"deserunt exercitation eiusmod cillum\"\n       }\n      },\n      \"content\": {\n       \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n      }\n     }\n    },\n    \"_links\": {}\n   },\n   \"title\": \"proident officia irure aliqua Excepteur\",\n   \"excerpt\": \"Lore\",\n   \"url\": \"enim velit\",\n   \"resultParentContainer\": {\n    \"title\": \"amet consequat ex\",\n    \"displayUrl\": \"tempor qui cillum\"\n   },\n   \"resultGlobalContainer\": {\n    \"title\": \"Excepteur dolore\",\n    \"displayUrl\": \"nisi incididunt proident est\"\n   },\n   \"breadcrumbs\": [\n    {\n     \"label\": \"aute sed exe\",\n     \"url\": \"ut in non qui\",\n     \"separator\": \"tempor\"\n    },\n    {\n     \"label\": \"qui amet dolor sunt\",\n     \"url\": \"elit ex in\",\n     \"separator\": \"amet culpa velit\"\n    }\n   ],\n   \"entityType\": \"ut fu\",\n   \"iconCssClass\": \"cupidatat ut sunt qui laboris\",\n   \"lastModified\": \"1958-10-15T06:54:24.710Z\",\n   \"friendlyLastModified\": \"sunt laboris enim nostrud\"\n  }\n ],\n \"start\": -87268126,\n \"limit\": -71518687,\n \"size\": 81398278,\n \"totalSize\": 62930220,\n \"cqlQuery\": \"labore deserunt in qui\",\n \"searchDuration\": 57368211,\n \"_links\": {}\n}"
    },
    {
      "name": "Returned if the CQL query cannot be parsed.",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": {
              "content": "Added as a part of security scheme: oauth2",
              "type": "text/plain"
            },
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/search?cql=<string>&cqlcontext=<string>&cursor=<string>&limit=25&includeArchivedSpaces=false",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "search"
          ],
          "query": [
            {
              "key": "cql",
              "value": "<string>"
            },
            {
              "key": "cqlcontext",
              "value": "<string>"
            },
            {
              "key": "cursor",
              "value": "<string>"
            },
            {
              "key": "limit",
              "value": "25"
            },
            {
              "key": "includeArchivedSpaces",
              "value": "false"
            }
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "Returned if the calling user does not have permission to access\nConfluence.",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": {
              "content": "Added as a part of security scheme: oauth2",
              "type": "text/plain"
            },
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/search?cql=<string>&cqlcontext=<string>&cursor=<string>&limit=25&includeArchivedSpaces=false",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "search"
          ],
          "query": [
            {
              "key": "cql",
              "value": "<string>"
            },
            {
              "key": "cqlcontext",
              "value": "<string>"
            },
            {
              "key": "cursor",
              "value": "<string>"
            },
            {
              "key": "limit",
              "value": "25"
            },
            {
              "key": "includeArchivedSpaces",
              "value": "false"
            }
          ]
        }
      },
      "status": "Forbidden",
      "code": 403,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}