@webex/event-dictionary-ts 1.0.1307 → 1.0.1309

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