@webex/event-dictionary-ts 0.0.1

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.
@@ -0,0 +1,3661 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "$ref": "#/definitions/FeatureEvent",
4
+ "definitions": {
5
+ "FeatureEvent": {
6
+ "type": "object",
7
+ "description": "Behavioural Events from Clients",
8
+ "additionalProperties": true,
9
+ "required": [
10
+ "name",
11
+ "identifiers",
12
+ "canProceed"
13
+ ],
14
+ "properties": {
15
+ "canProceed": {
16
+ "type": "boolean"
17
+ },
18
+ "state": {
19
+ "type": "string"
20
+ },
21
+ "mediaType": {
22
+ "enum": [
23
+ "audio",
24
+ "video",
25
+ "share",
26
+ "share_audio",
27
+ "whiteboard",
28
+ "gamestate"
29
+ ],
30
+ "type": "string"
31
+ },
32
+ "csi": {
33
+ "type": "number",
34
+ "minimum": -9223372036854776000.0,
35
+ "maximum": 9223372036854776000.0
36
+ },
37
+ "mediaCapabilities": {
38
+ "type": "object",
39
+ "description": "media capability for both transmit and receive",
40
+ "additionalProperties": true,
41
+ "required": [
42
+ "tx",
43
+ "rx"
44
+ ],
45
+ "properties": {
46
+ "tx": {
47
+ "type": "object",
48
+ "description": "explicit indication of media capabilities. true=supported",
49
+ "additionalProperties": true,
50
+ "required": [
51
+ "audio",
52
+ "video",
53
+ "share",
54
+ "share_audio",
55
+ "whiteboard"
56
+ ],
57
+ "properties": {
58
+ "audio": {
59
+ "type": "boolean"
60
+ },
61
+ "video": {
62
+ "type": "boolean"
63
+ },
64
+ "share": {
65
+ "type": "boolean"
66
+ },
67
+ "share_audio": {
68
+ "type": "boolean"
69
+ },
70
+ "whiteboard": {
71
+ "type": "boolean"
72
+ },
73
+ "gamestate": {
74
+ "type": "boolean"
75
+ }
76
+ }
77
+ },
78
+ "rx": {
79
+ "type": "object",
80
+ "description": "explicit indication of media capabilities. true=supported",
81
+ "additionalProperties": true,
82
+ "required": [
83
+ "audio",
84
+ "video",
85
+ "share",
86
+ "share_audio",
87
+ "whiteboard"
88
+ ],
89
+ "properties": {
90
+ "audio": {
91
+ "type": "boolean"
92
+ },
93
+ "video": {
94
+ "type": "boolean"
95
+ },
96
+ "share": {
97
+ "type": "boolean"
98
+ },
99
+ "share_audio": {
100
+ "type": "boolean"
101
+ },
102
+ "whiteboard": {
103
+ "type": "boolean"
104
+ },
105
+ "gamestate": {
106
+ "type": "boolean"
107
+ }
108
+ }
109
+ }
110
+ }
111
+ },
112
+ "mediaLines": {
113
+ "type": "array",
114
+ "items": {
115
+ "type": "object",
116
+ "description": "Media details",
117
+ "additionalProperties": true,
118
+ "required": [
119
+ "mediaType",
120
+ "protocol",
121
+ "direction"
122
+ ],
123
+ "properties": {
124
+ "mediaType": {
125
+ "type": "string",
126
+ "enum": [
127
+ "audio",
128
+ "embedded_app",
129
+ "video",
130
+ "share",
131
+ "share_audio",
132
+ "whiteboard",
133
+ "gamestate"
134
+ ]
135
+ },
136
+ "remoteIP": {
137
+ "type": "string"
138
+ },
139
+ "localIP": {
140
+ "type": "string"
141
+ },
142
+ "localNetworkPrefix": {
143
+ "type": "string"
144
+ },
145
+ "localPort": {
146
+ "type": "integer"
147
+ },
148
+ "remotePort": {
149
+ "type": "integer"
150
+ },
151
+ "protocol": {
152
+ "enum": [
153
+ "udp",
154
+ "tcp",
155
+ "xtls",
156
+ "unknown"
157
+ ],
158
+ "type": "string"
159
+ },
160
+ "direction": {
161
+ "enum": [
162
+ "sendrecv",
163
+ "sendonly",
164
+ "recvonly",
165
+ "inactive"
166
+ ],
167
+ "type": "string"
168
+ },
169
+ "clusterName": {
170
+ "type": "string"
171
+ },
172
+ "status": {
173
+ "enum": [
174
+ "succeeded",
175
+ "in-progress",
176
+ "failed"
177
+ ],
178
+ "type": "string"
179
+ },
180
+ "failureReason": {
181
+ "enum": [
182
+ "network",
183
+ "transport",
184
+ "rejected",
185
+ "timeout",
186
+ "notstarted",
187
+ "succeeded"
188
+ ],
189
+ "type": "string"
190
+ },
191
+ "failureDescription": {
192
+ "type": "string"
193
+ },
194
+ "errorCode": {
195
+ "type": "integer"
196
+ },
197
+ "mediaLineData": {
198
+ "type": "object",
199
+ "additionalProperties": true
200
+ },
201
+ "iceMangled": {
202
+ "type": "boolean"
203
+ },
204
+ "transactionId": {
205
+ "type": "string"
206
+ },
207
+ "ufrag": {
208
+ "type": "string"
209
+ },
210
+ "sentReqTime": {
211
+ "type": "string",
212
+ "format": "date-time"
213
+ },
214
+ "recvRespTime": {
215
+ "type": "string",
216
+ "format": "date-time"
217
+ }
218
+ }
219
+ }
220
+ },
221
+ "clientMediaPreferences": {
222
+ "type": "object",
223
+ "description": "allows client to specify media preferences",
224
+ "additionalProperties": true,
225
+ "required": [
226
+ "preferTranscoding"
227
+ ],
228
+ "properties": {
229
+ "preferTranscoding": {
230
+ "type": "boolean"
231
+ }
232
+ }
233
+ },
234
+ "pstnAudioType": {
235
+ "enum": [
236
+ "dial-in",
237
+ "dial-out"
238
+ ],
239
+ "type": "string"
240
+ },
241
+ "success": {
242
+ "type": "boolean"
243
+ },
244
+ "isTranscoded": {
245
+ "type": "boolean"
246
+ },
247
+ "isGatewayed": {
248
+ "type": "boolean"
249
+ },
250
+ "isComposed": {
251
+ "type": "boolean"
252
+ },
253
+ "registrationMode": {
254
+ "type": "string",
255
+ "description": "determine how the events are processed as well as how the reports are aggregated and sliced",
256
+ "enum": [
257
+ "SIP",
258
+ "Cloud",
259
+ "CloudAware"
260
+ ]
261
+ },
262
+ "protocol": {
263
+ "type": "string",
264
+ "description": "protocols used to help determine how the events are processed as well as how the reports are aggregated and sliced",
265
+ "enum": [
266
+ "SIP",
267
+ "H323",
268
+ "Locus",
269
+ "WebRTC"
270
+ ]
271
+ },
272
+ "meetingPlatform": {
273
+ "type": "string",
274
+ "description": "The underlying service provider of the call.",
275
+ "enum": [
276
+ "MsTeams",
277
+ "GoogleMeet",
278
+ "Zoom",
279
+ "Webex"
280
+ ]
281
+ },
282
+ "labels": {
283
+ "type": "array",
284
+ "items": {
285
+ "type": "string"
286
+ }
287
+ },
288
+ "webexServiceType": {
289
+ "enum": [
290
+ "MC",
291
+ "EC",
292
+ "SC",
293
+ "TC",
294
+ "AA",
295
+ "RA",
296
+ "NBR",
297
+ "WRF",
298
+ "HOL"
299
+ ],
300
+ "type": "string"
301
+ },
302
+ "webexSubServiceType": {
303
+ "type": "string",
304
+ "description": "this defines the sub service type",
305
+ "enum": [
306
+ "PMR",
307
+ "Event",
308
+ "Training",
309
+ "ScheduleMeeting",
310
+ "ScheduledMeeting",
311
+ "Webinar",
312
+ "others"
313
+ ]
314
+ },
315
+ "ivrDialogType": {
316
+ "type": "string",
317
+ "enum": [
318
+ "MEDIA_ON_HOLD",
319
+ "ANNOUNCEMENT",
320
+ "TONE",
321
+ "COLLECT_PIN",
322
+ "PROMPT",
323
+ "MEDIA_SERVICE_AGENT",
324
+ "COLLECT"
325
+ ]
326
+ },
327
+ "ivrDialogResult": {
328
+ "type": "string",
329
+ "enum": [
330
+ "SUCCESS",
331
+ "FAILURE",
332
+ "HOST_PIN_MATCH",
333
+ "GUEST_PIN_MATCH",
334
+ "PANELIST_PIN_MATCH",
335
+ "NO_MATCH",
336
+ "INVALID_PIN"
337
+ ]
338
+ },
339
+ "callType": {
340
+ "type": "string",
341
+ "enum": [
342
+ "VIDEO_DIALIN",
343
+ "VIDEO_DIALOUT",
344
+ "CASCADE",
345
+ "HYBRID_CASCADE",
346
+ "PSTN_SIP",
347
+ "PSTN_DIALIN",
348
+ "PSTN_DIALOUT",
349
+ "PSTN_ONLY_DIALIN",
350
+ "PSTN_ONLY_DIALOUT",
351
+ "H323",
352
+ "H323_IP",
353
+ "SIP_ENTERPRISE",
354
+ "SIP_MOBILE",
355
+ "SIP_NATIONAL",
356
+ "SIP_INTERNATIONAL",
357
+ "SIP_EMERGENCY",
358
+ "SIP_OPERATOR",
359
+ "SIP_SHORTCODE",
360
+ "SIP_TOLLFREE",
361
+ "SIP_PREMIUM",
362
+ "SIP_URI",
363
+ "SIP_INBOUND",
364
+ "UNKNOWN",
365
+ "ZTM",
366
+ "SIP_MEETING"
367
+ ]
368
+ },
369
+ "eventData": {
370
+ "type": "object",
371
+ "additionalProperties": true
372
+ },
373
+ "derivedSipClientType": {
374
+ "type": "string",
375
+ "enum": [
376
+ "SIP_CE_SINGLE_SCREEN",
377
+ "SIP_CE_MULTI_SCREEN",
378
+ "SIP_JABBER",
379
+ "SIP_TIP_SINGLE_SCREEN",
380
+ "SIP_TIP_THREE_SCREEN",
381
+ "SIP_PSTN",
382
+ "SIP_OTHER",
383
+ "SIP_WEBEX_CASCADE",
384
+ "SIP_NONE"
385
+ ]
386
+ },
387
+ "derivedClientType": {
388
+ "type": "string",
389
+ "description": "this defines the major client types",
390
+ "enum": [
391
+ "MEETING_CENTER",
392
+ "EVENT_CENTER",
393
+ "TRAINING_CENTER",
394
+ "TEAMS_CLIENT",
395
+ "TEAMS_DEVICE",
396
+ "TEAMS_SHARE",
397
+ "SIP",
398
+ "RECORDING",
399
+ "CLOUD_AWARE_SIP",
400
+ "TEAMS_WXC_CLIENT",
401
+ "WXC_CLIENT",
402
+ "WXC_DEVICE",
403
+ "WEBEX_JS_SDK",
404
+ "VOICEA_CLIENT",
405
+ "CISCO_SIP_GW",
406
+ "WEBEX_SDK",
407
+ "CPAAS_THIRD_PARTY_SDK",
408
+ "WXC_THIRD_PARTY",
409
+ "WXCC"
410
+ ]
411
+ },
412
+ "derivedSubClientType": {
413
+ "type": "string",
414
+ "description": "this defines the sub types of clients",
415
+ "enum": [
416
+ "DESKTOP_APP",
417
+ "DESKTOP_APP_VDI",
418
+ "DEVICE_CURRENT",
419
+ "DEVICE_LEGACY_2020",
420
+ "HVDI_APP",
421
+ "MOBILE_APP",
422
+ "VDI_APP",
423
+ "WEB_APP",
424
+ "MOBILE_NETWORK",
425
+ "HOLOGRAM_HEADSET_APP"
426
+ ]
427
+ },
428
+ "serverRole": {
429
+ "type": "string",
430
+ "enum": [
431
+ "CONFERENCE",
432
+ "TRANSCODER",
433
+ "WHITEBOARD_INJECTOR",
434
+ "MS_TEAMS_CONFERENCE",
435
+ "RECORDING",
436
+ "GATEWAY",
437
+ "GATEWAY_CLIENT_SIDE",
438
+ "UNKNOWN",
439
+ "HOLOGRAM_RENDER"
440
+ ]
441
+ },
442
+ "reconnect": {
443
+ "type": "boolean"
444
+ },
445
+ "retryCount": {
446
+ "type": "integer"
447
+ },
448
+ "meetSimple": {
449
+ "type": "boolean"
450
+ },
451
+ "mediaStatus": {
452
+ "type": "object",
453
+ "description": "represents media quality status report such as no media or drop out",
454
+ "additionalProperties": true,
455
+ "properties": {
456
+ "mediaType": {
457
+ "enum": [
458
+ "audio",
459
+ "video",
460
+ "share",
461
+ "share_audio",
462
+ "whiteboard"
463
+ ],
464
+ "type": "string"
465
+ },
466
+ "mediaSuccess": {
467
+ "type": "boolean"
468
+ },
469
+ "shareType": {
470
+ "enum": [
471
+ "cb-normal-share",
472
+ "ce-airplay-share",
473
+ "ce-direct-share",
474
+ "ce-gui-loopback-share",
475
+ "ce-input-source-share",
476
+ "ce-input-source-share-hdmi",
477
+ "ce-input-source-share-usbc",
478
+ "ce-jpg-share",
479
+ "ce-miracast-share",
480
+ "mcs-normal-share",
481
+ "mcs-normal-audio-share",
482
+ "mcs-hfps-share",
483
+ "mcs-hfps-audio-share"
484
+ ],
485
+ "type": "string"
486
+ },
487
+ "isTransmitter": {
488
+ "type": "boolean"
489
+ },
490
+ "audioJoinType": {
491
+ "enum": [
492
+ "phone-call-in",
493
+ "phone-call-back",
494
+ "voip",
495
+ "device-call-back",
496
+ "never-join-audio",
497
+ "tried-but-never-join"
498
+ ],
499
+ "type": "string"
500
+ },
501
+ "transportType": {
502
+ "type": "string",
503
+ "description": "indicates transport type used",
504
+ "enum": [
505
+ "UDP",
506
+ "TCP",
507
+ "xTLS",
508
+ "TLS"
509
+ ]
510
+ },
511
+ "additionalData": {
512
+ "type": "object",
513
+ "additionalProperties": true
514
+ }
515
+ }
516
+ },
517
+ "shareInstanceId": {
518
+ "type": "string",
519
+ "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}$"
520
+ },
521
+ "hologramStreamId": {
522
+ "type": "string",
523
+ "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}$"
524
+ },
525
+ "audioSetupDelay": {
526
+ "type": "object",
527
+ "description": "represents all of the properities that could cause delay during media setup process.",
528
+ "additionalProperties": true,
529
+ "properties": {
530
+ "floorReqSentReceived": {
531
+ "type": "integer",
532
+ "minimum": 0,
533
+ "maximum": 3600000
534
+ },
535
+ "floorRespSentReceived": {
536
+ "type": "integer",
537
+ "minimum": 0,
538
+ "maximum": 3600000
539
+ },
540
+ "mediaType": {
541
+ "enum": [
542
+ "audio",
543
+ "video",
544
+ "share",
545
+ "share_audio",
546
+ "whiteboard"
547
+ ],
548
+ "type": "string"
549
+ },
550
+ "txReqFloorGranted": {
551
+ "type": "integer",
552
+ "minimum": 0,
553
+ "maximum": 3600000
554
+ },
555
+ "txSessionCreateConfirm": {
556
+ "type": "integer",
557
+ "minimum": 0,
558
+ "maximum": 3600000
559
+ },
560
+ "txApeEnrollConfirm": {
561
+ "type": "integer",
562
+ "minimum": 0,
563
+ "maximum": 3600000
564
+ },
565
+ "txUIDelay": {
566
+ "type": "integer",
567
+ "minimum": 0,
568
+ "maximum": 3600000
569
+ },
570
+ "txScreenCaptureDelay": {
571
+ "type": "integer",
572
+ "minimum": 0,
573
+ "maximum": 3600000
574
+ },
575
+ "txScreenCaptureDelayReasonCode": {
576
+ "type": "integer",
577
+ "minimum": 0
578
+ },
579
+ "txShareStartOverallDelay": {
580
+ "type": "integer",
581
+ "minimum": 0,
582
+ "maximum": 3600000
583
+ },
584
+ "rx1stPacket2RenderDelay": {
585
+ "type": "integer",
586
+ "minimum": 0,
587
+ "maximum": 3600000
588
+ },
589
+ "rxGranted2RenderDelay": {
590
+ "type": "integer",
591
+ "minimum": 0,
592
+ "maximum": 3600000
593
+ },
594
+ "rxFailFrameNumB4Success": {
595
+ "type": "integer",
596
+ "minimum": 0,
597
+ "maximum": 216000
598
+ },
599
+ "e2eFirstFrameDelay": {
600
+ "type": "integer",
601
+ "minimum": 0,
602
+ "maximum": 3600000
603
+ },
604
+ "CBSessionRespToLocusFloorGrantDelay": {
605
+ "type": "integer",
606
+ "minimum": 0,
607
+ "maximum": 3600000
608
+ },
609
+ "CBShareReceiveToServerShareTransmitDelay": {
610
+ "type": "integer",
611
+ "minimum": 0,
612
+ "maximum": 3600000
613
+ },
614
+ "CBShareReceiveToTPGWFirstKeyFrameDelay": {
615
+ "type": "integer",
616
+ "minimum": 0,
617
+ "maximum": 3600000
618
+ },
619
+ "floorRequestHttpTiming": {
620
+ "type": "object",
621
+ "description": "phrased HTTP timing",
622
+ "additionalProperties": true,
623
+ "properties": {
624
+ "connect": {
625
+ "type": "integer",
626
+ "minimum": 0,
627
+ "maximum": 3600000
628
+ },
629
+ "dnsLookup": {
630
+ "type": "integer",
631
+ "minimum": 0,
632
+ "maximum": 3600000
633
+ },
634
+ "sendRequest": {
635
+ "type": "integer",
636
+ "minimum": 0,
637
+ "maximum": 3600000
638
+ },
639
+ "compressRequest": {
640
+ "type": "integer",
641
+ "minimum": 0,
642
+ "maximum": 3600000
643
+ },
644
+ "receiveResponse": {
645
+ "type": "integer",
646
+ "minimum": 0,
647
+ "maximum": 3600000
648
+ },
649
+ "extractJson": {
650
+ "type": "integer",
651
+ "minimum": 0,
652
+ "maximum": 3600000
653
+ },
654
+ "verifyCert": {
655
+ "type": "integer",
656
+ "minimum": 0,
657
+ "maximum": 3600000
658
+ },
659
+ "refreshToken": {
660
+ "type": "integer",
661
+ "minimum": 0,
662
+ "maximum": 3600000
663
+ }
664
+ }
665
+ },
666
+ "TPGWFirstKeyFrameToServerShareTransmitDelay": {
667
+ "type": "integer",
668
+ "minimum": 0,
669
+ "maximum": 3600000
670
+ },
671
+ "MCSSessionActivateToLocusFloorGrantDelay": {
672
+ "type": "integer",
673
+ "minimum": 0,
674
+ "maximum": 3600000
675
+ },
676
+ "ServerShareInitiateToLocusFloorGrantDelay": {
677
+ "type": "integer",
678
+ "minimum": 0,
679
+ "maximum": 3600000
680
+ },
681
+ "LocusFloorGrantToCBSessionStartDelay": {
682
+ "type": "integer",
683
+ "minimum": 0,
684
+ "maximum": 3600000
685
+ },
686
+ "ServerShareReceiveToTPGWFirstKeyFrameDelay": {
687
+ "type": "integer",
688
+ "minimum": 0,
689
+ "maximum": 3600000
690
+ },
691
+ "LocusFloorGrantToTPGWFloorGrantDelay": {
692
+ "type": "integer",
693
+ "minimum": 0,
694
+ "maximum": 3600000
695
+ },
696
+ "LocusFloorGrantToReceiverNotificationDelay": {
697
+ "type": "integer",
698
+ "minimum": 0,
699
+ "maximum": 3600000
700
+ },
701
+ "CBShareSessionRespDelay": {
702
+ "type": "integer",
703
+ "minimum": 0,
704
+ "maximum": 3600000
705
+ },
706
+ "LocusShareFloorGrantRespDelay": {
707
+ "type": "integer",
708
+ "minimum": 0,
709
+ "maximum": 3600000
710
+ },
711
+ "ServerShareFloorGrantRespDelay": {
712
+ "type": "integer",
713
+ "minimum": 0,
714
+ "maximum": 3600000
715
+ },
716
+ "joinRespRxStart": {
717
+ "type": "integer",
718
+ "minimum": 0,
719
+ "maximum": 3600000
720
+ },
721
+ "joinRespTxStart": {
722
+ "type": "integer",
723
+ "minimum": 0,
724
+ "maximum": 3600000
725
+ },
726
+ "maxRemoteLossRate": {
727
+ "type": "number",
728
+ "minimum": 0.0,
729
+ "maximum": 1.0
730
+ },
731
+ "media2SignalDelay": {
732
+ "type": "integer",
733
+ "minimum": 0,
734
+ "maximum": 3600000
735
+ },
736
+ "warholDownloadTime": {
737
+ "type": "integer",
738
+ "minimum": 0,
739
+ "maximum": 3600000
740
+ },
741
+ "contentDownloadTime": {
742
+ "type": "integer",
743
+ "minimum": 0,
744
+ "maximum": 3600000
745
+ },
746
+ "boardCreationTime": {
747
+ "type": "integer",
748
+ "minimum": 0,
749
+ "maximum": 3600000
750
+ },
751
+ "totalBoardServiceRespDelay": {
752
+ "type": "integer",
753
+ "minimum": 0,
754
+ "maximum": 3600000
755
+ }
756
+ }
757
+ },
758
+ "videoSetupDelay": {
759
+ "type": "object",
760
+ "description": "represents all of the properities that could cause delay during media setup process.",
761
+ "additionalProperties": true,
762
+ "properties": {
763
+ "floorReqSentReceived": {
764
+ "type": "integer",
765
+ "minimum": 0,
766
+ "maximum": 3600000
767
+ },
768
+ "floorRespSentReceived": {
769
+ "type": "integer",
770
+ "minimum": 0,
771
+ "maximum": 3600000
772
+ },
773
+ "mediaType": {
774
+ "enum": [
775
+ "audio",
776
+ "video",
777
+ "share",
778
+ "share_audio",
779
+ "whiteboard"
780
+ ],
781
+ "type": "string"
782
+ },
783
+ "txReqFloorGranted": {
784
+ "type": "integer",
785
+ "minimum": 0,
786
+ "maximum": 3600000
787
+ },
788
+ "txSessionCreateConfirm": {
789
+ "type": "integer",
790
+ "minimum": 0,
791
+ "maximum": 3600000
792
+ },
793
+ "txApeEnrollConfirm": {
794
+ "type": "integer",
795
+ "minimum": 0,
796
+ "maximum": 3600000
797
+ },
798
+ "txUIDelay": {
799
+ "type": "integer",
800
+ "minimum": 0,
801
+ "maximum": 3600000
802
+ },
803
+ "txScreenCaptureDelay": {
804
+ "type": "integer",
805
+ "minimum": 0,
806
+ "maximum": 3600000
807
+ },
808
+ "txScreenCaptureDelayReasonCode": {
809
+ "type": "integer",
810
+ "minimum": 0
811
+ },
812
+ "txShareStartOverallDelay": {
813
+ "type": "integer",
814
+ "minimum": 0,
815
+ "maximum": 3600000
816
+ },
817
+ "rx1stPacket2RenderDelay": {
818
+ "type": "integer",
819
+ "minimum": 0,
820
+ "maximum": 3600000
821
+ },
822
+ "rxGranted2RenderDelay": {
823
+ "type": "integer",
824
+ "minimum": 0,
825
+ "maximum": 3600000
826
+ },
827
+ "rxFailFrameNumB4Success": {
828
+ "type": "integer",
829
+ "minimum": 0,
830
+ "maximum": 216000
831
+ },
832
+ "e2eFirstFrameDelay": {
833
+ "type": "integer",
834
+ "minimum": 0,
835
+ "maximum": 3600000
836
+ },
837
+ "CBSessionRespToLocusFloorGrantDelay": {
838
+ "type": "integer",
839
+ "minimum": 0,
840
+ "maximum": 3600000
841
+ },
842
+ "CBShareReceiveToServerShareTransmitDelay": {
843
+ "type": "integer",
844
+ "minimum": 0,
845
+ "maximum": 3600000
846
+ },
847
+ "CBShareReceiveToTPGWFirstKeyFrameDelay": {
848
+ "type": "integer",
849
+ "minimum": 0,
850
+ "maximum": 3600000
851
+ },
852
+ "floorRequestHttpTiming": {
853
+ "type": "object",
854
+ "description": "phrased HTTP timing",
855
+ "additionalProperties": true,
856
+ "properties": {
857
+ "connect": {
858
+ "type": "integer",
859
+ "minimum": 0,
860
+ "maximum": 3600000
861
+ },
862
+ "dnsLookup": {
863
+ "type": "integer",
864
+ "minimum": 0,
865
+ "maximum": 3600000
866
+ },
867
+ "sendRequest": {
868
+ "type": "integer",
869
+ "minimum": 0,
870
+ "maximum": 3600000
871
+ },
872
+ "compressRequest": {
873
+ "type": "integer",
874
+ "minimum": 0,
875
+ "maximum": 3600000
876
+ },
877
+ "receiveResponse": {
878
+ "type": "integer",
879
+ "minimum": 0,
880
+ "maximum": 3600000
881
+ },
882
+ "extractJson": {
883
+ "type": "integer",
884
+ "minimum": 0,
885
+ "maximum": 3600000
886
+ },
887
+ "verifyCert": {
888
+ "type": "integer",
889
+ "minimum": 0,
890
+ "maximum": 3600000
891
+ },
892
+ "refreshToken": {
893
+ "type": "integer",
894
+ "minimum": 0,
895
+ "maximum": 3600000
896
+ }
897
+ }
898
+ },
899
+ "TPGWFirstKeyFrameToServerShareTransmitDelay": {
900
+ "type": "integer",
901
+ "minimum": 0,
902
+ "maximum": 3600000
903
+ },
904
+ "MCSSessionActivateToLocusFloorGrantDelay": {
905
+ "type": "integer",
906
+ "minimum": 0,
907
+ "maximum": 3600000
908
+ },
909
+ "ServerShareInitiateToLocusFloorGrantDelay": {
910
+ "type": "integer",
911
+ "minimum": 0,
912
+ "maximum": 3600000
913
+ },
914
+ "LocusFloorGrantToCBSessionStartDelay": {
915
+ "type": "integer",
916
+ "minimum": 0,
917
+ "maximum": 3600000
918
+ },
919
+ "ServerShareReceiveToTPGWFirstKeyFrameDelay": {
920
+ "type": "integer",
921
+ "minimum": 0,
922
+ "maximum": 3600000
923
+ },
924
+ "LocusFloorGrantToTPGWFloorGrantDelay": {
925
+ "type": "integer",
926
+ "minimum": 0,
927
+ "maximum": 3600000
928
+ },
929
+ "LocusFloorGrantToReceiverNotificationDelay": {
930
+ "type": "integer",
931
+ "minimum": 0,
932
+ "maximum": 3600000
933
+ },
934
+ "CBShareSessionRespDelay": {
935
+ "type": "integer",
936
+ "minimum": 0,
937
+ "maximum": 3600000
938
+ },
939
+ "LocusShareFloorGrantRespDelay": {
940
+ "type": "integer",
941
+ "minimum": 0,
942
+ "maximum": 3600000
943
+ },
944
+ "ServerShareFloorGrantRespDelay": {
945
+ "type": "integer",
946
+ "minimum": 0,
947
+ "maximum": 3600000
948
+ },
949
+ "joinRespRxStart": {
950
+ "type": "integer",
951
+ "minimum": 0,
952
+ "maximum": 3600000
953
+ },
954
+ "joinRespTxStart": {
955
+ "type": "integer",
956
+ "minimum": 0,
957
+ "maximum": 3600000
958
+ },
959
+ "maxRemoteLossRate": {
960
+ "type": "number",
961
+ "minimum": 0.0,
962
+ "maximum": 1.0
963
+ },
964
+ "media2SignalDelay": {
965
+ "type": "integer",
966
+ "minimum": 0,
967
+ "maximum": 3600000
968
+ },
969
+ "warholDownloadTime": {
970
+ "type": "integer",
971
+ "minimum": 0,
972
+ "maximum": 3600000
973
+ },
974
+ "contentDownloadTime": {
975
+ "type": "integer",
976
+ "minimum": 0,
977
+ "maximum": 3600000
978
+ },
979
+ "boardCreationTime": {
980
+ "type": "integer",
981
+ "minimum": 0,
982
+ "maximum": 3600000
983
+ },
984
+ "totalBoardServiceRespDelay": {
985
+ "type": "integer",
986
+ "minimum": 0,
987
+ "maximum": 3600000
988
+ }
989
+ }
990
+ },
991
+ "shareSetupDelay": {
992
+ "type": "object",
993
+ "description": "represents all of the properities that could cause delay during media setup process.",
994
+ "additionalProperties": true,
995
+ "properties": {
996
+ "floorReqSentReceived": {
997
+ "type": "integer",
998
+ "minimum": 0,
999
+ "maximum": 3600000
1000
+ },
1001
+ "floorRespSentReceived": {
1002
+ "type": "integer",
1003
+ "minimum": 0,
1004
+ "maximum": 3600000
1005
+ },
1006
+ "mediaType": {
1007
+ "enum": [
1008
+ "audio",
1009
+ "video",
1010
+ "share",
1011
+ "share_audio",
1012
+ "whiteboard"
1013
+ ],
1014
+ "type": "string"
1015
+ },
1016
+ "txReqFloorGranted": {
1017
+ "type": "integer",
1018
+ "minimum": 0,
1019
+ "maximum": 3600000
1020
+ },
1021
+ "txSessionCreateConfirm": {
1022
+ "type": "integer",
1023
+ "minimum": 0,
1024
+ "maximum": 3600000
1025
+ },
1026
+ "txApeEnrollConfirm": {
1027
+ "type": "integer",
1028
+ "minimum": 0,
1029
+ "maximum": 3600000
1030
+ },
1031
+ "txUIDelay": {
1032
+ "type": "integer",
1033
+ "minimum": 0,
1034
+ "maximum": 3600000
1035
+ },
1036
+ "txScreenCaptureDelay": {
1037
+ "type": "integer",
1038
+ "minimum": 0,
1039
+ "maximum": 3600000
1040
+ },
1041
+ "txScreenCaptureDelayReasonCode": {
1042
+ "type": "integer",
1043
+ "minimum": 0
1044
+ },
1045
+ "txShareStartOverallDelay": {
1046
+ "type": "integer",
1047
+ "minimum": 0,
1048
+ "maximum": 3600000
1049
+ },
1050
+ "rx1stPacket2RenderDelay": {
1051
+ "type": "integer",
1052
+ "minimum": 0,
1053
+ "maximum": 3600000
1054
+ },
1055
+ "rxGranted2RenderDelay": {
1056
+ "type": "integer",
1057
+ "minimum": 0,
1058
+ "maximum": 3600000
1059
+ },
1060
+ "rxFailFrameNumB4Success": {
1061
+ "type": "integer",
1062
+ "minimum": 0,
1063
+ "maximum": 216000
1064
+ },
1065
+ "e2eFirstFrameDelay": {
1066
+ "type": "integer",
1067
+ "minimum": 0,
1068
+ "maximum": 3600000
1069
+ },
1070
+ "CBSessionRespToLocusFloorGrantDelay": {
1071
+ "type": "integer",
1072
+ "minimum": 0,
1073
+ "maximum": 3600000
1074
+ },
1075
+ "CBShareReceiveToServerShareTransmitDelay": {
1076
+ "type": "integer",
1077
+ "minimum": 0,
1078
+ "maximum": 3600000
1079
+ },
1080
+ "CBShareReceiveToTPGWFirstKeyFrameDelay": {
1081
+ "type": "integer",
1082
+ "minimum": 0,
1083
+ "maximum": 3600000
1084
+ },
1085
+ "floorRequestHttpTiming": {
1086
+ "type": "object",
1087
+ "description": "phrased HTTP timing",
1088
+ "additionalProperties": true,
1089
+ "properties": {
1090
+ "connect": {
1091
+ "type": "integer",
1092
+ "minimum": 0,
1093
+ "maximum": 3600000
1094
+ },
1095
+ "dnsLookup": {
1096
+ "type": "integer",
1097
+ "minimum": 0,
1098
+ "maximum": 3600000
1099
+ },
1100
+ "sendRequest": {
1101
+ "type": "integer",
1102
+ "minimum": 0,
1103
+ "maximum": 3600000
1104
+ },
1105
+ "compressRequest": {
1106
+ "type": "integer",
1107
+ "minimum": 0,
1108
+ "maximum": 3600000
1109
+ },
1110
+ "receiveResponse": {
1111
+ "type": "integer",
1112
+ "minimum": 0,
1113
+ "maximum": 3600000
1114
+ },
1115
+ "extractJson": {
1116
+ "type": "integer",
1117
+ "minimum": 0,
1118
+ "maximum": 3600000
1119
+ },
1120
+ "verifyCert": {
1121
+ "type": "integer",
1122
+ "minimum": 0,
1123
+ "maximum": 3600000
1124
+ },
1125
+ "refreshToken": {
1126
+ "type": "integer",
1127
+ "minimum": 0,
1128
+ "maximum": 3600000
1129
+ }
1130
+ }
1131
+ },
1132
+ "TPGWFirstKeyFrameToServerShareTransmitDelay": {
1133
+ "type": "integer",
1134
+ "minimum": 0,
1135
+ "maximum": 3600000
1136
+ },
1137
+ "MCSSessionActivateToLocusFloorGrantDelay": {
1138
+ "type": "integer",
1139
+ "minimum": 0,
1140
+ "maximum": 3600000
1141
+ },
1142
+ "ServerShareInitiateToLocusFloorGrantDelay": {
1143
+ "type": "integer",
1144
+ "minimum": 0,
1145
+ "maximum": 3600000
1146
+ },
1147
+ "LocusFloorGrantToCBSessionStartDelay": {
1148
+ "type": "integer",
1149
+ "minimum": 0,
1150
+ "maximum": 3600000
1151
+ },
1152
+ "ServerShareReceiveToTPGWFirstKeyFrameDelay": {
1153
+ "type": "integer",
1154
+ "minimum": 0,
1155
+ "maximum": 3600000
1156
+ },
1157
+ "LocusFloorGrantToTPGWFloorGrantDelay": {
1158
+ "type": "integer",
1159
+ "minimum": 0,
1160
+ "maximum": 3600000
1161
+ },
1162
+ "LocusFloorGrantToReceiverNotificationDelay": {
1163
+ "type": "integer",
1164
+ "minimum": 0,
1165
+ "maximum": 3600000
1166
+ },
1167
+ "CBShareSessionRespDelay": {
1168
+ "type": "integer",
1169
+ "minimum": 0,
1170
+ "maximum": 3600000
1171
+ },
1172
+ "LocusShareFloorGrantRespDelay": {
1173
+ "type": "integer",
1174
+ "minimum": 0,
1175
+ "maximum": 3600000
1176
+ },
1177
+ "ServerShareFloorGrantRespDelay": {
1178
+ "type": "integer",
1179
+ "minimum": 0,
1180
+ "maximum": 3600000
1181
+ },
1182
+ "joinRespRxStart": {
1183
+ "type": "integer",
1184
+ "minimum": 0,
1185
+ "maximum": 3600000
1186
+ },
1187
+ "joinRespTxStart": {
1188
+ "type": "integer",
1189
+ "minimum": 0,
1190
+ "maximum": 3600000
1191
+ },
1192
+ "maxRemoteLossRate": {
1193
+ "type": "number",
1194
+ "minimum": 0.0,
1195
+ "maximum": 1.0
1196
+ },
1197
+ "media2SignalDelay": {
1198
+ "type": "integer",
1199
+ "minimum": 0,
1200
+ "maximum": 3600000
1201
+ },
1202
+ "warholDownloadTime": {
1203
+ "type": "integer",
1204
+ "minimum": 0,
1205
+ "maximum": 3600000
1206
+ },
1207
+ "contentDownloadTime": {
1208
+ "type": "integer",
1209
+ "minimum": 0,
1210
+ "maximum": 3600000
1211
+ },
1212
+ "boardCreationTime": {
1213
+ "type": "integer",
1214
+ "minimum": 0,
1215
+ "maximum": 3600000
1216
+ },
1217
+ "totalBoardServiceRespDelay": {
1218
+ "type": "integer",
1219
+ "minimum": 0,
1220
+ "maximum": 3600000
1221
+ }
1222
+ }
1223
+ },
1224
+ "shareAudioSetupDelay": {
1225
+ "type": "object",
1226
+ "description": "represents all of the properities that could cause delay during media setup process.",
1227
+ "additionalProperties": true,
1228
+ "properties": {
1229
+ "floorReqSentReceived": {
1230
+ "type": "integer",
1231
+ "minimum": 0,
1232
+ "maximum": 3600000
1233
+ },
1234
+ "floorRespSentReceived": {
1235
+ "type": "integer",
1236
+ "minimum": 0,
1237
+ "maximum": 3600000
1238
+ },
1239
+ "mediaType": {
1240
+ "enum": [
1241
+ "audio",
1242
+ "video",
1243
+ "share",
1244
+ "share_audio",
1245
+ "whiteboard"
1246
+ ],
1247
+ "type": "string"
1248
+ },
1249
+ "txReqFloorGranted": {
1250
+ "type": "integer",
1251
+ "minimum": 0,
1252
+ "maximum": 3600000
1253
+ },
1254
+ "txSessionCreateConfirm": {
1255
+ "type": "integer",
1256
+ "minimum": 0,
1257
+ "maximum": 3600000
1258
+ },
1259
+ "txApeEnrollConfirm": {
1260
+ "type": "integer",
1261
+ "minimum": 0,
1262
+ "maximum": 3600000
1263
+ },
1264
+ "txUIDelay": {
1265
+ "type": "integer",
1266
+ "minimum": 0,
1267
+ "maximum": 3600000
1268
+ },
1269
+ "txScreenCaptureDelay": {
1270
+ "type": "integer",
1271
+ "minimum": 0,
1272
+ "maximum": 3600000
1273
+ },
1274
+ "txScreenCaptureDelayReasonCode": {
1275
+ "type": "integer",
1276
+ "minimum": 0
1277
+ },
1278
+ "txShareStartOverallDelay": {
1279
+ "type": "integer",
1280
+ "minimum": 0,
1281
+ "maximum": 3600000
1282
+ },
1283
+ "rx1stPacket2RenderDelay": {
1284
+ "type": "integer",
1285
+ "minimum": 0,
1286
+ "maximum": 3600000
1287
+ },
1288
+ "rxGranted2RenderDelay": {
1289
+ "type": "integer",
1290
+ "minimum": 0,
1291
+ "maximum": 3600000
1292
+ },
1293
+ "rxFailFrameNumB4Success": {
1294
+ "type": "integer",
1295
+ "minimum": 0,
1296
+ "maximum": 216000
1297
+ },
1298
+ "e2eFirstFrameDelay": {
1299
+ "type": "integer",
1300
+ "minimum": 0,
1301
+ "maximum": 3600000
1302
+ },
1303
+ "CBSessionRespToLocusFloorGrantDelay": {
1304
+ "type": "integer",
1305
+ "minimum": 0,
1306
+ "maximum": 3600000
1307
+ },
1308
+ "CBShareReceiveToServerShareTransmitDelay": {
1309
+ "type": "integer",
1310
+ "minimum": 0,
1311
+ "maximum": 3600000
1312
+ },
1313
+ "CBShareReceiveToTPGWFirstKeyFrameDelay": {
1314
+ "type": "integer",
1315
+ "minimum": 0,
1316
+ "maximum": 3600000
1317
+ },
1318
+ "floorRequestHttpTiming": {
1319
+ "type": "object",
1320
+ "description": "phrased HTTP timing",
1321
+ "additionalProperties": true,
1322
+ "properties": {
1323
+ "connect": {
1324
+ "type": "integer",
1325
+ "minimum": 0,
1326
+ "maximum": 3600000
1327
+ },
1328
+ "dnsLookup": {
1329
+ "type": "integer",
1330
+ "minimum": 0,
1331
+ "maximum": 3600000
1332
+ },
1333
+ "sendRequest": {
1334
+ "type": "integer",
1335
+ "minimum": 0,
1336
+ "maximum": 3600000
1337
+ },
1338
+ "compressRequest": {
1339
+ "type": "integer",
1340
+ "minimum": 0,
1341
+ "maximum": 3600000
1342
+ },
1343
+ "receiveResponse": {
1344
+ "type": "integer",
1345
+ "minimum": 0,
1346
+ "maximum": 3600000
1347
+ },
1348
+ "extractJson": {
1349
+ "type": "integer",
1350
+ "minimum": 0,
1351
+ "maximum": 3600000
1352
+ },
1353
+ "verifyCert": {
1354
+ "type": "integer",
1355
+ "minimum": 0,
1356
+ "maximum": 3600000
1357
+ },
1358
+ "refreshToken": {
1359
+ "type": "integer",
1360
+ "minimum": 0,
1361
+ "maximum": 3600000
1362
+ }
1363
+ }
1364
+ },
1365
+ "TPGWFirstKeyFrameToServerShareTransmitDelay": {
1366
+ "type": "integer",
1367
+ "minimum": 0,
1368
+ "maximum": 3600000
1369
+ },
1370
+ "MCSSessionActivateToLocusFloorGrantDelay": {
1371
+ "type": "integer",
1372
+ "minimum": 0,
1373
+ "maximum": 3600000
1374
+ },
1375
+ "ServerShareInitiateToLocusFloorGrantDelay": {
1376
+ "type": "integer",
1377
+ "minimum": 0,
1378
+ "maximum": 3600000
1379
+ },
1380
+ "LocusFloorGrantToCBSessionStartDelay": {
1381
+ "type": "integer",
1382
+ "minimum": 0,
1383
+ "maximum": 3600000
1384
+ },
1385
+ "ServerShareReceiveToTPGWFirstKeyFrameDelay": {
1386
+ "type": "integer",
1387
+ "minimum": 0,
1388
+ "maximum": 3600000
1389
+ },
1390
+ "LocusFloorGrantToTPGWFloorGrantDelay": {
1391
+ "type": "integer",
1392
+ "minimum": 0,
1393
+ "maximum": 3600000
1394
+ },
1395
+ "LocusFloorGrantToReceiverNotificationDelay": {
1396
+ "type": "integer",
1397
+ "minimum": 0,
1398
+ "maximum": 3600000
1399
+ },
1400
+ "CBShareSessionRespDelay": {
1401
+ "type": "integer",
1402
+ "minimum": 0,
1403
+ "maximum": 3600000
1404
+ },
1405
+ "LocusShareFloorGrantRespDelay": {
1406
+ "type": "integer",
1407
+ "minimum": 0,
1408
+ "maximum": 3600000
1409
+ },
1410
+ "ServerShareFloorGrantRespDelay": {
1411
+ "type": "integer",
1412
+ "minimum": 0,
1413
+ "maximum": 3600000
1414
+ },
1415
+ "joinRespRxStart": {
1416
+ "type": "integer",
1417
+ "minimum": 0,
1418
+ "maximum": 3600000
1419
+ },
1420
+ "joinRespTxStart": {
1421
+ "type": "integer",
1422
+ "minimum": 0,
1423
+ "maximum": 3600000
1424
+ },
1425
+ "maxRemoteLossRate": {
1426
+ "type": "number",
1427
+ "minimum": 0.0,
1428
+ "maximum": 1.0
1429
+ },
1430
+ "media2SignalDelay": {
1431
+ "type": "integer",
1432
+ "minimum": 0,
1433
+ "maximum": 3600000
1434
+ },
1435
+ "warholDownloadTime": {
1436
+ "type": "integer",
1437
+ "minimum": 0,
1438
+ "maximum": 3600000
1439
+ },
1440
+ "contentDownloadTime": {
1441
+ "type": "integer",
1442
+ "minimum": 0,
1443
+ "maximum": 3600000
1444
+ },
1445
+ "boardCreationTime": {
1446
+ "type": "integer",
1447
+ "minimum": 0,
1448
+ "maximum": 3600000
1449
+ },
1450
+ "totalBoardServiceRespDelay": {
1451
+ "type": "integer",
1452
+ "minimum": 0,
1453
+ "maximum": 3600000
1454
+ }
1455
+ }
1456
+ },
1457
+ "whiteboardSetupDelay": {
1458
+ "type": "object",
1459
+ "description": "represents all of the properities that could cause delay during media setup process.",
1460
+ "additionalProperties": true,
1461
+ "properties": {
1462
+ "floorReqSentReceived": {
1463
+ "type": "integer",
1464
+ "minimum": 0,
1465
+ "maximum": 3600000
1466
+ },
1467
+ "floorRespSentReceived": {
1468
+ "type": "integer",
1469
+ "minimum": 0,
1470
+ "maximum": 3600000
1471
+ },
1472
+ "mediaType": {
1473
+ "enum": [
1474
+ "audio",
1475
+ "video",
1476
+ "share",
1477
+ "share_audio",
1478
+ "whiteboard"
1479
+ ],
1480
+ "type": "string"
1481
+ },
1482
+ "txReqFloorGranted": {
1483
+ "type": "integer",
1484
+ "minimum": 0,
1485
+ "maximum": 3600000
1486
+ },
1487
+ "txSessionCreateConfirm": {
1488
+ "type": "integer",
1489
+ "minimum": 0,
1490
+ "maximum": 3600000
1491
+ },
1492
+ "txApeEnrollConfirm": {
1493
+ "type": "integer",
1494
+ "minimum": 0,
1495
+ "maximum": 3600000
1496
+ },
1497
+ "txUIDelay": {
1498
+ "type": "integer",
1499
+ "minimum": 0,
1500
+ "maximum": 3600000
1501
+ },
1502
+ "txScreenCaptureDelay": {
1503
+ "type": "integer",
1504
+ "minimum": 0,
1505
+ "maximum": 3600000
1506
+ },
1507
+ "txScreenCaptureDelayReasonCode": {
1508
+ "type": "integer",
1509
+ "minimum": 0
1510
+ },
1511
+ "txShareStartOverallDelay": {
1512
+ "type": "integer",
1513
+ "minimum": 0,
1514
+ "maximum": 3600000
1515
+ },
1516
+ "rx1stPacket2RenderDelay": {
1517
+ "type": "integer",
1518
+ "minimum": 0,
1519
+ "maximum": 3600000
1520
+ },
1521
+ "rxGranted2RenderDelay": {
1522
+ "type": "integer",
1523
+ "minimum": 0,
1524
+ "maximum": 3600000
1525
+ },
1526
+ "rxFailFrameNumB4Success": {
1527
+ "type": "integer",
1528
+ "minimum": 0,
1529
+ "maximum": 216000
1530
+ },
1531
+ "e2eFirstFrameDelay": {
1532
+ "type": "integer",
1533
+ "minimum": 0,
1534
+ "maximum": 3600000
1535
+ },
1536
+ "CBSessionRespToLocusFloorGrantDelay": {
1537
+ "type": "integer",
1538
+ "minimum": 0,
1539
+ "maximum": 3600000
1540
+ },
1541
+ "CBShareReceiveToServerShareTransmitDelay": {
1542
+ "type": "integer",
1543
+ "minimum": 0,
1544
+ "maximum": 3600000
1545
+ },
1546
+ "CBShareReceiveToTPGWFirstKeyFrameDelay": {
1547
+ "type": "integer",
1548
+ "minimum": 0,
1549
+ "maximum": 3600000
1550
+ },
1551
+ "floorRequestHttpTiming": {
1552
+ "type": "object",
1553
+ "description": "phrased HTTP timing",
1554
+ "additionalProperties": true,
1555
+ "properties": {
1556
+ "connect": {
1557
+ "type": "integer",
1558
+ "minimum": 0,
1559
+ "maximum": 3600000
1560
+ },
1561
+ "dnsLookup": {
1562
+ "type": "integer",
1563
+ "minimum": 0,
1564
+ "maximum": 3600000
1565
+ },
1566
+ "sendRequest": {
1567
+ "type": "integer",
1568
+ "minimum": 0,
1569
+ "maximum": 3600000
1570
+ },
1571
+ "compressRequest": {
1572
+ "type": "integer",
1573
+ "minimum": 0,
1574
+ "maximum": 3600000
1575
+ },
1576
+ "receiveResponse": {
1577
+ "type": "integer",
1578
+ "minimum": 0,
1579
+ "maximum": 3600000
1580
+ },
1581
+ "extractJson": {
1582
+ "type": "integer",
1583
+ "minimum": 0,
1584
+ "maximum": 3600000
1585
+ },
1586
+ "verifyCert": {
1587
+ "type": "integer",
1588
+ "minimum": 0,
1589
+ "maximum": 3600000
1590
+ },
1591
+ "refreshToken": {
1592
+ "type": "integer",
1593
+ "minimum": 0,
1594
+ "maximum": 3600000
1595
+ }
1596
+ }
1597
+ },
1598
+ "TPGWFirstKeyFrameToServerShareTransmitDelay": {
1599
+ "type": "integer",
1600
+ "minimum": 0,
1601
+ "maximum": 3600000
1602
+ },
1603
+ "MCSSessionActivateToLocusFloorGrantDelay": {
1604
+ "type": "integer",
1605
+ "minimum": 0,
1606
+ "maximum": 3600000
1607
+ },
1608
+ "ServerShareInitiateToLocusFloorGrantDelay": {
1609
+ "type": "integer",
1610
+ "minimum": 0,
1611
+ "maximum": 3600000
1612
+ },
1613
+ "LocusFloorGrantToCBSessionStartDelay": {
1614
+ "type": "integer",
1615
+ "minimum": 0,
1616
+ "maximum": 3600000
1617
+ },
1618
+ "ServerShareReceiveToTPGWFirstKeyFrameDelay": {
1619
+ "type": "integer",
1620
+ "minimum": 0,
1621
+ "maximum": 3600000
1622
+ },
1623
+ "LocusFloorGrantToTPGWFloorGrantDelay": {
1624
+ "type": "integer",
1625
+ "minimum": 0,
1626
+ "maximum": 3600000
1627
+ },
1628
+ "LocusFloorGrantToReceiverNotificationDelay": {
1629
+ "type": "integer",
1630
+ "minimum": 0,
1631
+ "maximum": 3600000
1632
+ },
1633
+ "CBShareSessionRespDelay": {
1634
+ "type": "integer",
1635
+ "minimum": 0,
1636
+ "maximum": 3600000
1637
+ },
1638
+ "LocusShareFloorGrantRespDelay": {
1639
+ "type": "integer",
1640
+ "minimum": 0,
1641
+ "maximum": 3600000
1642
+ },
1643
+ "ServerShareFloorGrantRespDelay": {
1644
+ "type": "integer",
1645
+ "minimum": 0,
1646
+ "maximum": 3600000
1647
+ },
1648
+ "joinRespRxStart": {
1649
+ "type": "integer",
1650
+ "minimum": 0,
1651
+ "maximum": 3600000
1652
+ },
1653
+ "joinRespTxStart": {
1654
+ "type": "integer",
1655
+ "minimum": 0,
1656
+ "maximum": 3600000
1657
+ },
1658
+ "maxRemoteLossRate": {
1659
+ "type": "number",
1660
+ "minimum": 0.0,
1661
+ "maximum": 1.0
1662
+ },
1663
+ "media2SignalDelay": {
1664
+ "type": "integer",
1665
+ "minimum": 0,
1666
+ "maximum": 3600000
1667
+ },
1668
+ "warholDownloadTime": {
1669
+ "type": "integer",
1670
+ "minimum": 0,
1671
+ "maximum": 3600000
1672
+ },
1673
+ "contentDownloadTime": {
1674
+ "type": "integer",
1675
+ "minimum": 0,
1676
+ "maximum": 3600000
1677
+ },
1678
+ "boardCreationTime": {
1679
+ "type": "integer",
1680
+ "minimum": 0,
1681
+ "maximum": 3600000
1682
+ },
1683
+ "totalBoardServiceRespDelay": {
1684
+ "type": "integer",
1685
+ "minimum": 0,
1686
+ "maximum": 3600000
1687
+ }
1688
+ }
1689
+ },
1690
+ "isFocus": {
1691
+ "type": "boolean"
1692
+ },
1693
+ "processingDelay": {
1694
+ "type": "integer"
1695
+ },
1696
+ "shareType": {
1697
+ "type": "string",
1698
+ "enum": [
1699
+ "cb-normal-share",
1700
+ "ce-airplay-share",
1701
+ "ce-direct-share",
1702
+ "ce-gui-loopback-share",
1703
+ "ce-input-source-share",
1704
+ "ce-input-source-share-hdmi",
1705
+ "ce-input-source-share-usbc",
1706
+ "ce-jpg-share",
1707
+ "ce-miracast-share",
1708
+ "mcs-normal-share",
1709
+ "mcs-normal-audio-share",
1710
+ "mcs-hfps-share",
1711
+ "mcs-hfps-audio-share"
1712
+ ]
1713
+ },
1714
+ "isShareBeingTakenOver": {
1715
+ "type": "boolean"
1716
+ },
1717
+ "floorBeneficiaryUpdated": {
1718
+ "type": "boolean"
1719
+ },
1720
+ "meetingJoinedTime": {
1721
+ "type": "string",
1722
+ "format": "date-time"
1723
+ },
1724
+ "meetingScheduledTime": {
1725
+ "type": "string",
1726
+ "format": "date-time"
1727
+ },
1728
+ "e2eeKeyEpoch": {
1729
+ "type": "integer"
1730
+ },
1731
+ "e2eeDecompressRatio": {
1732
+ "type": "number"
1733
+ },
1734
+ "keyResponses": {
1735
+ "type": "array",
1736
+ "items": {
1737
+ "type": "object",
1738
+ "description": "Details of KeyResponse",
1739
+ "additionalProperties": true,
1740
+ "properties": {
1741
+ "gotKeyTime": {
1742
+ "type": "integer"
1743
+ },
1744
+ "useKeyTime": {
1745
+ "type": "integer"
1746
+ },
1747
+ "cacheKeyTime": {
1748
+ "type": "integer"
1749
+ }
1750
+ }
1751
+ }
1752
+ },
1753
+ "e2eeVersion": {
1754
+ "enum": [
1755
+ "E2EEV1",
1756
+ "E2EEV2",
1757
+ "E2EEV3"
1758
+ ],
1759
+ "type": "string"
1760
+ },
1761
+ "isConvergedArchitectureEnabled": {
1762
+ "type": "boolean"
1763
+ },
1764
+ "callingServiceType": {
1765
+ "type": "string",
1766
+ "enum": [
1767
+ "CUCM",
1768
+ "WEBEXCALLING",
1769
+ "BROADWORKS",
1770
+ "LOCUS"
1771
+ ]
1772
+ },
1773
+ "inLobby": {
1774
+ "type": "boolean"
1775
+ },
1776
+ "isVIPMeeting": {
1777
+ "type": "boolean"
1778
+ },
1779
+ "webexAppEntrypoint": {
1780
+ "type": "string"
1781
+ },
1782
+ "firstParticipant": {
1783
+ "type": "boolean"
1784
+ },
1785
+ "isImmersiveShare": {
1786
+ "type": "boolean"
1787
+ },
1788
+ "registeredTimestamps": {
1789
+ "type": "object",
1790
+ "description": "Request/Response Time for Internal Services",
1791
+ "additionalProperties": true,
1792
+ "properties": {
1793
+ "locusCreateConfluenceRequestTime": {
1794
+ "type": "string",
1795
+ "format": "date-time"
1796
+ },
1797
+ "locusCreateConfluenceResponseTime": {
1798
+ "type": "string",
1799
+ "format": "date-time"
1800
+ },
1801
+ "locusCreateVenueRequestTime": {
1802
+ "type": "string",
1803
+ "format": "date-time"
1804
+ },
1805
+ "locusCreateVenueResponseTime": {
1806
+ "type": "string",
1807
+ "format": "date-time"
1808
+ }
1809
+ }
1810
+ },
1811
+ "skipInterstitialWindow": {
1812
+ "type": "boolean"
1813
+ },
1814
+ "callDurationSecs": {
1815
+ "type": "integer"
1816
+ },
1817
+ "callDirection": {
1818
+ "type": "string",
1819
+ "enum": [
1820
+ "ORIGINATING",
1821
+ "TERMINATING"
1822
+ ]
1823
+ },
1824
+ "breakout": {
1825
+ "type": "object",
1826
+ "description": "Details associated with a breakout move",
1827
+ "additionalProperties": true,
1828
+ "properties": {
1829
+ "moveType": {
1830
+ "enum": [
1831
+ "between_breakout",
1832
+ "to_breakout",
1833
+ "to_main"
1834
+ ],
1835
+ "type": "string"
1836
+ },
1837
+ "trigger": {
1838
+ "enum": [
1839
+ "assignment_changed",
1840
+ "client_initiated",
1841
+ "session_ended",
1842
+ "session_started"
1843
+ ],
1844
+ "type": "string"
1845
+ },
1846
+ "startState": {
1847
+ "enum": [
1848
+ "joined",
1849
+ "lobby"
1850
+ ],
1851
+ "type": "string"
1852
+ },
1853
+ "endState": {
1854
+ "enum": [
1855
+ "joined",
1856
+ "lobby"
1857
+ ],
1858
+ "type": "string"
1859
+ }
1860
+ }
1861
+ },
1862
+ "breakoutLatency": {
1863
+ "type": "object",
1864
+ "description": "Latency values associated with breakout session",
1865
+ "additionalProperties": true,
1866
+ "properties": {
1867
+ "boBreakoutMoveProcessed": {
1868
+ "type": "integer",
1869
+ "minimum": 0
1870
+ },
1871
+ "boBreakoutMoveResp": {
1872
+ "type": "integer",
1873
+ "minimum": 0
1874
+ },
1875
+ "boLocusBreakoutMoveResp": {
1876
+ "type": "integer",
1877
+ "minimum": 0
1878
+ },
1879
+ "locusBreakoutMoveResp": {
1880
+ "type": "integer",
1881
+ "minimum": 0
1882
+ },
1883
+ "orpheusConfluenceMoveReqResp": {
1884
+ "type": "integer",
1885
+ "minimum": 0
1886
+ }
1887
+ }
1888
+ },
1889
+ "whiteboard": {
1890
+ "type": "object",
1891
+ "description": "two-way whiteboard related info",
1892
+ "additionalProperties": true,
1893
+ "properties": {
1894
+ "action": {
1895
+ "enum": [
1896
+ "open",
1897
+ "create"
1898
+ ],
1899
+ "type": "string"
1900
+ },
1901
+ "type": {
1902
+ "enum": [
1903
+ "whiteboard",
1904
+ "annotation"
1905
+ ],
1906
+ "type": "string"
1907
+ },
1908
+ "capability": {
1909
+ "enum": [
1910
+ "one_way",
1911
+ "two_way"
1912
+ ],
1913
+ "type": "string"
1914
+ },
1915
+ "granted": {
1916
+ "enum": [
1917
+ "one_way",
1918
+ "two_way"
1919
+ ],
1920
+ "type": "string"
1921
+ }
1922
+ }
1923
+ },
1924
+ "roap": {
1925
+ "type": "object",
1926
+ "description": "ROAP message details",
1927
+ "additionalProperties": true,
1928
+ "properties": {
1929
+ "type": {
1930
+ "enum": [
1931
+ "ANSWER",
1932
+ "ERROR",
1933
+ "OFFER",
1934
+ "OFFER_REQUEST",
1935
+ "OFFER_RESPONSE",
1936
+ "OK",
1937
+ "OKAY",
1938
+ "TURN_DISCOVERY_REQUEST",
1939
+ "TURN_DISCOVERY_RESPONSE"
1940
+ ],
1941
+ "type": "string"
1942
+ },
1943
+ "messageType": {
1944
+ "enum": [
1945
+ "ANSWER",
1946
+ "ERROR",
1947
+ "OFFER",
1948
+ "OFFER_REQUEST",
1949
+ "OFFER_RESPONSE",
1950
+ "OK",
1951
+ "OKAY",
1952
+ "TURN_DISCOVERY_REQUEST",
1953
+ "TURN_DISCOVERY_RESPONSE"
1954
+ ],
1955
+ "type": "string"
1956
+ },
1957
+ "error": {
1958
+ "type": "string"
1959
+ },
1960
+ "duration": {
1961
+ "type": "integer",
1962
+ "minimum": 0
1963
+ },
1964
+ "seq": {
1965
+ "type": "integer",
1966
+ "minimum": 0
1967
+ }
1968
+ }
1969
+ },
1970
+ "name": {
1971
+ "enum": [
1972
+ "client.feature.audio.noise.removal",
1973
+ "client.feature.embedded-object-info",
1974
+ "client.feature.gesture.recognition",
1975
+ "client.feature.meeting.breakout-session.action",
1976
+ "client.feature.meeting.breakout-session.summary",
1977
+ "client.feature.meeting.download.summary",
1978
+ "client.feature.meeting.people-insights.check.response",
1979
+ "client.feature.meeting.people-insights.query.response",
1980
+ "client.feature.meeting.problem-report.submit",
1981
+ "client.feature.meeting.summary",
1982
+ "client.feature.meeting.teams.launch",
1983
+ "client.feature.meeting.user-action",
1984
+ "client.feature.mta.launched",
1985
+ "client.feature.report",
1986
+ "client.feature.vdi.collect.thinclient.log",
1987
+ "client.feature.webexapplauncher.install-webexapp"
1988
+ ],
1989
+ "type": "string"
1990
+ },
1991
+ "identifiers": {
1992
+ "description": "Base type for the various identifiers used to connect the dots.\nIn general, these should be populated whenever possible. Subtypes may make a particular key required.\n",
1993
+ "type": "object",
1994
+ "additionalProperties": true,
1995
+ "required": [
1996
+ "correlationId"
1997
+ ],
1998
+ "properties": {
1999
+ "attendeeId": {
2000
+ "type": "string"
2001
+ },
2002
+ "breakoutGroupId": {
2003
+ "type": "string",
2004
+ "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}$"
2005
+ },
2006
+ "breakoutMoveId": {
2007
+ "type": "string",
2008
+ "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}$"
2009
+ },
2010
+ "breakoutSessionId": {
2011
+ "type": "string",
2012
+ "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}$"
2013
+ },
2014
+ "confluenceId": {
2015
+ "type": "string",
2016
+ "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}$"
2017
+ },
2018
+ "cpaasIdentifiers": {
2019
+ "type": "object",
2020
+ "description": "Set of identifiers dedicated to CPaaS clients\nIn general, these should be populated whenever possible. Subtypes may make a particular key required.\n",
2021
+ "additionalProperties": true,
2022
+ "required": [
2023
+ "imiTenantId",
2024
+ "devClientId",
2025
+ "imiServiceId",
2026
+ "imiAppId",
2027
+ "sessionId",
2028
+ "sessionInstanceId"
2029
+ ],
2030
+ "properties": {
2031
+ "imiTenantId": {
2032
+ "type": "string",
2033
+ "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}$"
2034
+ },
2035
+ "devClientId": {
2036
+ "type": "string",
2037
+ "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}$"
2038
+ },
2039
+ "imiServiceId": {
2040
+ "type": "string",
2041
+ "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}$"
2042
+ },
2043
+ "imiAppId": {
2044
+ "type": "string",
2045
+ "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}$"
2046
+ },
2047
+ "sessionId": {
2048
+ "type": "string",
2049
+ "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}$"
2050
+ },
2051
+ "sessionInstanceId": {
2052
+ "type": "string",
2053
+ "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}$"
2054
+ }
2055
+ }
2056
+ },
2057
+ "csdmDeviceUrl": {
2058
+ "type": "string"
2059
+ },
2060
+ "destinationBreakoutSessionId": {
2061
+ "type": "string",
2062
+ "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}$"
2063
+ },
2064
+ "destinationLocusSessionId": {
2065
+ "type": "string",
2066
+ "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}$"
2067
+ },
2068
+ "destinationLocusUrl": {
2069
+ "type": "string"
2070
+ },
2071
+ "destinationVenueId": {
2072
+ "type": "string",
2073
+ "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}$"
2074
+ },
2075
+ "deviceId": {
2076
+ "type": "string"
2077
+ },
2078
+ "ivrCallId": {
2079
+ "type": "string",
2080
+ "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}$"
2081
+ },
2082
+ "ivrDialogId": {
2083
+ "type": "string",
2084
+ "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}$"
2085
+ },
2086
+ "ivrId": {
2087
+ "type": "string",
2088
+ "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}$"
2089
+ },
2090
+ "callId": {
2091
+ "type": "string",
2092
+ "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}$"
2093
+ },
2094
+ "locusId": {
2095
+ "type": "string",
2096
+ "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}$"
2097
+ },
2098
+ "locusSessionId": {
2099
+ "type": "string",
2100
+ "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}$"
2101
+ },
2102
+ "locusStartTime": {
2103
+ "type": "string",
2104
+ "format": "date-time"
2105
+ },
2106
+ "locusUrl": {
2107
+ "type": "string"
2108
+ },
2109
+ "mediaAgentAlias": {
2110
+ "type": "string"
2111
+ },
2112
+ "mediaAgentGroupId": {
2113
+ "type": "string"
2114
+ },
2115
+ "meetClusterName": {
2116
+ "type": "string"
2117
+ },
2118
+ "meetingLookupUrl": {
2119
+ "type": "string"
2120
+ },
2121
+ "meetingOrgId": {
2122
+ "type": "string"
2123
+ },
2124
+ "msteamsTenantGuid": {
2125
+ "type": "string"
2126
+ },
2127
+ "msteamsConferenceId": {
2128
+ "type": "string"
2129
+ },
2130
+ "oauth2ClientId": {
2131
+ "type": "string"
2132
+ },
2133
+ "orgId": {
2134
+ "type": "string"
2135
+ },
2136
+ "provisionalCorrelationId": {
2137
+ "type": "string"
2138
+ },
2139
+ "roomId": {
2140
+ "type": "string",
2141
+ "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}$"
2142
+ },
2143
+ "sipCallId": {
2144
+ "type": "string"
2145
+ },
2146
+ "sipSessionId": {
2147
+ "type": "object",
2148
+ "additionalProperties": true,
2149
+ "properties": {
2150
+ "local": {
2151
+ "type": "string"
2152
+ },
2153
+ "remote": {
2154
+ "type": "string"
2155
+ }
2156
+ }
2157
+ },
2158
+ "sipUri": {
2159
+ "type": "string"
2160
+ },
2161
+ "subConfId": {
2162
+ "type": "string"
2163
+ },
2164
+ "tenantId": {
2165
+ "type": "string"
2166
+ },
2167
+ "trackingId": {
2168
+ "type": "string"
2169
+ },
2170
+ "userId": {
2171
+ "type": "string",
2172
+ "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}$"
2173
+ },
2174
+ "venueId": {
2175
+ "type": "string",
2176
+ "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}$"
2177
+ },
2178
+ "venueUrl": {
2179
+ "type": "string"
2180
+ },
2181
+ "whiteboardUrl": {
2182
+ "type": "string"
2183
+ },
2184
+ "webexConferenceId": {
2185
+ "type": "number",
2186
+ "minimum": -9223372036854776000.0,
2187
+ "maximum": 9223372036854776000.0
2188
+ },
2189
+ "webexClusterName": {
2190
+ "type": "string"
2191
+ },
2192
+ "webexConferenceIdStr": {
2193
+ "type": "string"
2194
+ },
2195
+ "webexDataCenter": {
2196
+ "type": "string"
2197
+ },
2198
+ "webexGuestId": {
2199
+ "type": "number",
2200
+ "minimum": -9223372036854776000.0,
2201
+ "maximum": 9223372036854776000.0
2202
+ },
2203
+ "webexMeetingId": {
2204
+ "type": "number",
2205
+ "minimum": -9223372036854776000.0,
2206
+ "maximum": 9223372036854776000.0
2207
+ },
2208
+ "webexNodeId": {
2209
+ "type": "number",
2210
+ "minimum": -9223372036854776000.0,
2211
+ "maximum": 9223372036854776000.0
2212
+ },
2213
+ "webexSiteId": {
2214
+ "type": "number",
2215
+ "minimum": -9223372036854776000.0,
2216
+ "maximum": 9223372036854776000.0
2217
+ },
2218
+ "webexSiteName": {
2219
+ "type": "string"
2220
+ },
2221
+ "webexUserId": {
2222
+ "type": "number",
2223
+ "minimum": -9223372036854776000.0,
2224
+ "maximum": 9223372036854776000.0
2225
+ },
2226
+ "webexWebDomain": {
2227
+ "type": "string"
2228
+ },
2229
+ "correlationId": {
2230
+ "type": "string"
2231
+ }
2232
+ }
2233
+ },
2234
+ "trigger": {
2235
+ "enum": [
2236
+ "user-interaction"
2237
+ ],
2238
+ "type": "string"
2239
+ },
2240
+ "errors": {
2241
+ "type": "array",
2242
+ "items": {
2243
+ "description": "specific error detected by originator of event",
2244
+ "type": "object",
2245
+ "additionalProperties": true,
2246
+ "required": [
2247
+ "name",
2248
+ "fatal",
2249
+ "shownToUser",
2250
+ "category"
2251
+ ],
2252
+ "properties": {
2253
+ "fatal": {
2254
+ "type": "boolean"
2255
+ },
2256
+ "category": {
2257
+ "enum": [
2258
+ "signaling",
2259
+ "media",
2260
+ "other",
2261
+ "expected"
2262
+ ],
2263
+ "type": "string"
2264
+ },
2265
+ "errorDescription": {
2266
+ "type": "string"
2267
+ },
2268
+ "errorCode": {
2269
+ "type": "integer"
2270
+ },
2271
+ "errorCodeStr": {
2272
+ "type": "string"
2273
+ },
2274
+ "httpCode": {
2275
+ "type": "integer"
2276
+ },
2277
+ "errorCodeExt1": {
2278
+ "type": "integer"
2279
+ },
2280
+ "errorData": {
2281
+ "type": "object",
2282
+ "additionalProperties": true
2283
+ },
2284
+ "shownToUser": {
2285
+ "type": "boolean"
2286
+ },
2287
+ "serviceErrorCode": {
2288
+ "type": "integer"
2289
+ },
2290
+ "name": {
2291
+ "enum": [
2292
+ "media-engine",
2293
+ "ice.failed",
2294
+ "locus.response",
2295
+ "locus.leave",
2296
+ "client.leave",
2297
+ "media-device",
2298
+ "media-sca",
2299
+ "wxc",
2300
+ "other"
2301
+ ],
2302
+ "type": "string"
2303
+ }
2304
+ }
2305
+ }
2306
+ },
2307
+ "pairingState": {
2308
+ "enum": [
2309
+ "paired",
2310
+ "observing",
2311
+ "challenging"
2312
+ ],
2313
+ "type": "string"
2314
+ },
2315
+ "userType": {
2316
+ "enum": [
2317
+ "host",
2318
+ "attendee",
2319
+ "cohost",
2320
+ "panelist"
2321
+ ],
2322
+ "type": "string"
2323
+ },
2324
+ "updateType": {
2325
+ "enum": [
2326
+ "new-user",
2327
+ "update-user",
2328
+ "return-user"
2329
+ ],
2330
+ "type": "string"
2331
+ },
2332
+ "migrationToUCFType": {
2333
+ "enum": [
2334
+ "new-install",
2335
+ "upgrade",
2336
+ "force-upgrade",
2337
+ "upgrade-not-needed",
2338
+ "install-not-needed"
2339
+ ],
2340
+ "type": "string"
2341
+ },
2342
+ "isFirstTimeUser": {
2343
+ "type": "boolean"
2344
+ },
2345
+ "serverInfo": {
2346
+ "type": "object",
2347
+ "description": "Details of server environment",
2348
+ "additionalProperties": true,
2349
+ "required": [
2350
+ "serverType"
2351
+ ],
2352
+ "properties": {
2353
+ "serverType": {
2354
+ "type": "string",
2355
+ "enum": [
2356
+ "CB",
2357
+ "CMS",
2358
+ "HESIOD",
2359
+ "LINUS",
2360
+ "MCC",
2361
+ "MCS",
2362
+ "MES",
2363
+ "MJS",
2364
+ "MRS",
2365
+ "MYGDONUS",
2366
+ "MZM",
2367
+ "TERMINUS",
2368
+ "TPGW",
2369
+ "TA",
2370
+ "HOMER",
2371
+ "SUPERHOMER",
2372
+ "U2C",
2373
+ "WCA",
2374
+ "MSE",
2375
+ "UNKNOWN"
2376
+ ]
2377
+ },
2378
+ "serverAddress": {
2379
+ "type": "string"
2380
+ }
2381
+ }
2382
+ },
2383
+ "breakoutSessionSummaryInfo": {
2384
+ "type": "object",
2385
+ "description": "Details of breakout session information, sent after end of breakout session",
2386
+ "additionalProperties": true,
2387
+ "required": [
2388
+ "duration",
2389
+ "subConferenceCount",
2390
+ "totalAttendeeCount",
2391
+ "participantCount",
2392
+ "assignedparticipantCount",
2393
+ "cohostCount",
2394
+ "averageAttendeeCountPerSubConference",
2395
+ "totalHostJoinedCount",
2396
+ "isBoStarted",
2397
+ "isBoEnabled",
2398
+ "isPreAssigned",
2399
+ "boStartedTimers",
2400
+ "createType",
2401
+ "enableType"
2402
+ ],
2403
+ "properties": {
2404
+ "duration": {
2405
+ "type": "integer"
2406
+ },
2407
+ "subConferenceCount": {
2408
+ "type": "integer"
2409
+ },
2410
+ "totalAttendeeCount": {
2411
+ "type": "integer"
2412
+ },
2413
+ "participantCount": {
2414
+ "type": "integer"
2415
+ },
2416
+ "assignedparticipantCount": {
2417
+ "type": "integer"
2418
+ },
2419
+ "cohostCount": {
2420
+ "type": "integer"
2421
+ },
2422
+ "averageAttendeeCountPerSubConference": {
2423
+ "type": "number"
2424
+ },
2425
+ "totalHostJoinedCount": {
2426
+ "type": "integer"
2427
+ },
2428
+ "isBoStarted": {
2429
+ "type": "boolean"
2430
+ },
2431
+ "isBoEnabled": {
2432
+ "type": "boolean"
2433
+ },
2434
+ "isPreAssigned": {
2435
+ "type": "boolean"
2436
+ },
2437
+ "boStartedTimers": {
2438
+ "type": "integer"
2439
+ },
2440
+ "createType": {
2441
+ "enum": [
2442
+ "pre-meeting",
2443
+ "in-meeting"
2444
+ ],
2445
+ "type": "string"
2446
+ },
2447
+ "enableType": {
2448
+ "enum": [
2449
+ "pre-meeting",
2450
+ "in-meeting"
2451
+ ],
2452
+ "type": "string"
2453
+ }
2454
+ }
2455
+ },
2456
+ "meetingSummaryInfo": {
2457
+ "type": "object",
2458
+ "description": "Details of meeting summary information",
2459
+ "additionalProperties": true,
2460
+ "properties": {
2461
+ "featureReportSummary": {
2462
+ "type": "array",
2463
+ "items": {
2464
+ "type": "object",
2465
+ "description": "Details of FeatureReportSummary.",
2466
+ "additionalProperties": true,
2467
+ "required": [
2468
+ "featureName",
2469
+ "usage",
2470
+ "toggle",
2471
+ "clickCount",
2472
+ "isMachineSupport"
2473
+ ],
2474
+ "properties": {
2475
+ "featureName": {},
2476
+ "usage": {
2477
+ "type": "boolean"
2478
+ },
2479
+ "usageDuration": {
2480
+ "type": "integer"
2481
+ },
2482
+ "toggle": {
2483
+ "type": "boolean"
2484
+ },
2485
+ "clickCount": {
2486
+ "type": "integer"
2487
+ },
2488
+ "isMachineSupport": {
2489
+ "type": "boolean"
2490
+ }
2491
+ }
2492
+ }
2493
+ },
2494
+ "featureActionSummary": {
2495
+ "type": "array",
2496
+ "items": {
2497
+ "type": "object",
2498
+ "description": "Details of FeatureActionSummary.",
2499
+ "additionalProperties": true,
2500
+ "required": [
2501
+ "featureName",
2502
+ "featureActions"
2503
+ ],
2504
+ "properties": {
2505
+ "featureName": {},
2506
+ "featureActions": {
2507
+ "type": "array",
2508
+ "items": {}
2509
+ }
2510
+ }
2511
+ }
2512
+ },
2513
+ "featureEventSummary": {
2514
+ "type": "array",
2515
+ "items": {
2516
+ "type": "object",
2517
+ "description": "Details of FeatureEventSummary.",
2518
+ "additionalProperties": true,
2519
+ "required": [
2520
+ "featureName",
2521
+ "featureEvents"
2522
+ ],
2523
+ "properties": {
2524
+ "featureName": {},
2525
+ "featureEvents": {
2526
+ "type": "array",
2527
+ "items": {}
2528
+ }
2529
+ }
2530
+ }
2531
+ },
2532
+ "meetingInfo": {
2533
+ "type": "object",
2534
+ "description": "Details of MeetingInfo.",
2535
+ "additionalProperties": true,
2536
+ "properties": {
2537
+ "simultaneousMeetingCount": {
2538
+ "type": "integer"
2539
+ },
2540
+ "totalBreakoutSessionCount": {
2541
+ "type": "integer"
2542
+ },
2543
+ "totalAttendeeCount": {
2544
+ "type": "integer"
2545
+ },
2546
+ "currentUserCountWhenLeaving": {
2547
+ "type": "integer"
2548
+ },
2549
+ "isE2EEnable": {
2550
+ "type": "boolean"
2551
+ },
2552
+ "isModernE2EEnable": {
2553
+ "type": "boolean"
2554
+ },
2555
+ "isWbxTraceOverWrite": {
2556
+ "type": "boolean"
2557
+ },
2558
+ "isAnonymousMeeting": {
2559
+ "type": "boolean"
2560
+ },
2561
+ "serverCipher": {
2562
+ "type": "string"
2563
+ },
2564
+ "mediaCipher": {
2565
+ "type": "string"
2566
+ }
2567
+ }
2568
+ },
2569
+ "surveyInfo": {
2570
+ "type": "object",
2571
+ "description": "Details of SurveyInfo.",
2572
+ "additionalProperties": true,
2573
+ "required": [
2574
+ "surveyCount"
2575
+ ],
2576
+ "properties": {
2577
+ "surveyCount": {
2578
+ "type": "integer"
2579
+ },
2580
+ "surveyLocalClientVersion": {
2581
+ "type": "string"
2582
+ },
2583
+ "surveyDate": {
2584
+ "type": "string"
2585
+ }
2586
+ }
2587
+ },
2588
+ "languageType": {
2589
+ "type": "string",
2590
+ "enum": [
2591
+ "lan_af",
2592
+ "lan_sq",
2593
+ "lan_am",
2594
+ "lan_ar",
2595
+ "lan_hy",
2596
+ "lan_az",
2597
+ "lan_eu",
2598
+ "lan_be",
2599
+ "lan_bn",
2600
+ "lan_bs",
2601
+ "lan_bg",
2602
+ "lan_ca",
2603
+ "lan_ceb",
2604
+ "lan_zh",
2605
+ "lan_zh-TW",
2606
+ "lan_co",
2607
+ "lan_hr",
2608
+ "lan_cs",
2609
+ "lan_da",
2610
+ "lan_nl",
2611
+ "lan_en",
2612
+ "lan_en-GB",
2613
+ "lan_eo",
2614
+ "lan_et",
2615
+ "lan_fi",
2616
+ "lan_fr",
2617
+ "lan_fr-CA",
2618
+ "lan_fy",
2619
+ "lan_gl",
2620
+ "lan_ka",
2621
+ "lan_de",
2622
+ "lan_el",
2623
+ "lan_gu",
2624
+ "lan_ht",
2625
+ "lan_ha",
2626
+ "lan_haw",
2627
+ "lan_he",
2628
+ "lan_hi",
2629
+ "lan_hmn",
2630
+ "lan_hu",
2631
+ "lan_is",
2632
+ "lan_ig",
2633
+ "lan_id",
2634
+ "lan_ga",
2635
+ "lan_it",
2636
+ "lan_ja",
2637
+ "lan_jv",
2638
+ "lan_kn",
2639
+ "lan_kk",
2640
+ "lan_km",
2641
+ "lan_rw",
2642
+ "lan_ko",
2643
+ "lan_ku",
2644
+ "lan_ky",
2645
+ "lan_lo",
2646
+ "lan_la",
2647
+ "lan_lv",
2648
+ "lan_lt",
2649
+ "lan_lb",
2650
+ "lan_mk",
2651
+ "lan_mg",
2652
+ "lan_ms",
2653
+ "lan_ml",
2654
+ "lan_mt",
2655
+ "lan_mi",
2656
+ "lan_mr",
2657
+ "lan_mn",
2658
+ "lan_my",
2659
+ "lan_ne",
2660
+ "lan_no",
2661
+ "lan_ny",
2662
+ "lan_or",
2663
+ "lan_ps",
2664
+ "lan_fa",
2665
+ "lan_pl",
2666
+ "lan_pt",
2667
+ "lan_pa",
2668
+ "lan_ro",
2669
+ "lan_ru",
2670
+ "lan_sm",
2671
+ "lan_gd",
2672
+ "lan_sr",
2673
+ "lan_st",
2674
+ "lan_sn",
2675
+ "lan_sd",
2676
+ "lan_si",
2677
+ "lan_sk",
2678
+ "lan_sl",
2679
+ "lan_so",
2680
+ "lan_es",
2681
+ "lan_es-ES",
2682
+ "lan_su",
2683
+ "lan_sw",
2684
+ "lan_sv",
2685
+ "lan_tl",
2686
+ "lan_tg",
2687
+ "lan_ta",
2688
+ "lan_tt",
2689
+ "lan_te",
2690
+ "lan_th",
2691
+ "lan_tr",
2692
+ "lan_tk",
2693
+ "lan_uk",
2694
+ "lan_ur",
2695
+ "lan_ug",
2696
+ "lan_uz",
2697
+ "lan_vi",
2698
+ "lan_cy",
2699
+ "lan_xh",
2700
+ "lan_yi",
2701
+ "lan_yo",
2702
+ "lan_zu"
2703
+ ]
2704
+ }
2705
+ }
2706
+ },
2707
+ "audioNoiseRemoval": {
2708
+ "type": "object",
2709
+ "description": "Audio background noise removal",
2710
+ "additionalProperties": true,
2711
+ "properties": {
2712
+ "actionData": {
2713
+ "type": "object",
2714
+ "description": "background noise removal action data",
2715
+ "additionalProperties": true,
2716
+ "required": [
2717
+ "bnrActionType"
2718
+ ],
2719
+ "properties": {
2720
+ "bnrActionType": {
2721
+ "enum": [
2722
+ "turn-on-bnr",
2723
+ "turn-off-bnr"
2724
+ ],
2725
+ "type": "string"
2726
+ }
2727
+ }
2728
+ },
2729
+ "eventData": {
2730
+ "type": "object",
2731
+ "description": "background noise removal event data",
2732
+ "additionalProperties": true,
2733
+ "required": [
2734
+ "bnrEventType"
2735
+ ],
2736
+ "properties": {
2737
+ "bnrEventType": {
2738
+ "enum": [
2739
+ "bnr-on",
2740
+ "bnr-off"
2741
+ ],
2742
+ "type": "string"
2743
+ }
2744
+ }
2745
+ }
2746
+ }
2747
+ },
2748
+ "gestureRecognition": {
2749
+ "type": "object",
2750
+ "description": "Details of client action",
2751
+ "additionalProperties": true,
2752
+ "properties": {
2753
+ "supportedMachine": {
2754
+ "type": "boolean"
2755
+ },
2756
+ "gestureType": {
2757
+ "type": "string",
2758
+ "enum": [
2759
+ "clap",
2760
+ "none",
2761
+ "raiseHand",
2762
+ "thumpUp",
2763
+ "thumbDown"
2764
+ ]
2765
+ },
2766
+ "duration": {
2767
+ "type": "integer"
2768
+ }
2769
+ }
2770
+ },
2771
+ "postMeetingHook": {
2772
+ "type": "object",
2773
+ "description": "post meeting hook report",
2774
+ "additionalProperties": true,
2775
+ "properties": {
2776
+ "actionData": {
2777
+ "type": "object",
2778
+ "description": "data define for background noise removal action",
2779
+ "additionalProperties": true,
2780
+ "required": [
2781
+ "pmhActionType"
2782
+ ],
2783
+ "properties": {
2784
+ "pmhActionType": {
2785
+ "enum": [
2786
+ "share",
2787
+ "view-details",
2788
+ "close"
2789
+ ],
2790
+ "type": "string"
2791
+ },
2792
+ "pmhActionResult": {
2793
+ "type": "string"
2794
+ }
2795
+ }
2796
+ },
2797
+ "eventData": {
2798
+ "type": "object",
2799
+ "description": "data define for background noise removal event",
2800
+ "additionalProperties": true,
2801
+ "required": [
2802
+ "pmhEventType"
2803
+ ],
2804
+ "properties": {
2805
+ "pmhEventType": {
2806
+ "enum": [
2807
+ "used",
2808
+ "not-show-again"
2809
+ ],
2810
+ "type": "string"
2811
+ }
2812
+ }
2813
+ }
2814
+ }
2815
+ },
2816
+ "problemReportInfo": {
2817
+ "type": "object",
2818
+ "description": "Details of problem report information",
2819
+ "additionalProperties": true,
2820
+ "required": [
2821
+ "logId",
2822
+ "fileSize",
2823
+ "uploadStage"
2824
+ ],
2825
+ "properties": {
2826
+ "logId": {
2827
+ "type": "string"
2828
+ },
2829
+ "fileSize": {
2830
+ "type": "number"
2831
+ },
2832
+ "uploadStage": {
2833
+ "enum": [
2834
+ "connect",
2835
+ "upload"
2836
+ ],
2837
+ "type": "string"
2838
+ },
2839
+ "collectWMETime": {
2840
+ "type": "integer"
2841
+ },
2842
+ "collectTopicTime": {
2843
+ "type": "integer"
2844
+ },
2845
+ "collectSystemInfoTime": {
2846
+ "type": "integer"
2847
+ },
2848
+ "collectMeetingDataTime": {
2849
+ "type": "integer"
2850
+ },
2851
+ "collectDumpTime": {
2852
+ "type": "integer"
2853
+ },
2854
+ "collectCPUTime": {
2855
+ "type": "integer"
2856
+ },
2857
+ "zipTime": {
2858
+ "type": "integer"
2859
+ },
2860
+ "connectTime": {
2861
+ "type": "integer"
2862
+ },
2863
+ "uploadTime": {
2864
+ "type": "integer"
2865
+ },
2866
+ "totalTime": {
2867
+ "type": "integer"
2868
+ },
2869
+ "uploadErrorMessage": {
2870
+ "type": "string"
2871
+ }
2872
+ }
2873
+ },
2874
+ "breakoutSessionInfo": {
2875
+ "type": "object",
2876
+ "description": "Details of breakout session information",
2877
+ "additionalProperties": true,
2878
+ "required": [
2879
+ "breakoutSessionAction"
2880
+ ],
2881
+ "properties": {
2882
+ "breakoutSessionAction": {
2883
+ "type": "string",
2884
+ "enum": [
2885
+ "add",
2886
+ "assign",
2887
+ "ask-for-help",
2888
+ "breakout-session-open",
2889
+ "breakout-session-close",
2890
+ "breakout-session-mute-all",
2891
+ "breakout-session-unmute-all",
2892
+ "broadcast-open",
2893
+ "broadcast-send",
2894
+ "cancel-automatic-close",
2895
+ "create",
2896
+ "delete",
2897
+ "disable",
2898
+ "dynamic-assign",
2899
+ "dynamic-exchange",
2900
+ "end",
2901
+ "enable",
2902
+ "exchange",
2903
+ "join",
2904
+ "leave",
2905
+ "lock-all-sessions",
2906
+ "lock-this-sessions",
2907
+ "moveto",
2908
+ "mute-all",
2909
+ "mute-all-set",
2910
+ "recreate",
2911
+ "remove",
2912
+ "rename",
2913
+ "search",
2914
+ "select-all",
2915
+ "show-all-sessions",
2916
+ "start",
2917
+ "unmute-all",
2918
+ "unlock-all-sessions",
2919
+ "unlock-this-sessions",
2920
+ "allow-leave-session",
2921
+ "allow-join-session-later",
2922
+ "auto-end-sessions",
2923
+ "time-before-leave-session"
2924
+ ]
2925
+ },
2926
+ "breakoutSessionJoinType": {
2927
+ "enum": [
2928
+ "any-one-can-join",
2929
+ "auto",
2930
+ "manual",
2931
+ "preassign-rest"
2932
+ ],
2933
+ "type": "string"
2934
+ },
2935
+ "breakoutSessionActionClickFrom": {
2936
+ "enum": [
2937
+ "actionbar",
2938
+ "assign-dialog",
2939
+ "auto",
2940
+ "breakout-session-list",
2941
+ "contextmenu",
2942
+ "menu",
2943
+ "plist",
2944
+ "popup-dialog"
2945
+ ],
2946
+ "type": "string"
2947
+ },
2948
+ "broadcastSendType": {
2949
+ "enum": [
2950
+ "all-sessions-all-participants",
2951
+ "all-sessions-all-cohost-and-presenters",
2952
+ "one-session-all-participants",
2953
+ "one-session-one-participant"
2954
+ ],
2955
+ "type": "string"
2956
+ },
2957
+ "breakoutSessionDialogOpenTime": {
2958
+ "type": "integer"
2959
+ },
2960
+ "breakoutSessionDialogAssignTime": {
2961
+ "type": "integer"
2962
+ }
2963
+ }
2964
+ },
2965
+ "embeddedBrowserObject": {
2966
+ "type": "object",
2967
+ "description": "call embedded browser object result, if failed, will populate error at Error item",
2968
+ "additionalProperties": true,
2969
+ "required": [
2970
+ "browserType"
2971
+ ],
2972
+ "properties": {
2973
+ "browserType": {
2974
+ "enum": [
2975
+ "IE",
2976
+ "WebView2"
2977
+ ],
2978
+ "type": "string"
2979
+ },
2980
+ "version": {
2981
+ "type": "string"
2982
+ },
2983
+ "callFrom": {
2984
+ "type": "string"
2985
+ }
2986
+ }
2987
+ },
2988
+ "teamsLaunchWebexMeeting": {
2989
+ "type": "object",
2990
+ "description": "TeamsLaunchWebexMeeting report",
2991
+ "additionalProperties": true,
2992
+ "properties": {
2993
+ "eventData": {
2994
+ "type": "object",
2995
+ "description": "data define for TeamsLaunchWebexMeeting event",
2996
+ "additionalProperties": true,
2997
+ "required": [
2998
+ "tlmEevntType"
2999
+ ],
3000
+ "properties": {
3001
+ "tlmEevntType": {
3002
+ "enum": [
3003
+ "sync-preference",
3004
+ "sip-call-launch",
3005
+ "skip-interstitial",
3006
+ "ipc-ready",
3007
+ "ipc-failed"
3008
+ ],
3009
+ "type": "string"
3010
+ },
3011
+ "ipcConnectTime": {
3012
+ "type": "integer"
3013
+ }
3014
+ }
3015
+ },
3016
+ "actionData": {
3017
+ "type": "object",
3018
+ "description": "data define for TeamsLaunchWebexMeeting action",
3019
+ "additionalProperties": true,
3020
+ "required": [
3021
+ "tlmActionType"
3022
+ ],
3023
+ "properties": {
3024
+ "tlmActionType": {
3025
+ "enum": [
3026
+ "change-audio",
3027
+ "change-video"
3028
+ ],
3029
+ "type": "string"
3030
+ }
3031
+ }
3032
+ },
3033
+ "dataFrom": {
3034
+ "type": "object",
3035
+ "description": "data define for TeamsLaunchWebexMeeting data from",
3036
+ "additionalProperties": true,
3037
+ "required": [
3038
+ "tlmFromType"
3039
+ ],
3040
+ "properties": {
3041
+ "tlmFromType": {
3042
+ "enum": [
3043
+ "webex-meeting",
3044
+ "webex-teams"
3045
+ ],
3046
+ "type": "string"
3047
+ }
3048
+ }
3049
+ }
3050
+ }
3051
+ },
3052
+ "languageActionInfo": {
3053
+ "type": "object",
3054
+ "description": "Details of language action",
3055
+ "additionalProperties": true,
3056
+ "required": [
3057
+ "languageAction"
3058
+ ],
3059
+ "properties": {
3060
+ "languageAction": {
3061
+ "type": "string",
3062
+ "enum": [
3063
+ "openLanguageDialog",
3064
+ "subscribeTransLanguage",
3065
+ "unsubscribeTransLanguage",
3066
+ "changeSpeakLanguage",
3067
+ "transcriptTurnOnWebexAssistantDialog",
3068
+ "transcriptTurnOffWebexAssistantDialog",
3069
+ "transcriptTurnOnWebexAssistantMenu",
3070
+ "transcriptTurn0ffWebexAssistantMenu",
3071
+ "transcriptViewHighlightPanel",
3072
+ "transcriptViewHighlightPanelViaCloseCaption",
3073
+ "transcriptViewHighlightPanelViaPanelOption",
3074
+ "transcriptViewHighlightPanelViaWebexAssistant",
3075
+ "transcriptEnableCloseCaptionDialog",
3076
+ "transcriptDisableCloseCaptionDialog",
3077
+ "transcriptDisableCloseCaptionDialogForActiveCCOpen",
3078
+ "transcriptDisableCloseCaptionDialogViaCCButton",
3079
+ "transcriptDisableCloseCaptionDialogViaCCDialog",
3080
+ "transcriptEnableCloseCaptionMenu",
3081
+ "transcriptDisableCloseCaptionMenu",
3082
+ "transcriptTabToCaptions",
3083
+ "transcriptTabToHighlights",
3084
+ "transcriptCreateHighlight",
3085
+ "transcriptDeleteHighlightInHighlight",
3086
+ "transcriptDeleteHighlightInCaptions",
3087
+ "transcriptChangeFontSize",
3088
+ "transcriptBackToDefaultPosition",
3089
+ "transcriptChangeModeToDark",
3090
+ "transcriptChangeModeToLight"
3091
+ ]
3092
+ },
3093
+ "fromLanguage": {
3094
+ "type": "string",
3095
+ "enum": [
3096
+ "lan_af",
3097
+ "lan_sq",
3098
+ "lan_am",
3099
+ "lan_ar",
3100
+ "lan_hy",
3101
+ "lan_az",
3102
+ "lan_eu",
3103
+ "lan_be",
3104
+ "lan_bn",
3105
+ "lan_bs",
3106
+ "lan_bg",
3107
+ "lan_ca",
3108
+ "lan_ceb",
3109
+ "lan_zh",
3110
+ "lan_zh-TW",
3111
+ "lan_co",
3112
+ "lan_hr",
3113
+ "lan_cs",
3114
+ "lan_da",
3115
+ "lan_nl",
3116
+ "lan_en",
3117
+ "lan_en-GB",
3118
+ "lan_eo",
3119
+ "lan_et",
3120
+ "lan_fi",
3121
+ "lan_fr",
3122
+ "lan_fr-CA",
3123
+ "lan_fy",
3124
+ "lan_gl",
3125
+ "lan_ka",
3126
+ "lan_de",
3127
+ "lan_el",
3128
+ "lan_gu",
3129
+ "lan_ht",
3130
+ "lan_ha",
3131
+ "lan_haw",
3132
+ "lan_he",
3133
+ "lan_hi",
3134
+ "lan_hmn",
3135
+ "lan_hu",
3136
+ "lan_is",
3137
+ "lan_ig",
3138
+ "lan_id",
3139
+ "lan_ga",
3140
+ "lan_it",
3141
+ "lan_ja",
3142
+ "lan_jv",
3143
+ "lan_kn",
3144
+ "lan_kk",
3145
+ "lan_km",
3146
+ "lan_rw",
3147
+ "lan_ko",
3148
+ "lan_ku",
3149
+ "lan_ky",
3150
+ "lan_lo",
3151
+ "lan_la",
3152
+ "lan_lv",
3153
+ "lan_lt",
3154
+ "lan_lb",
3155
+ "lan_mk",
3156
+ "lan_mg",
3157
+ "lan_ms",
3158
+ "lan_ml",
3159
+ "lan_mt",
3160
+ "lan_mi",
3161
+ "lan_mr",
3162
+ "lan_mn",
3163
+ "lan_my",
3164
+ "lan_ne",
3165
+ "lan_no",
3166
+ "lan_ny",
3167
+ "lan_or",
3168
+ "lan_ps",
3169
+ "lan_fa",
3170
+ "lan_pl",
3171
+ "lan_pt",
3172
+ "lan_pa",
3173
+ "lan_ro",
3174
+ "lan_ru",
3175
+ "lan_sm",
3176
+ "lan_gd",
3177
+ "lan_sr",
3178
+ "lan_st",
3179
+ "lan_sn",
3180
+ "lan_sd",
3181
+ "lan_si",
3182
+ "lan_sk",
3183
+ "lan_sl",
3184
+ "lan_so",
3185
+ "lan_es",
3186
+ "lan_es-ES",
3187
+ "lan_su",
3188
+ "lan_sw",
3189
+ "lan_sv",
3190
+ "lan_tl",
3191
+ "lan_tg",
3192
+ "lan_ta",
3193
+ "lan_tt",
3194
+ "lan_te",
3195
+ "lan_th",
3196
+ "lan_tr",
3197
+ "lan_tk",
3198
+ "lan_uk",
3199
+ "lan_ur",
3200
+ "lan_ug",
3201
+ "lan_uz",
3202
+ "lan_vi",
3203
+ "lan_cy",
3204
+ "lan_xh",
3205
+ "lan_yi",
3206
+ "lan_yo",
3207
+ "lan_zu"
3208
+ ]
3209
+ },
3210
+ "toLanguage": {
3211
+ "type": "string",
3212
+ "enum": [
3213
+ "lan_af",
3214
+ "lan_sq",
3215
+ "lan_am",
3216
+ "lan_ar",
3217
+ "lan_hy",
3218
+ "lan_az",
3219
+ "lan_eu",
3220
+ "lan_be",
3221
+ "lan_bn",
3222
+ "lan_bs",
3223
+ "lan_bg",
3224
+ "lan_ca",
3225
+ "lan_ceb",
3226
+ "lan_zh",
3227
+ "lan_zh-TW",
3228
+ "lan_co",
3229
+ "lan_hr",
3230
+ "lan_cs",
3231
+ "lan_da",
3232
+ "lan_nl",
3233
+ "lan_en",
3234
+ "lan_en-GB",
3235
+ "lan_eo",
3236
+ "lan_et",
3237
+ "lan_fi",
3238
+ "lan_fr",
3239
+ "lan_fr-CA",
3240
+ "lan_fy",
3241
+ "lan_gl",
3242
+ "lan_ka",
3243
+ "lan_de",
3244
+ "lan_el",
3245
+ "lan_gu",
3246
+ "lan_ht",
3247
+ "lan_ha",
3248
+ "lan_haw",
3249
+ "lan_he",
3250
+ "lan_hi",
3251
+ "lan_hmn",
3252
+ "lan_hu",
3253
+ "lan_is",
3254
+ "lan_ig",
3255
+ "lan_id",
3256
+ "lan_ga",
3257
+ "lan_it",
3258
+ "lan_ja",
3259
+ "lan_jv",
3260
+ "lan_kn",
3261
+ "lan_kk",
3262
+ "lan_km",
3263
+ "lan_rw",
3264
+ "lan_ko",
3265
+ "lan_ku",
3266
+ "lan_ky",
3267
+ "lan_lo",
3268
+ "lan_la",
3269
+ "lan_lv",
3270
+ "lan_lt",
3271
+ "lan_lb",
3272
+ "lan_mk",
3273
+ "lan_mg",
3274
+ "lan_ms",
3275
+ "lan_ml",
3276
+ "lan_mt",
3277
+ "lan_mi",
3278
+ "lan_mr",
3279
+ "lan_mn",
3280
+ "lan_my",
3281
+ "lan_ne",
3282
+ "lan_no",
3283
+ "lan_ny",
3284
+ "lan_or",
3285
+ "lan_ps",
3286
+ "lan_fa",
3287
+ "lan_pl",
3288
+ "lan_pt",
3289
+ "lan_pa",
3290
+ "lan_ro",
3291
+ "lan_ru",
3292
+ "lan_sm",
3293
+ "lan_gd",
3294
+ "lan_sr",
3295
+ "lan_st",
3296
+ "lan_sn",
3297
+ "lan_sd",
3298
+ "lan_si",
3299
+ "lan_sk",
3300
+ "lan_sl",
3301
+ "lan_so",
3302
+ "lan_es",
3303
+ "lan_es-ES",
3304
+ "lan_su",
3305
+ "lan_sw",
3306
+ "lan_sv",
3307
+ "lan_tl",
3308
+ "lan_tg",
3309
+ "lan_ta",
3310
+ "lan_tt",
3311
+ "lan_te",
3312
+ "lan_th",
3313
+ "lan_tr",
3314
+ "lan_tk",
3315
+ "lan_uk",
3316
+ "lan_ur",
3317
+ "lan_ug",
3318
+ "lan_uz",
3319
+ "lan_vi",
3320
+ "lan_cy",
3321
+ "lan_xh",
3322
+ "lan_yi",
3323
+ "lan_yo",
3324
+ "lan_zu"
3325
+ ]
3326
+ }
3327
+ }
3328
+ },
3329
+ "videoActionInfo": {
3330
+ "type": "object",
3331
+ "description": "Details of video action",
3332
+ "additionalProperties": true,
3333
+ "required": [
3334
+ "videoAction"
3335
+ ],
3336
+ "properties": {
3337
+ "videoAction": {
3338
+ "type": "string",
3339
+ "enum": [
3340
+ "switchLayout",
3341
+ "switchPage",
3342
+ "switchActiveUser",
3343
+ "zoomIn",
3344
+ "zoomOut",
3345
+ "pinVideoToStage",
3346
+ "unpinVideoToStage",
3347
+ "syncMyStageForAll",
3348
+ "desyncMyStageForAll",
3349
+ "showParticipantWithoutVideo",
3350
+ "hideParticipantWithoutVideo",
3351
+ "showActiveVideoInStage",
3352
+ "hideActiveVideoInStage",
3353
+ "showActiveVideoWithShareContent",
3354
+ "hideActiveVideoWithShareContent",
3355
+ "showVideoOnTP",
3356
+ "showVideoOnComputer",
3357
+ "EnterFullScreen",
3358
+ "ExitFullScreen",
3359
+ "EnterFullScreenWithShare",
3360
+ "ExitFullScreenWithShare",
3361
+ "hideFilmStrip",
3362
+ "showFilmStrip"
3363
+ ]
3364
+ },
3365
+ "fromLayoutType": {
3366
+ "type": "string",
3367
+ "enum": [
3368
+ "stack",
3369
+ "stackWithShare",
3370
+ "sideBySide",
3371
+ "sideBySideWithShare",
3372
+ "grid",
3373
+ "floatingActive",
3374
+ "floatingThumbnail",
3375
+ "floatingGrid",
3376
+ "overlay",
3377
+ "focus",
3378
+ "prominent",
3379
+ "focusWithShare",
3380
+ "prominentWithShare",
3381
+ "equal",
3382
+ "equalWithShare"
3383
+ ]
3384
+ },
3385
+ "toLayoutType": {
3386
+ "type": "string",
3387
+ "enum": [
3388
+ "stack",
3389
+ "stackWithShare",
3390
+ "sideBySide",
3391
+ "sideBySideWithShare",
3392
+ "grid",
3393
+ "floatingActive",
3394
+ "floatingThumbnail",
3395
+ "floatingGrid",
3396
+ "overlay",
3397
+ "focus",
3398
+ "prominent",
3399
+ "focusWithShare",
3400
+ "prominentWithShare",
3401
+ "equal",
3402
+ "equalWithShare"
3403
+ ]
3404
+ },
3405
+ "zoomLayoutType": {
3406
+ "type": "string",
3407
+ "enum": [
3408
+ "stack",
3409
+ "stackWithShare",
3410
+ "sideBySide",
3411
+ "sideBySideWithShare",
3412
+ "grid",
3413
+ "floatingActive",
3414
+ "floatingThumbnail",
3415
+ "floatingGrid",
3416
+ "overlay",
3417
+ "focus",
3418
+ "prominent",
3419
+ "focusWithShare",
3420
+ "prominentWithShare",
3421
+ "equal",
3422
+ "equalWithShare"
3423
+ ]
3424
+ },
3425
+ "duration": {
3426
+ "type": "integer"
3427
+ },
3428
+ "myVideoCSI": {
3429
+ "type": "number",
3430
+ "minimum": -9223372036854776000.0,
3431
+ "maximum": 9223372036854776000.0
3432
+ },
3433
+ "myNodeID": {
3434
+ "type": "integer"
3435
+ },
3436
+ "fromActiveNodeID": {
3437
+ "type": "integer"
3438
+ },
3439
+ "toActiveNodeID": {
3440
+ "type": "integer"
3441
+ },
3442
+ "switchFromVideoCount": {
3443
+ "type": "integer"
3444
+ },
3445
+ "switchToVideoCount": {
3446
+ "type": "integer"
3447
+ },
3448
+ "isSwitchToPrevious": {
3449
+ "type": "boolean"
3450
+ },
3451
+ "pinVideoNodeID": {
3452
+ "type": "integer"
3453
+ },
3454
+ "pinVideoCSI": {
3455
+ "type": "number",
3456
+ "minimum": -9223372036854776000.0,
3457
+ "maximum": 9223372036854776000.0
3458
+ },
3459
+ "actionFromPlist": {
3460
+ "type": "boolean"
3461
+ },
3462
+ "syncStageNodeIDArray": {
3463
+ "type": "array",
3464
+ "items": {
3465
+ "type": "integer"
3466
+ }
3467
+ },
3468
+ "syncStageCSIArray": {
3469
+ "type": "array",
3470
+ "items": {
3471
+ "type": "number",
3472
+ "minimum": -9223372036854776000.0,
3473
+ "maximum": 9223372036854776000.0
3474
+ }
3475
+ },
3476
+ "lockAttendeeStageView": {
3477
+ "type": "boolean"
3478
+ }
3479
+ }
3480
+ },
3481
+ "featureReport": {
3482
+ "type": "object",
3483
+ "description": "Details of FeatureReport",
3484
+ "additionalProperties": true,
3485
+ "required": [
3486
+ "featureReportItems"
3487
+ ],
3488
+ "properties": {
3489
+ "featureReportItems": {
3490
+ "type": "array",
3491
+ "items": {
3492
+ "type": "object",
3493
+ "description": "Details of FeatureReportItem.",
3494
+ "additionalProperties": true,
3495
+ "required": [
3496
+ "featureName",
3497
+ "timeStamp"
3498
+ ],
3499
+ "properties": {
3500
+ "featureName": {},
3501
+ "timeStamp": {
3502
+ "type": "string",
3503
+ "format": "date-time"
3504
+ },
3505
+ "actionName": {
3506
+ "type": "string"
3507
+ },
3508
+ "eventName": {
3509
+ "type": "string"
3510
+ },
3511
+ "duration": {
3512
+ "type": "integer"
3513
+ },
3514
+ "extValue": {
3515
+ "type": "string"
3516
+ },
3517
+ "webappData": {},
3518
+ "reactionData": {},
3519
+ "interpretationAction": {}
3520
+ }
3521
+ }
3522
+ }
3523
+ }
3524
+ },
3525
+ "downloadInfos": {
3526
+ "type": "array",
3527
+ "items": {
3528
+ "type": "object",
3529
+ "description": "data define for download detail data",
3530
+ "additionalProperties": true,
3531
+ "properties": {
3532
+ "percentCompleted": {
3533
+ "type": "integer"
3534
+ },
3535
+ "packageName": {
3536
+ "type": "string"
3537
+ },
3538
+ "timestamp": {
3539
+ "type": "string",
3540
+ "format": "date-time"
3541
+ },
3542
+ "clientDownloadFileCount": {
3543
+ "type": "integer"
3544
+ },
3545
+ "clientDownloadSize": {
3546
+ "type": "number",
3547
+ "minimum": -9223372036854776000.0,
3548
+ "maximum": 9223372036854776000.0
3549
+ },
3550
+ "clientDownloadTime": {
3551
+ "type": "integer",
3552
+ "minimum": 0
3553
+ },
3554
+ "clientDecompressTime": {
3555
+ "type": "integer",
3556
+ "minimum": 0
3557
+ },
3558
+ "CDNEnabled": {
3559
+ "type": "boolean"
3560
+ },
3561
+ "updateFlag": {
3562
+ "enum": [
3563
+ "preMeeting",
3564
+ "inMeeting",
3565
+ "postMeeting"
3566
+ ],
3567
+ "type": "string"
3568
+ },
3569
+ "epSP": {
3570
+ "type": "boolean"
3571
+ },
3572
+ "isEPUpdate": {
3573
+ "type": "boolean"
3574
+ },
3575
+ "spDifferent": {
3576
+ "type": "integer"
3577
+ },
3578
+ "spVersionDelta": {
3579
+ "type": "integer"
3580
+ },
3581
+ "deltaUpdate": {
3582
+ "type": "boolean"
3583
+ },
3584
+ "deltaListDownloadTime": {
3585
+ "type": "integer",
3586
+ "minimum": 0
3587
+ },
3588
+ "deltaPackageDownloadTime": {
3589
+ "type": "integer",
3590
+ "minimum": 0
3591
+ },
3592
+ "deltaCachePackageCopyTime": {
3593
+ "type": "integer",
3594
+ "minimum": 0
3595
+ },
3596
+ "deltaApplyTime": {
3597
+ "type": "integer",
3598
+ "minimum": 0
3599
+ },
3600
+ "deltaPackageUncompressTime": {
3601
+ "type": "integer",
3602
+ "minimum": 0
3603
+ },
3604
+ "deltaDuration": {
3605
+ "type": "integer",
3606
+ "minimum": 0
3607
+ },
3608
+ "deltaVersion": {
3609
+ "type": "string"
3610
+ },
3611
+ "deltaDownloadFullPackage": {
3612
+ "type": "boolean"
3613
+ },
3614
+ "deltaFileSize": {
3615
+ "type": "integer",
3616
+ "minimum": 0
3617
+ },
3618
+ "deltaUpdateEnabled": {
3619
+ "type": "boolean"
3620
+ },
3621
+ "deltaFullpackageDownloadEnabled": {
3622
+ "type": "boolean"
3623
+ },
3624
+ "deltaUpdateErrorType": {
3625
+ "type": "string"
3626
+ },
3627
+ "deltaUpdateSuccess": {
3628
+ "type": "string"
3629
+ },
3630
+ "deltaFullpackageDownloadVersion": {
3631
+ "type": "string"
3632
+ },
3633
+ "deltaFullpackageDownloadSuccess": {
3634
+ "type": "string"
3635
+ },
3636
+ "deltaUpdateCorrelationId": {
3637
+ "type": "string"
3638
+ },
3639
+ "deltaFullpackageDownloadCorrelationId": {
3640
+ "type": "string"
3641
+ },
3642
+ "deltaTargetVersion": {
3643
+ "type": "string"
3644
+ },
3645
+ "deltaLocalFullPackageVersions": {
3646
+ "type": "string"
3647
+ },
3648
+ "deltaUpdateFailReason": {
3649
+ "type": "string"
3650
+ },
3651
+ "deltaUpdateTimeStamp": {
3652
+ "type": "string",
3653
+ "format": "date-time"
3654
+ }
3655
+ }
3656
+ }
3657
+ }
3658
+ }
3659
+ }
3660
+ }
3661
+ }