@canonmsg/backend-contracts 1.7.0 → 1.8.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 (192) hide show
  1. package/dist/agentBehaviorPolicy.d.ts +86 -45
  2. package/dist/agentBehaviorPolicy.js +53 -0
  3. package/dist/bridgeLocal.d.ts +1729 -0
  4. package/dist/bridgeLocal.js +673 -0
  5. package/dist/cjs/agentBehaviorPolicy.js +54 -1
  6. package/dist/cjs/bridgeLocal.js +676 -0
  7. package/dist/cjs/contactRequest.js +30 -0
  8. package/dist/cjs/controlSignals.js +44 -0
  9. package/dist/cjs/endpointRegistry.js +264 -0
  10. package/dist/cjs/hitl.js +171 -0
  11. package/dist/cjs/inboundFrame.js +92 -0
  12. package/dist/cjs/index.js +8 -0
  13. package/dist/cjs/media.js +13 -0
  14. package/dist/cjs/message.js +64 -0
  15. package/dist/cjs/restEndpoints.js +220 -0
  16. package/dist/cjs/runtimeCardFields.js +58 -1
  17. package/dist/cjs/sendContextual.js +92 -0
  18. package/dist/cjs/sseEvents.js +298 -0
  19. package/dist/cjs/turnProtocol.js +41 -2
  20. package/dist/contactRequest.d.ts +42 -23
  21. package/dist/contactRequest.js +29 -0
  22. package/dist/controlSignals.d.ts +55 -0
  23. package/dist/controlSignals.js +41 -0
  24. package/dist/endpointRegistry.d.ts +13 -0
  25. package/dist/endpointRegistry.js +261 -0
  26. package/dist/hitl.d.ts +303 -0
  27. package/dist/hitl.js +168 -0
  28. package/dist/inboundFrame.d.ts +229 -0
  29. package/dist/inboundFrame.js +89 -0
  30. package/dist/index.d.ts +8 -0
  31. package/dist/index.js +8 -0
  32. package/dist/media.d.ts +24 -11
  33. package/dist/media.js +12 -0
  34. package/dist/message.d.ts +133 -50
  35. package/dist/message.js +64 -1
  36. package/dist/restEndpoints.d.ts +496 -0
  37. package/dist/restEndpoints.js +217 -0
  38. package/dist/runtimeCardFields.d.ts +112 -39
  39. package/dist/runtimeCardFields.js +57 -0
  40. package/dist/schemas/agent-behavior-settings-record.schema.json +48 -0
  41. package/dist/schemas/bridge-connection-state-notification.schema.json +19 -0
  42. package/dist/schemas/bridge-get-attachment-params.schema.json +24 -0
  43. package/dist/schemas/bridge-get-attachment-result.schema.json +20 -0
  44. package/dist/schemas/bridge-hello-params.schema.json +42 -0
  45. package/dist/schemas/bridge-hello-result.schema.json +105 -0
  46. package/dist/schemas/bridge-hitl-state.schema.json +38 -0
  47. package/dist/schemas/bridge-ok-result.schema.json +15 -0
  48. package/dist/schemas/bridge-ready-notification.schema.json +79 -0
  49. package/dist/schemas/bridge-resync-reason.schema.json +9 -0
  50. package/dist/schemas/bridge-resync.schema.json +18 -0
  51. package/dist/schemas/bridge-rpc-error.schema.json +19 -0
  52. package/dist/schemas/bridge-rpc-id.schema.json +12 -0
  53. package/dist/schemas/bridge-rpc-notification.schema.json +20 -0
  54. package/dist/schemas/bridge-rpc-request.schema.json +31 -0
  55. package/dist/schemas/bridge-rpc-response.schema.json +81 -0
  56. package/dist/schemas/bridge-status-result.schema.json +76 -0
  57. package/dist/schemas/bridge-upload-media-params.schema.json +28 -0
  58. package/dist/schemas/bridge-upstream-state.schema.json +10 -0
  59. package/dist/schemas/contacts-response.schema.json +52 -0
  60. package/dist/schemas/control-channel-key.schema.json +10 -0
  61. package/dist/schemas/control-primitive-event.schema.json +30 -0
  62. package/dist/schemas/control-primitive-map.schema.json +15 -0
  63. package/dist/schemas/control-session-event.schema.json +26 -0
  64. package/dist/schemas/control-session-node.schema.json +11 -0
  65. package/dist/schemas/control-signal-event.schema.json +35 -0
  66. package/dist/schemas/control-signal-node.schema.json +22 -0
  67. package/dist/schemas/control-signal-type.schema.json +10 -0
  68. package/dist/schemas/conversations-response.schema.json +127 -0
  69. package/dist/schemas/create-contact-request-request.schema.json +17 -0
  70. package/dist/schemas/create-contact-request-response.schema.json +51 -0
  71. package/dist/schemas/create-conversation-request.schema.json +82 -0
  72. package/dist/schemas/create-conversation-response.schema.json +29 -0
  73. package/dist/schemas/delete-message-response.schema.json +11 -0
  74. package/dist/schemas/delivery-intent.schema.json +11 -0
  75. package/dist/schemas/forward-message-request.schema.json +25 -0
  76. package/dist/schemas/forward-message-response.schema.json +35 -0
  77. package/dist/schemas/forwarded-from.schema.json +18 -0
  78. package/dist/schemas/get-messages-query.schema.json +17 -0
  79. package/dist/schemas/hitl-approval-category.schema.json +15 -0
  80. package/dist/schemas/hitl-approval-detail.schema.json +21 -0
  81. package/dist/schemas/hitl-approval-outcome-record.schema.json +33 -0
  82. package/dist/schemas/hitl-approval-reply-record.schema.json +57 -0
  83. package/dist/schemas/hitl-approval-request-record.schema.json +105 -0
  84. package/dist/schemas/hitl-approval-risk.schema.json +11 -0
  85. package/dist/schemas/hitl-card-outcome-record.schema.json +48 -0
  86. package/dist/schemas/hitl-card-reply-record.schema.json +46 -0
  87. package/dist/schemas/hitl-card-request-record.schema.json +73 -0
  88. package/dist/schemas/hitl-input-answers.schema.json +23 -0
  89. package/dist/schemas/hitl-input-kind.schema.json +10 -0
  90. package/dist/schemas/hitl-input-outcome-record.schema.json +46 -0
  91. package/dist/schemas/hitl-input-question.schema.json +54 -0
  92. package/dist/schemas/hitl-input-reply-record.schema.json +44 -0
  93. package/dist/schemas/hitl-input-request-record.schema.json +134 -0
  94. package/dist/schemas/hitl-pending.schema.json +31 -0
  95. package/dist/schemas/hitl-request-accepted.schema.json +18 -0
  96. package/dist/schemas/hitl-request-kind.schema.json +10 -0
  97. package/dist/schemas/hitl-resolution-status.schema.json +10 -0
  98. package/dist/schemas/hitl-resolution.schema.json +38 -0
  99. package/dist/schemas/hitl-session-rule.schema.json +32 -0
  100. package/dist/schemas/inbound-disposition.schema.json +13 -0
  101. package/dist/schemas/inbound-frame-attachment-v1.schema.json +94 -0
  102. package/dist/schemas/inbound-frame-contact-card-v1.schema.json +59 -0
  103. package/dist/schemas/inbound-frame-group-context-v1.schema.json +96 -0
  104. package/dist/schemas/inbound-frame-reply-context-v1.schema.json +261 -0
  105. package/dist/schemas/inbound-frame-shape-v1.schema.json +12 -0
  106. package/dist/schemas/inbound-frame-v1.schema.json +506 -0
  107. package/dist/schemas/mark-read-response.schema.json +11 -0
  108. package/dist/schemas/media-attachment-kind.schema.json +11 -0
  109. package/dist/schemas/media-attachment.schema.json +42 -0
  110. package/dist/schemas/messages-page-response.schema.json +290 -0
  111. package/dist/schemas/participation-decision-input.schema.json +44 -0
  112. package/dist/schemas/participation-history-message.schema.json +23 -0
  113. package/dist/schemas/participation-history-snapshot.schema.json +37 -0
  114. package/dist/schemas/participation-style.schema.json +13 -0
  115. package/dist/schemas/react-request.schema.json +22 -0
  116. package/dist/schemas/react-response.schema.json +35 -0
  117. package/dist/schemas/resolve-admission-request.schema.json +30 -0
  118. package/dist/schemas/resolve-admission-response.schema.json +129 -0
  119. package/dist/schemas/resolved-agent-behavior-policy-record.schema.json +81 -0
  120. package/dist/schemas/rest-contact.schema.json +40 -0
  121. package/dist/schemas/rest-conversation.schema.json +115 -0
  122. package/dist/schemas/rest-message.schema.json +252 -0
  123. package/dist/schemas/rest-ok-response.schema.json +11 -0
  124. package/dist/schemas/rest-session-selection.schema.json +40 -0
  125. package/dist/schemas/runtime-card-field-choice.schema.json +23 -0
  126. package/dist/schemas/runtime-card-field-type.schema.json +17 -0
  127. package/dist/schemas/runtime-card-field.schema.json +180 -0
  128. package/dist/schemas/runtime-card-line-item-column-type.schema.json +12 -0
  129. package/dist/schemas/runtime-card-line-item-column.schema.json +74 -0
  130. package/dist/schemas/send-contextual-deferred-response.schema.json +39 -0
  131. package/dist/schemas/send-contextual-messaged-response.schema.json +42 -0
  132. package/dist/schemas/send-contextual-request.schema.json +103 -0
  133. package/dist/schemas/send-contextual-response.schema.json +105 -0
  134. package/dist/schemas/send-contextual-self-context.schema.json +19 -0
  135. package/dist/schemas/send-contextual-state-response.schema.json +24 -0
  136. package/dist/schemas/send-message-request.schema.json +106 -0
  137. package/dist/schemas/send-message-response.schema.json +14 -0
  138. package/dist/schemas/sender-type.schema.json +9 -0
  139. package/dist/schemas/serialize-message-input.schema.json +29 -0
  140. package/dist/schemas/serialized-agent-client-type.schema.json +12 -0
  141. package/dist/schemas/serialized-contact-card.schema.json +65 -0
  142. package/dist/schemas/serialized-contact-request-status.schema.json +11 -0
  143. package/dist/schemas/serialized-contact-request.schema.json +157 -0
  144. package/dist/schemas/serialized-content-type.schema.json +13 -0
  145. package/dist/schemas/serialized-message.schema.json +249 -0
  146. package/dist/schemas/serialized-reactions.schema.json +14 -0
  147. package/dist/schemas/serialized-sender-type.schema.json +9 -0
  148. package/dist/schemas/set-streaming-request.schema.json +67 -0
  149. package/dist/schemas/set-typing-request.schema.json +25 -0
  150. package/dist/schemas/sse-access-policy.schema.json +10 -0
  151. package/dist/schemas/sse-agent-context-payload.schema.json +57 -0
  152. package/dist/schemas/sse-connected-payload.schema.json +18 -0
  153. package/dist/schemas/sse-contact-payload.schema.json +40 -0
  154. package/dist/schemas/sse-contact-removed-payload.schema.json +14 -0
  155. package/dist/schemas/sse-contact-request-payload.schema.json +157 -0
  156. package/dist/schemas/sse-conversation-updated-payload.schema.json +48 -0
  157. package/dist/schemas/sse-error-payload.schema.json +23 -0
  158. package/dist/schemas/sse-event-envelope.schema.json +42 -0
  159. package/dist/schemas/sse-event-family.schema.json +12 -0
  160. package/dist/schemas/sse-event-type.schema.json +28 -0
  161. package/dist/schemas/sse-heartbeat-payload.schema.json +14 -0
  162. package/dist/schemas/sse-membership-change.schema.json +28 -0
  163. package/dist/schemas/sse-message-created-payload.schema.json +414 -0
  164. package/dist/schemas/sse-message-deleted-payload.schema.json +18 -0
  165. package/dist/schemas/sse-message-updated-payload.schema.json +46 -0
  166. package/dist/schemas/sse-presence-payload.schema.json +21 -0
  167. package/dist/schemas/sse-provenance.schema.json +64 -0
  168. package/dist/schemas/sse-replay-expired-payload.schema.json +21 -0
  169. package/dist/schemas/sse-runtime-control-kind.schema.json +13 -0
  170. package/dist/schemas/sse-runtime-control-payload.schema.json +44 -0
  171. package/dist/schemas/sse-runtime-updated-payload.schema.json +78 -0
  172. package/dist/schemas/sse-self-context.schema.json +45 -0
  173. package/dist/schemas/sse-turn-dispatch.schema.json +29 -0
  174. package/dist/schemas/sse-turn-updated-payload.schema.json +33 -0
  175. package/dist/schemas/sse-typing-payload.schema.json +32 -0
  176. package/dist/schemas/sse-voice-session-event-payload.schema.json +170 -0
  177. package/dist/schemas/sse-voice-session.schema.json +157 -0
  178. package/dist/schemas/trigger-decision.schema.json +27 -0
  179. package/dist/schemas/turn-lifecycle-state.schema.json +14 -0
  180. package/dist/schemas/turn-message-semantics.schema.json +10 -0
  181. package/dist/schemas/turn-metadata.schema.json +56 -0
  182. package/dist/schemas/turn-state-like.schema.json +39 -0
  183. package/dist/schemas/update-disposition-request.schema.json +22 -0
  184. package/dist/schemas/upload-media-request.schema.json +25 -0
  185. package/dist/schemas/upload-media-response.schema.json +55 -0
  186. package/dist/sendContextual.d.ts +114 -0
  187. package/dist/sendContextual.js +89 -0
  188. package/dist/sseEvents.d.ts +494 -0
  189. package/dist/sseEvents.js +295 -0
  190. package/dist/turnProtocol.d.ts +91 -24
  191. package/dist/turnProtocol.js +40 -1
  192. package/package.json +8 -5
@@ -0,0 +1,506 @@
1
+ {
2
+ "$id": "canon:InboundFrameV1Schema",
3
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4
+ "type": "object",
5
+ "properties": {
6
+ "schema": {
7
+ "type": "string",
8
+ "const": "canon.inbound_frame.v1"
9
+ },
10
+ "shape": {
11
+ "type": "string",
12
+ "enum": [
13
+ "direct_owner",
14
+ "direct_human",
15
+ "direct_agent",
16
+ "group",
17
+ "unknown"
18
+ ]
19
+ },
20
+ "sender": {
21
+ "type": "object",
22
+ "properties": {
23
+ "name": {
24
+ "type": "string"
25
+ },
26
+ "type": {
27
+ "type": "string",
28
+ "enum": [
29
+ "human",
30
+ "ai_agent"
31
+ ]
32
+ },
33
+ "isOwner": {
34
+ "type": "boolean"
35
+ }
36
+ },
37
+ "required": [
38
+ "name",
39
+ "type",
40
+ "isOwner"
41
+ ],
42
+ "additionalProperties": false
43
+ },
44
+ "conversation": {
45
+ "type": "object",
46
+ "properties": {
47
+ "type": {
48
+ "type": "string",
49
+ "enum": [
50
+ "direct",
51
+ "group",
52
+ "unknown"
53
+ ]
54
+ },
55
+ "memberCount": {
56
+ "anyOf": [
57
+ {
58
+ "type": "number"
59
+ },
60
+ {
61
+ "type": "null"
62
+ }
63
+ ]
64
+ }
65
+ },
66
+ "required": [
67
+ "type",
68
+ "memberCount"
69
+ ],
70
+ "additionalProperties": false
71
+ },
72
+ "addressed": {
73
+ "type": "boolean"
74
+ },
75
+ "message": {
76
+ "type": "object",
77
+ "properties": {
78
+ "text": {
79
+ "type": "string"
80
+ },
81
+ "contentType": {
82
+ "anyOf": [
83
+ {
84
+ "type": "string",
85
+ "enum": [
86
+ "text",
87
+ "image",
88
+ "audio",
89
+ "video",
90
+ "file",
91
+ "contact_card"
92
+ ]
93
+ },
94
+ {
95
+ "type": "null"
96
+ }
97
+ ]
98
+ }
99
+ },
100
+ "required": [
101
+ "text",
102
+ "contentType"
103
+ ],
104
+ "additionalProperties": false
105
+ },
106
+ "replyContext": {
107
+ "anyOf": [
108
+ {
109
+ "type": "object",
110
+ "properties": {
111
+ "messageId": {
112
+ "type": "string"
113
+ },
114
+ "found": {
115
+ "type": "boolean"
116
+ },
117
+ "senderId": {
118
+ "anyOf": [
119
+ {
120
+ "type": "string"
121
+ },
122
+ {
123
+ "type": "null"
124
+ }
125
+ ]
126
+ },
127
+ "senderName": {
128
+ "anyOf": [
129
+ {
130
+ "type": "string"
131
+ },
132
+ {
133
+ "type": "null"
134
+ }
135
+ ]
136
+ },
137
+ "senderType": {
138
+ "anyOf": [
139
+ {
140
+ "type": "string",
141
+ "enum": [
142
+ "human",
143
+ "ai_agent"
144
+ ]
145
+ },
146
+ {
147
+ "type": "null"
148
+ }
149
+ ]
150
+ },
151
+ "contentType": {
152
+ "anyOf": [
153
+ {
154
+ "type": "string",
155
+ "enum": [
156
+ "text",
157
+ "image",
158
+ "audio",
159
+ "video",
160
+ "file",
161
+ "contact_card"
162
+ ]
163
+ },
164
+ {
165
+ "type": "null"
166
+ }
167
+ ]
168
+ },
169
+ "text": {
170
+ "anyOf": [
171
+ {
172
+ "type": "string"
173
+ },
174
+ {
175
+ "type": "null"
176
+ }
177
+ ]
178
+ },
179
+ "body": {
180
+ "type": "string"
181
+ },
182
+ "replyToPosition": {
183
+ "anyOf": [
184
+ {
185
+ "type": "number"
186
+ },
187
+ {
188
+ "type": "null"
189
+ }
190
+ ]
191
+ },
192
+ "attachments": {
193
+ "type": "array",
194
+ "items": {
195
+ "type": "object",
196
+ "properties": {
197
+ "index": {
198
+ "type": "number"
199
+ },
200
+ "kind": {
201
+ "type": "string",
202
+ "enum": [
203
+ "image",
204
+ "audio",
205
+ "video",
206
+ "file"
207
+ ]
208
+ },
209
+ "placeholder": {
210
+ "type": "string"
211
+ },
212
+ "fileName": {
213
+ "anyOf": [
214
+ {
215
+ "type": "string"
216
+ },
217
+ {
218
+ "type": "null"
219
+ }
220
+ ]
221
+ },
222
+ "mimeType": {
223
+ "anyOf": [
224
+ {
225
+ "type": "string"
226
+ },
227
+ {
228
+ "type": "null"
229
+ }
230
+ ]
231
+ },
232
+ "sizeBytes": {
233
+ "anyOf": [
234
+ {
235
+ "type": "number"
236
+ },
237
+ {
238
+ "type": "null"
239
+ }
240
+ ]
241
+ },
242
+ "width": {
243
+ "anyOf": [
244
+ {
245
+ "type": "number"
246
+ },
247
+ {
248
+ "type": "null"
249
+ }
250
+ ]
251
+ },
252
+ "height": {
253
+ "anyOf": [
254
+ {
255
+ "type": "number"
256
+ },
257
+ {
258
+ "type": "null"
259
+ }
260
+ ]
261
+ },
262
+ "durationMs": {
263
+ "anyOf": [
264
+ {
265
+ "type": "number"
266
+ },
267
+ {
268
+ "type": "null"
269
+ }
270
+ ]
271
+ }
272
+ },
273
+ "required": [
274
+ "index",
275
+ "kind",
276
+ "placeholder",
277
+ "fileName",
278
+ "mimeType",
279
+ "sizeBytes",
280
+ "width",
281
+ "height",
282
+ "durationMs"
283
+ ],
284
+ "additionalProperties": false
285
+ }
286
+ },
287
+ "contactCard": {
288
+ "anyOf": [
289
+ {
290
+ "type": "object",
291
+ "properties": {
292
+ "userId": {
293
+ "type": "string"
294
+ },
295
+ "canonContactId": {
296
+ "anyOf": [
297
+ {
298
+ "type": "string"
299
+ },
300
+ {
301
+ "type": "null"
302
+ }
303
+ ]
304
+ },
305
+ "displayName": {
306
+ "type": "string"
307
+ },
308
+ "userType": {
309
+ "type": "string",
310
+ "enum": [
311
+ "human",
312
+ "ai_agent"
313
+ ]
314
+ },
315
+ "ownerName": {
316
+ "anyOf": [
317
+ {
318
+ "type": "string"
319
+ },
320
+ {
321
+ "type": "null"
322
+ }
323
+ ]
324
+ },
325
+ "about": {
326
+ "anyOf": [
327
+ {
328
+ "type": "string"
329
+ },
330
+ {
331
+ "type": "null"
332
+ }
333
+ ]
334
+ }
335
+ },
336
+ "required": [
337
+ "userId",
338
+ "canonContactId",
339
+ "displayName",
340
+ "userType",
341
+ "ownerName",
342
+ "about"
343
+ ],
344
+ "additionalProperties": false
345
+ },
346
+ {
347
+ "type": "null"
348
+ }
349
+ ]
350
+ }
351
+ },
352
+ "required": [
353
+ "messageId",
354
+ "found",
355
+ "senderId",
356
+ "senderName",
357
+ "senderType",
358
+ "contentType",
359
+ "text",
360
+ "body",
361
+ "replyToPosition",
362
+ "attachments",
363
+ "contactCard"
364
+ ],
365
+ "additionalProperties": false
366
+ },
367
+ {
368
+ "type": "null"
369
+ }
370
+ ]
371
+ },
372
+ "groupContext": {
373
+ "anyOf": [
374
+ {
375
+ "type": "object",
376
+ "properties": {
377
+ "memberCount": {
378
+ "type": "number"
379
+ },
380
+ "memberIds": {
381
+ "type": "array",
382
+ "items": {
383
+ "type": "string"
384
+ }
385
+ },
386
+ "ownerId": {
387
+ "type": "string"
388
+ },
389
+ "ownerName": {
390
+ "type": "string"
391
+ },
392
+ "ownerPresent": {
393
+ "type": "boolean"
394
+ },
395
+ "knownRecentParticipants": {
396
+ "type": "array",
397
+ "items": {
398
+ "type": "object",
399
+ "properties": {
400
+ "id": {
401
+ "type": "string"
402
+ },
403
+ "name": {
404
+ "type": "string"
405
+ },
406
+ "userType": {
407
+ "type": "string",
408
+ "enum": [
409
+ "human",
410
+ "ai_agent",
411
+ "unknown"
412
+ ]
413
+ },
414
+ "isOwner": {
415
+ "type": "boolean"
416
+ },
417
+ "isSelf": {
418
+ "type": "boolean"
419
+ }
420
+ },
421
+ "required": [
422
+ "id",
423
+ "name",
424
+ "userType",
425
+ "isOwner",
426
+ "isSelf"
427
+ ],
428
+ "additionalProperties": false
429
+ }
430
+ },
431
+ "membershipChange": {
432
+ "type": "object",
433
+ "properties": {
434
+ "addedMemberIds": {
435
+ "type": "array",
436
+ "items": {
437
+ "type": "string"
438
+ }
439
+ },
440
+ "removedMemberIds": {
441
+ "type": "array",
442
+ "items": {
443
+ "type": "string"
444
+ }
445
+ },
446
+ "memberCount": {
447
+ "type": "number"
448
+ }
449
+ },
450
+ "required": [
451
+ "addedMemberIds",
452
+ "removedMemberIds",
453
+ "memberCount"
454
+ ],
455
+ "additionalProperties": false
456
+ }
457
+ },
458
+ "required": [
459
+ "memberCount",
460
+ "memberIds",
461
+ "ownerId",
462
+ "ownerName",
463
+ "ownerPresent",
464
+ "knownRecentParticipants"
465
+ ],
466
+ "additionalProperties": false
467
+ },
468
+ {
469
+ "type": "null"
470
+ }
471
+ ]
472
+ },
473
+ "groupContextMode": {
474
+ "type": "string",
475
+ "enum": [
476
+ "initial",
477
+ "membership_change"
478
+ ]
479
+ },
480
+ "selfContexts": {
481
+ "type": "array",
482
+ "items": {
483
+ "type": "string"
484
+ }
485
+ },
486
+ "behaviorInstructions": {
487
+ "type": "array",
488
+ "items": {
489
+ "type": "string"
490
+ }
491
+ }
492
+ },
493
+ "required": [
494
+ "schema",
495
+ "shape",
496
+ "sender",
497
+ "conversation",
498
+ "addressed",
499
+ "message",
500
+ "replyContext",
501
+ "groupContext",
502
+ "selfContexts",
503
+ "behaviorInstructions"
504
+ ],
505
+ "additionalProperties": false
506
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "$id": "canon:MarkReadResponseSchema",
3
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4
+ "type": "object",
5
+ "properties": {
6
+ "success": {
7
+ "type": "boolean"
8
+ }
9
+ },
10
+ "additionalProperties": {}
11
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "$id": "canon:MediaAttachmentKindSchema",
3
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4
+ "type": "string",
5
+ "enum": [
6
+ "image",
7
+ "audio",
8
+ "video",
9
+ "file"
10
+ ]
11
+ }
@@ -0,0 +1,42 @@
1
+ {
2
+ "$id": "canon:MediaAttachmentSchema",
3
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4
+ "type": "object",
5
+ "properties": {
6
+ "kind": {
7
+ "type": "string",
8
+ "enum": [
9
+ "image",
10
+ "audio",
11
+ "video",
12
+ "file"
13
+ ]
14
+ },
15
+ "url": {
16
+ "type": "string"
17
+ },
18
+ "mimeType": {
19
+ "type": "string"
20
+ },
21
+ "fileName": {
22
+ "type": "string"
23
+ },
24
+ "sizeBytes": {
25
+ "type": "number"
26
+ },
27
+ "width": {
28
+ "type": "number"
29
+ },
30
+ "height": {
31
+ "type": "number"
32
+ },
33
+ "durationMs": {
34
+ "type": "number"
35
+ }
36
+ },
37
+ "required": [
38
+ "kind",
39
+ "url"
40
+ ],
41
+ "additionalProperties": false
42
+ }