Microsoft Graph · Schema

iosHomeScreenPage

A page containing apps, folders, and web clips on the Home Screen.

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
displayName string Name of the page
icons array A list of apps, folders, and web clips to appear on a page. This collection can contain a maximum of 500 elements.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphioshomescreenpage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.iosHomeScreenPage",
  "title": "iosHomeScreenPage",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "displayName": {
      "type": "string",
      "description": "Name of the page",
      "nullable": true
    },
    "icons": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.iosHomeScreenItem"
      },
      "description": "A list of apps, folders, and web clips to appear on a page. This collection can contain a maximum of 500 elements."
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "description": "A page containing apps, folders, and web clips on the Home Screen."
}