Box · Schema

Files

A list of files

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing

Properties

Name Type Description
total_count integer The number of files.
entries array A list of files
View JSON Schema on GitHub

JSON Schema

box-files-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Files",
  "title": "Files",
  "type": "object",
  "x-box-resource-id": "files",
  "x-box-tag": "files",
  "description": "A list of files",
  "properties": {
    "total_count": {
      "description": "The number of files.",
      "example": 1,
      "type": "integer",
      "format": "int64"
    },
    "entries": {
      "type": "array",
      "description": "A list of files",
      "items": {
        "$ref": "#/components/schemas/File--Full"
      }
    }
  }
}