Box · Schema

Storage policy (Mini)

A mini description of a Storage Policy object

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing

Properties

Name Type Description
id string The unique identifier for this storage policy
type string `storage_policy`
View JSON Schema on GitHub

JSON Schema

box-storagepolicy-mini-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StoragePolicy--Mini",
  "title": "Storage policy (Mini)",
  "type": "object",
  "x-box-resource-id": "storage_policy--mini",
  "x-box-tag": "storage_policies",
  "x-box-variants": [
    "standard",
    "mini"
  ],
  "x-box-variant": "mini",
  "description": "A mini description of a Storage Policy object",
  "required": [
    "id",
    "type"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier for this storage policy",
      "example": "11446498"
    },
    "type": {
      "type": "string",
      "description": "`storage_policy`",
      "example": "storage_policy",
      "enum": [
        "storage_policy"
      ]
    }
  }
}