{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TeamsApp", "title": "TeamsApp", "allOf": [ { "$ref": "#/components/schemas/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/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/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" }