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

# アプリ項目の関連付け リソース

## アプリ項目

アプリ項目は、アプリケーションが所有するコンテンツオブジェクトを表します。これは、さまざまなパスからファイルやフォルダをまとめてグループ化でき、そのセットは、コラボレーションを利用して共有できます。

<Accordion title="属性と例">
  | プロパティ              | 型              | 必須 | 説明                                           |
  | ------------------ | -------------- | -- | -------------------------------------------- |
  | `id`               | `string`       | はい | このアプリ項目の一意の識別子。                              |
  | `type`             | `enum<string>` | はい | 値は常に`app_item`になります。 使用可能なオプション: `app_item`. |
  | `application_type` | `string`       | はい | このアプリ項目を所有するアプリの種類。                          |

  ```json 例 theme={null}
  {
    "id": "12345678",
    "type": "app_item",
    "application_type": "hubs"
  }
  ```
</Accordion>

## アプリ項目の関連付け

アプリ項目の関連付けは、ファイルやフォルダとアプリ項目の関連付けを表します。フォルダとアプリ項目の関連付けは、そのフォルダのすべての子孫にカスケードされます。

<Accordion title="属性と例">
  | プロパティ      | 型                 | 必須 | 説明                                                                   |
  | ---------- | ----------------- | -- | -------------------------------------------------------------------- |
  | `id`       | `string`          | はい | このアプリ項目の関連付けの一意の識別子。                                                 |
  | `type`     | `enum<string>`    | はい | 値は常に`app_item_association`になります。 使用可能なオプション: `app_item_association`. |
  | `app_item` | [アプリ項目](#)        | はい | ファイルまたはフォルダに関連付けられているアプリ項目。                                          |
  | `item`     | `アプリ項目に関連付けられた項目` | はい |                                                                      |

  ```json 例 theme={null}
  {
    "id": "12345678",
    "type": "app_item_association",
    "app_item": {
      "id": "12345678",
      "type": "app_item",
      "application_type": "hubs"
    },
    "item": {
      "id": "12345",
      "etag": "1",
      "type": "file"
    }
  }
  ```
</Accordion>

## アプリ項目の関連付け

アプリ項目の関連付けのリスト。

<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": "12345678",
        "type": "app_item_association",
        "app_item": {
          "id": "12345678",
          "type": "app_item",
          "application_type": "hubs"
        },
        "item": {
          "id": "12345",
          "etag": "1",
          "type": "file"
        }
      }
    ]
  }
  ```
</Accordion>
