Box · Schema

Folder Locks

A list of folder locks

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing

Properties

Name Type Description
entries array A list of folder locks
limit string The limit that was used for these entries. This will be the same as the `limit` query parameter unless that value exceeded the maximum value allowed. The maximum value varies by API.
next_marker string The marker for the start of the next page of results.
View JSON Schema on GitHub

JSON Schema

box-folderlocks-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FolderLocks",
  "title": "Folder Locks",
  "type": "object",
  "x-box-resource-id": "folder_locks",
  "x-box-tag": "folder_locks",
  "description": "A list of folder locks",
  "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
    }
  }
}