From c32e98dde2dc0cc0d7521edd65780f0265e39807 Mon Sep 17 00:00:00 2001 From: Tianshu Chu Date: Mon, 10 Jun 2024 13:30:19 -0700 Subject: [PATCH] Modify scopes under requirementsExtensionElement --- teams/v1.17/MicrosoftTeams.schema.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/teams/v1.17/MicrosoftTeams.schema.json b/teams/v1.17/MicrosoftTeams.schema.json index cd89d2e..16816be 100644 --- a/teams/v1.17/MicrosoftTeams.schema.json +++ b/teams/v1.17/MicrosoftTeams.schema.json @@ -1210,11 +1210,15 @@ "scopes": { "type": "array", "description": "Identifies the scopes in which the add-in can run.", - "maxItems": 1, + "minItems": 1, + "maxItems": 4, "items": { "type": "string", "enum": [ - "mail" + "mail", + "workbook", + "document", + "presentation" ] } },