Microsoft Graph · Schema

appListItem

Represents an app in the list of managed applications

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
appId string The application or bundle identifier of the application
appStoreUrl string The Store URL of the application
name string The application name
publisher string The publisher of the application
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphapplistitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.appListItem",
  "title": "appListItem",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "appId": {
      "type": "string",
      "description": "The application or bundle identifier of the application",
      "nullable": true
    },
    "appStoreUrl": {
      "type": "string",
      "description": "The Store URL of the application",
      "nullable": true
    },
    "name": {
      "type": "string",
      "description": "The application name"
    },
    "publisher": {
      "type": "string",
      "description": "The publisher of the application",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "description": "Represents an app in the list of managed applications"
}