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', 100
-- 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/restriction/byOperation/:operationKey', @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=100"
-H "Authorization: Bearer <access_token>"
https://your-domain.atlassian.net/wiki/rest/api/content/:id/restriction/byOperation/:operationKey
Postman Collection Item JSON
{
"name": "Get restrictions for operation",
"request": {
"auth": {
"type": "oauth2"
},
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/api/content/:id/restriction/byOperation/:operationKey?expand=<string>&expand=<string>&start=0&limit=100",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"content",
":id",
"restriction",
"byOperation",
":operationKey"
],
"query": [
{
"key": "expand",
"value": "<string>",
"description": "A multi-value parameter indicating which properties of the content\nrestrictions to expand.\n\n- `restrictions.user` returns the piece of content that the restrictions are\napplied to. Expanded by default.\n- `restrictions.group` returns the piece of content that the restrictions are\napplied to. Expanded by default.\n- `content` returns the piece of content that the restrictions are\napplied to."
},
{
"key": "expand",
"value": "<string>",
"description": "A multi-value parameter indicating which properties of the content\nrestrictions to expand.\n\n- `restrictions.user` returns the piece of content that the restrictions are\napplied to. Expanded by default.\n- `restrictions.group` returns the piece of content that the restrictions are\napplied to. Expanded by default.\n- `content` returns the piece of content that the restrictions are\napplied to."
},
{
"key": "start",
"value": "0",
"description": "The starting index of the users and groups in the returned restrictions."
},
{
"key": "limit",
"value": "100",
"description": "The maximum number of users and the maximum number of groups, in the\nreturned restrictions, to return per page. Note, this may be restricted\nby fixed system limits."
}
],
"variable": [
{
"key": "id",
"value": "<string>",
"type": "string",
"description": "(Required) The ID of the content to be queried for its restrictions."
},
{
"key": "operationKey",
"value": "<string>",
"type": "string",
"description": "(Required) The operation type of the restrictions to be returned."
}
]
},
"description": "Returns the restictions on a piece of content for a given operation (read\nor update).\n\n**[Permissions](https://confluence.atlassian.com/x/_AozKw) required**:\nPermission to view the content."
},
"response": [
{
"name": "Returned if the requested restrictions 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/restriction/byOperation/:operationKey?expand=<string>&expand=<string>&start=0&limit=100",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"content",
":id",
"restriction",
"byOperation",
":operationKey"
],
"query": [
{
"key": "expand",
"value": "<string>"
},
{
"key": "expand",
"value": "<string>"
},
{
"key": "start",
"value": "0"
},
{
"key": "limit",
"value": "100"
}
],
"variable": [
{
"key": "id"
},
{
"key": "operationKey"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"operation\": \"export\",\n \"_expandable\": {\n \"restrictions\": \"aute\",\n \"content\": \"eu cillum elit laboris\"\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\": \"et consectetur fugiat in pariatur\",\n \"group\": \"et est irure\"\n }\n },\n \"content\": {\n \"id\": \"pariatur sed est anim\",\n \"type\": \"dolor eiusmod irure\",\n \"status\": \"cup\",\n \"title\": \"in dolor elit\",\n \"_expandable\": {\n \"childTypes\": \"incididunt\",\n \"container\": \"aliqua mollit\",\n \"metadata\": \"tempor\",\n \"operations\": \"aute quis enim\",\n \"children\": \"anim est incididunt\",\n \"restrictions\": \"et Ut ipsum\",\n \"history\": \"quis mollit\",\n \"ancestors\": \"proident\",\n \"body\": \"Ut in reprehenderit anim\",\n \"version\": \"ex officia in quis\",\n \"descendants\": \"laborum aliquip u\",\n \"space\": \"do aute esse ut deserunt\"\n },\n \"space\": {\n \"id\": 99845672,\n \"key\": \"elit fugiat\",\n \"name\": \"consequat ipsum pariatur ut\",\n \"type\": \"ex minim dolore\",\n \"status\": \"do Duis nostrud labo\",\n \"_expandable\": {\n \"settings\": \"eiusmod cupidatat ullamco elit\",\n \"metadata\": \"in Lorem\",\n \"operations\": \"irure enim incididunt\",\n \"lookAndFeel\": \"qui dolor sunt ea\",\n \"permissions\": \"fugiat amet dolore nostrud\",\n \"icon\": \"aliquip irure nulla\",\n \"description\": \"Lorem sunt in\",\n \"theme\": \"aute ut\",\n \"history\": \"mollit ullamco sunt officia\",\n \"homepage\": \"do quis dolor anim aute\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"Ut tempor consequat\",\n \"width\": -53246092,\n \"height\": 76177452,\n \"isDefault\": true\n },\n \"description\": {\n \"plain\": {\n \"value\": \"proident consectetur occaecat 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 \"view\": {\n \"value\": \"in 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 },\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\": 40196440,\n \"limit\": 93554185,\n \"size\": -49121386,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"purge_version\",\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\": \"read\",\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\": \"update\",\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\": \"velit\"\n },\n \"links\": {\n \"color\": \"consectetur eiusmod sed\"\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\": \"ullamco sunt\"\n }\n },\n \"history\": {\n \"createdDate\": \"1998-07-05T00:04:32.858Z\"\n }\n },\n \"history\": {\n \"latest\": false,\n \"createdBy\": {\n \"type\": \"known\",\n \"accountId\": \"adipisicing culpa velit ex tempor\",\n \"accountType\": \"app (if this user is a bot user created on behalf of an Atlassian app)\",\n \"email\": \"deserunt id ut\",\n \"publicName\": \"pariatur aliqua Ex\",\n \"profilePicture\": {\n \"path\": \"reprehenderit sit\",\n \"width\": 77547387,\n \"height\": -39009037,\n \"isDefault\": true\n },\n \"displayName\": \"Lorem eu irure \",\n \"_expandable\": {\n \"operations\": \"fugiat aliqua in\",\n \"details\": \"id aute\",\n \"personalSpace\": \"in aliq\"\n },\n \"_links\": {},\n \"username\": \"in commodo occaecat\",\n \"userKey\": \"cupida\",\n \"operations\": [\n {\n \"operation\": \"purge_version\",\n \"targetType\": \"space\"\n },\n {\n \"operation\": \"export\",\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\": 59909293,\n \"key\": \"pariatur fugiat\",\n \"name\": \"irure\",\n \"type\": \"tempor\",\n \"status\": \"tempor incididunt eu\",\n \"_expandable\": {\n \"settings\": \"sit cupidatat sint\",\n \"metadata\": \"ad consectetur\",\n \"operations\": \"veniam consectetur\",\n \"lookAndFeel\": \"anim esse aliquip\",\n \"permissions\": \"velit culpa irure\",\n \"icon\": \"ipsum pariatur laborum\",\n \"description\": \"minim incididunt esse\",\n \"theme\": \"reprehende\",\n \"history\": \"quis proident\",\n \"homepage\": \"labore proident Duis sunt\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"deserunt sunt in ex exercitation\",\n \"width\": -85483490,\n \"height\": 39793415,\n \"isDefault\": false\n },\n \"description\": {\n \"plain\": {\n \"value\": \"anim cupida\",\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\": \"mollit velit esse Ut pariatur\",\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\": 98953277,\n \"limit\": 48590054,\n \"size\": -10030662,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"export\",\n \"targetType\": \"space\"\n },\n {\n \"operation\": \"update\",\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\": \"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\": \"use\",\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\": \"elit cillum irure fugiat est\"\n },\n \"links\": {\n \"color\": \"sunt Duis cillum Excepteur\"\n },\n \"menus\": {\n \"hoverOrFocus\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"color\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"header\": {\n \"backgroundColor\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"button\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"primaryNavigation\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"secondaryNavigation\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"search\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"content\": {\n \"screen\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"container\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"header\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"body\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"bordersAndDividers\": {\n \"color\": \"quis cillum mollit exercitation voluptate\"\n }\n },\n \"history\": {\n \"createdDate\": \"1973-02-11T04:14:24.386Z\"\n }\n }\n },\n \"createdDate\": \"1973-07-20T22:33:38.593Z\",\n \"lastUpdated\": {\n \"by\": {\n \"type\": \"anonymous\",\n \"accountId\": \"Excepteur fugiat cupidatat in\",\n \"accountType\": \"atlassian\",\n \"email\": \"proident amet occaecat enim\",\n \"publicName\": \"adipisicing veniam Duis labore esse\",\n \"profilePicture\": {\n \"path\": \"dolor dolo\",\n \"width\": -86123583,\n \"height\": -65650942,\n \"isDefault\": true\n },\n \"displayName\": \"in exercitation incididunt\",\n \"_expandable\": {\n \"operations\": \"ullamco quis qui esse aute\",\n \"details\": \"enim fugiat\",\n \"personalSpace\": \"in\"\n },\n \"_links\": {},\n \"username\": \"consequat amet consectetur\",\n \"userKey\": \"reprehenderit sunt\",\n \"operations\": [\n {\n \"operation\": \"administer\",\n \"targetType\": \"comment\"\n },\n {\n \"operation\": \"use\",\n \"targetType\": \"application\"\n }\n ],\n \"details\": {\n \"business\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"personal\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"personalSpace\": {\n \"id\": 68786415,\n \"key\": \"dolor\",\n \"name\": \"irure incididunt\",\n \"type\": \"officia anim nulla\",\n \"status\": \"Duis ut\",\n \"_expandable\": {\n \"settings\": \"aliqua in in non incididunt\",\n \"metadata\": \"Duis dolor tempor\",\n \"operations\": \"laborum non deserunt consequat\",\n \"lookAndFeel\": \"eiusmod enim voluptate\",\n \"permissions\": \"adipisicing ullamco qui ut aliquip\",\n \"icon\": \"\",\n \"description\": \"aliquip consequat\",\n \"theme\": \"proident laborum ullamco laboris irure\",\n \"history\": \"commodo\",\n \"homepage\": \"incididunt\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"ex nulla\",\n \"width\": -91987092,\n \"height\": 18289090,\n \"isDefault\": false\n },\n \"description\": {\n \"plain\": {\n \"value\": \"laboris in laborum\",\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\": \"esse Ex\",\n \"representation\": \"view\",\n \"embeddedContent\": [\n {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n ]\n }\n },\n \"homepage\": {\n \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n },\n \"metadata\": {\n \"labels\": {\n \"results\": [\n {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n ],\n \"start\": 50970498,\n \"limit\": -36743145,\n \"size\": -26958686,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"purge_version\",\n \"targetType\": \"space\"\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\": \"administer\",\n \"targetType\": \"attachment\"\n },\n \"anonymousAccess\": false,\n \"unlicensedAccess\": false\n },\n {\n \"subjects\": {\n \"_expandable\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"user\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"group\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"operation\": {\n \"operation\": \"move\",\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\": \"ea es\"\n },\n \"links\": {\n \"color\": \"mollit dolore pariatur incididunt laboris\"\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\": \"eiusmod\"\n }\n },\n \"history\": {\n \"createdDate\": \"2020-05-21T07:58:53.565Z\"\n }\n }\n },\n \"when\": \"1999-06-16T02:22:06.135Z\",\n \"friendlyWhen\": \"enim voluptate\",\n \"message\": \"non in\",\n \"number\": 1918391,\n \"minorEdit\": false,\n \"_expandable\": {\n \"content\": \"sit sed reprehenderit officia\",\n \"collaborators\": \"magna sint\"\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\": \"min\",\n \"accountType\": \"atlassian\",\n \"email\": \"fugiat proident\",\n \"publicName\": \"iru\",\n \"profilePicture\": {\n \"path\": \"ex voluptate anim esse\",\n \"width\": -35050762,\n \"height\": 26426530,\n \"isDefault\": true\n },\n \"displayName\": \"deserunt nulla\",\n \"_expandable\": {\n \"operations\": \"ut non\",\n \"details\": \"nisi culpa\",\n \"personalSpace\": \"sed\"\n },\n \"_links\": {},\n \"username\": \"dolor anim do\",\n \"userKey\": \"aliqua\",\n \"operations\": [\n {\n \"operation\": \"export\",\n \"targetType\": \"application\"\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\": -51736803,\n \"key\": \"velit eu mollit sint\",\n \"name\": \"et ut\",\n \"type\": \"anim\",\n \"status\": \"nulla\",\n \"_expandable\": {\n \"settings\": \"id velit minim officia aute\",\n \"metadata\": \"ex magna deserunt aliqua\",\n \"operations\": \"Ut in mollit reprehenderit sed\",\n \"lookAndFeel\": \"incididunt non adipi\",\n \"permissions\": \"non\",\n \"icon\": \"ea Duis ex\",\n \"description\": \"adipisicing\",\n \"theme\": \"laborum\",\n \"history\": \"sint sunt in\",\n \"homepage\": \"aliqua mollit\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"adipisicing cupidatat proident\",\n \"width\": -80675404,\n \"height\": -97790120,\n \"isDefault\": true\n },\n \"description\": {\n \"plain\": {\n \"value\": \"deserunt dolor\",\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\",\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\": 5859332,\n \"limit\": 76914335,\n \"size\": 14251053,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"purge\",\n \"targetType\": \"page\"\n },\n {\n \"operation\": \"update\",\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\": \"move\",\n \"targetType\": \"page\"\n },\n \"anonymousAccess\": false,\n \"unlicensedAccess\": false\n },\n {\n \"subjects\": {\n \"_expandable\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"user\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"group\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"operation\": {\n \"operation\": \"update\",\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\": \"non proident culpa\"\n },\n \"links\": {\n \"color\": \"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\": \"Excepteur anim veniam\"\n }\n },\n \"history\": {\n \"createdDate\": \"1998-10-14T06:23:16.939Z\"\n }\n }\n },\n \"when\": \"2015-11-17T23:01:06.003Z\",\n \"friendlyWhen\": \"et ea aliqua aute\",\n \"message\": \"dolore non proident\",\n \"number\": -89748450,\n \"minorEdit\": false,\n \"_expandable\": {\n \"content\": \"aliquip laboris amet aute\",\n \"collaborators\": \"aute cillum\"\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 cillum incidi\",\n \"accountType\": \"atlassian\",\n \"email\": \"non consequat\",\n \"publicName\": \"occaecat dolore ullamco officia in\",\n \"profilePicture\": {\n \"path\": \"veniam nostrud Ut qui\",\n \"width\": -87764806,\n \"height\": 94318460,\n \"isDefault\": false\n },\n \"displayName\": \"non fugiat\",\n \"_expandable\": {\n \"operations\": \"in exercitation ea est\",\n \"details\": \"voluptate culpa velit\",\n \"personalSpace\": \"sint culpa\"\n },\n \"_links\": {},\n \"username\": \"incididunt culpa deserunt sed\",\n \"userKey\": \"aliqua qui id laborum\",\n \"operations\": [\n {\n \"operation\": \"copy\",\n \"targetType\": \"blogpost\"\n },\n {\n \"operation\": \"move\",\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\": -5392282,\n \"key\": \"consequat Ut amet\",\n \"name\": \"laboris consequat enim eu\",\n \"type\": \"commodo Ut ut\",\n \"status\": \"qui\",\n \"_expandable\": {\n \"settings\": \"veniam elit incididunt proident tempor\",\n \"metadata\": \"laborum exercitation ex sint labori\",\n \"operations\": \"et nulla quis do\",\n \"lookAndFeel\": \"amet proident\",\n \"permissions\": \"enim in veniam quis\",\n \"icon\": \"te\",\n \"description\": \"id sed Ut reprehenderit\",\n \"theme\": \"adipisicing\",\n \"history\": \"et ea nulla\",\n \"homepage\": \"pariatur magna consectetur\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"cupidatat\",\n \"width\": -33789311,\n \"height\": 11469492,\n \"isDefault\": true\n },\n \"description\": {\n \"plain\": {\n \"value\": \"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 \"view\": {\n \"value\": \"reprehenderit \",\n \"representation\": \"view\",\n \"embeddedContent\": [\n {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n ]\n }\n },\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\": -2560340,\n \"limit\": -11234621,\n \"size\": -39877676,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"read\",\n \"targetType\": \"space\"\n },\n {\n \"operation\": \"read\",\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\": \"use\",\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\": \"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\": \"officia\"\n },\n \"links\": {\n \"color\": \"et Ut irure ut\"\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\": \"sed\"\n }\n },\n \"history\": {\n \"createdDate\": \"2006-02-09T22:23:19.142Z\"\n }\n }\n },\n \"when\": \"1941-04-23T22:35:01.725Z\",\n \"friendlyWhen\": \"occaecat minim\",\n \"message\": \"occaecat et aliqu\",\n \"number\": -96544928,\n \"minorEdit\": false,\n \"_expandable\": {\n \"content\": \"nostrud consectetur do non\",\n \"collaborators\": \"ea velit 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 \"_expandable\": {\n \"lastUpdated\": \"Lorem in\",\n \"previousVersion\": \"in nulla tempor\",\n \"contributors\": \"elit laboris sit exercitation\",\n \"nextVersion\": \"cillum ad cupidatat\"\n },\n \"_links\": {}\n },\n \"version\": {\n \"by\": {\n \"type\": \"known\",\n \"accountId\": \"dolore ut\",\n \"accountType\": \"app (if this user is a bot user created on behalf of an Atlassian app)\",\n \"email\": \"do ex minim\",\n \"publicName\": \"sunt elit pariatur dolor\",\n \"profilePicture\": {\n \"path\": \"aute reprehenderit pariatur\",\n \"width\": -82179752,\n \"height\": 17069442,\n \"isDefault\": true\n },\n \"displayName\": \"culpa voluptate \",\n \"_expandable\": {\n \"operations\": \"irure sint\",\n \"details\": \"elit reprehenderit consequat cupidatat\",\n \"personalSpace\": \"pariatur sed laboris\"\n },\n \"_links\": {},\n \"username\": \"incididunt dolor\",\n \"userKey\": \"qui pariatur sit\",\n \"operations\": [\n {\n \"operation\": \"move\",\n \"targetType\": \"application\"\n },\n {\n \"operation\": \"purge_version\",\n \"targetType\": \"space\"\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\": 61213351,\n \"key\": \"elit Excepteur consequat anim\",\n \"name\": \"pariatur irure\",\n \"type\": \"dolor amet id proident\",\n \"status\": \"adipisicing fugiat Duis\",\n \"_expandable\": {\n \"settings\": \"dolore laborum pariatur ut ex\",\n \"metadata\": \"ut in consectetur\",\n \"operations\": \"aliquip dolore ea sed elit\",\n \"lookAndFeel\": \"velit ad\",\n \"permissions\": \"ea ipsum\",\n \"icon\": \"ad qui\",\n \"description\": \"proident in\",\n \"theme\": \"reprehenderit Excepteur\",\n \"history\": \"Ut exercitation consequat\",\n \"homepage\": \"eu nulla\"\n },\n \"_links\": {},\n \"icon\": {\n \"path\": \"dolore ea sunt\",\n \"width\": -95093803,\n \"height\": -60617310,\n \"isDefault\": false\n },\n \"description\": {\n \"plain\": {\n \"value\": \"enim sed ad consequat\",\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 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 },\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\": -35363724,\n \"limit\": -30343960,\n \"size\": -90147933,\n \"_links\": {}\n }\n },\n \"operations\": [\n {\n \"operation\": \"administer\",\n \"targetType\": \"page\"\n },\n {\n \"operation\": \"export\",\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\": \"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\": \"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\": \"eu anim sit\"\n },\n \"links\": {\n \"color\": \"id nulla\"\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\": \"minim Lorem nisi\"\n }\n },\n \"history\": {\n \"createdDate\": \"2007-09-27T23:07:53.620Z\"\n }\n }\n },\n \"when\": \"1950-06-28T16:21:57.436Z\",\n \"friendlyWhen\": \"exercitation magna in\",\n \"message\": \"cupidatat ad ea\",\n \"number\": 5971825,\n \"minorEdit\": true,\n \"_expandable\": {\n \"content\": \"sed commo\",\n \"collaborators\": \"cillum ad deserunt Duis\"\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\",\n \"targetType\": \"application\"\n },\n {\n \"operation\": \"use\",\n \"targetType\": \"application\"\n }\n ],\n \"children\": {\n \"_expandable\": {\n \"attachment\": \"mollit ut\",\n \"comment\": \"ex pariatur consequat proident\",\n \"page\": \"fugiat in pariatur\"\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\": -7608476,\n \"limit\": 2225252,\n \"size\": 17581626,\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\": -75678319,\n \"limit\": 9229641,\n \"size\": -64043460,\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\": 4437423,\n \"limit\": -53872409,\n \"size\": -34975159,\n \"_links\": {}\n }\n },\n \"childTypes\": {\n \"_expandable\": {\n \"all\": \"anim pariatur mo\",\n \"attachment\": \"sint id Excepteur in\",\n \"comment\": \"aliqua mollit est aute nostrud\",\n \"page\": \"exercitation Ut do proident sed\"\n },\n \"attachment\": {\n \"value\": true,\n \"_links\": {}\n },\n \"comment\": {\n \"value\": false,\n \"_links\": {}\n },\n \"page\": {\n \"value\": true,\n \"_links\": {}\n }\n },\n \"descendants\": {\n \"_expandable\": {\n \"attachment\": \"elit reprehenderit\",\n \"comment\": \"sed eu Duis\",\n \"page\": \"magna 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\": 31390514,\n \"limit\": -42570405,\n \"size\": 79663107,\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\": 5797137,\n \"limit\": 54779667,\n \"size\": 9664656,\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\": -95129492,\n \"limit\": 69336784,\n \"size\": -59459679,\n \"_links\": {}\n }\n },\n \"container\": {},\n \"body\": {\n \"_expandable\": {\n \"editor\": \"nulla u\",\n \"view\": \"Duis voluptate dolor qui\",\n \"export_view\": \"proident ipsum\",\n \"styled_view\": \"nisi deserunt\",\n \"storage\": \"ad nostrud enim laboris tempor\",\n \"editor2\": \"consequat cillum et do\",\n \"anonymous_export_view\": \"incididunt sit do amet\"\n }\n },\n \"restrictions\": {\n \"_links\": {},\n \"read\": {\n \"operation\": \"export\",\n \"_expandable\": {\n \"restrictions\": \"in proident enim nostrud\",\n \"content\": \"consequat do\"\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\": \"ut\",\n \"group\": \"anim dolor id\"\n }\n },\n \"content\": {\n \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n }\n },\n \"update\": {\n \"operation\": \"administer\",\n \"_expandable\": {\n \"restrictions\": \"v\",\n \"content\": \"est\"\n },\n \"_links\": {},\n \"restrictions\": {\n \"user\": {\n \"results\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"start\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"limit\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"size\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"group\": {\n \"results\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"start\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"limit\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"size\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"_expandable\": {\n \"user\": \"est Ut tempor cupidatat\",\n \"group\": \"reprehenderit voluptate ut\"\n }\n },\n \"content\": {\n \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n }\n }\n },\n \"_links\": {}\n }\n}"
}
]
}