Box · Schema

Real-time servers

A list of real-time servers that can be used for long-polling.

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing

Properties

Name Type Description
chunk_size integer The number of items in this response.
entries array A list of real-time servers
View JSON Schema on GitHub

JSON Schema

box-realtimeservers-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RealtimeServers",
  "title": "Real-time servers",
  "type": "object",
  "x-box-resource-id": "realtime_servers",
  "description": "A list of real-time servers that can\nbe used for long-polling.",
  "x-box-tag": "events",
  "properties": {
    "chunk_size": {
      "description": "The number of items in this response.",
      "example": 1,
      "type": "integer",
      "format": "int64"
    },
    "entries": {
      "type": "array",
      "description": "A list of real-time servers",
      "items": {
        "$ref": "#/components/schemas/RealtimeServer"
      }
    }
  }
}