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

# Box Hubの項目 リソース

Box Hub内の項目を管理するために使用される、一連のエンドポイント。

## Box Hubの項目

Box Hubの項目とは、Box Hubで参照されるBox項目のことです。

<Accordion title="属性と例">
  | プロパティ  | 型              | 必須 | 説明                                                |
  | ------ | -------------- | -- | ------------------------------------------------- |
  | `id`   | `string`       | はい | この項目の一意の識別子。                                      |
  | `type` | `enum<string>` | はい | 項目のタイプ。 使用可能なオプション: `file`, `folder`, `web_link`. |
  | `name` | `string`       | はい | 項目の名前。                                            |

  ```json 例 theme={null}
  {
    "id": "12345678",
    "type": "file",
    "name": "My File"
  }
  ```
</Accordion>

## Box Hubの項目

Box Hubの項目のリスト。

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

  ```json 例 theme={null}
  {
    "entries": [
      {
        "id": "12345678",
        "type": "file",
        "name": "My File"
      }
    ],
    "limit": 1000,
    "next_marker": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii"
  }
  ```
</Accordion>

## Box Hubの項目の管理のレスポンス

Box Hubの項目の管理操作のステータスを表すレスポンスのスキーマ。

<Accordion title="属性と例">
  | プロパティ        | 型                          | 必須 | 説明                         |
  | ------------ | -------------------------- | -- | -------------------------- |
  | `operations` | array of `Box Hubの項目の操作結果` | はい | Box Hubの項目に対して実行された操作のリスト。 |

  ```json 例 theme={null}
  {
    "operations": [
      {
        "action": "add",
        "item": {
          "type": "file",
          "id": "42037322"
        },
        "parent_id": "721d97d7-ac8a-4e5e-adb6-ef11af4e6d9e",
        "status": 200,
        "error": "Item not found"
      }
    ]
  }
  ```
</Accordion>
