Skip to content

Commit

Permalink
fix: Update FolderLocks response (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
box-apimgmt authored Nov 28, 2023
1 parent 6492931 commit 987d0be
Showing 1 changed file with 18 additions and 35 deletions.
53 changes: 18 additions & 35 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"url": "http://www.apache.org/licenses/LICENSE-2.0"
},
"version": "2.0.0",
"x-box-commit-hash": "8b906fd435"
"x-box-commit-hash": "e95e44fb19"
},
"servers": [
{
Expand Down Expand Up @@ -28925,43 +28925,26 @@
"x-box-resource-id": "folder_locks",
"x-box-tag": "folder_locks",
"description": "A list of folder locks",
"allOf": [
{
"type": "object",
"description": "The part of an API response that describes marker\nbased pagination",
"properties": {
"limit": {
"description": "The limit that was used for these entries. This will be the same as the\n`limit` query parameter unless that value exceeded the maximum value\nallowed. The maximum value varies by API.",
"example": 1000,
"type": "integer",
"format": "int64"
},
"next_marker": {
"description": "The marker for the start of the next page of results.",
"example": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii",
"type": "string",
"nullable": true
},
"prev_marker": {
"description": "The marker for the start of the previous page of results.",
"example": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVih",
"type": "string",
"nullable": true
}
"properties": {
"entries": {
"type": "array",
"description": "A list of folder locks",
"items": {
"$ref": "#/components/schemas/FolderLock"
}
},
{
"properties": {
"entries": {
"type": "array",
"description": "A list of folder locks",
"items": {
"$ref": "#/components/schemas/FolderLock"
}
}
}
"limit": {
"description": "The limit that was used for these entries. This will be the same as the\n`limit` query parameter unless that value exceeded the maximum value\nallowed. The maximum value varies by API.",
"example": "1000",
"type": "string"
},
"next_marker": {
"description": "The marker for the start of the next page of results.",
"example": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii",
"type": "string",
"nullable": true
}
]
}
},
"IntegrationMapping": {
"title": "Integration mapping",
Expand Down

0 comments on commit 987d0be

Please sign in to comment.