Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
DECLARE @queryParams int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @queryParams OUT
EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'expand', '<string>'
EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'expand', '<string>'
EXEC sp_OAMethod @queryParams, 'UpdateInt', @success OUT, 'start', 0
EXEC sp_OAMethod @queryParams, 'UpdateInt', @success OUT, 'limit', 10
-- Adds the "Authorization: Bearer <access_token>" header.
EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'
DECLARE @resp int
EXEC sp_OAMethod @http, 'QuickRequestParams', @resp OUT, 'GET', 'https://your-domain.atlassian.net/wiki/rest/api/content/:id/property', @queryParams
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @queryParams
RETURN
END
DECLARE @sbResponseBody int
-- Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbResponseBody OUT
EXEC sp_OAMethod @resp, 'GetBodySb', @success OUT, @sbResponseBody
DECLARE @jResp int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jResp OUT
EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @sbResponseBody
EXEC sp_OASetProperty @jResp, 'EmitCompact', 0
PRINT 'Response Body:'
EXEC sp_OAMethod @jResp, 'Emit', @sTmp0 OUT
PRINT @sTmp0
DECLARE @respStatusCode int
EXEC sp_OAGetProperty @resp, 'StatusCode', @respStatusCode OUT
PRINT 'Response Status Code = ' + @respStatusCode
IF @respStatusCode >= 400
BEGIN
PRINT 'Response Header:'
EXEC sp_OAGetProperty @resp, 'Header', @sTmp0 OUT
PRINT @sTmp0
PRINT 'Failed.'
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @queryParams
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
RETURN
END
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @queryParams
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
END
GO
Curl Command
curl -G -d "expand=%3Cstring%3E"
-d "expand=%3Cstring%3E"
-d "start=0"
-d "limit=10"
-H "Authorization: Bearer <access_token>"
https://your-domain.atlassian.net/wiki/rest/api/content/:id/property
Postman Collection Item JSON
{
"name": "Get content properties",
"request": {
"auth": {
"type": "oauth2"
},
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/api/content/:id/property?expand=<string>&expand=<string>&start=0&limit=10",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"content",
":id",
"property"
],
"query": [
{
"key": "expand",
"value": "<string>",
"description": "A multi-value parameter indicating which properties of the content to\nexpand. By default, the `version` object is expanded.\n\n- `content` returns the content that the property is stored against.\n- `version` returns information about the version of the property, such\nas the version number, when it was created, etc."
},
{
"key": "expand",
"value": "<string>",
"description": "A multi-value parameter indicating which properties of the content to\nexpand. By default, the `version` object is expanded.\n\n- `content` returns the content that the property is stored against.\n- `version` returns information about the version of the property, such\nas the version number, when it was created, etc."
},
{
"key": "start",
"value": "0",
"description": "The starting index of the returned properties."
},
{
"key": "limit",
"value": "10",
"description": "The maximum number of properties to return per page.\nNote, this may be restricted by fixed system limits."
}
],
"variable": [
{
"key": "id",
"value": "<string>",
"type": "string",
"description": "(Required) The ID of the content to be queried for its properties."
}
]
},
"description": "Returns the properties for a piece of content. For more information\nabout content properties, see [Confluence entity properties](https://developer.atlassian.com/cloud/confluence/confluence-entity-properties/).\n\n**[Permissions](https://confluence.atlassian.com/x/_AozKw) required**:\n'View' permission for the space, and permission to view the content if it is a page."
},
"response": [
{
"name": "Returned if the requested properties 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/content/:id/property?expand=<string>&expand=<string>&start=0&limit=10",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"content",
":id",
"property"
],
"query": [
{
"key": "expand",
"value": "<string>"
},
{
"key": "expand",
"value": "<string>"
},
{
"key": "start",
"value": "0"
},
{
"key": "limit",
"value": "10"
}
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"results\": [\n {\n \"id\": 69690419,\n \"key\": \"dolore aliqua eu enim nostrud\",\n \"value\": {},\n \"_links\": {},\n \"version\": {\n \"when\": \"1993-06-15T10:36:33.935Z\",\n \"message\": \"nisi sit sint\",\n \"number\": 99677875,\n \"minorEdit\": false\n },\n \"content\": {\n \"id\": \"occaecat amet deserunt aute\",\n \"type\": \"exercitation consectetur in minim\",\n \"status\": \"elit exer\",\n \"title\": \"do amet\",\n \"_expandable\": {\n \"childTypes\": \"ex cillum in sit\",\n \"container\": \"consectetur Ut ut occaecat\",\n \"metadata\": \"nostrud dolore\",\n \"operations\": \"Ut ea ex veniam\",\n \"children\": \"eiusmod anim amet Excepteur\",\n \"restrictions\": \"qui nisi cupidatat\",\n \"history\": \"nostrud ipsum dolor dolor sunt\",\n \"ancestors\": \"ex labore laborum ut reprehenderit\",\n \"body\": \"cupidatat culpa\",\n \"version\": \"qui sit velit magna id\",\n \"descendants\": \"aut\",\n \"space\": \"sed eiusmod\"\n },\n \"space\": {\n \"id\": -5253520,\n \"key\": \"pariatur et proident\",\n \"name\": \"non nulla\",\n \"type\": \"exercitation\",\n \"status\": \"Excepteur voluptate sed mollit\",\n \"_expandable\": {\n \"settings\": \"magna quis voluptate\",\n \"metadata\": \"ullamco dolore consectetur\",\n \"operations\": \"Excepteur Ut\",\n \"lookAndFeel\": \"nulla id est magna\",\n \"permissions\": \"esse Lorem incididunt amet\",\n \"icon\": \"\",\n \"description\": \"enim occaecat laborum\",\n \"theme\": \"consequat do ipsum\",\n \"history\": \"anim sed\",\n \"homepage\": \"dolore id labore\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"exercitation\",\n \"width\": -79621796,\n \"height\": -90956905,\n \"isDefault\": false\n },\n \"description\": {\n \"plain\": {\n \"value\": \"Ut cillum 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\": \"consequat deserunt cillum ut\",\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\": -338321,\n \"limit\": -43546067,\n \"size\": -10733349,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"restore\",\n \"targetType\": \"blogpost\"\n },\n {\n \"operation\": \"delete\",\n \"targetType\": \"comment\"\n }\n ],\n \"permissions\": [\n {\n \"subjects\": {\n \"_expandable\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"user\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"group\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"operation\": {\n \"operation\": \"purge\",\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\": \"read\",\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\": \"ut officia\"\n },\n \"links\": {\n \"color\": \"do Lorem\"\n },\n \"menus\": {\n \"hoverOrFocus\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"color\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"header\": {\n \"backgroundColor\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"button\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"primaryNavigation\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"secondaryNavigation\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"search\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"content\": {\n \"screen\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"container\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"header\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"body\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"bordersAndDividers\": {\n \"color\": \"culpa quis\"\n }\n },\n \"history\": {\n \"createdDate\": \"1963-10-13T14:46:30.249Z\"\n }\n },\n \"history\": {\n \"latest\": false,\n \"createdBy\": {\n \"type\": \"user\",\n \"accountId\": \"in voluptate fugiat\",\n \"accountType\": \"atlassian\",\n \"email\": \"proident ea aute\",\n \"publicName\": \"anim velit ex\",\n \"profilePicture\": {\n \"path\": \"voluptate id est\",\n \"width\": 26383611,\n \"height\": -16251528,\n \"isDefault\": true\n },\n \"displayName\": \"exercitation ut consequat\",\n \"_expandable\": {\n \"operations\": \"dolore id Excepteur ipsum\",\n \"details\": \"officia\",\n \"personalSpace\": \"voluptat\"\n },\n \"_links\": {},\n \"username\": \"cillum minim aliquip est\",\n \"userKey\": \"nisi dolore laborum voluptate mollit\",\n \"operations\": [\n {\n \"operation\": \"purge_version\",\n \"targetType\": \"application\"\n },\n {\n \"operation\": \"purge\",\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\": -47224240,\n \"key\": \"nostrud\",\n \"name\": \"do sint\",\n \"type\": \"laboris et est sint\",\n \"status\": \"ad\",\n \"_expandable\": {\n \"settings\": \"non\",\n \"metadata\": \"ullamco incididunt ex adipisicing\",\n \"operations\": \"ut aute Du\",\n \"lookAndFeel\": \"sint\",\n \"permissions\": \"veniam Excepteur elit adipisicing\",\n \"icon\": \"ut\",\n \"description\": \"ipsum\",\n \"theme\": \"ea proident nisi eu Lorem\",\n \"history\": \"anim non exercitation\",\n \"homepage\": \"n\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"minim fugiat dolor dolor nostrud\",\n \"width\": -19206468,\n \"height\": -45876960,\n \"isDefault\": false\n },\n \"description\": {\n \"plain\": {\n \"value\": \"cillum est\",\n \"representation\": \"plain\",\n \"embeddedContent\": [\n {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n ]\n },\n \"view\": {\n \"value\": \"Lorem dolore sit\",\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\": 47257950,\n \"limit\": -40315729,\n \"size\": -34225165,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"purge\",\n \"targetType\": \"blogpost\"\n },\n {\n \"operation\": \"use\",\n \"targetType\": \"blogpost\"\n }\n ],\n \"permissions\": [\n {\n \"subjects\": {\n \"_expandable\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"user\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"group\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"operation\": {\n \"operation\": \"update\",\n \"targetType\": \"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\": \"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 pariatur irure reprehenderit\"\n },\n \"links\": {\n \"color\": \"in proident\"\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\": \"voluptate Lorem\"\n }\n },\n \"history\": {\n \"createdDate\": \"1953-03-08T07:27:14.252Z\"\n }\n }\n },\n \"createdDate\": \"2003-03-25T09:09:50.709Z\",\n \"lastUpdated\": {\n \"by\": {\n \"type\": \"anonymous\",\n \"accountId\": \"deserunt\",\n \"accountType\": \"app (if this user is a bot user created on behalf of an Atlassian app)\",\n \"email\": \"culpa deserunt laboris quis sit\",\n \"publicName\": \"in exercitation tempor dolor\",\n \"profilePicture\": {\n \"path\": \"non in qui\",\n \"width\": 91443545,\n \"height\": 13425928,\n \"isDefault\": true\n },\n \"displayName\": \"Lorem molli\",\n \"_expandable\": {\n \"operations\": \"deserunt velit occaecat fugiat\",\n \"details\": \"elit aliq\",\n \"personalSpace\": \"dolor non ad sint deseru\"\n },\n \"_links\": {},\n \"username\": \"eiusmod pariatur\",\n \"userKey\": \"incididunt occaecat\",\n \"operations\": [\n {\n \"operation\": \"move\",\n \"targetType\": \"blogpost\"\n },\n {\n \"operation\": \"purge_version\",\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\": 17192556,\n \"key\": \"laborum veniam\",\n \"name\": \"dolor proident\",\n \"type\": \"proident mollit\",\n \"status\": \"magna labore commodo\",\n \"_expandable\": {\n \"settings\": \"est sunt\",\n \"metadata\": \"Ut qui\",\n \"operations\": \"est magna\",\n \"lookAndFeel\": \"quis sit eiusmod\",\n \"permissions\": \"dolor est\",\n \"icon\": \"culpa id\",\n \"description\": \"dolor irure et\",\n \"theme\": \"do proident enim anim\",\n \"history\": \"anim Excepteur Duis ex\",\n \"homepage\": \"nisi a\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"ut dolor\",\n \"width\": 45836665,\n \"height\": 62731820,\n \"isDefault\": true\n },\n \"description\": {\n \"plain\": {\n \"value\": \"fugiat ipsum\",\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\": \"reprehenderit aute\",\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\": 7345700,\n \"limit\": 61573468,\n \"size\": 75816949,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"use\",\n \"targetType\": \"space\"\n },\n {\n \"operation\": \"restore\",\n \"targetType\": \"blogpost\"\n }\n ],\n \"permissions\": [\n {\n \"subjects\": {\n \"_expandable\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"user\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"group\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"operation\": {\n \"operation\": \"update\",\n \"targetType\": \"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_version\",\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\": \"deserunt labore occaecat\"\n },\n \"links\": {\n \"color\": \"ut 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\": \"labore\"\n }\n },\n \"history\": {\n \"createdDate\": \"1995-08-07T01:26:35.389Z\"\n }\n }\n },\n \"when\": \"1965-10-27T06:11:12.576Z\",\n \"friendlyWhen\": \"veniam\",\n \"message\": \"magna ullamco\",\n \"number\": 79792094,\n \"minorEdit\": false,\n \"_expandable\": {\n \"content\": \"Lorem proident aliquip\",\n \"collaborators\": \"anim Excepteur in sunt\"\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\": \"unknown\",\n \"accountId\": \"non\",\n \"accountType\": \"atlassian\",\n \"email\": \"officia voluptate Ut elit veniam\",\n \"publicName\": \"sed aute culpa\",\n \"profilePicture\": {\n \"path\": \"et\",\n \"width\": 35472319,\n \"height\": -33199339,\n \"isDefault\": true\n },\n \"displayName\": \"officia\",\n \"_expandable\": {\n \"operations\": \"quis ex veniam\",\n \"details\": \"ullamco culpa reprehenderit\",\n \"personalSpace\": \"anim mollit Lorem\"\n },\n \"_links\": {},\n \"username\": \"laboris ad\",\n \"userKey\": \"occaecat enim\",\n \"operations\": [\n {\n \"operation\": \"restore\",\n \"targetType\": \"page\"\n },\n {\n \"operation\": \"restore\",\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\": 37538405,\n \"key\": \"enim\",\n \"name\": \"enim tempor proident aute\",\n \"type\": \"do ipsum esse ea culpa\",\n \"status\": \"labore\",\n \"_expandable\": {\n \"settings\": \"est deserunt ex\",\n \"metadata\": \"do sunt dolor exercitation anim\",\n \"operations\": \"et elit culpa aliquip\",\n \"lookAndFeel\": \"Duis\",\n \"permissions\": \"E\",\n \"icon\": \"deserunt\",\n \"description\": \"ut Lorem sit\",\n \"theme\": \"commodo ul\",\n \"history\": \"amet\",\n \"homepage\": \"culpa in incididunt pariatur\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"irure reprehenderit\",\n \"width\": 52537613,\n \"height\": 8677656,\n \"isDefault\": true\n },\n \"description\": {\n \"plain\": {\n \"value\": \"ipsum ullamco est ut in\",\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\": \"Excepteur elit ad\",\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\": 55420938,\n \"limit\": 65326800,\n \"size\": -40935577,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"export\",\n \"targetType\": \"space\"\n },\n {\n \"operation\": \"read\",\n \"targetType\": \"attachment\"\n }\n ],\n \"permissions\": [\n {\n \"subjects\": {\n \"_expandable\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"user\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"group\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"operation\": {\n \"operation\": \"restore\",\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\": \"use\",\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\": \"cillum consectetur exercitation consequat\"\n },\n \"links\": {\n \"color\": \"proident officia\"\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 in adipisicing cupidatat\"\n }\n },\n \"history\": {\n \"createdDate\": \"1963-09-30T05:00:46.402Z\"\n }\n }\n },\n \"when\": \"2011-03-20T23:37:49.114Z\",\n \"friendlyWhen\": \"a\",\n \"message\": \"eu quis\",\n \"number\": 13783100,\n \"minorEdit\": false,\n \"_expandable\": {\n \"content\": \"non dolore voluptate quis\",\n \"collaborators\": \"nisi mollit sed magna veniam\"\n },\n \"_links\": {},\n \"content\": {\n \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n },\n \"collaborators\": {\n \"users\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"userKeys\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"_links\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n }\n },\n \"contributors\": {\n \"publishers\": {\n \"users\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"userKeys\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"_links\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n }\n },\n \"nextVersion\": {\n \"by\": {\n \"type\": \"anonymous\",\n \"accountId\": \"commodo\",\n \"accountType\": \"atlassian\",\n \"email\": \"cillum enim\",\n \"publicName\": \"id incididunt\",\n \"profilePicture\": {\n \"path\": \"Ut amet aute culpa\",\n \"width\": 28307769,\n \"height\": 22012219,\n \"isDefault\": true\n },\n \"displayName\": \"si\",\n \"_expandable\": {\n \"operations\": \"mollit incidi\",\n \"details\": \"dolore occaecat commodo\",\n \"personalSpace\": \"nisi dolore\"\n },\n \"_links\": {},\n \"username\": \"cupidatat qui\",\n \"userKey\": \"consequat dolore sit\",\n \"operations\": [\n {\n \"operation\": \"delete\",\n \"targetType\": \"space\"\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\": -26653403,\n \"key\": \"ut ut velit Excepteur sed\",\n \"name\": \"proident ut\",\n \"type\": \"irure in\",\n \"status\": \"Lorem\",\n \"_expandable\": {\n \"settings\": \"consectetur sed do velit\",\n \"metadata\": \"dolore ut adipisicing sit est\",\n \"operations\": \"culpa nostrud fugiat \",\n \"lookAndFeel\": \"dolore Dui\",\n \"permissions\": \"ex elit magna in esse\",\n \"icon\": \"proident cupidatat mollit laborum\",\n \"description\": \"est Duis\",\n \"theme\": \"pariatur commodo sint exercitation non\",\n \"history\": \"irure labore non\",\n \"homepage\": \"Lorem\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"labore fugiat\",\n \"width\": 16177454,\n \"height\": -11625746,\n \"isDefault\": true\n },\n \"description\": {\n \"plain\": {\n \"value\": \"deserunt occaecat\",\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\": \"eu incididunt elit velit ea\",\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\": -70159682,\n \"limit\": 3307037,\n \"size\": -60936139,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"purge_version\",\n \"targetType\": \"attachment\"\n },\n {\n \"operation\": \"purge\",\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\",\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\": \"purge\",\n \"targetType\": \"application\"\n },\n \"anonymousAccess\": false,\n \"unlicensedAccess\": false\n }\n ],\n \"settings\": {\n \"routeOverrideEnabled\": true,\n \"_links\": {}\n },\n \"theme\": {},\n \"lookAndFeel\": {\n \"headings\": {\n \"color\": \"sit Ut eu exercitation\"\n },\n \"links\": {\n \"color\": \"aute irure officia\"\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\": \"adipi\"\n }\n },\n \"history\": {\n \"createdDate\": \"1966-01-28T20:11:54.770Z\"\n }\n }\n },\n \"when\": \"1942-12-24T10:51:09.872Z\",\n \"friendlyWhen\": \"commodo qui amet\",\n \"message\": \"ut minim sunt r\",\n \"number\": 36966185,\n \"minorEdit\": false,\n \"_expandable\": {\n \"content\": \"dolore anim in\",\n \"collaborators\": \"nostru\"\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\": \"consectetur quis sed\",\n \"previousVersion\": \"sed do reprehenderit eu\",\n \"contributors\": \"Excepteur consectetur dolor minim sint\",\n \"nextVersion\": \"qui adipisicing do aute aliqua\"\n },\n \"_links\": {}\n },\n \"version\": {\n \"by\": {\n \"type\": \"anonymous\",\n \"accountId\": \"aliqua consequat\",\n \"accountType\": \"atlassian\",\n \"email\": \"magna eu in voluptate\",\n \"publicName\": \"consequat sunt minim\",\n \"profilePicture\": {\n \"path\": \"velit proident\",\n \"width\": -60871323,\n \"height\": -48605434,\n \"isDefault\": true\n },\n \"displayName\": \"ad dolore\",\n \"_expandable\": {\n \"operations\": \"velit commodo\",\n \"details\": \"consequat deserunt commodo ipsum non\",\n \"personalSpace\": \"non Duis nostrud\"\n },\n \"_links\": {},\n \"username\": \"conseq\",\n \"userKey\": \"ipsum et proident qui\",\n \"operations\": [\n {\n \"operation\": \"restore\",\n \"targetType\": \"page\"\n },\n {\n \"operation\": \"restore\",\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\": 87683510,\n \"key\": \"quis \",\n \"name\": \"ipsum dolor sint\",\n \"type\": \"sint aute nostr\",\n \"status\": \"reprehenderit irure amet\",\n \"_expandable\": {\n \"settings\": \"Lorem laborum\",\n \"metadata\": \"cillum\",\n \"operations\": \"ut\",\n \"lookAndFeel\": \"tempor ut minim\",\n \"permissions\": \"consequat ad est\",\n \"icon\": \"ad commodo pariatur enim\",\n \"description\": \"sit\",\n \"theme\": \"eiusmod proident\",\n \"history\": \"cupidatat Duis\",\n \"homepage\": \"quis in sed occaecat\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"in eiusmod \",\n \"width\": 50309895,\n \"height\": -56157157,\n \"isDefault\": false\n },\n \"description\": {\n \"plain\": {\n \"value\": \"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\": \"dolore sunt anim pariatur id\",\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\": -91793089,\n \"limit\": 56454900,\n \"size\": 5426212,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"update\",\n \"targetType\": \"space\"\n },\n {\n \"operation\": \"administer\",\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\": \"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\": \"update\",\n \"targetType\": \"attachment\"\n },\n \"anonymousAccess\": false,\n \"unlicensedAccess\": false\n }\n ],\n \"settings\": {\n \"routeOverrideEnabled\": true,\n \"_links\": {}\n },\n \"theme\": {},\n \"lookAndFeel\": {\n \"headings\": {\n \"color\": \"tempor ea elit\"\n },\n \"links\": {\n \"color\": \"aliquip pariatur in et\"\n },\n \"menus\": {\n \"hoverOrFocus\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"color\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"header\": {\n \"backgroundColor\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"button\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"primaryNavigation\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"secondaryNavigation\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"search\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"content\": {\n \"screen\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"container\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"header\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"body\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"bordersAndDividers\": {\n \"color\": \"cupidatat nulla voluptate Lorem\"\n }\n },\n \"history\": {\n \"createdDate\": \"2001-03-18T21:19:27.529Z\"\n }\n }\n },\n \"when\": \"1965-07-28T13:17:31.591Z\",\n \"friendlyWhen\": \"est voluptate\",\n \"message\": \"fugiat sit et adipisicing laboris\",\n \"number\": 69153111,\n \"minorEdit\": false,\n \"_expandable\": {\n \"content\": \"incididunt dolore tempor\",\n \"collaborators\": \"incididunt sit eu fugiat\"\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\": \"comment\"\n },\n {\n \"operation\": \"delete\",\n \"targetType\": \"attachment\"\n }\n ],\n \"children\": {\n \"_expandable\": {\n \"attachment\": \"nulla ut Duis in\",\n \"comment\": \"culpa in q\",\n \"page\": \"commodo in ut id\"\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\": -58492895,\n \"limit\": -3035611,\n \"size\": -55561713,\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\": 26914860,\n \"limit\": 26191739,\n \"size\": -77962033,\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\": -79223805,\n \"limit\": 8331583,\n \"size\": 91154394,\n \"_links\": {}\n }\n },\n \"childTypes\": {\n \"_expandable\": {\n \"all\": \"deserunt laboris\",\n \"attachment\": \"et in Excepteur\",\n \"comment\": \"ut id ea mollit magna\",\n \"page\": \"ad laboris esse\"\n },\n \"attachment\": {\n \"value\": false,\n \"_links\": {}\n },\n \"comment\": {\n \"value\": true,\n \"_links\": {}\n },\n \"page\": {\n \"value\": false,\n \"_links\": {}\n }\n },\n \"descendants\": {\n \"_expandable\": {\n \"attachment\": \"in deserunt si\",\n \"comment\": \"ad esse dolore e\",\n \"page\": \"ea\"\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\": 54902934,\n \"limit\": -35671490,\n \"size\": 73187738,\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\": 20366979,\n \"limit\": -17372390,\n \"size\": -74381158,\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\": 44336562,\n \"limit\": -72675688,\n \"size\": -22916889,\n \"_links\": {}\n }\n },\n \"container\": {},\n \"body\": {\n \"_expandable\": {\n \"editor\": \"Ut dolor\",\n \"view\": \"enim ad eu officia\",\n \"export_view\": \"nisi inci\",\n \"styled_view\": \"veniam consectetur sint do aliqua\",\n \"storage\": \"amet irure\",\n \"editor2\": \"est magna\",\n \"anonymous_export_view\": \"ullamco commo\"\n }\n },\n \"restrictions\": {\n \"_links\": {},\n \"read\": {\n \"operation\": \"read\",\n \"_expandable\": {\n \"restrictions\": \"reprehenderit aute sed minim nulla\",\n \"content\": \"laboris consequat non\"\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\": \"anim Excepteur do\",\n \"group\": \"veniam\"\n }\n },\n \"content\": {\n \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n }\n },\n \"update\": {\n \"operation\": \"delete\",\n \"_expandable\": {\n \"restrictions\": \"ex dolor\",\n \"content\": \"nostrud deserunt nisi culpa\"\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\": \"officia Lorem dolor\",\n \"group\": \"Ut esse eiusmod\"\n }\n },\n \"content\": {\n \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n }\n }\n },\n \"_links\": {}\n }\n },\n {\n \"id\": -6825123,\n \"key\": \"eu et laborum\",\n \"value\": {},\n \"_links\": {},\n \"version\": {\n \"when\": \"1997-01-31T07:02:32.629Z\",\n \"message\": \"in dolor aliquip\",\n \"number\": 99999126,\n \"minorEdit\": false\n },\n \"content\": {\n \"id\": \"in commodo\",\n \"type\": \"fugiat culpa\",\n \"status\": \"in sint et cillum ea\",\n \"title\": \"in Ut dolore\",\n \"_expandable\": {\n \"childTypes\": \"dolore anim ut veniam adipisicing\",\n \"container\": \"eiusmod anim veniam non laborum\",\n \"metadata\": \"sit reprehenderit est non\",\n \"operations\": \"deserunt commodo in proident fugiat\",\n \"children\": \"dolor in sunt\",\n \"restrictions\": \"cupidatat sed\",\n \"history\": \"do fugiat\",\n \"ancestors\": \"proident\",\n \"body\": \"sed\",\n \"version\": \"Ut\",\n \"descendants\": \"cillum aute Excepteur tempor officia\",\n \"space\": \"consequat ipsum culpa magna\"\n },\n \"space\": {\n \"id\": 30629325,\n \"key\": \"elit mollit dolor\",\n \"name\": \"consequat qui minim ut\",\n \"type\": \"officia Ut do Lorem\",\n \"status\": \"dolore\",\n \"_expandable\": {\n \"settings\": \"sint deserunt voluptate\",\n \"metadata\": \"incididunt dolor\",\n \"operations\": \"e\",\n \"lookAndFeel\": \"mollit consectetur\",\n \"permissions\": \"fugiat aliqua eu\",\n \"icon\": \"sint voluptate ex deserunt dolor\",\n \"description\": \"quis\",\n \"theme\": \"deserunt volupt\",\n \"history\": \"sed enim laboris\",\n \"homepage\": \"dolor do\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"sint mollit \",\n \"width\": 58461884,\n \"height\": 2982918,\n \"isDefault\": true\n },\n \"description\": {\n \"plain\": {\n \"value\": \"nisi reprehenderit ut\",\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\": \"voluptate et id\",\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\": 60019520,\n \"limit\": 48428004,\n \"size\": 47887429,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"read\",\n \"targetType\": \"attachment\"\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\": \"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\": \"restore\",\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\": \"non amet commodo\"\n },\n \"links\": {\n \"color\": \"sed ex 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\": \"proident ullamco adipisicing reprehenderit\"\n }\n },\n \"history\": {\n \"createdDate\": \"1941-05-12T08:55:13.384Z\"\n }\n },\n \"history\": {\n \"latest\": true,\n \"createdBy\": {\n \"type\": \"user\",\n \"accountId\": \"exercitation\",\n \"accountType\": \"atlassian\",\n \"email\": \"magna reprehenderit exercitation ipsum\",\n \"publicName\": \"cillum incididunt\",\n \"profilePicture\": {\n \"path\": \"dolor commodo\",\n \"width\": 6305771,\n \"height\": 22178951,\n \"isDefault\": true\n },\n \"displayName\": \"sint pariatur incididunt cupidatat aute\",\n \"_expandable\": {\n \"operations\": \"incididunt sint\",\n \"details\": \"Ut\",\n \"personalSpace\": \"ea id cillum sunt\"\n },\n \"_links\": {},\n \"username\": \"ut a\",\n \"userKey\": \"labore mollit voluptate eu\",\n \"operations\": [\n {\n \"operation\": \"update\",\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\": -55613061,\n \"key\": \"commodo Lore\",\n \"name\": \"cupidatat quis ut\",\n \"type\": \"veniam sint eiusmod\",\n \"status\": \"irure id deserunt consequat\",\n \"_expandable\": {\n \"settings\": \"minim fugiat non\",\n \"metadata\": \"aute dolor\",\n \"operations\": \"id irure ipsum amet\",\n \"lookAndFeel\": \"amet incididunt et\",\n \"permissions\": \"eiusmod minim cupi\",\n \"icon\": \"sit qui culpa a\",\n \"description\": \"nostrud\",\n \"theme\": \"dolor deserunt ad Lorem\",\n \"history\": \"proident exercitation incididunt sed\",\n \"homepage\": \"veniam sunt tempor in\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"irure velit dolor\",\n \"width\": 87279968,\n \"height\": 92818751,\n \"isDefault\": false\n },\n \"description\": {\n \"plain\": {\n \"value\": \"non Excepteur nostrud 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 \"view\": {\n \"value\": \"elit\",\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\": -40576975,\n \"limit\": -66886040,\n \"size\": 78532061,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"purge_version\",\n \"targetType\": \"application\"\n },\n {\n \"operation\": \"create\",\n \"targetType\": \"comment\"\n }\n ],\n \"permissions\": [\n {\n \"subjects\": {\n \"_expandable\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"user\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"group\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"operation\": {\n \"operation\": \"delete\",\n \"targetType\": \"blogpost\"\n },\n \"anonymousAccess\": false,\n \"unlicensedAccess\": false\n },\n {\n \"subjects\": {\n \"_expandable\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"user\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"group\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"operation\": {\n \"operation\": \"delete\",\n \"targetType\": \"attachment\"\n },\n \"anonymousAccess\": false,\n \"unlicensedAccess\": false\n }\n ],\n \"settings\": {\n \"routeOverrideEnabled\": true,\n \"_links\": {}\n },\n \"theme\": {},\n \"lookAndFeel\": {\n \"headings\": {\n \"color\": \"ipsum anim ullamco veniam\"\n },\n \"links\": {\n \"color\": \"consequat veniam 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\": \"Ut\"\n }\n },\n \"history\": {\n \"createdDate\": \"1967-11-09T20:55:28.696Z\"\n }\n }\n },\n \"createdDate\": \"1991-11-07T19:28:28.684Z\",\n \"lastUpdated\": {\n \"by\": {\n \"type\": \"unknown\",\n \"accountId\": \"eiusmod in commodo\",\n \"accountType\": \"app (if this user is a bot user created on behalf of an Atlassian app)\",\n \"email\": \"elit anim labore laborum\",\n \"publicName\": \"labore magna occaecat\",\n \"profilePicture\": {\n \"path\": \"dolor laborum Ut\",\n \"width\": -87817940,\n \"height\": -68421375,\n \"isDefault\": false\n },\n \"displayName\": \"laboris qui laborum\",\n \"_expandable\": {\n \"operations\": \"anim\",\n \"details\": \"enim mollit adipisicing elit\",\n \"personalSpace\": \"officia dolore Excepteur nisi\"\n },\n \"_links\": {},\n \"username\": \"eiusmo\",\n \"userKey\": \"amet reprehenderit ullamco\",\n \"operations\": [\n {\n \"operation\": \"purge\",\n \"targetType\": \"comment\"\n },\n {\n \"operation\": \"export\",\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\": -19635371,\n \"key\": \"et mollit\",\n \"name\": \"magna minim mollit\",\n \"type\": \"sit dolor\",\n \"status\": \"ipsu\",\n \"_expandable\": {\n \"settings\": \"tempor mollit\",\n \"metadata\": \"officia dolor amet tempor\",\n \"operations\": \"Exc\",\n \"lookAndFeel\": \"quis\",\n \"permissions\": \"elit cillum anim\",\n \"icon\": \"nisi\",\n \"description\": \"esse\",\n \"theme\": \"in enim Ut ipsum voluptate\",\n \"history\": \"ad\",\n \"homepage\": \"magna mollit et laborum esse\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"veniam ut\",\n \"width\": 49259009,\n \"height\": -1822752,\n \"isDefault\": false\n },\n \"description\": {\n \"plain\": {\n \"value\": \"amet officia nostrud\",\n \"representation\": \"plain\",\n \"embeddedContent\": [\n {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n ]\n },\n \"view\": {\n \"value\": \"pariat\",\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\": -20229139,\n \"limit\": -11833277,\n \"size\": 6604893,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"create\",\n \"targetType\": \"application\"\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\": \"move\",\n \"targetType\": \"application\"\n },\n \"anonymousAccess\": false,\n \"unlicensedAccess\": false\n },\n {\n \"subjects\": {\n \"_expandable\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"user\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"group\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"operation\": {\n \"operation\": \"copy\",\n \"targetType\": \"application\"\n },\n \"anonymousAccess\": false,\n \"unlicensedAccess\": false\n }\n ],\n \"settings\": {\n \"routeOverrideEnabled\": false,\n \"_links\": {}\n },\n \"theme\": {},\n \"lookAndFeel\": {\n \"headings\": {\n \"color\": \"in sit laboris fugiat\"\n },\n \"links\": {\n \"color\": \"nisi tempor eu\"\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\": \"labore cillum aute nulla\"\n }\n },\n \"history\": {\n \"createdDate\": \"1979-07-22T12:41:27.743Z\"\n }\n }\n },\n \"when\": \"1999-11-20T19:53:53.734Z\",\n \"friendlyWhen\": \"Ut in\",\n \"message\": \"incididunt minim elit dolor veniam\",\n \"number\": -75058328,\n \"minorEdit\": true,\n \"_expandable\": {\n \"content\": \"reprehenderit mollit elit ut\",\n \"collaborators\": \"culpa elit adipisicing\"\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\": \"user\",\n \"accountId\": \"ad cupidatat Excepteur\",\n \"accountType\": \"app (if this user is a bot user created on behalf of an Atlassian app)\",\n \"email\": \"a\",\n \"publicName\": \"elit non cillum\",\n \"profilePicture\": {\n \"path\": \"cupidatat\",\n \"width\": 50972054,\n \"height\": 32136113,\n \"isDefault\": true\n },\n \"displayName\": \"laborum do\",\n \"_expandable\": {\n \"operations\": \"proident est\",\n \"details\": \"aliquip in fugiat\",\n \"personalSpace\": \"cillum veniam\"\n },\n \"_links\": {},\n \"username\": \"consectetur in deserunt dolore\",\n \"userKey\": \"ut exercitation id adipisicing\",\n \"operations\": [\n {\n \"operation\": \"read\",\n \"targetType\": \"page\"\n },\n {\n \"operation\": \"move\",\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\": -30777140,\n \"key\": \"pariatur non\",\n \"name\": \"magna cu\",\n \"type\": \"labore id in\",\n \"status\": \"culpa in\",\n \"_expandable\": {\n \"settings\": \"mollit est\",\n \"metadata\": \"ullamco in aliquip eiusmod\",\n \"operations\": \"sit est esse\",\n \"lookAndFeel\": \"nisi exercitation\",\n \"permissions\": \"aute nisi exercit\",\n \"icon\": \"culpa consequat officia cillum a\",\n \"description\": \"dolore consequat in\",\n \"theme\": \"anim culpa est non ullamco\",\n \"history\": \"aute officia commodo quis\",\n \"homepage\": \"voluptate amet Duis\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"irure id exercitation cupidatat Ut\",\n \"width\": -87492502,\n \"height\": 70510627,\n \"isDefault\": true\n },\n \"description\": {\n \"plain\": {\n \"value\": \"ipsum\",\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\": \"velit ex qui\",\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\": -30781782,\n \"limit\": -27577257,\n \"size\": -1663912,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"purge_version\",\n \"targetType\": \"attachment\"\n },\n {\n \"operation\": \"delete\",\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\": \"delete\",\n \"targetType\": \"comment\"\n },\n \"anonymousAccess\": false,\n \"unlicensedAccess\": false\n },\n {\n \"subjects\": {\n \"_expandable\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"user\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"group\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"operation\": {\n \"operation\": \"purge\",\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\": \"eiusmod cillum\"\n },\n \"links\": {\n \"color\": \"cupidatat laboris non\"\n },\n \"menus\": {\n \"hoverOrFocus\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"color\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"header\": {\n \"backgroundColor\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"button\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"primaryNavigation\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"secondaryNavigation\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"search\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"content\": {\n \"screen\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"container\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"header\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"body\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"bordersAndDividers\": {\n \"color\": \"in labore volup\"\n }\n },\n \"history\": {\n \"createdDate\": \"1971-04-19T15:38:43.869Z\"\n }\n }\n },\n \"when\": \"1952-02-08T09:15:09.376Z\",\n \"friendlyWhen\": \"nulla\",\n \"message\": \"id\",\n \"number\": -21050356,\n \"minorEdit\": true,\n \"_expandable\": {\n \"content\": \"incidi\",\n \"collaborators\": \"sint reprehenderit\"\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\": \"unknown\",\n \"accountId\": \"aliquip est esse Duis Ut\",\n \"accountType\": \"atlassian\",\n \"email\": \"exercitation dolor\",\n \"publicName\": \"esse sit ad ex\",\n \"profilePicture\": {\n \"path\": \"sint fugiat\",\n \"width\": -17251256,\n \"height\": 56211318,\n \"isDefault\": false\n },\n \"displayName\": \"velit dolor dolore adipisicing\",\n \"_expandable\": {\n \"operations\": \"ipsum dolore Lorem\",\n \"details\": \"irure dolor\",\n \"personalSpace\": \"id aute Lor\"\n },\n \"_links\": {},\n \"username\": \"qui in culpa aute\",\n \"userKey\": \"sit in quis dolor\",\n \"operations\": [\n {\n \"operation\": \"restore\",\n \"targetType\": \"blogpost\"\n },\n {\n \"operation\": \"purge\",\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\": 2656297,\n \"key\": \"ipsum commodo labore\",\n \"name\": \"est\",\n \"type\": \"aliquip sunt\",\n \"status\": \"consectetur\",\n \"_expandable\": {\n \"settings\": \"Excepteur nostrud labore magna irure\",\n \"metadata\": \"labore Lorem elit proident\",\n \"operations\": \"Duis occaecat sunt\",\n \"lookAndFeel\": \"amet ut laborum\",\n \"permissions\": \"volupta\",\n \"icon\": \"minim in\",\n \"description\": \"esse amet minim Excepteur\",\n \"theme\": \"elit deserunt eu fugiat nulla\",\n \"history\": \"velit irure\",\n \"homepage\": \"ut sunt\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"consequat incididunt fugiat\",\n \"width\": -88678857,\n \"height\": -2981039,\n \"isDefault\": false\n },\n \"description\": {\n \"plain\": {\n \"value\": \"id in\",\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\": \"incididunt tempor dolore 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\": 22256420,\n \"limit\": 56864533,\n \"size\": 27096323,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"administer\",\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\": \"copy\",\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\": \"purge\",\n \"targetType\": \"blogpost\"\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\": \"eu nisi et pariatur tempor\"\n },\n \"links\": {\n \"color\": \"amet exercitation veniam sit\"\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\": \"Lorem cupidata\"\n }\n },\n \"history\": {\n \"createdDate\": \"1976-10-24T17:27:34.720Z\"\n }\n }\n },\n \"when\": \"1970-02-20T22:30:12.345Z\",\n \"friendlyWhen\": \"ullamco magna aliquip aute Ut\",\n \"message\": \"non velit officia eiusmod\",\n \"number\": 24598493,\n \"minorEdit\": false,\n \"_expandable\": {\n \"content\": \"Duis exercitation enim officia veniam\",\n \"collaborators\": \"dolore ullamco elit\"\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\": \"minim tempor\",\n \"previousVersion\": \"velit\",\n \"contributors\": \"tempor culpa\",\n \"nextVersion\": \"laborum sint ad\"\n },\n \"_links\": {}\n },\n \"version\": {\n \"by\": {\n \"type\": \"anonymous\",\n \"accountId\": \"anim laboris\",\n \"accountType\": \"app (if this user is a bot user created on behalf of an Atlassian app)\",\n \"email\": \"elit nostrud Excepteur in\",\n \"publicName\": \"magna qui culpa proi\",\n \"profilePicture\": {\n \"path\": \"amet ea sunt\",\n \"width\": 23559344,\n \"height\": -10890556,\n \"isDefault\": true\n },\n \"displayName\": \"fugiat proident ipsum Lorem\",\n \"_expandable\": {\n \"operations\": \"eu dolor in Excepteur\",\n \"details\": \"eiusmod nulla dolor\",\n \"personalSpace\": \"commodo cillum\"\n },\n \"_links\": {},\n \"username\": \"ad elit\",\n \"userKey\": \"deserun\",\n \"operations\": [\n {\n \"operation\": \"delete\",\n \"targetType\": \"space\"\n },\n {\n \"operation\": \"create\",\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\": 3573682,\n \"key\": \"enim veniam cillum in in\",\n \"name\": \"cupida\",\n \"type\": \"dolor do est\",\n \"status\": \"Excepteur Lorem Duis sit\",\n \"_expandable\": {\n \"settings\": \"velit sit\",\n \"metadata\": \"do\",\n \"operations\": \"sit ullamco\",\n \"lookAndFeel\": \"qui\",\n \"permissions\": \"ullamco cillum dolore\",\n \"icon\": \"Ut culpa\",\n \"description\": \"commodo\",\n \"theme\": \"labore aliquip\",\n \"history\": \"laborum exercitation id au\",\n \"homepage\": \"proident ex\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"exercitation Duis sunt in\",\n \"width\": 79153734,\n \"height\": -16827789,\n \"isDefault\": true\n },\n \"description\": {\n \"plain\": {\n \"value\": \"ad\",\n \"representation\": \"plain\",\n \"embeddedContent\": [\n {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n ]\n },\n \"view\": {\n \"value\": \"in\",\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\": 27638309,\n \"limit\": 80058598,\n \"size\": 37607407,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"create\",\n \"targetType\": \"blogpost\"\n },\n {\n \"operation\": \"administer\",\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\": \"copy\",\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\": \"laborum\"\n },\n \"links\": {\n \"color\": \"cupidatat sed laborum ma\"\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 laboris reprehenderit\"\n }\n },\n \"history\": {\n \"createdDate\": \"2013-07-16T10:44:38.064Z\"\n }\n }\n },\n \"when\": \"1966-01-12T23:19:45.994Z\",\n \"friendlyWhen\": \"in reprehenderit anim\",\n \"message\": \"magna non ea\",\n \"number\": 63581351,\n \"minorEdit\": false,\n \"_expandable\": {\n \"content\": \"ipsum ullamco enim\",\n \"collaborators\": \"amet Lorem\"\n },\n \"_links\": {},\n \"content\": {\n \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n },\n \"collaborators\": {\n \"users\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"userKeys\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"_links\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n }\n },\n \"ancestors\": [\n {\n \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n },\n {\n \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n }\n ],\n \"operations\": [\n {\n \"operation\": \"purge_version\",\n \"targetType\": \"space\"\n },\n {\n \"operation\": \"delete\",\n \"targetType\": \"attachment\"\n }\n ],\n \"children\": {\n \"_expandable\": {\n \"attachment\": \"Lorem a\",\n \"comment\": \"veniam\",\n \"page\": \"ullamco aute\"\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\": -2037642,\n \"limit\": -14895791,\n \"size\": -87309354,\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\": 42902336,\n \"limit\": -92102470,\n \"size\": -22733399,\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\": 70943204,\n \"limit\": 66469559,\n \"size\": -17231171,\n \"_links\": {}\n }\n },\n \"childTypes\": {\n \"_expandable\": {\n \"all\": \"ad adipisicing \",\n \"attachment\": \"id ipsum\",\n \"comment\": \"ad officia\",\n \"page\": \"nisi sit\"\n },\n \"attachment\": {\n \"value\": true,\n \"_links\": {}\n },\n \"comment\": {\n \"value\": true,\n \"_links\": {}\n },\n \"page\": {\n \"value\": false,\n \"_links\": {}\n }\n },\n \"descendants\": {\n \"_expandable\": {\n \"attachment\": \"incididunt consectetur ipsum minim\",\n \"comment\": \"velit aute in Duis\",\n \"page\": \"deserunt pariatur elit ut\"\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\": 82314600,\n \"limit\": -89837122,\n \"size\": 73257377,\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\": -36159595,\n \"limit\": 33687556,\n \"size\": 70996926,\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\": -35715105,\n \"limit\": 13481870,\n \"size\": -76256501,\n \"_links\": {}\n }\n },\n \"container\": {},\n \"body\": {\n \"_expandable\": {\n \"editor\": \"labore\",\n \"view\": \"in\",\n \"export_view\": \"deserunt\",\n \"styled_view\": \"consequat voluptate ut Lorem adipisicing\",\n \"storage\": \"in Excepteur non\",\n \"editor2\": \"Lorem\",\n \"anonymous_export_view\": \"aliquip veniam reprehenderit aute mollit\"\n }\n },\n \"restrictions\": {\n \"_links\": {},\n \"read\": {\n \"operation\": \"purge_version\",\n \"_expandable\": {\n \"restrictions\": \"tempor mollit\",\n \"content\": \"commodo nisi ipsum minim\"\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\": \"velit pariatur\",\n \"group\": \"proident voluptate\"\n }\n },\n \"content\": {\n \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n }\n },\n \"update\": {\n \"operation\": \"move\",\n \"_expandable\": {\n \"restrictions\": \"sunt quis qui\",\n \"content\": \"nulla voluptate\"\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\": \"magna Ut exercitation ea est\",\n \"group\": \"dolore ipsum non\"\n }\n },\n \"content\": {\n \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n }\n }\n },\n \"_links\": {}\n }\n }\n ],\n \"start\": -17247264,\n \"limit\": -60017322,\n \"size\": 96913271,\n \"_links\": {}\n}"
},
{
"name": "Returned if;\n\n- There is no content with the given ID\n- The calling user does not have permission to view the content.",
"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/content/:id/property?expand=<string>&expand=<string>&start=0&limit=10",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"content",
":id",
"property"
],
"query": [
{
"key": "expand",
"value": "<string>"
},
{
"key": "expand",
"value": "<string>"
},
{
"key": "start",
"value": "0"
},
{
"key": "limit",
"value": "10"
}
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Not Found",
"code": 404,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
}
]
}