-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathagentForce.json
More file actions
3502 lines (3502 loc) · 110 KB
/
agentForce.json
File metadata and controls
3502 lines (3502 loc) · 110 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"nodes": [
{
"position": {
"x": -606.9494697461239,
"y": -168.45494265456372
},
"id": "filter",
"type": "input",
"data": {
"label": "",
"schema": {
"properties": {
"filter": {
"title": "Filter",
"type": "string"
},
"onlyRef": {
"title": "Reference only",
"type": "boolean",
"default": true
},
"onlyCustom": {
"title": "Custom only",
"type": "boolean",
"default": false
},
"showLabel": {
"title": "Show Label",
"type": "boolean",
"default": true
},
"showData": {
"title": "Show Data",
"type": "boolean",
"default": false
},
"showChildRelation": {
"title": "Child Relations",
"type": "boolean",
"default": false
},
"nbFields": {
"title": "Nb Fields",
"type": "integer",
"default": 20
}
}
}
},
"width": 250,
"height": 308
},
{
"id": "EntityDefinition/AgentWork",
"type": "table",
"position": {
"x": -293.8992406937549,
"y": 534.4958335528262
},
"data": {
"Id": "EntityDefinition/AgentWork",
"schema": {
"type": "object",
"description": "[Core] Represents a work assignment that’s been routed to an agent.",
"properties": {
"Id": {
"type": "string",
"title": "Agent Work ID",
"readOnly": true,
"description": "Globally unique string that identifies a record."
},
"Name": {
"type": "string",
"title": "Name",
"readOnly": true,
"description": "An automatically generated ID number that identifies the record."
},
"CurrencyIsoCode": {
"type": "string",
"title": "Currency ISO Code",
"enum": [
"USD",
null
],
"enumNames": [
"U.S. Dollar",
null
],
"description": ""
},
"LastModifiedDate": {
"type": "string",
"title": "Last Modified Date",
"format": "date-time",
"readOnly": true,
"description": "Date and time when a user last modified this record."
},
"UserId": {
"type": "string",
"title": "User ID",
"x-target": "User",
"readOnly": true,
"description": ""
},
"WorkItemId": {
"type": "string",
"title": "WorkItem ID",
"x-target": "AI_Agent_Conversation_Entry__c",
"readOnly": true,
"description": ""
},
"Status": {
"type": "string",
"title": "Status",
"enum": [
"Assigned",
"Unavailable",
"Declined",
"Opened",
"Closed",
"DeclinedOnPushTimeout",
"Canceled",
"Transferred",
null
],
"enumNames": [
"Assigned",
"Unavailable",
"Declined",
"Opened",
"Closed",
"Declined on Push Time-Out",
"Canceled",
"Transferred",
null
],
"readOnly": true,
"description": "The working status of the work item. Valid values are: Assigned – The item is assigned to the agent but hasn’t been opened. Canceled – The item no longer needs to be routed. For example: a chat visitor cancels their Omni-Channel routed chat request before it reaches an agent. Closed – The item is closed. Declined – The item was assigned to the agent but the agent explicitly declined it. DeclinedOnPushTimeout – The item was declined because push time-out is enabled and the item request timed out with the agent. Opened – The agent opened the item. Transferred–The item was transferred from an agent to another agent, queue, or skill. Unavailable – The item was assigned to the agent but the agent became unavailable (went offline or lost connection)."
},
"ServiceChannelId": {
"type": "string",
"title": "Service Channel ID",
"x-target": "ServiceChannel",
"readOnly": true,
"description": ""
},
"OriginalQueueId": {
"type": "string",
"title": "Queue ID",
"x-target": "Group",
"readOnly": true,
"description": ""
},
"CapacityWeight": {
"type": "number",
"title": "Units of Capacity",
"readOnly": true,
"description": "The amount of an agent’s capacity for work items that’s consumed by a work item from this service channel.For example, if cases are assigned a capacity weight of 2, an agent with a capacity of 6 can accept up to 3 cases before the agent is at capacity and can’t receive new work items."
},
"CapacityPercentage": {
"type": "string",
"title": "Percentage of Capacity",
"readOnly": true,
"description": "The percentage of an agent’s capacity for work items that’s consumed by a specific type of work item from this service channel.When an agent’s combined work items reach 100%, the agent doesn’t receive new work items until there’s enough open capacity for more work. For example, if you give phone calls a capacity percentage of 100, an agent on a call doesn’t receive new work items until the call ends."
},
"RequestDateTime": {
"type": "string",
"title": "Request Date",
"format": "date-time",
"readOnly": true,
"description": "Indicates when the work was requested."
},
"AcceptDateTime": {
"type": "string",
"title": "Accept Date",
"format": "date-time",
"readOnly": true,
"description": "Indicates when the work item was accepted."
},
"DeclineDateTime": {
"type": "string",
"title": "Decline Date",
"format": "date-time",
"readOnly": true,
"description": "Date and time when the agent declined this record."
},
"CloseDateTime": {
"type": "string",
"title": "Close Date",
"format": "date-time",
"readOnly": true,
"description": "Indicates when the work item was closed."
},
"SpeedToAnswer": {
"type": "integer",
"title": "Speed To Answer",
"readOnly": true,
"description": "The amount of time between when the work was requested and when an agent accepted it."
},
"AgentCapacityWhenDeclined": {
"type": "number",
"title": "Agent Capacity when Declined",
"readOnly": true,
"description": "The agent’s capacity when declining work, either explicitly or through push timeout."
},
"PendingServiceRoutingId": {
"type": "string",
"title": "Pending Service Routing ID",
"x-target": "PendingServiceRouting",
"readOnly": true,
"description": ""
},
"PushTimeout": {
"type": "integer",
"title": "Push Time-Out",
"readOnly": true,
"description": "The time limit set for an agent to respond to an item before it’s pushed to another agent. The time limit is measured in seconds. This field is available in API version 36.0 and later."
},
"PushTimeoutDateTime": {
"type": "string",
"title": "Push Time-Out Date",
"format": "date-time",
"readOnly": true,
"description": "The date and time (in UTC) when the push timeout event occurred. This field is available in API version 36.0 and later."
},
"HandleTime": {
"type": "integer",
"title": "Handle Time",
"readOnly": true,
"description": "The amount of time an agent had the work item open. Calculated by CloseDateTime – AcceptedDateTime. If After Conversation Work is in use, HandleTime ends when the AfterConversationActualTime period ends or the agent closes the work item, whichever occurs first."
},
"ActiveTime": {
"type": "integer",
"title": "Active Time",
"readOnly": true,
"description": "The amount of time an agent actively worked on the work item. Tracks when the item is open and in focus in the agent’s console. If After Conversation Work is in use, ActiveTime ends when the AfterConversationActualTime period ends or the agent closes the work item, whichever occurs first.ActiveTime is tracked only for work that is routed using the tab-based capacity model."
},
"DeclineReason": {
"type": "string",
"title": "Decline Reason",
"readOnly": true,
"description": "The provided reason for why an agent declined the work request."
},
"CancelDateTime": {
"type": "string",
"title": "Cancel Date",
"format": "date-time",
"readOnly": true,
"description": "Indicates when the work item was canceled."
},
"ShouldSkipCapacityCheck": {
"type": "boolean",
"title": "Should Skip Capacity Check",
"readOnly": true,
"description": "Indicates whether to skip checking an agent’s available capacity (true) or not (false) when an externally routed work item is created. This field is used when agents can simultaneously handle work from both Omni-Channel queues and queues using external routing."
},
"RoutingType": {
"type": "string",
"title": "Routing Type",
"enum": [
"QueueBased",
"SkillsBased",
null
],
"enumNames": [
"Queue Based",
"Skills Based",
null
],
"readOnly": true,
"description": "The type of Omni-Channel routing. Possible values are: QueueBased SkillsBased"
},
"RoutingModel": {
"type": "string",
"title": "Routing Model",
"enum": [
"LeastActive",
"MostAvailable",
"ExternalRouting",
null
],
"enumNames": [
"Least Active",
"Most Available",
"External Routing",
null
],
"readOnly": true,
"description": "Determines how incoming work items are routed to agents assigned to a service channel. Possible values are: ExternalRouting LeastActive MostAvailable"
},
"RoutingPriority": {
"type": "integer",
"title": "Routing Priority",
"readOnly": true,
"description": "The order in which work items from the queue that are associated with the routing configuration are routed to agents."
},
"AssignedDateTime": {
"type": "string",
"title": "Assign Date",
"format": "date-time",
"readOnly": true,
"description": "Indicates when the work item was assigned to an agent. This field is a calculated field."
},
"PreferredUserId": {
"type": "string",
"title": "User ID",
"x-target": "User",
"readOnly": true,
"description": ""
},
"OriginalGroupId": {
"type": "string",
"title": "Group ID",
"x-target": "Group",
"readOnly": true,
"description": ""
},
"SecondaryRoutingPriority": {
"type": "integer",
"title": "Secondary Routing Priority",
"readOnly": true,
"description": "Indicates the secondary routing priority."
},
"IsPreferredUserRequired": {
"type": "boolean",
"title": "Is Preferred User Required",
"readOnly": true,
"description": "Indicates whether a work item stays with the preferred user even when the user isn’t available. The default value is false. This field is available in API version 50.0 and later."
},
"AfterConversationActualTime": {
"type": "integer",
"title": "After Conversation Work Actual Time",
"readOnly": true,
"description": "The number of seconds an agent spent on After Conversation Work (ACW) after customer contact ended. This field is available in API version 52.0 and later."
},
"BotId": {
"type": "string",
"title": "Bot ID",
"x-target": "BotDefinition",
"readOnly": true,
"description": ""
},
"IsInterruptible": {
"type": "boolean",
"title": "Is Interruptible",
"readOnly": true,
"description": "Indicates whether a work item consumes interruptible or primary capacity. The default value is false. Available in API version 57.0 and later when the Interruptible Capacity feature is enabled."
},
"AgentIntCapacityWhenDeclined": {
"type": "number",
"title": "Agent Interruptible Capacity when Declined",
"readOnly": true,
"description": ""
},
"AcwExtensionCount": {
"type": "integer",
"title": "After Conversation Work Extension Count",
"readOnly": true,
"description": "The number of times that an agent extended the After Conversation Work (ACW) timer. This field is available in API version 55.0 and later."
},
"AcwExtensionDuration": {
"type": "integer",
"title": "After Conversation Work Extension Duration",
"readOnly": true,
"description": "The length of time (in seconds) that the After Conversation Work (ACW) timer was extended each time that the agent extended the timer. This field is available in API version 55.0 and later.To find the total extension duration, multiply this field by AcwExtensionCount or use AfterConversationActualTime."
},
"PausedCapacityWeight": {
"type": "number",
"title": "Units of Capacity for Paused Work Items",
"description": ""
},
"PausedCapacityPercentage": {
"type": "string",
"title": "Percentage of Capacity for Paused Work Items",
"description": ""
},
"TransferRequesterId": {
"type": "string",
"title": "User ID",
"x-target": "User",
"description": ""
},
"BotType": {
"type": "string",
"title": "Bot Type",
"enum": [
"Bot",
"InternalCopilot",
"ExternalCopilot",
null
],
"enumNames": [
"0",
"1",
"2",
null
],
"readOnly": true,
"description": ""
}
}
},
"description": "[Core] Represents a work assignment that’s been routed to an agent.",
"icon": "utility:standard_objects",
"color": "#0070D2",
"label": "Agent Work",
"category": "Core"
}
},
{
"id": "EntityDefinition/BotDefinition",
"type": "table",
"position": {
"x": -622.9226394620994,
"y": 278.18687329459993
},
"data": {
"Id": "EntityDefinition/BotDefinition",
"schema": {
"type": "object",
"description": "[Agentforce] ",
"properties": {
"Id": {
"type": "string",
"title": "Bot ID",
"readOnly": true,
"description": "Globally unique string that identifies a record."
},
"DeveloperName": {
"type": "string",
"title": "Name",
"readOnly": true,
"description": ""
},
"MasterLabel": {
"type": "string",
"title": "Bot Definition Name",
"readOnly": true,
"description": ""
},
"LastModifiedDate": {
"type": "string",
"title": "Last Modified Date",
"format": "date-time",
"readOnly": true,
"description": "Date and time when a user last modified this record."
},
"BotUserId": {
"type": "string",
"title": "User ID",
"x-target": "User",
"readOnly": true,
"description": ""
},
"Description": {
"type": "string",
"title": "Description",
"readOnly": true,
"description": ""
},
"Type": {
"type": "string",
"title": "Type",
"enum": [
"Bot",
"InternalCopilot",
"ExternalCopilot",
null
],
"enumNames": [
"0",
"1",
"2",
null
],
"readOnly": true,
"description": ""
},
"AgentType": {
"type": "string",
"title": "Type of Agent",
"enum": [
null
],
"enumNames": [
null
],
"readOnly": true,
"description": ""
},
"AgentTemplate": {
"type": "string",
"title": "Template",
"readOnly": true,
"description": ""
},
"BotSource": {
"type": "string",
"title": "Type of Bot Source",
"enum": [
"None",
"B2ASandboxBot",
"B2AProdBot",
null
],
"enumNames": [
"0",
"1",
"2",
null
],
"readOnly": true,
"description": ""
}
}
},
"description": "[Agentforce] ",
"icon": "utility:einstein",
"color": "#9C27B0",
"label": "Bot",
"category": "Agentforce"
}
},
{
"id": "EntityDefinition/BotVersion",
"type": "table",
"position": {
"x": -179.52315000666687,
"y": 307.1808824800994
},
"data": {
"Id": "EntityDefinition/BotVersion",
"schema": {
"type": "object",
"description": "[Agentforce] ",
"properties": {
"Id": {
"type": "string",
"title": "Bot Version ID",
"readOnly": true,
"description": "Globally unique string that identifies a record."
},
"BotDefinitionId": {
"type": "string",
"title": "Bot ID",
"x-target": "BotDefinition",
"readOnly": true,
"description": ""
},
"DeveloperName": {
"type": "string",
"title": "Object Name",
"readOnly": true,
"description": ""
},
"LastModifiedDate": {
"type": "string",
"title": "Last Modified Date",
"format": "date-time",
"readOnly": true,
"description": "Date and time when a user last modified this record."
},
"VersionNumber": {
"type": "integer",
"title": "Version Number",
"description": ""
},
"Status": {
"type": "string",
"title": "Status",
"enum": [
"Active",
"Inactive",
null
],
"enumNames": [
"Active",
"Inactive",
null
],
"readOnly": true,
"description": ""
},
"CopilotPrimaryLanguage": {
"type": "string",
"title": "Agent Primary Language",
"enum": [
"en_US",
"de",
"es",
"fr",
"it",
"ja",
"sv",
"ko",
"zh_TW",
"zh_CN",
"pt_BR",
"nl_NL",
"da",
"th",
"fi",
"ru",
"es_MX",
"no",
"hu",
"pl",
"cs",
"tr",
"in",
"ro",
"vi",
"uk",
"iw",
"el",
"bg",
"en_GB"
],
"enumNames": [
"English",
"German",
"Spanish",
"French",
"Italian",
"Japanese",
"Swedish",
"Korean",
"Chinese (Traditional)",
"Chinese (Simplified)",
"Portuguese (Brazil)",
"Dutch",
"Danish",
"Thai",
"Finnish",
"Russian",
"Spanish (Mexico)",
"Norwegian",
"Hungarian",
"Polish",
"Czech",
"Turkish",
"Indonesian",
"Romanian",
"Vietnamese",
"Ukrainian",
"Hebrew",
"Greek",
"Bulgarian",
"English (UK)"
],
"description": ""
},
"ToneType": {
"type": "string",
"title": "Tone Type",
"enum": [
"Casual",
"Neutral",
"Formal",
null
],
"enumNames": [
"0",
"1",
"2",
null
],
"description": ""
},
"CopilotSecondaryLanguages": {
"type": "string",
"title": "Agent Secondary Languages",
"description": ""
}
}
},
"description": "[Agentforce] ",
"icon": "utility:einstein",
"color": "#9C27B0",
"label": "Bot Version",
"category": "Agentforce"
}
},
{
"id": "EntityDefinition/ConversationDefinitionDialog",
"type": "table",
"position": {
"x": 178.39300803729185,
"y": 478.65080604721015
},
"data": {
"Id": "EntityDefinition/ConversationDefinitionDialog",
"schema": {
"type": "object",
"description": "[Core] ",
"properties": {
"Id": {
"type": "string",
"title": "Dialog ID",
"readOnly": true,
"description": "Globally unique string that identifies a record."
},
"ParentId": {
"type": "string",
"title": "Parent ID",
"x-target": "BotVersion",
"readOnly": true,
"description": ""
},
"DeveloperName": {
"type": "string",
"title": "Object Name",
"description": ""
},
"MasterLabel": {
"type": "string",
"title": "Label",
"description": ""
},
"LastModifiedDate": {
"type": "string",
"title": "Last Modified Date",
"format": "date-time",
"readOnly": true,
"description": "Date and time when a user last modified this record."
}
}
},
"description": "[Core] ",
"icon": "utility:standard_objects",
"color": "#0070D2",
"label": "Dialog",
"category": "Core"
}
},
{
"id": "EntityDefinition/ConvDefDialogDailyMetric",
"type": "table",
"position": {
"x": 1089.8604040511782,
"y": 393.77702974088663
},
"data": {
"Id": "EntityDefinition/ConvDefDialogDailyMetric",
"schema": {
"type": "object",
"description": "[Core] ",
"properties": {
"Id": {
"type": "string",
"title": "Conversation Definition Dialog Daily Metric Id",
"readOnly": true,
"description": "Globally unique string that identifies a record."
},
"Name": {
"type": "string",
"title": "Name",
"readOnly": true,
"description": ""
},
"LastModifiedDate": {
"type": "string",
"title": "Last Modified Date",
"format": "date-time",
"readOnly": true,
"description": "Date and time when a user last modified this record."
},
"DialogDefinitionId": {
"type": "string",
"title": "Dialog ID",
"x-target": "ConversationDefinitionDialog",
"readOnly": true,
"description": ""
},
"DialogDefinitionName": {
"type": "string",
"title": "Dialog Definition Name",
"readOnly": true,
"description": ""
},
"ConversationDefinitionId": {
"type": "string",
"title": "Conversation Definition ID",
"x-target": "BotVersion",
"readOnly": true,
"description": ""
},
"BotDefinitionName": {
"type": "string",
"title": "Bot Definition Name",
"readOnly": true,
"description": ""
},
"MetricType": {
"type": "string",
"title": "Metric Type",
"enum": [
"Escalation",
"Exception",
"DialogOpened",
"Confusion",
"ChoiceSelected",
"SessionsStarted",
"ActionExecuted",
"SessionsEnded",
"NLPIntentCalled",
"DialogCompleted",
"Transferred",
"ArticleChosen",
"ArticleFeedbackSum",
"ArticleFeedbackCount",
"GoalCompleted",
"SessionsEngaged",
"ELUIntentCalled",
"ELUBooleanExtracted",
"ELUEntityCalled",
"CancelDialog",
"EngagedSessionCount",
"CompletedGoalSessionCount",
"FailedTransferSessionCount",
"AllELUCalled",
null
],
"enumNames": [
"Escalation",
"Exception",
"Dialog Opened",
"Confusion",
"Choice Selected",
"Sessions Started",
"Action Executed",
"Sessions Ended",
"NLP Intent Called",
"Dialog Completed",
"Transferred",
"Article Chosen",
"Article Feedback Sum",
"Article Feedback Count",
"Goal Completed",
"Sessions Engaged",
"ELU Intent Called",
"ELU Boolean Extracted",
"ELU Entity Called",
"Cancel Dialog",
"Engaged Session Count",
"Completed Goal Session Count",
"Failed Transfer Session Count",
"All ELU Called",
null
],
"readOnly": true,
"description": ""
},
"MetricDateTime": {
"type": "string",
"title": "Metric Date Time",
"format": "date",
"readOnly": true,
"description": ""
},
"ChannelType": {
"type": "string",
"title": "Channel Type",
"enum": [
"Text",
"Facebook",
"Line",
"GoogleHome",
"Alexa",
"Omega",
"AppleBusinessChat",
"WeChat",
"WebChat",
"WhatsApp",
"Phone",
"EmbeddedMessaging",
"Voice",
"Custom",
"InternalCopilot",
"VoiceIntegrationPilot",
null
],
"enumNames": [
"Text",
"Facebook",
"Line",
"Google Home",
"Alexa",
"Omega",
"Apple Messages for Business",
"WeChat",
"Chat",
"WhatsApp",
"Phone",
"Embedded Messaging",
"Voice",
"Custom",
"Internal Copilot",
"Voice Integration Pilot",
null
],
"readOnly": true,
"description": ""
},
"Value": {
"type": "integer",
"title": "Value",
"readOnly": true,
"description": ""
},
"SessionTransferType": {
"type": "string",
"title": "Session Transfer Type",
"enum": [
"Bot",
"Agent",
null
],
"enumNames": [
"Bot",
"Agent",
null
],
"readOnly": true,
"description": ""
},
"IsSuccessful": {
"type": "boolean",
"title": "Is Successful",
"readOnly": true,
"description": ""
},
"SessionEndType": {
"type": "string",
"title": "Session End Type",
"enum": [
"EndedByEndUser",
"Transferred",
"SessionTimedOut",
"Error",
"Other",
"Action",
null
],
"enumNames": [
"Ended By End User",
"Transferred",
"Session Timed Out",
"Error",
"Other",
"Action",
null
],
"readOnly": true,
"description": ""
},
"StaticChoiceValue": {
"type": "string",
"title": "Static Choice Value",
"readOnly": true,
"description": ""
},
"Article": {
"type": "string",
"title": "Article",
"readOnly": true,
"description": ""
},
"ArticleName": {
"type": "string",
"title": "Article Name",
"readOnly": true,
"description": ""
},
"Language": {
"type": "string",
"title": "Language",
"enum": [
"en_US",
"de",
"es",
"fr",
"it",
"ja",
"sv",
"ko",
"zh_TW",
"zh_CN",
"pt_BR",
"nl_NL",
"da",
"th",
"fi",
"ru",
"es_MX",
"no",
"hu",
"pl",
"cs",