> ## Documentation Index
> Fetch the complete documentation index at: https://developer.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Standard and Zones Storage Policies resources

Storage policy assignment represents the storage zone for items in a given enterprise.

## Storage policies

A list of storage policies.

<Accordion title="Attributes and example">
  | Property      | Type                                       | Required | Description                                                                                                                                                                            |
  | ------------- | ------------------------------------------ | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `limit`       | `integer`                                  | No       | The limit that was used for these entries. This will be the same as the `limit` query parameter unless that value exceeded the maximum value allowed. The maximum value varies by API. |
  | `next_marker` | `string`                                   | No       | The marker for the start of the next page of results. Can be `null`.                                                                                                                   |
  | `prev_marker` | `string`                                   | No       | The marker for the start of the previous page of results. Can be `null`.                                                                                                               |
  | `entries`     | array of [Storage policy](#storage-policy) | No       | A list of storage policies.                                                                                                                                                            |

  ```json Example theme={null}
  {
    "limit": 1000,
    "next_marker": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii",
    "prev_marker": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVih",
    "entries": [
      {
        "id": "11446498",
        "type": "storage_policy",
        "name": "Montreal / Dublin"
      }
    ]
  }
  ```
</Accordion>

## Storage policy

The Storage Policy object describes the storage zone.

<Accordion title="Attributes and example">
  | Property | Type           | Required | Description                                                                     |
  | -------- | -------------- | -------- | ------------------------------------------------------------------------------- |
  | `id`     | `string`       | Yes      | The unique identifier for this storage policy.                                  |
  | `type`   | `enum<string>` | Yes      | The value will always be `storage_policy`. Available options: `storage_policy`. |
  | `name`   | `string`       | No       | A descriptive name of the region.                                               |

  ```json Example theme={null}
  {
    "id": "11446498",
    "type": "storage_policy",
    "name": "Montreal / Dublin"
  }
  ```
</Accordion>

## Storage policy (Mini)

A mini description of a Storage Policy object.

<Accordion title="Attributes and example">
  | Property | Type           | Required | Description                                                                     |
  | -------- | -------------- | -------- | ------------------------------------------------------------------------------- |
  | `id`     | `string`       | Yes      | The unique identifier for this storage policy.                                  |
  | `type`   | `enum<string>` | Yes      | The value will always be `storage_policy`. Available options: `storage_policy`. |

  ```json Example theme={null}
  {
    "id": "11446498",
    "type": "storage_policy"
  }
  ```
</Accordion>
