Box · Schema

Terms of services

A list of terms of services

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing

Properties

Name Type Description
total_count integer The total number of objects.
entries array A list of terms of service objects
View JSON Schema on GitHub

JSON Schema

box-termsofservices-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TermsOfServices",
  "title": "Terms of services",
  "type": "object",
  "x-box-resource-id": "terms_of_services",
  "x-box-tag": "terms_of_services",
  "description": "A list of terms of services",
  "properties": {
    "total_count": {
      "description": "The total number of objects.",
      "example": 2,
      "type": "integer",
      "format": "int64"
    },
    "entries": {
      "type": "array",
      "description": "A list of terms of service objects",
      "items": {
        "$ref": "#/components/schemas/TermsOfService"
      }
    }
  }
}