Get content
GET {{baseUrl}}/api/content?type=page&spaceKey=<string>&title=<string>&status=current&postingDay=<string>&expand=<string>&expand=<string>&trigger=<string>&orderby=<string>&start=0&limit=25
Returns all content in a Confluence instance.
By default, the following objects are expanded: space, history, version.
Permissions required: Permission to access the Confluence site ('Can use' global permission). Only content that the user has permission to view will be returned.
Request Params
| Key | Datatype | Required | Description | 
|---|---|---|---|
| type | string | The type of content to return. | |
| spaceKey | string | The key of the space to be queried for its content. | |
| title | string | The title of the page to be returned. Required for <code>page</code> type. | |
| status | string | Filter the results to a set of content based on their status. If set to any, | |
| content with any status is returned. Note, the historicalstatus is currently | |||
| not supported. | |||
| postingDay | string | The posting date of the blog post to be returned. Required for | |
| <code>blogpost</code> type. Format: <code>yyyy-mm-dd</code>. | |||
| expand | string | A multi-value parameter indicating which properties of the content to expand. | 
- childTypes.allreturns whether the content has attachments, comments, or child pages. Use this if you only need to check whether the content has children of a particular type.
- childTypes.attachmentreturns whether the content has attachments.
- childTypes.commentreturns whether the content has comments.
- childTypes.pagereturns whether the content has child pages.
- containerreturns the space that the content is in. This is the same as the information returned by Get space.
- metadata.currentuserreturns information about the current user in relation to the content, including when they last viewed it, modified it, contributed to it, or added it as a favorite.
- metadata.propertiesreturns content properties that have been set via the Confluence REST API.
- metadata.labelsreturns the labels that have been added to the content.
- metadata.frontendthis property is only used by Atlassian.
- operationsreturns the operations for the content, which are used when setting permissions.
- children.pagereturns pages that are descendants at the level immediately below the content.
- children.attachmentreturns all attachments for the content.
- children.commentreturns all comments on the content.
- restrictions.read.restrictions.userreturns the users that have permission to read the content.
- restrictions.read.restrictions.groupreturns the groups that have permission to read the content. Note that this may return deleted groups, because deleting a group doesn't remove associated restrictions.
- restrictions.update.restrictions.userreturns the users that have permission to update the content.
- restrictions.update.restrictions.groupreturns the groups that have permission to update the content. Note that this may return deleted groups because deleting a group doesn't remove associated restrictions.
- historyreturns the history of the content, including the date it was created.
- history.lastUpdatedreturns information about the most recent update of the content, including who updated it and when it was updated.
- history.previousVersionreturns information about the update prior to the current content update.
- history.contributorsreturns all of the users who have contributed to the content.
- history.nextVersionreturns information about the update after to the current content update.
- ancestorsreturns the parent page, if the content is a page.
- bodyreturns the body of the content in different formats, including the editor format, view format, and export format.
- versionreturns information about the most recent update of the content, including who updated it and when it was updated.
- descendants.pagereturns pages that are descendants at any level below the content.
- descendants.attachmentreturns all attachments for the content, same as- children.attachment.
- descendants.commentreturns all comments on the content, same as- children.comment.
- spacereturns the space that the content is in. This is the same as the information returned by Get space.
In addition, the following comment-specific expansions can be used:
- 
extensions.inlinePropertiesreturns inline comment-specific properties.
- 
extensions.resolutionreturns the resolution status of each comment. | |expand| string | | A multi-value parameter indicating which properties of the content to expand.
- 
childTypes.allreturns whether the content has attachments, comments, or child pages. Use this if you only need to check whether the content has children of a particular type.
- 
childTypes.attachmentreturns whether the content has attachments.
- 
childTypes.commentreturns whether the content has comments.
- 
childTypes.pagereturns whether the content has child pages.
- 
containerreturns the space that the content is in. This is the same as the information returned by Get space.
- 
metadata.currentuserreturns information about the current user in relation to the content, including when they last viewed it, modified it, contributed to it, or added it as a favorite.
- 
metadata.propertiesreturns content properties that have been set via the Confluence REST API.
- 
metadata.labelsreturns the labels that have been added to the content.
- 
metadata.frontendthis property is only used by Atlassian.
- 
operationsreturns the operations for the content, which are used when setting permissions.
- 
children.pagereturns pages that are descendants at the level immediately below the content.
- 
children.attachmentreturns all attachments for the content.
- 
children.commentreturns all comments on the content.
- 
restrictions.read.restrictions.userreturns the users that have permission to read the content.
- 
restrictions.read.restrictions.groupreturns the groups that have permission to read the content. Note that this may return deleted groups, because deleting a group doesn't remove associated restrictions.
- 
restrictions.update.restrictions.userreturns the users that have permission to update the content.
- 
restrictions.update.restrictions.groupreturns the groups that have permission to update the content. Note that this may return deleted groups because deleting a group doesn't remove associated restrictions.
- 
historyreturns the history of the content, including the date it was created.
- 
history.lastUpdatedreturns information about the most recent update of the content, including who updated it and when it was updated.
- 
history.previousVersionreturns information about the update prior to the current content update.
- 
history.contributorsreturns all of the users who have contributed to the content.
- 
history.nextVersionreturns information about the update after to the current content update.
- 
ancestorsreturns the parent page, if the content is a page.
- 
bodyreturns the body of the content in different formats, including the editor format, view format, and export format.
- 
versionreturns information about the most recent update of the content, including who updated it and when it was updated.
- 
descendants.pagereturns pages that are descendants at any level below the content.
- 
descendants.attachmentreturns all attachments for the content, same aschildren.attachment.
- 
descendants.commentreturns all comments on the content, same aschildren.comment.
- 
spacereturns the space that the content is in. This is the same as the information returned by Get space.
In addition, the following comment-specific expansions can be used:
- extensions.inlinePropertiesreturns inline comment-specific properties.
- extensions.resolutionreturns the resolution status of each comment. | |- trigger| string | | If set to- viewed, the request will trigger a 'viewed' event for the content. When this event is triggered, the page/blogpost will appear on the 'Recently visited' tab of the user's Confluence dashboard. | |- orderby| string | | Orders the content by a particular field. Specify the field and sort direction for this parameter, as follows: 'fieldpath asc/desc'. For example, 'history.createdDate desc'. | |- start| number | | The starting index of the returned content. | |- limit| number | | The maximum number of content objects to return per page. Note, this may be restricted by fixed system limits. |
RESPONSES
status: OK
{"results":[{"id":"sunt do","type":"sunt laboris dolor consequat","status":"culpa tempo","title":"do","_expandable":{"childTypes":"do pariatur Excepteur in","container":"Lorem irure enim","metadata":"labore","operations":"sit minim officia","children":"est id","restrictions":"mollit voluptate","history":"do officia","ancestors":"Excepteur et in nulla officia","body":"consectetur qui magna","version":"nisi sunt","descendants":"esse sint dolore quis consequat","space":"proi"},"space":{"id":60205660,"key":"ipsum incidid","name":"id nisi velit officia","type":"sit esse","status":"ad Ut dolor minim","_expandable":{"settings":"sed","metadata":"commodo est esse sunt","operations":"laboris aliqua cillum sunt est","lookAndFeel":"cillum consequat","permissions":"eiusmod","icon":"in","description":"mollit minim nostrud nisi consectetur","theme":"laborum nulla","history":"laborum ","homepage":"voluptate laboris"},"_links":{},"icon":{"path":"esse adipisicing","width":35801114,"height":-71802023,"isDefault":false},"description":{"plain":{"value":"eu fugiat adipisicing cupidatat","representation":"view","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]},"view":{"value":"labore dolor sed","representation":"plain","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]}},"homepage":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"metadata":{"labels":{"results":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}],"start":21335566,"limit":-96767725,"size":-5422569,"_links":{}}},"operations":[{"operation":"administer","targetType":"page"},{"operation":"copy","targetType":"space"}],"permissions":[{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"delete","targetType":"page"},"anonymousAccess":false,"unlicensedAccess":false},{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"export","targetType":"space"},"anonymousAccess":false,"unlicensedAccess":false}],"settings":{"routeOverrideEnabled":false,"_links":{}},"theme":{},"lookAndFeel":{"headings":{"color":"Lorem fugiat eiusmod"},"links":{"color":"dolore amet v"},"menus":{"hoverOrFocus":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"color":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"header":{"backgroundColor":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"button":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"primaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"secondaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"search":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"content":{"screen":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"container":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"header":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"body":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"bordersAndDividers":{"color":"aliqua"}},"history":{"createdDate":"1945-07-20T12:47:31.912Z"}},"history":{"latest":false,"createdBy":{"type":"anonymous","accountId":"esse tempor","accountType":"app (if this user is a bot user created on behalf of an Atlassian app)","email":"ea","publicName":"tempor Lorem","profilePicture":{"path":"esse commodo","width":88171188,"height":30413884,"isDefault":false},"displayName":"ullamco id","_expandable":{"operations":"ea in pariatur enim","details":"oc","personalSpace":"amet aliquip"},"_links":{},"username":"non eu dolor","userKey":"aliqua","operations":[{"operation":"export","targetType":"attachment"},{"operation":"copy","targetType":"space"}],"details":{"business":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"personal":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"personalSpace":{"id":1692968,"key":"irure reprehenderit occaecat ut","name":"ad aliquip velit quis Lorem","type":"reprehenderit elit consectetur voluptate","status":"minim tempor in consectetur eiusmod","_expandable":{"settings":"ex id sed ali","metadata":"irure","operations":"Excepteur culpa nulla","lookAndFeel":"officia","permissions":"ullamco","icon":"sit aute commodo eiusmod incididunt","description":"eiusmod culpa","theme":"exercitation ea dolore esse","history":"amet ea c","homepage":"nisi"},"_links":{},"icon":{"path":"ad","width":80571438,"height":-38013815,"isDefault":false},"description":{"plain":{"value":"dolor dolor voluptate ad","representation":"plain","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]},"view":{"value":"sunt esse Excepteur","representation":"plain","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]}},"homepage":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"metadata":{"labels":{"results":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}],"start":-34005828,"limit":-4301482,"size":53581374,"_links":{}}},"operations":[{"operation":"read","targetType":"attachment"},{"operation":"delete","targetType":"comment"}],"permissions":[{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"copy","targetType":"attachment"},"anonymousAccess":false,"unlicensedAccess":false},{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"update","targetType":"comment"},"anonymousAccess":false,"unlicensedAccess":false}],"settings":{"routeOverrideEnabled":false,"_links":{}},"theme":{},"lookAndFeel":{"headings":{"color":"Excepteur in"},"links":{"color":"minim in"},"menus":{"hoverOrFocus":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"color":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"header":{"backgroundColor":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"button":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"primaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"secondaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"search":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"content":{"screen":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"container":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"header":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"body":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"bordersAndDividers":{"color":"nostrud commodo aute"}},"history":{"createdDate":"2004-09-10T04:35:23.772Z"}}},"createdDate":"1970-03-27T08:07:00.591Z","lastUpdated":{"by":{"type":"unknown","accountId":"elit ipsum sed dolor ut","accountType":"app (if this user is a bot user created on behalf of an Atlassian app)","email":"enim est","publicName":"Excepteur","profilePicture":{"path":"do","width":-17523343,"height":-78582915,"isDefault":false},"displayName":"sint ea ut nulla","_expandable":{"operations":"exercitation ut ad culpa","details":"eu dolore reprehenderit dolor","personalSpace":"eu in sed enim"},"_links":{},"username":"aliqua Excepteur ea consectetur","userKey":"cillum non","operations":[{"operation":"export","targetType":"blogpost"},{"operation":"create","targetType":"application"}],"details":{"business":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"personal":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"personalSpace":{"id":18387654,"key":"Lorem nostrud","name":"exercitation ex","type":"Exc","status":"consectetur nostrud","_expandable":{"settings":"exercitation dolore","metadata":"exercitation ipsum fugiat","operations":"dolore mollit fugiat","lookAndFeel":"cupidatat voluptate cillum Excepteur","permissions":"dolore non aliquip sit","icon":"Duis ullamco ex aliqua","description":"Lorem veniam","theme":"eiusmod su","history":"pariatur consectetur in","homepage":"cupidatat id est labore"},"_links":{},"icon":{"path":"laborum consequat culpa","width":-90302953,"height":28345706,"isDefault":true},"description":{"plain":{"value":"sit incididunt ut occaecat pariatur","representation":"view","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]},"view":{"value":"d","representation":"view","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]}},"homepage":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"metadata":{"labels":{"results":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}],"start":8195310,"limit":-65165782,"size":27626413,"_links":{}}},"operations":[{"operation":"move","targetType":"page"},{"operation":"update","targetType":"comment"}],"permissions":[{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"delete","targetType":"application"},"anonymousAccess":false,"unlicensedAccess":false},{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"read","targetType":"comment"},"anonymousAccess":false,"unlicensedAccess":false}],"settings":{"routeOverrideEnabled":true,"_links":{}},"theme":{},"lookAndFeel":{"headings":{"color":"qui et"},"links":{"color":"Duis eu in elit"},"menus":{"hoverOrFocus":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"color":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"header":{"backgroundColor":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"button":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"primaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"secondaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"search":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"content":{"screen":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"container":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"header":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"body":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"bordersAndDividers":{"color":"cillum"}},"history":{"createdDate":"2016-06-25T06:14:12.035Z"}}},"when":"1956-01-29T03:40:00.569Z","friendlyWhen":"consectetur ut sunt est","message":"adipisicing mollit","number":45571709,"minorEdit":true,"_expandable":{"content":"Lorem irure ad reprehenderit culpa","collaborators":"Duis enim dolore laborum"},"_links":{},"content":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"collaborators":{"users":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"userKeys":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"_links":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}}},"previousVersion":{"by":{"type":"known","accountId":"consequat sunt amet","accountType":"app (if this user is a bot user created on behalf of an Atlassian app)","email":"enim","publicName":"consectetur culpa","profilePicture":{"path":"dolor","width":7395906,"height":68757318,"isDefault":false},"displayName":"magna tempor","_expandable":{"operations":"Lorem sunt eiusmod dolore","details":"non Duis amet et","personalSpace":"laboris sint dolore nisi"},"_links":{},"username":"dolor ipsum velit","userKey":"consectetur reprehenderit ipsu","operations":[{"operation":"update","targetType":"blogpost"},{"operation":"update","targetType":"blogpost"}],"details":{"business":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"personal":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"personalSpace":{"id":96838729,"key":"nostrud","name":"reprehenderit voluptate nisi qui","type":"sed","status":"est non in cupidatat","_expandable":{"settings":"minim incididunt velit voluptate","metadata":"ullamco in ut","operations":"consequat ad veniam quis","lookAndFeel":"in dolore est eu","permissions":"ea ex irure","icon":"eiusmod id amet Excepteur","description":"eu ea","theme":"magna qui nulla","history":"reprehenderit quis dolor cupidatat","homepage":"ex"},"_links":{},"icon":{"path":"dolor voluptat","width":94556407,"height":-5348603,"isDefault":true},"description":{"plain":{"value":"in irure occaecat sunt","representation":"view","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]},"view":{"value":"dolor enim mollit anim labore","representation":"plain","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]}},"homepage":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"metadata":{"labels":{"results":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}],"start":69606272,"limit":54271640,"size":-42912317,"_links":{}}},"operations":[{"operation":"delete","targetType":"comment"},{"operation":"delete","targetType":"application"}],"permissions":[{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"use","targetType":"comment"},"anonymousAccess":false,"unlicensedAccess":false},{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"delete","targetType":"attachment"},"anonymousAccess":false,"unlicensedAccess":false}],"settings":{"routeOverrideEnabled":false,"_links":{}},"theme":{},"lookAndFeel":{"headings":{"color":"officia"},"links":{"color":"id Duis aliquip non"},"menus":{"hoverOrFocus":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"color":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"header":{"backgroundColor":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"button":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"primaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"secondaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"search":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"content":{"screen":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"container":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"header":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"body":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"bordersAndDividers":{"color":"Excepteur"}},"history":{"createdDate":"1987-01-30T02:57:52.771Z"}}},"when":"2020-10-02T22:02:12.743Z","friendlyWhen":"sint mollit","message":"incididunt","number":-65934150,"minorEdit":true,"_expandable":{"content":"laborum ullamco aute nostrud","collaborators":"nostrud enim"},"_links":{},"content":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"collaborators":{"users":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"userKeys":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"_links":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}}},"contributors":{"publishers":{"users":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"userKeys":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"_links":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}}},"nextVersion":{"by":{"type":"anonymous","accountId":"ut dolor do a","accountType":"atlassian","email":"amet veniam dolore nostrud","publicName":"reprehenderit magna cupidatat","profilePicture":{"path":"incididunt amet","width":-88495150,"height":30940931,"isDefault":true},"displayName":"enim nostrud sed","_expandable":{"operations":"elit in","details":"ullamco","personalSpace":"ullamco Dui"},"_links":{},"username":"enim sint ipsum","userKey":"mollit nostrud","operations":[{"operation":"purge","targetType":"application"},{"operation":"restore","targetType":"page"}],"details":{"business":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"personal":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"personalSpace":{"id":66214882,"key":"nostrud sit et quis","name":"in ut nisi","type":"sint","status":"L","_expandable":{"settings":"exercitation quis dolore aliqua","metadata":"esse id Duis","operations":"incididunt in elit","lookAndFeel":"laboris nostrud anim incididunt","permissions":"nulla esse est","icon":"laboris sint fugiat Ut","description":"sunt","theme":"ipsum","history":"consequa","homepage":"dolor ullamco"},"_links":{},"icon":{"path":"do","width":71725783,"height":66199122,"isDefault":true},"description":{"plain":{"value":"Ut ut quis exercitation","representation":"view","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]},"view":{"value":"consectetur ipsum exercitation consequat","representation":"plain","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]}},"homepage":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"metadata":{"labels":{"results":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}],"start":82425547,"limit":53107033,"size":95260135,"_links":{}}},"operations":[{"operation":"use","targetType":"page"},{"operation":"update","targetType":"space"}],"permissions":[{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"administer","targetType":"application"},"anonymousAccess":false,"unlicensedAccess":false},{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"read","targetType":"comment"},"anonymousAccess":false,"unlicensedAccess":false}],"settings":{"routeOverrideEnabled":true,"_links":{}},"theme":{},"lookAndFeel":{"headings":{"color":"sint minim Duis ut"},"links":{"color":"in"},"menus":{"hoverOrFocus":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"color":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"header":{"backgroundColor":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"button":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"primaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"secondaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"search":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"content":{"screen":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"container":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"header":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"body":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"bordersAndDividers":{"color":"quis ad"}},"history":{"createdDate":"1980-02-27T02:27:41.207Z"}}},"when":"1989-10-17T07:25:27.831Z","friendlyWhen":"adipisicing consequat labore","message":"exercitation deserunt cupidatat","number":82910493,"minorEdit":false,"_expandable":{"content":"ut qui dolor","collaborators":"est velit ad dolor Ut"},"_links":{},"content":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"collaborators":{"users":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"userKeys":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"_links":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}}},"_expandable":{"lastUpdated":"sed ut dolore","previousVersion":"nostrud laboris in ea","contributors":"consectetur dolor magna","nextVersion":"eiusmod eu ullamco commodo"},"_links":{}},"version":{"by":{"type":"anonymous","accountId":"amet in","accountType":"app (if this user is a bot user created on behalf of an Atlassian app)","email":"qui officia cupidatat","publicName":"aliquip","profilePicture":{"path":"nulla","width":-89207006,"height":38799552,"isDefault":true},"displayName":"cons","_expandable":{"operations":"","details":"consequat Duis Lorem eiusmod eu","personalSpace":"officia ad tempor"},"_links":{},"username":"eu et ipsum consequat in","userKey":"consequat non","operations":[{"operation":"update","targetType":"application"},{"operation":"purge_version","targetType":"application"}],"details":{"business":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"personal":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"personalSpace":{"id":-34873451,"key":"in est cillum velit sit","name":"ipsum Excepteur consequat magna consectetur","type":"ullamco amet ipsum","status":"ea amet eiusmod adipisicing","_expandable":{"settings":"minim magna irure officia","metadata":"tempor officia sed","operations":"sunt minim occaecat cupidatat","lookAndFeel":"id","permissions":"Ut amet et nostrud","icon":"reprehenderit cil","description":"sed","theme":"dolor Excepteur qui enim","history":"ex irure eu reprehenderit pariatur","homepage":"tempor ea"},"_links":{},"icon":{"path":"ut aliquip","width":-38039615,"height":75796248,"isDefault":true},"description":{"plain":{"value":"in Lorem occaecat","representation":"view","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]},"view":{"value":"cillum sit tempor","representation":"plain","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]}},"homepage":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"metadata":{"labels":{"results":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}],"start":-85057793,"limit":1621841,"size":-84087388,"_links":{}}},"operations":[{"operation":"copy","targetType":"comment"},{"operation":"purge_version","targetType":"space"}],"permissions":[{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"delete","targetType":"application"},"anonymousAccess":false,"unlicensedAccess":false},{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"update","targetType":"space"},"anonymousAccess":false,"unlicensedAccess":false}],"settings":{"routeOverrideEnabled":false,"_links":{}},"theme":{},"lookAndFeel":{"headings":{"color":"sunt"},"links":{"color":"pariatur reprehenderit Duis id"},"menus":{"hoverOrFocus":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"color":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"header":{"backgroundColor":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"button":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"primaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"secondaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"search":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"content":{"screen":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"container":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"header":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"body":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"bordersAndDividers":{"color":"culpa eu amet nisi"}},"history":{"createdDate":"1975-10-08T21:30:18.992Z"}}},"when":"1941-02-01T07:31:05.307Z","friendlyWhen":"sunt cil","message":"ea","number":59948332,"minorEdit":true,"_expandable":{"content":"exercitation","collaborators":"occaecat reprehenderit el"},"_links":{},"content":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"collaborators":{"users":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"userKeys":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"_links":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}}},"ancestors":[{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}],"operations":[{"operation":"update","targetType":"page"},{"operation":"export","targetType":"application"}],"children":{"_expandable":{"attachment":"labore Excepteur aute","comment":"veniam tempor","page":"aliqua occaecat"},"_links":{},"attachment":{"results":[{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}],"start":-13190560,"limit":51770441,"size":-10299358,"_links":{}},"comment":{"results":[{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}],"start":65579625,"limit":-26867552,"size":89646228,"_links":{}},"page":{"results":[{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}],"start":38294261,"limit":4625657,"size":-61582790,"_links":{}}},"childTypes":{"_expandable":{"all":"ad consectetur","attachment":"occaecat of","comment":"dolore commodo laborum in","page":"dolor nostr"},"attachment":{"value":false,"_links":{}},"comment":{"value":false,"_links":{}},"page":{"value":false,"_links":{}}},"descendants":{"_expandable":{"attachment":"dolor m","comment":"in non officia voluptate","page":"velit voluptate ullamco culpa"},"_links":{},"attachment":{"results":[{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}],"start":22601052,"limit":98824738,"size":-90174746,"_links":{}},"comment":{"results":[{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}],"start":41433202,"limit":-17990369,"size":8922630,"_links":{}},"page":{"results":[{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}],"start":-69844990,"limit":94621659,"size":17843196,"_links":{}}},"container":{},"body":{"_expandable":{"editor":"do dolor reprehenderit","view":"adipisicing eiusmod nostrud commodo","export_view":"minim elit sit sed","styled_view":"Ut dolore qui est","storage":"dolore aliqua anim ut esse","editor2":"ipsum","anonymous_export_view":"sed sit"}},"restrictions":{"_links":{},"read":{"operation":"administer","_expandable":{"restrictions":"sint","content":"esse"},"_links":{},"restrictions":{"user":{"results":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"start":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"limit":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"size":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"group":{"results":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"start":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"limit":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"size":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"_expandable":{"user":"ea enim non qui","group":"adipisicing in incididunt quis sunt"}},"content":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}},"update":{"operation":"purge_version","_expandable":{"restrictions":"fugiat","content":"consequat esse elit Ut"},"_links":{},"restrictions":{"user":{"results":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"start":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"limit":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"size":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"group":{"results":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"start":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"limit":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"size":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"_expandable":{"user":"minim incididunt proident ut","group":"reprehenderit"}},"content":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}}},"_links":{}},{"id":"elit nulla","type":"ipsum consequat in Excepteur","status":"fugiat dolore","title":"cupidatat","_expandable":{"childTypes":"mollit incididunt nisi in","container":"dolor ullamco dolore deserunt","metadata":"nulla dolore","operations":"pariatur","children":"do sed magna mollit","restrictions":"irure sunt","history":"id adipisicing labore mollit","ancestors":"laborum laboris dolore","body":"Lorem labore in","version":"qui pariatur fugiat ut incididunt","descendants":"sint reprehenderit esse occaecat","space":"quis ut deserunt in"},"space":{"id":86546589,"key":"elit Lor","name":"fugiat nisi","type":"dolor eiusmod sed","status":"sunt amet Excepteur","_expandable":{"settings":"officia dolore","metadata":"pariatur ad qui","operations":"do aliqua consectetur aute commodo","lookAndFeel":"anim esse deserunt officia","permissions":"est laboris","icon":"nulla Ut","description":"minim incididunt est ullamco","theme":"sint qui proident eiusmod minim","history":"Duis magna","homepage":"Lorem labore eiusmod"},"_links":{},"icon":{"path":"ut laborum Excepteur","width":-61674669,"height":-30628907,"isDefault":false},"description":{"plain":{"value":"non officia in amet","representation":"plain","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]},"view":{"value":"adipisicing ipsum","representation":"view","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]}},"homepage":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"metadata":{"labels":{"results":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}],"start":87848164,"limit":-61533075,"size":19442371,"_links":{}}},"operations":[{"operation":"purge_version","targetType":"attachment"},{"operation":"copy","targetType":"space"}],"permissions":[{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"purge","targetType":"space"},"anonymousAccess":false,"unlicensedAccess":false},{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"purge","targetType":"space"},"anonymousAccess":false,"unlicensedAccess":false}],"settings":{"routeOverrideEnabled":false,"_links":{}},"theme":{},"lookAndFeel":{"headings":{"color":"sunt mollit"},"links":{"color":"proident velit ullamco"},"menus":{"hoverOrFocus":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"color":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"header":{"backgroundColor":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"button":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"primaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"secondaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"search":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"content":{"screen":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"container":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"header":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"body":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"bordersAndDividers":{"color":"in commodo"}},"history":{"createdDate":"1949-04-30T07:24:20.972Z"}},"history":{"latest":true,"createdBy":{"type":"user","accountId":"aliquip nisi","accountType":"app (if this user is a bot user created on behalf of an Atlassian app)","email":"dolor ullamco Ut ut","publicName":"culpa","profilePicture":{"path":"nostrud enim reprehenderit ad in","width":39837732,"height":92105500,"isDefault":false},"displayName":"et","_expandable":{"operations":"eiusmod est","details":"voluptate sunt","personalSpace":"incididunt ad ea"},"_links":{},"username":"esse labore elit id irure","userKey":"nostrud deserunt exercitation dolore","operations":[{"operation":"create","targetType":"blogpost"},{"operation":"read","targetType":"space"}],"details":{"business":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"personal":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"personalSpace":{"id":-5418076,"key":"labore id","name":"ut dolor","type":"laboris adipisicing","status":"deserunt in culpa sit Lorem","_expandable":{"settings":"do consectetur nulla fugi","metadata":"Ut","operations":"et ad occaecat fugiat pariatur","lookAndFeel":"quis sed","permissions":"dolore aute","icon":"ea","description":"mi","theme":"officia aliquip","history":"dolore tempor proident qui","homepage":"quis amet do"},"_links":{},"icon":{"path":"aliqua","width":57399905,"height":21410136,"isDefault":false},"description":{"plain":{"value":"minim qui pariatur laboris Excepteur","representation":"plain","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]},"view":{"value":"in veniam n","representation":"view","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]}},"homepage":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"metadata":{"labels":{"results":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}],"start":52225726,"limit":-47166740,"size":-20265731,"_links":{}}},"operations":[{"operation":"export","targetType":"blogpost"},{"operation":"update","targetType":"blogpost"}],"permissions":[{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"use","targetType":"attachment"},"anonymousAccess":false,"unlicensedAccess":false},{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"delete","targetType":"page"},"anonymousAccess":false,"unlicensedAccess":false}],"settings":{"routeOverrideEnabled":false,"_links":{}},"theme":{},"lookAndFeel":{"headings":{"color":"Ut consequat sunt Exc"},"links":{"color":"amet labore sunt"},"menus":{"hoverOrFocus":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"color":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"header":{"backgroundColor":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"button":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"primaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"secondaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"search":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"content":{"screen":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"container":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"header":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"body":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"bordersAndDividers":{"color":"sint do ullamco cillum"}},"history":{"createdDate":"1970-03-01T18:48:26.751Z"}}},"createdDate":"1943-07-30T11:41:40.329Z","lastUpdated":{"by":{"type":"anonymous","accountId":"in laboris Lorem tempor","accountType":"app (if this user is a bot user created on behalf of an Atlassian app)","email":"id dolor magna adipisicing","publicName":"est eiusmod culpa exercitation in","profilePicture":{"path":"commodo elit in ut sunt","width":5782479,"height":-67086746,"isDefault":true},"displayName":"tempor deserunt amet","_expandable":{"operations":"aute dolore","details":"fugiat ut dolore","personalSpace":"elit"},"_links":{},"username":"adipisicing sit reprehenderit","userKey":"non sit incididunt labore","operations":[{"operation":"read","targetType":"comment"},{"operation":"read","targetType":"attachment"}],"details":{"business":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"personal":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"personalSpace":{"id":737514,"key":"anim dolore dolor","name":"Excepteur","type":"labore dolor","status":"quis","_expandable":{"settings":"anim dolore magna Ut","metadata":"reprehenderit eu ipsum cupidatat","operations":"officia deserunt","lookAndFeel":"commodo dolor","permissions":"non irure qui labore","icon":"qui aute cillum","description":"non cupidatat dolor nostrud Lorem","theme":"consectetur officia sed","history":"commodo","homepage":"ut eu"},"_links":{},"icon":{"path":"ea","width":25337872,"height":-35164708,"isDefault":true},"description":{"plain":{"value":"velit dolor Duis est ut","representation":"view","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]},"view":{"value":"deserunt esse","representation":"plain","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]}},"homepage":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"metadata":{"labels":{"results":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}],"start":-84595781,"limit":16341566,"size":73614728,"_links":{}}},"operations":[{"operation":"delete","targetType":"space"},{"operation":"restore","targetType":"page"}],"permissions":[{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"export","targetType":"space"},"anonymousAccess":false,"unlicensedAccess":false},{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"purge_version","targetType":"space"},"anonymousAccess":false,"unlicensedAccess":false}],"settings":{"routeOverrideEnabled":true,"_links":{}},"theme":{},"lookAndFeel":{"headings":{"color":"in exercitation"},"links":{"color":"dolo"},"menus":{"hoverOrFocus":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"color":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"header":{"backgroundColor":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"button":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"primaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"secondaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"search":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"content":{"screen":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"container":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"header":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"body":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"bordersAndDividers":{"color":"in eiusmod sunt"}},"history":{"createdDate":"1952-11-22T15:15:20.067Z"}}},"when":"1960-06-04T21:50:15.907Z","friendlyWhen":"amet aliqua","message":"ea tempor reprehenderit","number":-24339201,"minorEdit":true,"_expandable":{"content":"cupidatat esse eu consequat","collaborators":"nisi voluptate"},"_links":{},"content":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"collaborators":{"users":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"userKeys":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"_links":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}}},"previousVersion":{"by":{"type":"unknown","accountId":"cupidatat nulla","accountType":"atlassian","email":"in exercitation","publicName":"voluptate aute do veniam","profilePicture":{"path":"dolo","width":-42395198,"height":-93349568,"isDefault":true},"displayName":"eu nostrud","_expandable":{"operations":"ea in dolore","details":"fugiat adipisicing elit","personalSpace":"mollit enim sint exercitation"},"_links":{},"username":"eu ut minim cillum","userKey":"laborum","operations":[{"operation":"update","targetType":"space"},{"operation":"create","targetType":"page"}],"details":{"business":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"personal":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"personalSpace":{"id":54062056,"key":"nulla do laboris sunt u","name":"Ut et","type":"cupidatat Duis et","status":"eiusmod nulla ullamco","_expandable":{"settings":"sed laborum veniam fugiat","metadata":"sunt commodo dolor","operations":"sunt nostrud","lookAndFeel":"minim in","permissions":"dolor pariatur enim eu","icon":"sed Excepteur enim","description":"velit","theme":"aliqua labore","history":"anim officia dolore reprehenderit","homepage":"dolore nostrud ad pariatur"},"_links":{},"icon":{"path":"magna cillum adipisicing occaeca","width":58350725,"height":51713288,"isDefault":true},"description":{"plain":{"value":"Duis mollit id","representation":"plain","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]},"view":{"value":"non et culpa","representation":"plain","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]}},"homepage":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"metadata":{"labels":{"results":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}],"start":94452561,"limit":-64041508,"size":-43780261,"_links":{}}},"operations":[{"operation":"update","targetType":"comment"},{"operation":"export","targetType":"comment"}],"permissions":[{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"purge","targetType":"comment"},"anonymousAccess":false,"unlicensedAccess":false},{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"update","targetType":"application"},"anonymousAccess":false,"unlicensedAccess":false}],"settings":{"routeOverrideEnabled":false,"_links":{}},"theme":{},"lookAndFeel":{"headings":{"color":"elit dolore anim"},"links":{"color":"fugiat dolore"},"menus":{"hoverOrFocus":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"color":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"header":{"backgroundColor":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"button":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"primaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"secondaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"search":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"content":{"screen":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"container":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"header":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"body":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"bordersAndDividers":{"color":"in ad et adipisicing non"}},"history":{"createdDate":"1979-02-22T22:47:18.233Z"}}},"when":"1945-02-23T20:41:28.452Z","friendlyWhen":"eu aliqua ex","message":"dolor eu Lorem officia exercitation","number":45400667,"minorEdit":true,"_expandable":{"content":"consectetur ipsum dolor eu irure","collaborators":"in tempor"},"_links":{},"content":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"collaborators":{"users":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"userKeys":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"_links":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}}},"contributors":{"publishers":{"users":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"userKeys":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"_links":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}}},"nextVersion":{"by":{"type":"anonymous","accountId":"in tempor magna sit","accountType":"atlassian","email":"anim tempor exercitation enim veniam","publicName":"minim Excepteur labore reprehenderit aliqua","profilePicture":{"path":"et ","width":-53435069,"height":-6935720,"isDefault":true},"displayName":"laborum commodo veniam","_expandable":{"operations":"dolore esse culpa id","details":"mollit culpa","personalSpace":"cillum nostrud culpa non aliquip"},"_links":{},"username":"dolore amet in","userKey":"et pariatur","operations":[{"operation":"restore","targetType":"space"},{"operation":"read","targetType":"attachment"}],"details":{"business":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"personal":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"personalSpace":{"id":-71320936,"key":"culpa","name":"fugiat nisi exercitat","type":"ut culpa sed labore","status":"cupidatat enim dolor","_expandable":{"settings":"exercitation","metadata":"dolor","operations":"in officia sunt","lookAndFeel":"ut veniam enim ea Duis","permissions":"ipsum s","icon":"ex ipsum in","description":"sunt proident","theme":"nulla laborum repreh","history":"magna dolore i","homepage":"sit"},"_links":{},"icon":{"path":"laboris tempor","width":-76082074,"height":-11842518,"isDefault":true},"description":{"plain":{"value":"in in ex nisi","representation":"view","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]},"view":{"value":"Duis ex","representation":"view","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]}},"homepage":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"metadata":{"labels":{"results":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}],"start":4206330,"limit":94999775,"size":-31144885,"_links":{}}},"operations":[{"operation":"create","targetType":"attachment"},{"operation":"administer","targetType":"space"}],"permissions":[{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"update","targetType":"blogpost"},"anonymousAccess":false,"unlicensedAccess":false},{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"purge_version","targetType":"application"},"anonymousAccess":false,"unlicensedAccess":false}],"settings":{"routeOverrideEnabled":false,"_links":{}},"theme":{},"lookAndFeel":{"headings":{"color":"id dolor"},"links":{"color":"deserunt irure"},"menus":{"hoverOrFocus":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"color":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"header":{"backgroundColor":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"button":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"primaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"secondaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"search":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"content":{"screen":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"container":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"header":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"body":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"bordersAndDividers":{"color":"in"}},"history":{"createdDate":"1970-12-31T23:50:15.677Z"}}},"when":"2015-04-04T19:51:26.373Z","friendlyWhen":"eiusmod aute","message":"enim","number":3884805,"minorEdit":false,"_expandable":{"content":"incididunt esse est veniam","collaborators":"ut et"},"_links":{},"content":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"collaborators":{"users":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"userKeys":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"_links":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}}},"_expandable":{"lastUpdated":"occaecat in","previousVersion":"nulla ullamco occaecat velit","contributors":"Duis commodo laborum ipsum","nextVersion":"fugiat voluptate Lorem Ut"},"_links":{}},"version":{"by":{"type":"anonymous","accountId":"laboris labore ex","accountType":"app (if this user is a bot user created on behalf of an Atlassian app)","email":"consectetur","publicName":"velit adipisicing sed","profilePicture":{"path":"cupidatat Duis labore","width":-91931378,"height":-59704247,"isDefault":true},"displayName":"enim aliquip quis","_expandable":{"operations":"nisi","details":"ut enim ex","personalSpace":"commodo mollit dolor consequat"},"_links":{},"username":"in laborum","userKey":"ex officia","operations":[{"operation":"create","targetType":"attachment"},{"operation":"move","targetType":"page"}],"details":{"business":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"personal":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"personalSpace":{"id":-2724486,"key":"sit nisi","name":"laborum","type":"Excepteur anim dolore","status":"do nisi","_expandable":{"settings":"proident nostrud ad","metadata":"officia sit anim","operations":"elit eiusmod dolore","lookAndFeel":"ut pariatur Lorem est","permissions":"aliqua","icon":"ut","description":"cupidatat labore Exc","theme":"commodo dolor ","history":"voluptate ut irure","homepage":"consectetur nulla quis"},"_links":{},"icon":{"path":"anim","width":-84486380,"height":-86807642,"isDefault":false},"description":{"plain":{"value":"eiusmod et","representation":"view","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]},"view":{"value":"est commodo Ut","representation":"plain","embeddedContent":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}]}},"homepage":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"metadata":{"labels":{"results":[{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}],"start":-57218428,"limit":-86482204,"size":-6293895,"_links":{}}},"operations":[{"operation":"delete","targetType":"comment"},{"operation":"copy","targetType":"page"}],"permissions":[{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"copy","targetType":"comment"},"anonymousAccess":false,"unlicensedAccess":false},{"subjects":{"_expandable":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"user":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"group":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"operation":{"operation":"purge","targetType":"attachment"},"anonymousAccess":false,"unlicensedAccess":false}],"settings":{"routeOverrideEnabled":true,"_links":{}},"theme":{},"lookAndFeel":{"headings":{"color":"ullamco in ut mollit"},"links":{"color":"sunt"},"menus":{"hoverOrFocus":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"color":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"header":{"backgroundColor":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"button":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"primaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"secondaryNavigation":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"search":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"content":{"screen":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"container":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"header":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"body":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"bordersAndDividers":{"color":"sed id eiusmod sint"}},"history":{"createdDate":"1963-02-10T22:30:32.490Z"}}},"when":"1969-06-06T16:15:32.379Z","friendlyWhen":"id minim commodo eiusmod dolore","message":"labore adipisicing Duis","number":88029239,"minorEdit":false,"_expandable":{"content":"labore quis id nostrud in","collaborators":"officia consequat cupidatat ex"},"_links":{},"content":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},"collaborators":{"users":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"userKeys":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"_links":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}}},"ancestors":[{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}],"operations":[{"operation":"export","targetType":"blogpost"},{"operation":"export","targetType":"comment"}],"children":{"_expandable":{"attachment":"ipsum proident laborum","comment":"exercitation labore","page":"ullamco ipsum eiusmo"},"_links":{},"attachment":{"results":[{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}],"start":-27855203,"limit":88622276,"size":40110760,"_links":{}},"comment":{"results":[{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}],"start":-83242893,"limit":5861529,"size":55077251,"_links":{}},"page":{"results":[{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}],"start":42940300,"limit":98394904,"size":80562512,"_links":{}}},"childTypes":{"_expandable":{"all":"occaecat nostrud in dolor velit","attachment":"voluptate","comment":"dolore anim ad ut","page":"adipisicing veniam sit qui"},"attachment":{"value":true,"_links":{}},"comment":{"value":false,"_links":{}},"page":{"value":false,"_links":{}}},"descendants":{"_expandable":{"attachment":"tempor ea Lorem ullamco","comment":"nulla quis ipsum","page":"amet do Lorem"},"_links":{},"attachment":{"results":[{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}],"start":-91100233,"limit":22553657,"size":58217037,"_links":{}},"comment":{"results":[{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}],"start":-64651346,"limit":-55017199,"size":-93533780,"_links":{}},"page":{"results":[{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"},{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}],"start":-87518963,"limit":-46563381,"size":26084857,"_links":{}}},"container":{},"body":{"_expandable":{"editor":"commodo qui labore","view":"exercitation labore","export_view":"dolore sed quis voluptate","styled_view":"nostrud nulla","storage":"incididunt ut culpa reprehenderit","editor2":"in dolore aliquip in culpa","anonymous_export_view":"id"}},"restrictions":{"_links":{},"read":{"operation":"read","_expandable":{"restrictions":"in nisi tempor dolore","content":"incididunt"},"_links":{},"restrictions":{"user":{"results":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"start":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"limit":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"size":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"group":{"results":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"start":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"limit":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"size":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"_expandable":{"user":"Ut","group":"et dolor voluptate ex"}},"content":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}},"update":{"operation":"purge_version","_expandable":{"restrictions":"velit labore laborum proident","content":"con"},"_links":{},"restrictions":{"user":{"results":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"start":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"limit":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"size":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"group":{"results":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"start":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"limit":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"},"size":{"value":"\u003cError: Too many levels of nesting to fake this schema\u003e"}},"_expandable":{"user":"dolor ad ex labore esse","group":"anim cupidatat nulla"}},"content":{"value":"\u003cCircular reference to #/components/schemas/Content detected\u003e"}}},"_links":{}}],"start":-34437177,"limit":89070154,"size":-21252384,"_links":{}}