@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
@@ -0,0 +1,344 @@
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
+ "^composeExtensions\\[0\\]\\.commands\\[[0-9]\\]\\.prompt$": {
85
+ "type": "string",
86
+ "maxLength": 4000
87
+ },
88
+ "^activities.activityTypes\\[\\b([0-9]|[1-8][0-9]|9[0-9]|1[01][0-9]|12[0-7])\\b]\\.description$": {
89
+ "type": "string",
90
+ "maxLength": 128
91
+ },
92
+ "^activities.activityTypes\\[\\b([0-9]|[1-8][0-9]|9[0-9]|1[01][0-9]|12[0-7])\\b]\\.templateText$": {
93
+ "type": "string",
94
+ "maxLength": 128
95
+ },
96
+ "^meetingExtensionDefinition.scenes\\[[0-9]\\]\\.name$": {
97
+ "type": "string",
98
+ "maxLength": 128
99
+ },
100
+ "^extensions\\[[0]\\]\\.audienceClaimUrl$": {
101
+ "type": "string",
102
+ "maxLength": 2048
103
+ },
104
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.label$": {
105
+ "type": "string",
106
+ "maxLength": 64
107
+ },
108
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.customMobileRibbonGroups\\[[0-9]\\]\\.label$": {
109
+ "type": "string",
110
+ "maxLength": 32
111
+ },
112
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.customMobileRibbonGroups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.icons\\[[0-8]\\]\\.url$": {
113
+ "type": "string",
114
+ "maxLength": 2048
115
+ },
116
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.customMobileRibbonGroups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.label$": {
117
+ "type": "string",
118
+ "maxLength": 32
119
+ },
120
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.icons\\[[0-7]\\]\\.url$": {
121
+ "type": "string",
122
+ "maxLength": 2048
123
+ },
124
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.label$": {
125
+ "type": "string",
126
+ "maxLength": 64
127
+ },
128
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.icons\\[[0-7]\\]\\.url$": {
129
+ "type": "string",
130
+ "maxLength": 2048
131
+ },
132
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.label$": {
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\\.title$": {
137
+ "type": "string",
138
+ "maxLength": 64
139
+ },
140
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.supertip\\.description$": {
141
+ "type": "string",
142
+ "maxLength": 250
143
+ },
144
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.items\\[[1]?[0-9]\\]\\.icons\\[[0-7]\\]\\.url$": {
145
+ "type": "string",
146
+ "maxLength": 2048
147
+ },
148
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.items\\[[1]?[0-9]\\]\\.label$": {
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\\.title$": {
153
+ "type": "string",
154
+ "maxLength": 64
155
+ },
156
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.tabs\\[[1]?[0-9]\\]\\.groups\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.items\\[[1]?[0-9]\\]\\.supertip\\.description$": {
157
+ "type": "string",
158
+ "maxLength": 250
159
+ },
160
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.fixedControls\\[[1]?[0-9]\\]\\.label$": {
161
+ "type": "string",
162
+ "maxLength": 64
163
+ },
164
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.fixedControls\\[[1]?[0-9]\\]\\.supertip\\.title$": {
165
+ "type": "string",
166
+ "maxLength": 64
167
+ },
168
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.fixedControls\\[[1]?[0-9]\\]\\.supertip\\.description$": {
169
+ "type": "string",
170
+ "maxLength": 128
171
+ },
172
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.spamPreProcessingDialog\\.title$": {
173
+ "type": "string",
174
+ "maxLength": 128
175
+ },
176
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.spamPreProcessingDialog\\.description$": {
177
+ "type": "string",
178
+ "maxLength": 250
179
+ },
180
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.spamPreProcessingDialog\\.spamFreeTextSectionTitle$": {
181
+ "type": "string",
182
+ "maxLength": 128
183
+ },
184
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.spamPreProcessingDialog\\.spamReportingOptions\\.title$": {
185
+ "type": "string",
186
+ "maxLength": 128
187
+ },
188
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.spamPreProcessingDialog\\.spamReportingOptions\\.options\\[[0-4]\\]$": {
189
+ "type": "string",
190
+ "maxLength": 128
191
+ },
192
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.spamPreProcessingDialog\\.spamMoreInfo\\.text$": {
193
+ "type": "string",
194
+ "maxLength": 128
195
+ },
196
+ "^extensions\\[[0]\\]\\.ribbons\\[[0-9]\\]\\.spamPreProcessingDialog\\.spamMoreInfo\\.url$": {
197
+ "type": "string",
198
+ "maxLength": 2048
199
+ },
200
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.code\\.page$": {
201
+ "type": "string",
202
+ "maxLength": 2048
203
+ },
204
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.code\\.script$": {
205
+ "type": "string",
206
+ "maxLength": 2048
207
+ },
208
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.actions\\[(1[0-4][0-9]|[1-9]?[0-9])\\]\\.displayName$": {
209
+ "type": "string",
210
+ "maxLength": 64
211
+ },
212
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.customFunctions\\.metadataUrl$": {
213
+ "type": "string",
214
+ "maxLength": 2048
215
+ },
216
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.customFunctions\\.functions\\[[0-9]\\]\\.name$": {
217
+ "type": "string",
218
+ "maxLength": 64
219
+ },
220
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.customFunctions\\.functions\\[[0-9]\\]\\.description$": {
221
+ "type": "string",
222
+ "maxLength": 128
223
+ },
224
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.customFunctions\\.functions\\[[0-9]\\]\\.parameters\\[[0-9]\\]\\.name$": {
225
+ "type": "string",
226
+ "maxLength": 64
227
+ },
228
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.customFunctions\\.functions\\[[0-9]\\]\\.parameters\\[[0-9]\\]\\.description$": {
229
+ "type": "string",
230
+ "maxLength": 128
231
+ },
232
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.customFunctions\\.enums\\[[0-9]\\]\\.values\\[[0-9]\\]\\.name$": {
233
+ "type": "string",
234
+ "maxLength": 256
235
+ },
236
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.customFunctions\\.enums\\[[0-9]\\]\\.values\\[[0-9]\\]\\.tooltip$": {
237
+ "type": "string",
238
+ "maxLength": 256
239
+ },
240
+ "^extensions\\[[0]\\]\\.runtimes\\[[1]?[0-9]\\]\\.customFunctions\\.namespace\\.name$": {
241
+ "type": "string",
242
+ "maxLength": 32
243
+ },
244
+ "^extensions\\[[0]\\]\\.keyboardShortcuts\\[[0-9]\\]\\.shortcuts\\[[0-9]\\]\\.key\\.default$": {
245
+ "type": "string",
246
+ "maxLength": 32
247
+ },
248
+ "^extensions\\[[0]\\]\\.keyboardShortcuts\\[[0-9]\\]\\.shortcuts\\[[0-9]\\]\\.key\\.mac$": {
249
+ "type": "string",
250
+ "maxLength": 32
251
+ },
252
+ "^extensions\\[[0]\\]\\.keyboardShortcuts\\[[0-9]\\]\\.shortcuts\\[[0-9]\\]\\.key\\.web$": {
253
+ "type": "string",
254
+ "maxLength": 32
255
+ },
256
+ "^extensions\\[[0]\\]\\.keyboardShortcuts\\[[0-9]\\]\\.shortcuts\\[[0-9]\\]\\.key\\.windows$": {
257
+ "type": "string",
258
+ "maxLength": 32
259
+ },
260
+ "^extensions\\[[0]\\]\\.alternates\\[[0-9]\\]\\.alternateIcons\\.icon\\.url$": {
261
+ "type": "string",
262
+ "maxLength": 2048
263
+ },
264
+ "^extensions\\[[0]\\]\\.alternates\\[[0-9]\\]\\.alternateIcons\\.highResolutionIcon\\.url$": {
265
+ "type": "string",
266
+ "maxLength": 2048
267
+ },
268
+ "^extensions\\[[0]\\]\\.getStartedMessages\\[[0-2]\\]\\.title$": {
269
+ "type": "string",
270
+ "maxLength": 125
271
+ },
272
+ "^extensions\\[[0]\\]\\.getStartedMessages\\[[0-2]\\]\\.description$": {
273
+ "type": "string",
274
+ "maxLength": 250
275
+ },
276
+ "^extensions\\[[0]\\]\\.getStartedMessages\\[[0-2]\\]\\.learnMoreUrl$": {
277
+ "type": "string",
278
+ "maxLength": 2048
279
+ },
280
+ "^extensions\\[[0]\\]\\.contentRuntimes\\[[1]?[0-9]\\]\\.code\\.page$": {
281
+ "type": "string",
282
+ "maxLength": 2048
283
+ },
284
+ "^extensions\\[[0]\\]\\.contextMenus\\[[0-9]\\]\\.menus\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.icons\\[[0-7]\\]\\.url$": {
285
+ "type": "string",
286
+ "maxLength": 2048
287
+ },
288
+ "^extensions\\[[0]\\]\\.contextMenus\\[[0-9]\\]\\.menus\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.label": {
289
+ "type": "string",
290
+ "maxLength": 64
291
+ },
292
+ "^extensions\\[[0]\\]\\.contextMenus\\[[0-9]\\]\\.menus\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.supertip\\.title": {
293
+ "type": "string",
294
+ "maxLength": 64
295
+ },
296
+ "^extensions\\[[0]\\]\\.contextMenus\\[[0-9]\\]\\.menus\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.supertip\\.description": {
297
+ "type": "string",
298
+ "maxLength": 250
299
+ },
300
+ "^extensions\\[[0]\\]\\.contextMenus\\[[0-9]\\]\\.menus\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.items\\[[1]?[0-9]\\]\\.icons\\[[0-7]\\]\\.url": {
301
+ "type": "string",
302
+ "maxLength": 2048
303
+ },
304
+ "^extensions\\[[0]\\]\\.contextMenus\\[[0-9]\\]\\.menus\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.items\\[[1]?[0-9]\\]\\.label": {
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\\.title": {
309
+ "type": "string",
310
+ "maxLength": 64
311
+ },
312
+ "^extensions\\[[0]\\]\\.contextMenus\\[[0-9]\\]\\.menus\\[[0-9]\\]\\.controls\\[[1]?[0-9]\\]\\.items\\[[1]?[0-9]\\]\\.supertip\\.description": {
313
+ "type": "string",
314
+ "maxLength": 250
315
+ },
316
+ "^copilotAgents.customEngineAgents\\[0\\]\\.disclaimer.text$": {
317
+ "type": "string",
318
+ "maxLength": 500
319
+ },
320
+ "^agentConnectors\\[[0-9]\\]\\.displayName$": {
321
+ "type": "string",
322
+ "maxLength": 128
323
+ },
324
+ "^agentConnectors\\[[0-9]\\]\\.description$": {
325
+ "type": "string",
326
+ "maxLength": 4000
327
+ },
328
+ "^description\\.features\\[[0-2]+\\]\\.title$": {
329
+ "type": "string",
330
+ "maxLength": 45
331
+ },
332
+ "^description\\.features\\[[0-2]+\\]\\.description$": {
333
+ "type": "string",
334
+ "maxLength": 120
335
+ }
336
+ },
337
+ "required": [ "name.short", "description.short", "description.full" ],
338
+ "definitions": {
339
+ "nonEmptyString": {
340
+ "type": "string",
341
+ "pattern": "^(?![nN][uU][lL]{2}$)\\s*\\S.*"
342
+ }
343
+ }
344
+ }
@@ -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
+ }