Box · Schema

Events

A list of event objects

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing

Properties

Name Type Description
chunk_size integer The number of events returned in this response.
next_stream_position string The stream position of the start of the next page (chunk) of events.
entries array A list of events
View JSON Schema on GitHub

JSON Schema

box-events-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Events",
  "title": "Events",
  "type": "object",
  "x-box-resource-id": "events",
  "x-box-tag": "events",
  "description": "A list of event objects",
  "properties": {
    "chunk_size": {
      "description": "The number of events returned in this response.",
      "example": 2,
      "type": "integer",
      "format": "int64"
    },
    "next_stream_position": {
      "description": "The stream position of the start of the next page (chunk)\nof events.",
      "example": "1152922976252290886",
      "type": "string"
    },
    "entries": {
      "type": "array",
      "description": "A list of events",
      "items": {
        "$ref": "#/components/schemas/Event"
      }
    }
  }
}