Microsoft Graph · Schema

microsoft.graph.teamsApp

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphteamsapp-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.teamsApp",
  "title": "microsoft.graph.teamsApp",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "teamsApp",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "displayName": {
          "type": "string",
          "description": "The name of the catalog app provided by the app developer in the Microsoft Teams zip app package.",
          "nullable": true
        },
        "distributionMethod": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.teamsAppDistributionMethod"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "The method of distribution for the app. Read-only."
        },
        "externalId": {
          "type": "string",
          "description": "The ID of the catalog provided by the app developer in the Microsoft Teams zip app package.",
          "nullable": true
        },
        "appDefinitions": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.teamsAppDefinition"
          },
          "description": "The details for each version of the app.",
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.teamsApp"
}