Box · Schema

Tasks

A list of tasks

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing

Properties

Name Type Description
total_count integer One greater than the offset of the last entry in the entire collection. The total number of entries in the collection may be less than `total_count`.
entries array A list of tasks
View JSON Schema on GitHub

JSON Schema

box-tasks-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Tasks",
  "title": "Tasks",
  "type": "object",
  "x-box-resource-id": "tasks",
  "x-box-tag": "tasks",
  "description": "A list of tasks",
  "properties": {
    "total_count": {
      "description": "One greater than the offset of the last entry in the entire collection.\nThe total number of entries in the collection may be less than\n`total_count`.",
      "example": 5000,
      "type": "integer",
      "format": "int64"
    },
    "entries": {
      "type": "array",
      "description": "A list of tasks",
      "items": {
        "$ref": "#/components/schemas/Task"
      }
    }
  }
}