> ## 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.

# 標準およびZonesのストレージポリシー リソース

ストレージポリシー割り当ては、特定の企業内の項目に対するストレージゾーンを表します。

## ストレージポリシー

ストレージポリシーのリスト。

<Accordion title="属性と例">
  | プロパティ         | 型                       | 必須  | 説明                                                                             |
  | ------------- | ----------------------- | --- | ------------------------------------------------------------------------------ |
  | `limit`       | `integer`               | いいえ | これらのエントリで使用された制限値。許容される最大値を超えていない限り、クエリパラメータの`limit`と等しくなります。最大値はAPIによって異なります。 |
  | `next_marker` | `string`                | いいえ | 次の検索結果ページの開始場所のマーカー。 `null` を指定できます。                                           |
  | `prev_marker` | `string`                | いいえ | 前の検索結果ページの開始場所のマーカー。 `null` を指定できます。                                           |
  | `entries`     | array of [ストレージポリシー](#) | いいえ | ストレージポリシーのリスト。                                                                 |

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

## ストレージポリシー

ストレージゾーンを示すストレージポリシーオブジェクト。

<Accordion title="属性と例">
  | プロパティ  | 型              | 必須  | 説明                                                       |
  | ------ | -------------- | --- | -------------------------------------------------------- |
  | `id`   | `string`       | はい  | このストレージポリシーの一意の識別子。                                      |
  | `type` | `enum<string>` | はい  | 値は常に`storage_policy`になります。 使用可能なオプション: `storage_policy`. |
  | `name` | `string`       | いいえ | 地域のわかりやすい名前。                                             |

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

## ストレージポリシー (Mini)

ストレージポリシーオブジェクトのMini版の説明。

<Accordion title="属性と例">
  | プロパティ  | 型              | 必須 | 説明                                                       |
  | ------ | -------------- | -- | -------------------------------------------------------- |
  | `id`   | `string`       | はい | このストレージポリシーの一意の識別子。                                      |
  | `type` | `enum<string>` | はい | 値は常に`storage_policy`になります。 使用可能なオプション: `storage_policy`. |

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