@microsoft/app-manifest 1.0.6 → 1.0.7-alpha.fb69009c96.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. package/build/generated-types/copilot/declarative-agent/DeclarativeAgentManifestV1D7.d.ts +648 -0
  2. package/build/generated-types/copilot/declarative-agent/DeclarativeAgentManifestV1D7.js +345 -0
  3. package/build/generated-types/copilot/declarative-agent/DeclarativeAgentManifestV1D7.js.map +1 -0
  4. package/build/generated-types/index.d.ts +8 -6
  5. package/build/generated-types/index.js +13 -1
  6. package/build/generated-types/index.js.map +1 -1
  7. package/build/generated-types/teams/TeamsManifestV1D27.d.ts +2281 -0
  8. package/build/generated-types/teams/TeamsManifestV1D27.js +1087 -0
  9. package/build/generated-types/teams/TeamsManifestV1D27.js.map +1 -0
  10. package/build/json-schemas/copilot/declarative-agent/v1.7/schema.json +1258 -0
  11. package/build/json-schemas/teams/v1.23/MicrosoftTeams.schema.json +1 -1
  12. package/build/json-schemas/teams/v1.24/MicrosoftTeams.schema.json +1 -1
  13. package/build/json-schemas/teams/v1.25/MicrosoftTeams.schema.json +1 -1
  14. package/build/json-schemas/teams/v1.26/MicrosoftTeams.AgenticUser.schema.json +44 -0
  15. package/build/json-schemas/teams/v1.26/MicrosoftTeams.Localization.schema.json +332 -0
  16. package/build/json-schemas/teams/v1.26/MicrosoftTeams.ResponseRenderingTemplate.schema.json +89 -0
  17. package/build/json-schemas/teams/v1.26/MicrosoftTeams.schema.json +0 -1
  18. package/build/json-schemas/teams/v1.27/MicrosoftTeams.AgenticUser.schema.json +44 -0
  19. package/build/json-schemas/teams/v1.27/MicrosoftTeams.Localization.schema.json +344 -0
  20. package/build/json-schemas/teams/v1.27/MicrosoftTeams.ResponseRenderingTemplate.schema.json +89 -0
  21. package/build/json-schemas/teams/v1.27/MicrosoftTeams.schema.json +3472 -0
  22. package/build/tsconfig.tsbuildinfo +1 -1
  23. package/package.json +2 -2
@@ -2586,7 +2586,7 @@
2586
2586
  "properties": {
2587
2587
  "fileName": {
2588
2588
  "type": "string",
2589
- "pattern": "^(?!.*[\\r\\n\\f\\b\\v\\a\\t])[\\S]*\\.xll$",
2589
+ "pattern": "^(?!.*[\\r\\n\\f\\b\\v\\u0007\\t])[\\S]*\\.xll$",
2590
2590
  "minLength": 1,
2591
2591
  "maxLength": 64
2592
2592
  }
@@ -2687,7 +2687,7 @@
2687
2687
  "fileName": {
2688
2688
  "type": "string",
2689
2689
  "description": "File name for the XLL extension. Maximum length is 254 characters.",
2690
- "pattern": "^(?!.*[\\r\\n\\f\\b\\v\\a\\t])[\\S]*\\.xll$",
2690
+ "pattern": "^(?!.*[\\r\\n\\f\\b\\v\\u0007\\t])[\\S]*\\.xll$",
2691
2691
  "minLength": 4,
2692
2692
  "maxLength": 254
2693
2693
  }
@@ -2804,7 +2804,7 @@
2804
2804
  "fileName": {
2805
2805
  "type": "string",
2806
2806
  "description": "File name for the XLL extension. Maximum length is 254 characters.",
2807
- "pattern": "^(?!.*[\\r\\n\\f\\b\\v\\a\\t])[\\S]*\\.xll$",
2807
+ "pattern": "^(?!.*[\\r\\n\\f\\b\\v\\u0007\\t])[\\S]*\\.xll$",
2808
2808
  "minLength": 4,
2809
2809
  "maxLength": 254
2810
2810
  }
@@ -0,0 +1,44 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "object",
4
+ "title": "Microsoft 365 Agentic User Template Schema",
5
+ "description": "Schema for Microsoft 365 Agentic User Template configuration - Development Preview version 0.1.0",
6
+ "required": [
7
+ "id",
8
+ "schemaVersion",
9
+ "agentIdentityBlueprintId"
10
+ ],
11
+ "properties": {
12
+ "$schema": {
13
+ "type": "string",
14
+ "description": "The JSON schema reference for this manifest"
15
+ },
16
+ "id": {
17
+ "type": "string",
18
+ "description": "Unique identifier for the agentic user template. Must contain only alphanumeric characters, dots, underscores, and hyphens.",
19
+ "pattern": "^[a-zA-Z0-9._-]+$",
20
+ "minLength": 1,
21
+ "maxLength": 64
22
+ },
23
+ "schemaVersion": {
24
+ "type": "string",
25
+ "const": "0.1.0-preview",
26
+ "description": "Version of the agentic user template schema."
27
+ },
28
+ "agentIdentityBlueprintId": {
29
+ "type": "string",
30
+ "description": "Agent Identity Blueprint ID registered in Azure AD portal. Must be a valid GUID.",
31
+ "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$",
32
+ "format": "uuid"
33
+ },
34
+ "communicationProtocol": {
35
+ "type": "string",
36
+ "description": "Protocol used for communicating with the agentic user.",
37
+ "enum": [
38
+ "activityProtocol"
39
+ ],
40
+ "default": "activityProtocol"
41
+ }
42
+ },
43
+ "additionalProperties": false
44
+ }
@@ -0,0 +1,332 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "type": "object",
4
+ "additionalProperties": false,
5
+ "properties": {
6
+ "$schema": {
7
+ "type": "string",
8
+ "format": "uri"
9
+ },
10
+ "name.short": {
11
+ "type": "string",
12
+ "maxLength": 30,
13
+ "$ref": "#/definitions/nonEmptyString"
14
+ },
15
+ "name.full": {
16
+ "type": "string",
17
+ "maxLength": 100,
18
+ "$ref": "#/definitions/nonEmptyString"
19
+ },
20
+ "description.short": {
21
+ "type": "string",
22
+ "maxLength": 80,
23
+ "$ref": "#/definitions/nonEmptyString"
24
+ },
25
+ "description.full": {
26
+ "type": "string",
27
+ "maxLength": 4000,
28
+ "$ref": "#/definitions/nonEmptyString"
29
+ },
30
+ "localizationKeys": {
31
+ "type": "object",
32
+ "patternProperties": {
33
+ "^\\[\\[[a-zA-Z_][a-zA-Z0-9_]*\\]\\]$": {
34
+ "type": "string"
35
+ }
36
+ }
37
+ }
38
+ },
39
+ "patternProperties": {
40
+ "^staticTabs\\[([0-9]|1[0-5])\\]\\.name$": {
41
+ "type": "string",
42
+ "maxLength": 128
43
+ },
44
+ "^bots\\[0\\]\\.commandLists\\[[0-2]\\]\\.commands\\[([0-9]|1[0-1])\\]\\.title$": {
45
+ "type": "string",
46
+ "maxLength": 128
47
+ },
48
+ "^bots\\[0\\]\\.commandLists\\[[0-2]\\]\\.commands\\[([0-9]|1[0-1])\\]\\.description$": {
49
+ "type": "string",
50
+ "maxLength": 4000
51
+ },
52
+ "^composeExtensions\\[0\\]\\.commands\\[[0-9]\\]\\.title$": {
53
+ "type": "string",
54
+ "maxLength": 32
55
+ },
56
+ "^composeExtensions\\[0\\]\\.commands\\[[0-9]\\]\\.description$": {
57
+ "type": "string",
58
+ "maxLength": 128
59
+ },
60
+ "^composeExtensions\\[0\\]\\.commands\\[[0-9]\\]\\.parameters\\[[0-4]\\]\\.title$": {
61
+ "type": "string",
62
+ "maxLength": 32
63
+ },
64
+ "^composeExtensions\\[0\\]\\.commands\\[[0-9]\\]\\.parameters\\[[0-4]\\]\\.description$": {
65
+ "type": "string",
66
+ "maxLength": 128
67
+ },
68
+ "^composeExtensions\\[0\\]\\.commands\\[[0-9]\\]\\.parameters\\[[0-4]\\]\\.value$": {
69
+ "type": "string",
70
+ "maxLength": 512
71
+ },
72
+ "^composeExtensions\\[0\\]\\.commands\\[[0-9]\\]\\.parameters\\[[0-4]\\]\\.choices\\[[0-9]\\]\\.title$": {
73
+ "type": "string",
74
+ "maxLength": 128
75
+ },
76
+ "^composeExtensions\\[0\\]\\.commands\\[[0-9]\\]\\.samplePrompts\\[[0-4]\\]\\.text$": {
77
+ "type": "string",
78
+ "maxLength": 128
79
+ },
80
+ "^composeExtensions\\[0\\]\\.commands\\[[0-9]\\]\\.taskInfo\\.title$": {
81
+ "type": "string",
82
+ "maxLength": 64
83
+ },
84
+ "^activities.activityTypes\\[\\b([0-9]|[1-8][0-9]|9[0-9]|1[01][0-9]|12[0-7])\\b]\\.description$": {
85
+ "type": "string",
86
+ "maxLength": 128
87
+ },
88
+ "^activities.activityTypes\\[\\b([0-9]|[1-8][0-9]|9[0-9]|1[01][0-9]|12[0-7])\\b]\\.templateText$": {
89
+ "type": "string",
90
+ "maxLength": 128
91
+ },
92
+ "^meetingExtensionDefinition.scenes\\[[0-9]\\]\\.name$": {
93
+ "type": "string",
94
+ "maxLength": 128
95
+ },
96
+ "^extensions\\[[0]\\]\\.audienceClaimUrl$": {
97
+ "type": "string",
98
+ "maxLength": 2048
99
+ },
100
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.label$": {
101
+ "type": "string",
102
+ "maxLength": 64
103
+ },
104
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.customMobileRibbonGroups\\[[0-9]\\]\\.label$": {
105
+ "type": "string",
106
+ "maxLength": 32
107
+ },
108
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.customMobileRibbonGroups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.icons\\[[0-8]\\]\\.url$": {
109
+ "type": "string",
110
+ "maxLength": 2048
111
+ },
112
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.customMobileRibbonGroups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.label$": {
113
+ "type": "string",
114
+ "maxLength": 32
115
+ },
116
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.icons\\[[0-2]\\]\\.url$": {
117
+ "type": "string",
118
+ "maxLength": 2048
119
+ },
120
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.label$": {
121
+ "type": "string",
122
+ "maxLength": 64
123
+ },
124
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.icons\\[[0-2]\\]\\.url$": {
125
+ "type": "string",
126
+ "maxLength": 2048
127
+ },
128
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.label$": {
129
+ "type": "string",
130
+ "maxLength": 64
131
+ },
132
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.supertip\\.title$": {
133
+ "type": "string",
134
+ "maxLength": 64
135
+ },
136
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.supertip\\.description$": {
137
+ "type": "string",
138
+ "maxLength": 250
139
+ },
140
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.items\\[[1]?[0-9]\\]\\.icons\\[[0-2]\\]\\.url$": {
141
+ "type": "string",
142
+ "maxLength": 2048
143
+ },
144
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.items\\[[1]?[0-9]\\]\\.label$": {
145
+ "type": "string",
146
+ "maxLength": 64
147
+ },
148
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.items\\[[1]?[0-9]\\]\\.supertip\\.title$": {
149
+ "type": "string",
150
+ "maxLength": 64
151
+ },
152
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.items\\[[1]?[0-9]\\]\\.supertip\\.description$": {
153
+ "type": "string",
154
+ "maxLength": 250
155
+ },
156
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.fixedControls\\[[1]?[0-9]\\]\\.label$": {
157
+ "type": "string",
158
+ "maxLength": 64
159
+ },
160
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.fixedControls\\[[1]?[0-9]\\]\\.supertip\\.title$": {
161
+ "type": "string",
162
+ "maxLength": 64
163
+ },
164
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.fixedControls\\[[1]?[0-9]\\]\\.supertip\\.description$": {
165
+ "type": "string",
166
+ "maxLength": 128
167
+ },
168
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.spamPreProcessingDialog\\.title$": {
169
+ "type": "string",
170
+ "maxLength": 128
171
+ },
172
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.spamPreProcessingDialog\\.description$": {
173
+ "type": "string",
174
+ "maxLength": 250
175
+ },
176
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.spamPreProcessingDialog\\.spamFreeTextSectionTitle$": {
177
+ "type": "string",
178
+ "maxLength": 128
179
+ },
180
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.spamPreProcessingDialog\\.spamReportingOptions\\.title$": {
181
+ "type": "string",
182
+ "maxLength": 128
183
+ },
184
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.spamPreProcessingDialog\\.spamReportingOptions\\.options\\[[0-4]\\]$": {
185
+ "type": "string",
186
+ "maxLength": 128
187
+ },
188
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.spamPreProcessingDialog\\.spamMoreInfo\\.text$": {
189
+ "type": "string",
190
+ "maxLength": 128
191
+ },
192
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.spamPreProcessingDialog\\.spamMoreInfo\\.url$": {
193
+ "type": "string",
194
+ "maxLength": 2048
195
+ },
196
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.code\\.page$": {
197
+ "type": "string",
198
+ "maxLength": 2048
199
+ },
200
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.code\\.script$": {
201
+ "type": "string",
202
+ "maxLength": 2048
203
+ },
204
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.actions\\[[1]?[0-9]\\]\\.displayName$": {
205
+ "type": "string",
206
+ "maxLength": 64
207
+ },
208
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.customFunctions\\.metadataUrl$": {
209
+ "type": "string",
210
+ "maxLength": 2048
211
+ },
212
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.customFunctions\\.functions\\[[0-9]\\]\\.name$": {
213
+ "type": "string",
214
+ "maxLength": 64
215
+ },
216
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.customFunctions\\.functions\\[[0-9]\\]\\.description$": {
217
+ "type": "string",
218
+ "maxLength": 128
219
+ },
220
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.customFunctions\\.functions\\[[0-9]\\]\\.parameters\\[[0-9]\\]\\.name$": {
221
+ "type": "string",
222
+ "maxLength": 64
223
+ },
224
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.customFunctions\\.functions\\[[0-9]\\]\\.parameters\\[[0-9]\\]\\.description$": {
225
+ "type": "string",
226
+ "maxLength": 128
227
+ },
228
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.customFunctions\\.enums\\[[0-9]\\]\\.values\\[[0-9]\\]\\.name$": {
229
+ "type": "string",
230
+ "maxLength": 256
231
+ },
232
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.customFunctions\\.enums\\[[0-9]\\]\\.values\\[[0-9]\\]\\.tooltip$": {
233
+ "type": "string",
234
+ "maxLength": 256
235
+ },
236
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.customFunctions\\.namespace\\.name$": {
237
+ "type": "string",
238
+ "maxLength": 32
239
+ },
240
+ "^extensions\\[[0]\\]\\.keyboardShortcuts\\[[0-9]\\]\\.shortcuts\\[[0-9]\\]\\.key\\.default$": {
241
+ "type": "string",
242
+ "maxLength": 32
243
+ },
244
+ "^extensions\\[[0]\\]\\.keyboardShortcuts\\[[0-9]\\]\\.shortcuts\\[[0-9]\\]\\.key\\.mac$": {
245
+ "type": "string",
246
+ "maxLength": 32
247
+ },
248
+ "^extensions\\[[0]\\]\\.keyboardShortcuts\\[[0-9]\\]\\.shortcuts\\[[0-9]\\]\\.key\\.web$": {
249
+ "type": "string",
250
+ "maxLength": 32
251
+ },
252
+ "^extensions\\[[0]\\]\\.keyboardShortcuts\\[[0-9]\\]\\.shortcuts\\[[0-9]\\]\\.key\\.windows$": {
253
+ "type": "string",
254
+ "maxLength": 32
255
+ },
256
+ "^extensions\\[[0]\\]\\.alternates\\[[0-9]\\]\\.alternateIcons\\.icon\\.url$": {
257
+ "type": "string",
258
+ "maxLength": 2048
259
+ },
260
+ "^extensions\\[[0]\\]\\.alternates\\[[0-9]\\]\\.alternateIcons\\.highResolutionIcon\\.url$": {
261
+ "type": "string",
262
+ "maxLength": 2048
263
+ },
264
+ "^extensions\\[[0]\\]\\.getStartedMessages\\[[0-2]\\]\\.title$": {
265
+ "type": "string",
266
+ "maxLength": 125
267
+ },
268
+ "^extensions\\[[0]\\]\\.getStartedMessages\\[[0-2]\\]\\.description$": {
269
+ "type": "string",
270
+ "maxLength": 250
271
+ },
272
+ "^extensions\\[[0]\\]\\.getStartedMessages\\[[0-2]\\]\\.learnMoreUrl$": {
273
+ "type": "string",
274
+ "maxLength": 2048
275
+ },
276
+ "^extensions\\[[0]\\]\\.contentRuntimes\\[[1]?[0-9]\\]\\.code\\.page$": {
277
+ "type": "string",
278
+ "maxLength": 2048
279
+ },
280
+ "^extensions\\[[0]\\]\\.contextMenus\\[[0-9]\\]\\.menus\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.icons\\[[0-2]\\]\\.url": {
281
+ "type": "string",
282
+ "maxLength": 2048
283
+ },
284
+ "^extensions\\[[0]\\]\\.contextMenus\\[[0-9]\\]\\.menus\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.label": {
285
+ "type": "string",
286
+ "maxLength": 64
287
+ },
288
+ "^extensions\\[[0]\\]\\.contextMenus\\[[0-9]\\]\\.menus\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.supertip\\.title": {
289
+ "type": "string",
290
+ "maxLength": 64
291
+ },
292
+ "^extensions\\[[0]\\]\\.contextMenus\\[[0-9]\\]\\.menus\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.supertip\\.description": {
293
+ "type": "string",
294
+ "maxLength": 250
295
+ },
296
+ "^extensions\\[[0]\\]\\.contextMenus\\[[0-9]\\]\\.menus\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.items\\[[1]?[0-9]\\]\\.icons\\[[0-2]\\]\\.url": {
297
+ "type": "string",
298
+ "maxLength": 2048
299
+ },
300
+ "^extensions\\[[0]\\]\\.contextMenus\\[[0-9]\\]\\.menus\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.items\\[[1]?[0-9]\\]\\.label": {
301
+ "type": "string",
302
+ "maxLength": 64
303
+ },
304
+ "^extensions\\[[0]\\]\\.contextMenus\\[[0-9]\\]\\.menus\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.items\\[[1]?[0-9]\\]\\.supertip\\.title": {
305
+ "type": "string",
306
+ "maxLength": 64
307
+ },
308
+ "^extensions\\[[0]\\]\\.contextMenus\\[[0-9]\\]\\.menus\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.items\\[[1]?[0-9]\\]\\.supertip\\.description": {
309
+ "type": "string",
310
+ "maxLength": 250
311
+ },
312
+ "^copilotAgents.customEngineAgents\\[0\\]\\.disclaimer.text$": {
313
+ "type": "string",
314
+ "maxLength": 500
315
+ },
316
+ "^description\\.features\\[[0-2]+\\]\\.title$": {
317
+ "type": "string",
318
+ "maxLength": 45
319
+ },
320
+ "^description\\.features\\[[0-2]+\\]\\.description$": {
321
+ "type": "string",
322
+ "maxLength": 120
323
+ }
324
+ },
325
+ "required": [ "name.short", "description.short", "description.full" ],
326
+ "definitions": {
327
+ "nonEmptyString": {
328
+ "type": "string",
329
+ "pattern": "^(?![nN][uU][lL]{2}$)\\s*\\S.*"
330
+ }
331
+ }
332
+ }
@@ -0,0 +1,89 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-06/schema#",
3
+ "additionalProperties": false,
4
+ "type": "object",
5
+ "properties": {
6
+ "version": {
7
+ "type": "string",
8
+ "description": "The version of the schema this manifest is using.",
9
+ "const": "1.0"
10
+ },
11
+ "$schema": {
12
+ "type": "string",
13
+ "format": "uri"
14
+ },
15
+ "jsonPath": {
16
+ "type": "string",
17
+ "description": "The path to the results in the response JSON.",
18
+ "maxLength": 256
19
+ },
20
+ "responseLayout": {
21
+ "type": "string",
22
+ "description": "Specifies the layout of the attachments. Used for responses of type result. Supported types are list and grid.",
23
+ "enum": [
24
+ "list",
25
+ "grid"
26
+ ]
27
+ },
28
+ "responseCardTemplate": {
29
+ "type": "object",
30
+ "properties": {},
31
+ "description": "The adaptive card template for each result in the response."
32
+ },
33
+ "previewCardTemplate": {
34
+ "type": "object",
35
+ "additionalProperties": false,
36
+ "description": "The preview card template for each result in the response.",
37
+ "properties": {
38
+ "title": {
39
+ "type": "string",
40
+ "description": "The title of the preview card.",
41
+ "maxLength": 256
42
+ },
43
+ "subtitle": {
44
+ "type": "string",
45
+ "description": "The subtitle of the preview card.",
46
+ "maxLength": 256
47
+ },
48
+ "text": {
49
+ "type": "string",
50
+ "description": "The text of the preview card.",
51
+ "maxLength": 256
52
+ },
53
+ "image": {
54
+ "type": "object",
55
+ "additionalProperties": false,
56
+ "properties": {
57
+ "url": {
58
+ "type": "string",
59
+ "description": "The url to the image. Must be https or a data url scheme. Redirect urls are not supported.",
60
+ "maxLength": 2048
61
+ },
62
+ "alt": {
63
+ "type": "string",
64
+ "description": "Accessible description of the image.",
65
+ "maxLength": 256
66
+ },
67
+ "$when": {
68
+ "type": "string",
69
+ "description": "An optional conditional expression used to determine if the image element will appear to the user.",
70
+ "maxLength": 256
71
+ }
72
+ },
73
+ "required": [
74
+ "url"
75
+ ]
76
+ }
77
+ },
78
+ "required": [
79
+ "title"
80
+ ]
81
+ }
82
+ },
83
+ "required": [
84
+ "version",
85
+ "responseLayout",
86
+ "responseCardTemplate",
87
+ "previewCardTemplate"
88
+ ]
89
+ }
@@ -0,0 +1,44 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "object",
4
+ "title": "Microsoft 365 Agentic User Template Schema",
5
+ "description": "Schema for Microsoft 365 Agentic User Template configuration - Development Preview version 0.1.0",
6
+ "required": [
7
+ "id",
8
+ "schemaVersion",
9
+ "agentIdentityBlueprintId"
10
+ ],
11
+ "properties": {
12
+ "$schema": {
13
+ "type": "string",
14
+ "description": "The JSON schema reference for this manifest"
15
+ },
16
+ "id": {
17
+ "type": "string",
18
+ "description": "Unique identifier for the agentic user template. Must contain only alphanumeric characters, dots, underscores, and hyphens.",
19
+ "pattern": "^[a-zA-Z0-9._-]+$",
20
+ "minLength": 1,
21
+ "maxLength": 64
22
+ },
23
+ "schemaVersion": {
24
+ "type": "string",
25
+ "const": "0.1.0-preview",
26
+ "description": "Version of the agentic user template schema."
27
+ },
28
+ "agentIdentityBlueprintId": {
29
+ "type": "string",
30
+ "description": "Agent Identity Blueprint ID registered in Azure AD portal. Must be a valid GUID.",
31
+ "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$",
32
+ "format": "uuid"
33
+ },
34
+ "communicationProtocol": {
35
+ "type": "string",
36
+ "description": "Protocol used for communicating with the agentic user.",
37
+ "enum": [
38
+ "activityProtocol"
39
+ ],
40
+ "default": "activityProtocol"
41
+ }
42
+ },
43
+ "additionalProperties": false
44
+ }