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