Box · Schema

Terms of service (Base)

The root-level record that is supposed to represent a single Terms of Service.

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing

Properties

Name Type Description
id string The unique identifier for this terms of service.
type string `terms_of_service`
View JSON Schema on GitHub

JSON Schema

box-termsofservice-base-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TermsOfService--Base",
  "title": "Terms of service (Base)",
  "type": "object",
  "x-box-resource-id": "terms_of_service--base",
  "x-box-tag": "terms_of_services",
  "x-box-variants": [
    "base",
    "standard"
  ],
  "x-box-variant": "base",
  "description": "The root-level record that is supposed to represent a\nsingle Terms of Service.",
  "required": [
    "id",
    "type"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier for this terms of service.",
      "example": "11446498"
    },
    "type": {
      "type": "string",
      "description": "`terms_of_service`",
      "example": "terms_of_service",
      "enum": [
        "terms_of_service"
      ]
    }
  }
}