Box · Schema

Retention policies

A list of retention policies.

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing
View JSON Schema on GitHub

JSON Schema

box-retentionpolicies-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RetentionPolicies",
  "title": "Retention policies",
  "type": "object",
  "x-box-resource-id": "retention_policies",
  "x-box-tag": "retention_policies",
  "description": "A list of retention policies.",
  "allOf": [
    {
      "properties": {
        "entries": {
          "description": "A list in which each entry represents a retention policy object.",
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/RetentionPolicy"
          }
        }
      }
    },
    {
      "type": "object",
      "description": "The part of an API response that describes marker\nbased pagination",
      "properties": {
        "limit": {
          "description": "The limit that was used for these entries. This will be the same as the\n`limit` query parameter unless that value exceeded the maximum value\nallowed. The maximum value varies by API.",
          "example": 1000,
          "type": "integer",
          "format": "int64"
        },
        "next_marker": {
          "description": "The marker for the start of the next page of results.",
          "example": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii",
          "type": "string",
          "nullable": true
        }
      }
    }
  ]
}