iosHomeScreenPage リソースの種類

名前空間: microsoft.graph

注:Intune 用 Microsoft Graph API には、テナントの有効な Intune ライセンスが必要です。

ホーム画面にアプリ、フォルダー、Web クリップを含むページ。

プロパティ

プロパティ 説明
displayName 文字列型 (String) ページの名前
アイコン iosHomeScreenItem コレクション ページに表示するアプリ、フォルダー、Web クリップの一覧。 このコレクションには、最大で 500 個の要素を含めることができます。

リレーションシップ

なし

JSON 表記

以下は、リソースの JSON 表記です。

{
  "@odata.type": "#microsoft.graph.iosHomeScreenPage",
  "displayName": "String",
  "icons": [
    {
      "@odata.type": "microsoft.graph.iosHomeScreenFolder",
      "displayName": "String",
      "pages": [
        {
          "@odata.type": "microsoft.graph.iosHomeScreenFolderPage",
          "displayName": "String",
          "apps": [
            {
              "@odata.type": "microsoft.graph.iosHomeScreenApp",
              "displayName": "String",
              "bundleID": "String"
            }
          ]
        }
      ]
    }
  ]
}