Microsoft Graph · Schema

iosHomeScreenFolderPage

A page for a folder containing apps and web clips on the Home Screen.

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

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

JSON Schema

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