Microsoft Teams · Schema

TeamsAppInstallation

Represents an app installed in a team.

ChatCollaborationCommunicationMicrosoft 365ProductivityVideo Conferencing

Properties

Name Type Description
id string Unique identifier.
teamsApp object
View JSON Schema on GitHub

JSON Schema

microsoft-teams-teamsappinstallation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TeamsAppInstallation",
  "title": "TeamsAppInstallation",
  "type": "object",
  "description": "Represents an app installed in a team.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier.",
      "example": "app-install-001"
    },
    "teamsApp": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "example": "com.contoso.app"
        },
        "displayName": {
          "type": "string",
          "example": "Contoso App"
        },
        "distributionMethod": {
          "type": "string",
          "enum": [
            "store",
            "organization",
            "sideloaded"
          ]
        }
      }
    }
  }
}