@knime/hub-features 1.26.1 → 1.27.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,412 +9,3345 @@
9
9
  "version": {
10
10
  "$comment": "Version of this document",
11
11
  "type": "string",
12
- "const": "v1.0"
12
+ "const": "v2.0"
13
13
  },
14
14
  "events": {
15
15
  "type": "object",
16
16
  "additionalProperties": false,
17
17
  "required": [
18
- "kai_prompted",
19
- "layouteditor_opened",
20
- "annotation_created",
21
- "workflow_saved",
22
- "connection_created",
23
- "node_created",
24
- "qam_opened",
25
- "node_searched",
26
- "sidepanel_opened",
27
- "action_undone",
28
- "action_redone",
29
- "configuration_completed",
30
- "version_created",
31
- "session_started",
32
- "session_ended",
33
- "session_interrupted",
34
- "session_resumed",
35
- "containernode_created",
36
- "containernode_entered",
37
- "containernode_exited",
38
- "hint_shown",
39
- "hint_closed"
18
+ "kaiPromptedQA",
19
+ "kaiPromptedBuild",
20
+ "kaiPromptedQuickBuild",
21
+ "sessionStarted",
22
+ "layoutEditorOpenedCtxMenu",
23
+ "layoutEditorOpenedKeyboard",
24
+ "layoutEditorOpenedToolbar",
25
+ "annotationCreatedCtxMenu",
26
+ "annotationCreatedKaiExplain",
27
+ "workflowSavedToolbar",
28
+ "workflowSavedKeyboard",
29
+ "connectionCreatedPortDragDrop",
30
+ "connectionCreatedKeyboard",
31
+ "connectionCreatedCtxMenu",
32
+ "nodeCreatedNodeRepoDragDrop",
33
+ "nodeCreatedNodeRepoDoubleClick",
34
+ "nodeCreatedNodeRepoKeyboard",
35
+ "nodeCreatedExplorerDragDrop",
36
+ "nodeCreatedQamClick",
37
+ "nodeCreatedQamKeyboard",
38
+ "nodeCreatedKaiQaDragDrop",
39
+ "nodeCreatedKaiQaKeyboard",
40
+ "qamOpenedPortDragDrop",
41
+ "qamOpenedCanvasDoubleClick",
42
+ "qamOpenedKeyboard",
43
+ "qamOpenedCtxMenu",
44
+ "nodeSearchedNodeRepo",
45
+ "nodeSearchedQam",
46
+ "workflowInfoOpened",
47
+ "nodeRepositoryOpened",
48
+ "spaceExplorerOpened",
49
+ "kaiOpened",
50
+ "workflowMonitorOpened",
51
+ "versionHistoryOpened",
52
+ "actionUndoneToolbar",
53
+ "actionUndoneKeyboard",
54
+ "actionRedoneToolbar",
55
+ "actionRedoneKeyboard",
56
+ "versionCreated",
57
+ "sessionEnded",
58
+ "sessionInterrupted",
59
+ "sessionResumed",
60
+ "containerNodeCreatedCtxMenu",
61
+ "containerNodeCreatedKeyboard",
62
+ "hintShown",
63
+ "hintClosed",
64
+ "configurationCompletedApply",
65
+ "configurationCompletedAutoApply",
66
+ "containerNodeEnteredCanvasDoubleClick",
67
+ "containerNodeEnteredKeyboard",
68
+ "containerNodeEnteredCtxMenu",
69
+ "containerNodeExitedKeyboard",
70
+ "containerNodeExitedToolbar",
71
+ "nodeCreatedCanvasDragDropFile",
72
+ "nodeCreatedFloatingToolsAddByFile"
40
73
  ],
41
74
  "properties": {
42
- "kai_prompted": {
75
+ "kaiPromptedQA": {
43
76
  "type": "object",
44
77
  "additionalProperties": false,
45
- "required": ["kaiqa_button_", "kaibuild_button_", "qam_button_"],
78
+ "$comment": "This is KAI Prompted QA",
79
+ "required": [
80
+ "event_name",
81
+ "event_source",
82
+ "event_display_name",
83
+ "interaction",
84
+ "payload"
85
+ ],
46
86
  "properties": {
47
- "kaiqa_button_": {
87
+ "event_name": {
88
+ "type": "string",
89
+ "const": "kai_prompted"
90
+ },
91
+ "event_source": {
92
+ "type": "string",
93
+ "const": "editor"
94
+ },
95
+ "event_display_name": {
96
+ "type": "string",
97
+ "const": "K-AI Prompted"
98
+ },
99
+ "interaction": {
100
+ "type": "object",
101
+ "additionalProperties": false,
102
+ "required": ["location", "trigger", "type"],
103
+ "properties": {
104
+ "location": {
105
+ "type": "string",
106
+ "const": "kai_qa"
107
+ },
108
+ "trigger": {
109
+ "allOf": [
110
+ {
111
+ "$ref": "#/definitions/InteractionTrigger"
112
+ },
113
+ {
114
+ "const": "user"
115
+ }
116
+ ]
117
+ },
118
+ "type": {
119
+ "allOf": [
120
+ {
121
+ "$ref": "#/definitions/InteractionType"
122
+ },
123
+ {
124
+ "const": "click"
125
+ }
126
+ ]
127
+ }
128
+ }
129
+ },
130
+ "payload": {
48
131
  "$ref": "#/definitions/EmptyPayload"
132
+ }
133
+ }
134
+ },
135
+ "kaiPromptedBuild": {
136
+ "type": "object",
137
+ "additionalProperties": false,
138
+ "required": [
139
+ "event_name",
140
+ "event_source",
141
+ "event_display_name",
142
+ "interaction",
143
+ "payload"
144
+ ],
145
+ "properties": {
146
+ "event_name": {
147
+ "type": "string",
148
+ "const": "kai_prompted"
149
+ },
150
+ "event_source": {
151
+ "type": "string",
152
+ "const": "editor"
49
153
  },
50
- "kaibuild_button_": {
154
+ "event_display_name": {
155
+ "type": "string",
156
+ "const": "K-AI Prompted"
157
+ },
158
+ "interaction": {
159
+ "type": "object",
160
+ "additionalProperties": false,
161
+ "required": ["location", "trigger", "type"],
162
+ "properties": {
163
+ "location": {
164
+ "type": "string",
165
+ "const": "kai_build"
166
+ },
167
+ "trigger": {
168
+ "allOf": [
169
+ {
170
+ "$ref": "#/definitions/InteractionTrigger"
171
+ },
172
+ {
173
+ "const": "user"
174
+ }
175
+ ]
176
+ },
177
+ "type": {
178
+ "allOf": [
179
+ {
180
+ "$ref": "#/definitions/InteractionType"
181
+ },
182
+ {
183
+ "const": "click"
184
+ }
185
+ ]
186
+ }
187
+ }
188
+ },
189
+ "payload": {
51
190
  "$ref": "#/definitions/EmptyPayload"
191
+ }
192
+ }
193
+ },
194
+ "kaiPromptedQuickBuild": {
195
+ "type": "object",
196
+ "additionalProperties": false,
197
+ "required": [
198
+ "event_name",
199
+ "event_source",
200
+ "event_display_name",
201
+ "interaction",
202
+ "payload"
203
+ ],
204
+ "properties": {
205
+ "event_name": {
206
+ "type": "string",
207
+ "const": "kai_prompted"
208
+ },
209
+ "event_source": {
210
+ "type": "string",
211
+ "const": "editor"
212
+ },
213
+ "event_display_name": {
214
+ "type": "string",
215
+ "const": "K-AI Prompted"
216
+ },
217
+ "interaction": {
218
+ "type": "object",
219
+ "additionalProperties": false,
220
+ "required": ["location", "trigger", "type"],
221
+ "properties": {
222
+ "location": {
223
+ "type": "string",
224
+ "const": "qam"
225
+ },
226
+ "trigger": {
227
+ "allOf": [
228
+ {
229
+ "$ref": "#/definitions/InteractionTrigger"
230
+ },
231
+ {
232
+ "const": "user"
233
+ }
234
+ ]
235
+ },
236
+ "type": {
237
+ "allOf": [
238
+ {
239
+ "$ref": "#/definitions/InteractionType"
240
+ },
241
+ {
242
+ "const": "click"
243
+ }
244
+ ]
245
+ }
246
+ }
52
247
  },
53
- "qam_button_": {
248
+ "payload": {
54
249
  "$ref": "#/definitions/KaiPromptedPayload"
55
250
  }
56
251
  }
57
252
  },
58
- "session_started": {
253
+ "sessionStarted": {
59
254
  "type": "object",
60
255
  "additionalProperties": false,
61
- "required": ["autotrigger"],
256
+ "$comment": "This is the sessions started",
257
+ "required": [
258
+ "event_name",
259
+ "event_source",
260
+ "event_display_name",
261
+ "interaction",
262
+ "payload"
263
+ ],
62
264
  "properties": {
63
- "autotrigger": {
265
+ "event_name": {
266
+ "type": "string",
267
+ "const": "session_started"
268
+ },
269
+ "event_source": {
270
+ "type": "string",
271
+ "const": "editor"
272
+ },
273
+ "event_display_name": {
274
+ "type": "string",
275
+ "const": "Editor session start"
276
+ },
277
+ "interaction": {
278
+ "type": "object",
279
+ "additionalProperties": false,
280
+ "required": ["location", "trigger", "type"],
281
+ "properties": {
282
+ "location": {
283
+ "type": "string",
284
+ "const": "global"
285
+ },
286
+ "trigger": {
287
+ "allOf": [
288
+ {
289
+ "$ref": "#/definitions/InteractionTrigger"
290
+ },
291
+ {
292
+ "const": "system"
293
+ }
294
+ ]
295
+ },
296
+ "type": {
297
+ "allOf": [
298
+ {
299
+ "$ref": "#/definitions/InteractionType"
300
+ },
301
+ {
302
+ "const": "auto"
303
+ }
304
+ ]
305
+ }
306
+ }
307
+ },
308
+ "payload": {
64
309
  "$ref": "#/definitions/EmptyPayload"
65
310
  }
66
311
  }
67
312
  },
68
- "session_ended": {
313
+ "layoutEditorOpenedCtxMenu": {
69
314
  "type": "object",
70
315
  "additionalProperties": false,
71
316
  "required": [
72
- "session_tab_closed",
73
- "autotrigger_timedout_",
74
- "autotrigger_disconnect_"
317
+ "event_name",
318
+ "event_source",
319
+ "event_display_name",
320
+ "interaction",
321
+ "payload"
75
322
  ],
76
323
  "properties": {
77
- "session_tab_closed": {
324
+ "event_name": {
325
+ "type": "string",
326
+ "const": "layouteditor_opened"
327
+ },
328
+ "event_source": {
329
+ "type": "string",
330
+ "const": "editor"
331
+ },
332
+ "event_display_name": {
333
+ "type": "string",
334
+ "const": "Layout Editor Opened"
335
+ },
336
+ "interaction": {
337
+ "type": "object",
338
+ "additionalProperties": false,
339
+ "required": ["location", "trigger", "type"],
340
+ "properties": {
341
+ "location": {
342
+ "type": "string",
343
+ "const": "canvas"
344
+ },
345
+ "trigger": {
346
+ "allOf": [
347
+ {
348
+ "$ref": "#/definitions/InteractionTrigger"
349
+ },
350
+ {
351
+ "const": "user"
352
+ }
353
+ ]
354
+ },
355
+ "type": {
356
+ "allOf": [
357
+ {
358
+ "$ref": "#/definitions/InteractionType"
359
+ },
360
+ {
361
+ "const": "click"
362
+ }
363
+ ]
364
+ }
365
+ }
366
+ },
367
+ "payload": {
78
368
  "$ref": "#/definitions/EmptyPayload"
369
+ }
370
+ }
371
+ },
372
+ "layoutEditorOpenedKeyboard": {
373
+ "type": "object",
374
+ "additionalProperties": false,
375
+ "required": [
376
+ "event_name",
377
+ "event_source",
378
+ "event_display_name",
379
+ "interaction",
380
+ "payload"
381
+ ],
382
+ "properties": {
383
+ "event_name": {
384
+ "type": "string",
385
+ "const": "layouteditor_opened"
386
+ },
387
+ "event_source": {
388
+ "type": "string",
389
+ "const": "editor"
390
+ },
391
+ "event_display_name": {
392
+ "type": "string",
393
+ "const": "Layout Editor Opened"
394
+ },
395
+ "interaction": {
396
+ "type": "object",
397
+ "additionalProperties": false,
398
+ "required": ["location", "trigger", "type"],
399
+ "properties": {
400
+ "location": {
401
+ "type": "string",
402
+ "const": "global"
403
+ },
404
+ "trigger": {
405
+ "allOf": [
406
+ {
407
+ "$ref": "#/definitions/InteractionTrigger"
408
+ },
409
+ {
410
+ "const": "user"
411
+ }
412
+ ]
413
+ },
414
+ "type": {
415
+ "allOf": [
416
+ {
417
+ "$ref": "#/definitions/InteractionType"
418
+ },
419
+ {
420
+ "const": "shortcut"
421
+ }
422
+ ]
423
+ }
424
+ }
79
425
  },
80
- "autotrigger_timedout_": {
426
+ "payload": {
81
427
  "$ref": "#/definitions/EmptyPayload"
428
+ }
429
+ }
430
+ },
431
+ "layoutEditorOpenedToolbar": {
432
+ "type": "object",
433
+ "additionalProperties": false,
434
+ "required": [
435
+ "event_name",
436
+ "event_source",
437
+ "event_display_name",
438
+ "interaction",
439
+ "payload"
440
+ ],
441
+ "properties": {
442
+ "event_name": {
443
+ "type": "string",
444
+ "const": "layouteditor_opened"
445
+ },
446
+ "event_source": {
447
+ "type": "string",
448
+ "const": "editor"
449
+ },
450
+ "event_display_name": {
451
+ "type": "string",
452
+ "const": "Layout Editor Opened"
453
+ },
454
+ "interaction": {
455
+ "type": "object",
456
+ "additionalProperties": false,
457
+ "required": ["location", "trigger", "type"],
458
+ "properties": {
459
+ "location": {
460
+ "type": "string",
461
+ "const": "workflow_toolbar"
462
+ },
463
+ "trigger": {
464
+ "allOf": [
465
+ {
466
+ "$ref": "#/definitions/InteractionTrigger"
467
+ },
468
+ {
469
+ "const": "user"
470
+ }
471
+ ]
472
+ },
473
+ "type": {
474
+ "allOf": [
475
+ {
476
+ "$ref": "#/definitions/InteractionType"
477
+ },
478
+ {
479
+ "const": "click"
480
+ }
481
+ ]
482
+ }
483
+ }
82
484
  },
83
- "autotrigger_disconnect_": {
485
+ "payload": {
84
486
  "$ref": "#/definitions/EmptyPayload"
85
487
  }
86
488
  }
87
489
  },
88
- "session_interrupted": {
490
+ "annotationCreatedCtxMenu": {
89
491
  "type": "object",
90
492
  "additionalProperties": false,
91
- "required": ["session_tab"],
493
+ "required": [
494
+ "event_name",
495
+ "event_source",
496
+ "event_display_name",
497
+ "interaction",
498
+ "payload"
499
+ ],
92
500
  "properties": {
93
- "session_tab": {
501
+ "event_name": {
502
+ "type": "string",
503
+ "const": "annotation_created"
504
+ },
505
+ "event_source": {
506
+ "type": "string",
507
+ "const": "editor"
508
+ },
509
+ "event_display_name": {
510
+ "type": "string",
511
+ "const": "Annotation Created"
512
+ },
513
+ "interaction": {
514
+ "type": "object",
515
+ "additionalProperties": false,
516
+ "required": ["location", "trigger", "type"],
517
+ "properties": {
518
+ "location": {
519
+ "type": "string",
520
+ "const": "canvas"
521
+ },
522
+ "trigger": {
523
+ "allOf": [
524
+ {
525
+ "$ref": "#/definitions/InteractionTrigger"
526
+ },
527
+ {
528
+ "const": "user"
529
+ }
530
+ ]
531
+ },
532
+ "type": {
533
+ "allOf": [
534
+ {
535
+ "$ref": "#/definitions/InteractionType"
536
+ },
537
+ {
538
+ "const": "click"
539
+ }
540
+ ]
541
+ },
542
+ "ui_element": {
543
+ "type": "string",
544
+ "const": "context_menu"
545
+ }
546
+ }
547
+ },
548
+ "payload": {
94
549
  "$ref": "#/definitions/EmptyPayload"
95
550
  }
96
551
  }
97
552
  },
98
- "session_resumed": {
553
+ "annotationCreatedKaiExplain": {
99
554
  "type": "object",
100
555
  "additionalProperties": false,
101
- "required": ["session_tab"],
556
+ "required": [
557
+ "event_name",
558
+ "event_source",
559
+ "event_display_name",
560
+ "interaction",
561
+ "payload"
562
+ ],
102
563
  "properties": {
103
- "session_tab": {
564
+ "event_name": {
565
+ "type": "string",
566
+ "const": "annotation_created"
567
+ },
568
+ "event_source": {
569
+ "type": "string",
570
+ "const": "editor"
571
+ },
572
+ "event_display_name": {
573
+ "type": "string",
574
+ "const": "Annotation Created"
575
+ },
576
+ "interaction": {
577
+ "type": "object",
578
+ "additionalProperties": false,
579
+ "required": ["location", "trigger", "type"],
580
+ "properties": {
581
+ "location": {
582
+ "type": "string",
583
+ "const": "canvas"
584
+ },
585
+ "trigger": {
586
+ "allOf": [
587
+ {
588
+ "$ref": "#/definitions/InteractionTrigger"
589
+ },
590
+ {
591
+ "const": "user"
592
+ }
593
+ ]
594
+ },
595
+ "type": {
596
+ "allOf": [
597
+ {
598
+ "$ref": "#/definitions/InteractionType"
599
+ },
600
+ {
601
+ "const": "click"
602
+ }
603
+ ]
604
+ },
605
+ "ui_element": {
606
+ "type": "string",
607
+ "const": "context_menu"
608
+ }
609
+ }
610
+ },
611
+ "payload": {
104
612
  "$ref": "#/definitions/EmptyPayload"
105
613
  }
106
614
  }
107
615
  },
108
- "containernode_created": {
616
+ "workflowSavedToolbar": {
109
617
  "type": "object",
110
618
  "additionalProperties": false,
111
- "required": ["canvas_ctxmenu_", "keyboard_shortcut_"],
619
+ "required": [
620
+ "event_name",
621
+ "event_source",
622
+ "event_display_name",
623
+ "interaction",
624
+ "payload"
625
+ ],
112
626
  "properties": {
113
- "canvas_ctxmenu_": {
114
- "$ref": "#/definitions/ContainerNodeCreatedPayload"
627
+ "event_name": {
628
+ "type": "string",
629
+ "const": "workflow_saved"
115
630
  },
116
- "keyboard_shortcut_": {
117
- "$ref": "#/definitions/ContainerNodeCreatedPayload"
631
+ "event_source": {
632
+ "type": "string",
633
+ "const": "editor"
634
+ },
635
+ "event_display_name": {
636
+ "type": "string",
637
+ "const": "Workflow Saved"
638
+ },
639
+ "interaction": {
640
+ "type": "object",
641
+ "additionalProperties": false,
642
+ "required": ["location", "trigger", "type"],
643
+ "properties": {
644
+ "location": {
645
+ "type": "string",
646
+ "const": "workflow_toolbar"
647
+ },
648
+ "trigger": {
649
+ "allOf": [
650
+ {
651
+ "$ref": "#/definitions/InteractionTrigger"
652
+ },
653
+ {
654
+ "const": "user"
655
+ }
656
+ ]
657
+ },
658
+ "type": {
659
+ "allOf": [
660
+ {
661
+ "$ref": "#/definitions/InteractionType"
662
+ },
663
+ {
664
+ "const": "click"
665
+ }
666
+ ]
667
+ }
668
+ }
669
+ },
670
+ "payload": {
671
+ "$ref": "#/definitions/WorkflowSavedPayload"
672
+ }
673
+ }
674
+ },
675
+ "workflowSavedKeyboard": {
676
+ "type": "object",
677
+ "additionalProperties": false,
678
+ "required": [
679
+ "event_name",
680
+ "event_source",
681
+ "event_display_name",
682
+ "interaction",
683
+ "payload"
684
+ ],
685
+ "properties": {
686
+ "event_name": {
687
+ "type": "string",
688
+ "const": "workflow_saved"
689
+ },
690
+ "event_source": {
691
+ "type": "string",
692
+ "const": "editor"
693
+ },
694
+ "event_display_name": {
695
+ "type": "string",
696
+ "const": "Workflow Saved"
697
+ },
698
+ "interaction": {
699
+ "type": "object",
700
+ "additionalProperties": false,
701
+ "required": ["location", "trigger", "type"],
702
+ "properties": {
703
+ "location": {
704
+ "type": "string",
705
+ "const": "global"
706
+ },
707
+ "trigger": {
708
+ "allOf": [
709
+ {
710
+ "$ref": "#/definitions/InteractionTrigger"
711
+ },
712
+ {
713
+ "const": "user"
714
+ }
715
+ ]
716
+ },
717
+ "type": {
718
+ "allOf": [
719
+ {
720
+ "$ref": "#/definitions/InteractionType"
721
+ },
722
+ {
723
+ "const": "shortcut"
724
+ }
725
+ ]
726
+ }
727
+ }
728
+ },
729
+ "payload": {
730
+ "$ref": "#/definitions/WorkflowSavedPayload"
731
+ }
732
+ }
733
+ },
734
+ "connectionCreatedPortDragDrop": {
735
+ "type": "object",
736
+ "additionalProperties": false,
737
+ "required": [
738
+ "event_name",
739
+ "event_source",
740
+ "event_display_name",
741
+ "interaction",
742
+ "payload"
743
+ ],
744
+ "properties": {
745
+ "event_name": {
746
+ "type": "string",
747
+ "const": "connection_created"
748
+ },
749
+ "event_source": {
750
+ "type": "string",
751
+ "const": "editor"
752
+ },
753
+ "event_display_name": {
754
+ "type": "string",
755
+ "const": "Connection Created"
756
+ },
757
+ "interaction": {
758
+ "type": "object",
759
+ "additionalProperties": false,
760
+ "required": ["location", "trigger", "type"],
761
+ "properties": {
762
+ "location": {
763
+ "type": "string",
764
+ "const": "canvas"
765
+ },
766
+ "trigger": {
767
+ "allOf": [
768
+ {
769
+ "$ref": "#/definitions/InteractionTrigger"
770
+ },
771
+ {
772
+ "const": "user"
773
+ }
774
+ ]
775
+ },
776
+ "type": {
777
+ "allOf": [
778
+ {
779
+ "$ref": "#/definitions/InteractionType"
780
+ },
781
+ {
782
+ "const": "drag_drop"
783
+ }
784
+ ]
785
+ }
786
+ }
787
+ },
788
+ "payload": {
789
+ "$ref": "#/definitions/ConnectionCreatedPayload"
790
+ }
791
+ }
792
+ },
793
+ "connectionCreatedKeyboard": {
794
+ "type": "object",
795
+ "additionalProperties": false,
796
+ "required": [
797
+ "event_name",
798
+ "event_source",
799
+ "event_display_name",
800
+ "interaction",
801
+ "payload"
802
+ ],
803
+ "properties": {
804
+ "event_name": {
805
+ "type": "string",
806
+ "const": "connection_created_autoconnect"
807
+ },
808
+ "event_source": {
809
+ "type": "string",
810
+ "const": "editor"
811
+ },
812
+ "event_display_name": {
813
+ "type": "string",
814
+ "const": "Connection created autoconnect"
815
+ },
816
+ "interaction": {
817
+ "type": "object",
818
+ "additionalProperties": false,
819
+ "required": ["location", "trigger", "type"],
820
+ "properties": {
821
+ "location": {
822
+ "type": "string",
823
+ "const": "canvas"
824
+ },
825
+ "trigger": {
826
+ "allOf": [
827
+ {
828
+ "$ref": "#/definitions/InteractionTrigger"
829
+ },
830
+ {
831
+ "const": "user"
832
+ }
833
+ ]
834
+ },
835
+ "type": {
836
+ "allOf": [
837
+ {
838
+ "$ref": "#/definitions/InteractionType"
839
+ },
840
+ {
841
+ "const": "shortcut"
842
+ }
843
+ ]
844
+ }
845
+ }
846
+ },
847
+ "payload": {
848
+ "$ref": "#/definitions/ConnectionCreatedAutoconnectPayload"
849
+ }
850
+ }
851
+ },
852
+ "connectionCreatedCtxMenu": {
853
+ "type": "object",
854
+ "additionalProperties": false,
855
+ "required": [
856
+ "event_name",
857
+ "event_source",
858
+ "event_display_name",
859
+ "interaction",
860
+ "payload"
861
+ ],
862
+ "properties": {
863
+ "event_name": {
864
+ "type": "string",
865
+ "const": "connection_created_autoconnect"
866
+ },
867
+ "event_source": {
868
+ "type": "string",
869
+ "const": "editor"
870
+ },
871
+ "event_display_name": {
872
+ "type": "string",
873
+ "const": "Connection created autoconnect"
874
+ },
875
+ "interaction": {
876
+ "type": "object",
877
+ "additionalProperties": false,
878
+ "required": ["location", "trigger", "type"],
879
+ "properties": {
880
+ "location": {
881
+ "type": "string",
882
+ "const": "canvas"
883
+ },
884
+ "trigger": {
885
+ "allOf": [
886
+ {
887
+ "$ref": "#/definitions/InteractionTrigger"
888
+ },
889
+ {
890
+ "const": "user"
891
+ }
892
+ ]
893
+ },
894
+ "type": {
895
+ "allOf": [
896
+ {
897
+ "$ref": "#/definitions/InteractionType"
898
+ },
899
+ {
900
+ "const": "click"
901
+ }
902
+ ]
903
+ },
904
+ "ui_element": {
905
+ "type": "string",
906
+ "const": "context_menu"
907
+ }
908
+ }
909
+ },
910
+ "payload": {
911
+ "$ref": "#/definitions/ConnectionCreatedAutoconnectPayload"
912
+ }
913
+ }
914
+ },
915
+ "nodeCreatedNodeRepoDragDrop": {
916
+ "type": "object",
917
+ "additionalProperties": false,
918
+ "required": [
919
+ "event_name",
920
+ "event_source",
921
+ "event_display_name",
922
+ "interaction",
923
+ "payload"
924
+ ],
925
+ "properties": {
926
+ "event_name": {
927
+ "type": "string",
928
+ "const": "node_created"
929
+ },
930
+ "event_source": {
931
+ "type": "string",
932
+ "const": "editor"
933
+ },
934
+ "event_display_name": {
935
+ "type": "string",
936
+ "const": "Node Created"
937
+ },
938
+ "interaction": {
939
+ "type": "object",
940
+ "additionalProperties": false,
941
+ "required": ["location", "trigger", "type"],
942
+ "properties": {
943
+ "location": {
944
+ "type": "string",
945
+ "const": "noderepository"
946
+ },
947
+ "trigger": {
948
+ "allOf": [
949
+ {
950
+ "$ref": "#/definitions/InteractionTrigger"
951
+ },
952
+ {
953
+ "const": "user"
954
+ }
955
+ ]
956
+ },
957
+ "type": {
958
+ "allOf": [
959
+ {
960
+ "$ref": "#/definitions/InteractionType"
961
+ },
962
+ {
963
+ "const": "drag_drop"
964
+ }
965
+ ]
966
+ }
967
+ }
968
+ },
969
+ "payload": {
970
+ "$ref": "#/definitions/NodeCreated_Base"
971
+ }
972
+ }
973
+ },
974
+ "nodeCreatedNodeRepoDoubleClick": {
975
+ "type": "object",
976
+ "additionalProperties": false,
977
+ "required": [
978
+ "event_name",
979
+ "event_source",
980
+ "event_display_name",
981
+ "interaction",
982
+ "payload"
983
+ ],
984
+ "properties": {
985
+ "event_name": {
986
+ "type": "string",
987
+ "const": "node_created"
988
+ },
989
+ "event_source": {
990
+ "type": "string",
991
+ "const": "editor"
992
+ },
993
+ "event_display_name": {
994
+ "type": "string",
995
+ "const": "Node Created"
996
+ },
997
+ "interaction": {
998
+ "type": "object",
999
+ "additionalProperties": false,
1000
+ "required": ["location", "trigger", "type"],
1001
+ "properties": {
1002
+ "location": {
1003
+ "type": "string",
1004
+ "const": "noderepository"
1005
+ },
1006
+ "trigger": {
1007
+ "allOf": [
1008
+ {
1009
+ "$ref": "#/definitions/InteractionTrigger"
1010
+ },
1011
+ {
1012
+ "const": "user"
1013
+ }
1014
+ ]
1015
+ },
1016
+ "type": {
1017
+ "allOf": [
1018
+ {
1019
+ "$ref": "#/definitions/InteractionType"
1020
+ },
1021
+ {
1022
+ "const": "double_click"
1023
+ }
1024
+ ]
1025
+ }
1026
+ }
1027
+ },
1028
+ "payload": {
1029
+ "$ref": "#/definitions/NodeCreated_WithOptionalConnectedTo"
1030
+ }
1031
+ }
1032
+ },
1033
+ "nodeCreatedNodeRepoKeyboard": {
1034
+ "type": "object",
1035
+ "additionalProperties": false,
1036
+ "required": [
1037
+ "event_name",
1038
+ "event_source",
1039
+ "event_display_name",
1040
+ "interaction",
1041
+ "payload"
1042
+ ],
1043
+ "properties": {
1044
+ "event_name": {
1045
+ "type": "string",
1046
+ "const": "node_created"
1047
+ },
1048
+ "event_source": {
1049
+ "type": "string",
1050
+ "const": "editor"
1051
+ },
1052
+ "event_display_name": {
1053
+ "type": "string",
1054
+ "const": "Node Created"
1055
+ },
1056
+ "interaction": {
1057
+ "type": "object",
1058
+ "additionalProperties": false,
1059
+ "required": ["location", "trigger", "type"],
1060
+ "properties": {
1061
+ "location": {
1062
+ "type": "string",
1063
+ "const": "noderepository"
1064
+ },
1065
+ "trigger": {
1066
+ "allOf": [
1067
+ {
1068
+ "$ref": "#/definitions/InteractionTrigger"
1069
+ },
1070
+ {
1071
+ "const": "user"
1072
+ }
1073
+ ]
1074
+ },
1075
+ "type": {
1076
+ "allOf": [
1077
+ {
1078
+ "$ref": "#/definitions/InteractionType"
1079
+ },
1080
+ {
1081
+ "const": "key_press"
1082
+ }
1083
+ ]
1084
+ }
1085
+ }
1086
+ },
1087
+ "payload": {
1088
+ "$ref": "#/definitions/NodeCreated_WithOptionalConnectedTo"
1089
+ }
1090
+ }
1091
+ },
1092
+ "nodeCreatedExplorerDragDrop": {
1093
+ "type": "object",
1094
+ "additionalProperties": false,
1095
+ "required": [
1096
+ "event_name",
1097
+ "event_source",
1098
+ "event_display_name",
1099
+ "interaction",
1100
+ "payload"
1101
+ ],
1102
+ "properties": {
1103
+ "event_name": {
1104
+ "type": "string",
1105
+ "const": "node_created"
1106
+ },
1107
+ "event_source": {
1108
+ "type": "string",
1109
+ "const": "editor"
1110
+ },
1111
+ "event_display_name": {
1112
+ "type": "string",
1113
+ "const": "Node Created"
1114
+ },
1115
+ "interaction": {
1116
+ "type": "object",
1117
+ "additionalProperties": false,
1118
+ "required": ["location", "trigger", "type"],
1119
+ "properties": {
1120
+ "location": {
1121
+ "type": "string",
1122
+ "const": "space_explorer"
1123
+ },
1124
+ "trigger": {
1125
+ "allOf": [
1126
+ {
1127
+ "$ref": "#/definitions/InteractionTrigger"
1128
+ },
1129
+ {
1130
+ "const": "user"
1131
+ }
1132
+ ]
1133
+ },
1134
+ "type": {
1135
+ "allOf": [
1136
+ {
1137
+ "$ref": "#/definitions/InteractionType"
1138
+ },
1139
+ {
1140
+ "const": "drag_drop"
1141
+ }
1142
+ ]
1143
+ }
1144
+ }
1145
+ },
1146
+ "payload": {
1147
+ "$ref": "#/definitions/NodeCreated_Base"
1148
+ }
1149
+ }
1150
+ },
1151
+ "nodeCreatedQamClick": {
1152
+ "type": "object",
1153
+ "additionalProperties": false,
1154
+ "required": [
1155
+ "event_name",
1156
+ "event_source",
1157
+ "event_display_name",
1158
+ "interaction",
1159
+ "payload"
1160
+ ],
1161
+ "properties": {
1162
+ "event_name": {
1163
+ "type": "string",
1164
+ "const": "node_created"
1165
+ },
1166
+ "event_source": {
1167
+ "type": "string",
1168
+ "const": "editor"
1169
+ },
1170
+ "event_display_name": {
1171
+ "type": "string",
1172
+ "const": "Node Created"
1173
+ },
1174
+ "interaction": {
1175
+ "type": "object",
1176
+ "additionalProperties": false,
1177
+ "required": ["location", "trigger", "type"],
1178
+ "properties": {
1179
+ "location": {
1180
+ "type": "string",
1181
+ "const": "qam"
1182
+ },
1183
+ "trigger": {
1184
+ "allOf": [
1185
+ {
1186
+ "$ref": "#/definitions/InteractionTrigger"
1187
+ },
1188
+ {
1189
+ "const": "user"
1190
+ }
1191
+ ]
1192
+ },
1193
+ "type": {
1194
+ "allOf": [
1195
+ {
1196
+ "$ref": "#/definitions/InteractionType"
1197
+ },
1198
+ {
1199
+ "const": "click"
1200
+ }
1201
+ ]
1202
+ }
1203
+ }
1204
+ },
1205
+ "payload": {
1206
+ "$ref": "#/definitions/NodeCreated_WithOptionalConnectedToPorts"
1207
+ }
1208
+ }
1209
+ },
1210
+ "nodeCreatedQamKeyboard": {
1211
+ "type": "object",
1212
+ "additionalProperties": false,
1213
+ "required": [
1214
+ "event_name",
1215
+ "event_source",
1216
+ "event_display_name",
1217
+ "interaction",
1218
+ "payload"
1219
+ ],
1220
+ "properties": {
1221
+ "event_name": {
1222
+ "type": "string",
1223
+ "const": "node_created"
1224
+ },
1225
+ "event_source": {
1226
+ "type": "string",
1227
+ "const": "editor"
1228
+ },
1229
+ "event_display_name": {
1230
+ "type": "string",
1231
+ "const": "Node Created"
1232
+ },
1233
+ "interaction": {
1234
+ "type": "object",
1235
+ "additionalProperties": false,
1236
+ "required": ["location", "trigger", "type"],
1237
+ "properties": {
1238
+ "location": {
1239
+ "type": "string",
1240
+ "const": "qam"
1241
+ },
1242
+ "trigger": {
1243
+ "allOf": [
1244
+ {
1245
+ "$ref": "#/definitions/InteractionTrigger"
1246
+ },
1247
+ {
1248
+ "const": "user"
1249
+ }
1250
+ ]
1251
+ },
1252
+ "type": {
1253
+ "allOf": [
1254
+ {
1255
+ "$ref": "#/definitions/InteractionType"
1256
+ },
1257
+ {
1258
+ "const": "key_press"
1259
+ }
1260
+ ]
1261
+ }
1262
+ }
1263
+ },
1264
+ "payload": {
1265
+ "$ref": "#/definitions/NodeCreated_WithOptionalConnectedToPorts"
1266
+ }
1267
+ }
1268
+ },
1269
+ "nodeCreatedKaiQaDragDrop": {
1270
+ "type": "object",
1271
+ "additionalProperties": false,
1272
+ "required": [
1273
+ "event_name",
1274
+ "event_source",
1275
+ "event_display_name",
1276
+ "interaction",
1277
+ "payload"
1278
+ ],
1279
+ "properties": {
1280
+ "event_name": {
1281
+ "type": "string",
1282
+ "const": "node_created"
1283
+ },
1284
+ "event_source": {
1285
+ "type": "string",
1286
+ "const": "editor"
1287
+ },
1288
+ "event_display_name": {
1289
+ "type": "string",
1290
+ "const": "Node Created"
1291
+ },
1292
+ "interaction": {
1293
+ "type": "object",
1294
+ "additionalProperties": false,
1295
+ "required": ["location", "trigger", "type"],
1296
+ "properties": {
1297
+ "location": {
1298
+ "type": "string",
1299
+ "const": "kai"
1300
+ },
1301
+ "trigger": {
1302
+ "allOf": [
1303
+ {
1304
+ "$ref": "#/definitions/InteractionTrigger"
1305
+ },
1306
+ {
1307
+ "const": "user"
1308
+ }
1309
+ ]
1310
+ },
1311
+ "type": {
1312
+ "allOf": [
1313
+ {
1314
+ "$ref": "#/definitions/InteractionType"
1315
+ },
1316
+ {
1317
+ "const": "drag_drop"
1318
+ }
1319
+ ]
1320
+ }
1321
+ }
1322
+ },
1323
+ "payload": {
1324
+ "$ref": "#/definitions/NodeCreated_Base"
1325
+ }
1326
+ }
1327
+ },
1328
+ "nodeCreatedKaiQaKeyboard": {
1329
+ "type": "object",
1330
+ "additionalProperties": false,
1331
+ "required": [
1332
+ "event_name",
1333
+ "event_source",
1334
+ "event_display_name",
1335
+ "interaction",
1336
+ "payload"
1337
+ ],
1338
+ "properties": {
1339
+ "event_name": {
1340
+ "type": "string",
1341
+ "const": "node_created"
1342
+ },
1343
+ "event_source": {
1344
+ "type": "string",
1345
+ "const": "editor"
1346
+ },
1347
+ "event_display_name": {
1348
+ "type": "string",
1349
+ "const": "Node Created"
1350
+ },
1351
+ "interaction": {
1352
+ "type": "object",
1353
+ "additionalProperties": false,
1354
+ "required": ["location", "trigger", "type"],
1355
+ "properties": {
1356
+ "location": {
1357
+ "type": "string",
1358
+ "const": "kai"
1359
+ },
1360
+ "trigger": {
1361
+ "allOf": [
1362
+ {
1363
+ "$ref": "#/definitions/InteractionTrigger"
1364
+ },
1365
+ {
1366
+ "const": "user"
1367
+ }
1368
+ ]
1369
+ },
1370
+ "type": {
1371
+ "allOf": [
1372
+ {
1373
+ "$ref": "#/definitions/InteractionType"
1374
+ },
1375
+ {
1376
+ "const": "key_press"
1377
+ }
1378
+ ]
1379
+ }
1380
+ }
1381
+ },
1382
+ "payload": {
1383
+ "$ref": "#/definitions/NodeCreated_Base"
1384
+ }
1385
+ }
1386
+ },
1387
+ "qamOpenedPortDragDrop": {
1388
+ "type": "object",
1389
+ "additionalProperties": false,
1390
+ "required": [
1391
+ "event_name",
1392
+ "event_source",
1393
+ "event_display_name",
1394
+ "interaction",
1395
+ "payload"
1396
+ ],
1397
+ "properties": {
1398
+ "event_name": {
1399
+ "type": "string",
1400
+ "const": "qam_opened"
1401
+ },
1402
+ "event_source": {
1403
+ "type": "string",
1404
+ "const": "editor"
1405
+ },
1406
+ "event_display_name": {
1407
+ "type": "string",
1408
+ "const": "QAM Opened"
1409
+ },
1410
+ "interaction": {
1411
+ "type": "object",
1412
+ "additionalProperties": false,
1413
+ "required": ["location", "trigger", "type"],
1414
+ "properties": {
1415
+ "location": {
1416
+ "type": "string",
1417
+ "const": "canvas"
1418
+ },
1419
+ "trigger": {
1420
+ "allOf": [
1421
+ {
1422
+ "$ref": "#/definitions/InteractionTrigger"
1423
+ },
1424
+ {
1425
+ "const": "user"
1426
+ }
1427
+ ]
1428
+ },
1429
+ "type": {
1430
+ "allOf": [
1431
+ {
1432
+ "$ref": "#/definitions/InteractionType"
1433
+ },
1434
+ {
1435
+ "const": "drag_drop"
1436
+ }
1437
+ ]
1438
+ }
1439
+ }
1440
+ },
1441
+ "payload": {
1442
+ "$ref": "#/definitions/QAMOpened_Payload"
1443
+ }
1444
+ }
1445
+ },
1446
+ "qamOpenedCanvasDoubleClick": {
1447
+ "type": "object",
1448
+ "additionalProperties": false,
1449
+ "required": [
1450
+ "event_name",
1451
+ "event_source",
1452
+ "event_display_name",
1453
+ "interaction",
1454
+ "payload"
1455
+ ],
1456
+ "properties": {
1457
+ "event_name": {
1458
+ "type": "string",
1459
+ "const": "qam_opened"
1460
+ },
1461
+ "event_source": {
1462
+ "type": "string",
1463
+ "const": "editor"
1464
+ },
1465
+ "event_display_name": {
1466
+ "type": "string",
1467
+ "const": "QAM Opened"
1468
+ },
1469
+ "interaction": {
1470
+ "type": "object",
1471
+ "additionalProperties": false,
1472
+ "required": ["location", "trigger", "type"],
1473
+ "properties": {
1474
+ "location": {
1475
+ "type": "string",
1476
+ "const": "canvas"
1477
+ },
1478
+ "trigger": {
1479
+ "allOf": [
1480
+ {
1481
+ "$ref": "#/definitions/InteractionTrigger"
1482
+ },
1483
+ {
1484
+ "const": "user"
1485
+ }
1486
+ ]
1487
+ },
1488
+ "type": {
1489
+ "allOf": [
1490
+ {
1491
+ "$ref": "#/definitions/InteractionType"
1492
+ },
1493
+ {
1494
+ "const": "double_click"
1495
+ }
1496
+ ]
1497
+ }
1498
+ }
1499
+ },
1500
+ "payload": {
1501
+ "$ref": "#/definitions/EmptyPayload"
1502
+ }
1503
+ }
1504
+ },
1505
+ "qamOpenedKeyboard": {
1506
+ "type": "object",
1507
+ "additionalProperties": false,
1508
+ "required": [
1509
+ "event_name",
1510
+ "event_source",
1511
+ "event_display_name",
1512
+ "interaction",
1513
+ "payload"
1514
+ ],
1515
+ "properties": {
1516
+ "event_name": {
1517
+ "type": "string",
1518
+ "const": "qam_opened"
1519
+ },
1520
+ "event_source": {
1521
+ "type": "string",
1522
+ "const": "editor"
1523
+ },
1524
+ "event_display_name": {
1525
+ "type": "string",
1526
+ "const": "QAM Opened"
1527
+ },
1528
+ "interaction": {
1529
+ "type": "object",
1530
+ "additionalProperties": false,
1531
+ "required": ["location", "trigger", "type"],
1532
+ "properties": {
1533
+ "location": {
1534
+ "type": "string",
1535
+ "const": "canvas"
1536
+ },
1537
+ "trigger": {
1538
+ "allOf": [
1539
+ {
1540
+ "$ref": "#/definitions/InteractionTrigger"
1541
+ },
1542
+ {
1543
+ "const": "user"
1544
+ }
1545
+ ]
1546
+ },
1547
+ "type": {
1548
+ "allOf": [
1549
+ {
1550
+ "$ref": "#/definitions/InteractionType"
1551
+ },
1552
+ {
1553
+ "const": "shortcut"
1554
+ }
1555
+ ]
1556
+ }
1557
+ }
1558
+ },
1559
+ "payload": {
1560
+ "$ref": "#/definitions/QAMOpened_PartialPayload"
1561
+ }
1562
+ }
1563
+ },
1564
+ "qamOpenedCtxMenu": {
1565
+ "type": "object",
1566
+ "additionalProperties": false,
1567
+ "required": [
1568
+ "event_name",
1569
+ "event_source",
1570
+ "event_display_name",
1571
+ "interaction",
1572
+ "payload"
1573
+ ],
1574
+ "properties": {
1575
+ "event_name": {
1576
+ "type": "string",
1577
+ "const": "qam_opened"
1578
+ },
1579
+ "event_source": {
1580
+ "type": "string",
1581
+ "const": "editor"
1582
+ },
1583
+ "event_display_name": {
1584
+ "type": "string",
1585
+ "const": "QAM Opened"
1586
+ },
1587
+ "interaction": {
1588
+ "type": "object",
1589
+ "additionalProperties": false,
1590
+ "required": ["location", "trigger", "type"],
1591
+ "properties": {
1592
+ "location": {
1593
+ "type": "string",
1594
+ "const": "canvas"
1595
+ },
1596
+ "trigger": {
1597
+ "allOf": [
1598
+ {
1599
+ "$ref": "#/definitions/InteractionTrigger"
1600
+ },
1601
+ {
1602
+ "const": "user"
1603
+ }
1604
+ ]
1605
+ },
1606
+ "type": {
1607
+ "allOf": [
1608
+ {
1609
+ "$ref": "#/definitions/InteractionType"
1610
+ },
1611
+ {
1612
+ "const": "click"
1613
+ }
1614
+ ]
1615
+ },
1616
+ "ui_element": {
1617
+ "type": "string",
1618
+ "const": "context_menu"
1619
+ }
1620
+ }
1621
+ },
1622
+ "payload": {
1623
+ "$ref": "#/definitions/EmptyPayload"
1624
+ }
1625
+ }
1626
+ },
1627
+ "nodeSearchedNodeRepo": {
1628
+ "type": "object",
1629
+ "additionalProperties": false,
1630
+ "required": [
1631
+ "event_name",
1632
+ "event_source",
1633
+ "event_display_name",
1634
+ "interaction",
1635
+ "payload"
1636
+ ],
1637
+ "properties": {
1638
+ "event_name": {
1639
+ "type": "string",
1640
+ "const": "node_searched"
1641
+ },
1642
+ "event_source": {
1643
+ "type": "string",
1644
+ "const": "editor"
1645
+ },
1646
+ "event_display_name": {
1647
+ "type": "string",
1648
+ "const": "Node Searched"
1649
+ },
1650
+ "interaction": {
1651
+ "type": "object",
1652
+ "additionalProperties": false,
1653
+ "required": ["location", "trigger", "type"],
1654
+ "properties": {
1655
+ "location": {
1656
+ "type": "string",
1657
+ "const": "noderepository"
1658
+ },
1659
+ "trigger": {
1660
+ "allOf": [
1661
+ {
1662
+ "$ref": "#/definitions/InteractionTrigger"
1663
+ },
1664
+ {
1665
+ "const": "user"
1666
+ }
1667
+ ]
1668
+ },
1669
+ "type": {
1670
+ "allOf": [
1671
+ {
1672
+ "$ref": "#/definitions/InteractionType"
1673
+ },
1674
+ {
1675
+ "const": "key_press"
1676
+ }
1677
+ ]
1678
+ }
1679
+ }
1680
+ },
1681
+ "payload": {
1682
+ "$ref": "#/definitions/SearchPayload"
1683
+ }
1684
+ }
1685
+ },
1686
+ "nodeSearchedQam": {
1687
+ "type": "object",
1688
+ "additionalProperties": false,
1689
+ "required": [
1690
+ "event_name",
1691
+ "event_source",
1692
+ "event_display_name",
1693
+ "interaction",
1694
+ "payload"
1695
+ ],
1696
+ "properties": {
1697
+ "event_name": {
1698
+ "type": "string",
1699
+ "const": "node_searched"
1700
+ },
1701
+ "event_source": {
1702
+ "type": "string",
1703
+ "const": "editor"
1704
+ },
1705
+ "event_display_name": {
1706
+ "type": "string",
1707
+ "const": "Node Searched"
1708
+ },
1709
+ "interaction": {
1710
+ "type": "object",
1711
+ "additionalProperties": false,
1712
+ "required": ["location", "trigger", "type"],
1713
+ "properties": {
1714
+ "location": {
1715
+ "type": "string",
1716
+ "const": "qam"
1717
+ },
1718
+ "trigger": {
1719
+ "allOf": [
1720
+ {
1721
+ "$ref": "#/definitions/InteractionTrigger"
1722
+ },
1723
+ {
1724
+ "const": "user"
1725
+ }
1726
+ ]
1727
+ },
1728
+ "type": {
1729
+ "allOf": [
1730
+ {
1731
+ "$ref": "#/definitions/InteractionType"
1732
+ },
1733
+ {
1734
+ "const": "key_press"
1735
+ }
1736
+ ]
1737
+ }
1738
+ }
1739
+ },
1740
+ "payload": {
1741
+ "$ref": "#/definitions/SearchPayload"
1742
+ }
1743
+ }
1744
+ },
1745
+ "workflowInfoOpened": {
1746
+ "type": "object",
1747
+ "additionalProperties": false,
1748
+ "required": [
1749
+ "event_name",
1750
+ "event_source",
1751
+ "event_display_name",
1752
+ "interaction",
1753
+ "payload"
1754
+ ],
1755
+ "properties": {
1756
+ "event_name": {
1757
+ "type": "string",
1758
+ "const": "workflow_info_opened"
1759
+ },
1760
+ "event_source": {
1761
+ "type": "string",
1762
+ "const": "editor"
1763
+ },
1764
+ "event_display_name": {
1765
+ "type": "string",
1766
+ "const": "Workflow Info Opened"
1767
+ },
1768
+ "interaction": {
1769
+ "type": "object",
1770
+ "additionalProperties": false,
1771
+ "required": ["location", "trigger", "type"],
1772
+ "properties": {
1773
+ "location": {
1774
+ "type": "string",
1775
+ "const": "workflow_info"
1776
+ },
1777
+ "trigger": {
1778
+ "allOf": [
1779
+ {
1780
+ "$ref": "#/definitions/InteractionTrigger"
1781
+ },
1782
+ {
1783
+ "const": "user"
1784
+ }
1785
+ ]
1786
+ },
1787
+ "type": {
1788
+ "allOf": [
1789
+ {
1790
+ "$ref": "#/definitions/InteractionType"
1791
+ },
1792
+ {
1793
+ "const": "click"
1794
+ }
1795
+ ]
1796
+ }
1797
+ }
1798
+ },
1799
+ "payload": {
1800
+ "$ref": "#/definitions/EmptyPayload"
1801
+ }
1802
+ }
1803
+ },
1804
+ "nodeRepositoryOpened": {
1805
+ "type": "object",
1806
+ "additionalProperties": false,
1807
+ "required": [
1808
+ "event_name",
1809
+ "event_source",
1810
+ "event_display_name",
1811
+ "interaction",
1812
+ "payload"
1813
+ ],
1814
+ "properties": {
1815
+ "event_name": {
1816
+ "type": "string",
1817
+ "const": "noderepository_opened"
1818
+ },
1819
+ "event_source": {
1820
+ "type": "string",
1821
+ "const": "editor"
1822
+ },
1823
+ "event_display_name": {
1824
+ "type": "string",
1825
+ "const": "Node Repository Opened"
1826
+ },
1827
+ "interaction": {
1828
+ "type": "object",
1829
+ "additionalProperties": false,
1830
+ "required": ["location", "trigger", "type"],
1831
+ "properties": {
1832
+ "location": {
1833
+ "type": "string",
1834
+ "const": "noderepository"
1835
+ },
1836
+ "trigger": {
1837
+ "allOf": [
1838
+ {
1839
+ "$ref": "#/definitions/InteractionTrigger"
1840
+ },
1841
+ {
1842
+ "const": "user"
1843
+ }
1844
+ ]
1845
+ },
1846
+ "type": {
1847
+ "allOf": [
1848
+ {
1849
+ "$ref": "#/definitions/InteractionType"
1850
+ },
1851
+ {
1852
+ "const": "click"
1853
+ }
1854
+ ]
1855
+ }
1856
+ }
1857
+ },
1858
+ "payload": {
1859
+ "$ref": "#/definitions/EmptyPayload"
1860
+ }
1861
+ }
1862
+ },
1863
+ "spaceExplorerOpened": {
1864
+ "type": "object",
1865
+ "additionalProperties": false,
1866
+ "required": [
1867
+ "event_name",
1868
+ "event_source",
1869
+ "event_display_name",
1870
+ "interaction",
1871
+ "payload"
1872
+ ],
1873
+ "properties": {
1874
+ "event_name": {
1875
+ "type": "string",
1876
+ "const": "space_explorer_opened"
1877
+ },
1878
+ "event_source": {
1879
+ "type": "string",
1880
+ "const": "editor"
1881
+ },
1882
+ "event_display_name": {
1883
+ "type": "string",
1884
+ "const": "Space Explorer Opened"
1885
+ },
1886
+ "interaction": {
1887
+ "type": "object",
1888
+ "additionalProperties": false,
1889
+ "required": ["location", "trigger", "type"],
1890
+ "properties": {
1891
+ "location": {
1892
+ "type": "string",
1893
+ "const": "space_explorer"
1894
+ },
1895
+ "trigger": {
1896
+ "allOf": [
1897
+ {
1898
+ "$ref": "#/definitions/InteractionTrigger"
1899
+ },
1900
+ {
1901
+ "const": "user"
1902
+ }
1903
+ ]
1904
+ },
1905
+ "type": {
1906
+ "allOf": [
1907
+ {
1908
+ "$ref": "#/definitions/InteractionType"
1909
+ },
1910
+ {
1911
+ "const": "click"
1912
+ }
1913
+ ]
1914
+ }
1915
+ }
1916
+ },
1917
+ "payload": {
1918
+ "$ref": "#/definitions/EmptyPayload"
1919
+ }
1920
+ }
1921
+ },
1922
+ "kaiOpened": {
1923
+ "type": "object",
1924
+ "additionalProperties": false,
1925
+ "required": [
1926
+ "event_name",
1927
+ "event_source",
1928
+ "event_display_name",
1929
+ "interaction",
1930
+ "payload"
1931
+ ],
1932
+ "properties": {
1933
+ "event_name": {
1934
+ "type": "string",
1935
+ "const": "kai_opened"
1936
+ },
1937
+ "event_source": {
1938
+ "type": "string",
1939
+ "const": "editor"
1940
+ },
1941
+ "event_display_name": {
1942
+ "type": "string",
1943
+ "const": "K-AI Opened"
1944
+ },
1945
+ "interaction": {
1946
+ "type": "object",
1947
+ "additionalProperties": false,
1948
+ "required": ["location", "trigger", "type"],
1949
+ "properties": {
1950
+ "location": {
1951
+ "type": "string",
1952
+ "const": "kai"
1953
+ },
1954
+ "trigger": {
1955
+ "allOf": [
1956
+ {
1957
+ "$ref": "#/definitions/InteractionTrigger"
1958
+ },
1959
+ {
1960
+ "const": "user"
1961
+ }
1962
+ ]
1963
+ },
1964
+ "type": {
1965
+ "allOf": [
1966
+ {
1967
+ "$ref": "#/definitions/InteractionType"
1968
+ },
1969
+ {
1970
+ "const": "click"
1971
+ }
1972
+ ]
1973
+ }
1974
+ }
1975
+ },
1976
+ "payload": {
1977
+ "$ref": "#/definitions/EmptyPayload"
1978
+ }
1979
+ }
1980
+ },
1981
+ "workflowMonitorOpened": {
1982
+ "type": "object",
1983
+ "additionalProperties": false,
1984
+ "required": [
1985
+ "event_name",
1986
+ "event_source",
1987
+ "event_display_name",
1988
+ "interaction",
1989
+ "payload"
1990
+ ],
1991
+ "properties": {
1992
+ "event_name": {
1993
+ "type": "string",
1994
+ "const": "workflow_monitor_opened"
1995
+ },
1996
+ "event_source": {
1997
+ "type": "string",
1998
+ "const": "editor"
1999
+ },
2000
+ "event_display_name": {
2001
+ "type": "string",
2002
+ "const": "Workflow Monitor opened"
2003
+ },
2004
+ "interaction": {
2005
+ "type": "object",
2006
+ "additionalProperties": false,
2007
+ "required": ["location", "trigger", "type"],
2008
+ "properties": {
2009
+ "location": {
2010
+ "type": "string",
2011
+ "const": "workflow_monitor"
2012
+ },
2013
+ "trigger": {
2014
+ "allOf": [
2015
+ {
2016
+ "$ref": "#/definitions/InteractionTrigger"
2017
+ },
2018
+ {
2019
+ "const": "user"
2020
+ }
2021
+ ]
2022
+ },
2023
+ "type": {
2024
+ "allOf": [
2025
+ {
2026
+ "$ref": "#/definitions/InteractionType"
2027
+ },
2028
+ {
2029
+ "const": "click"
2030
+ }
2031
+ ]
2032
+ }
2033
+ }
2034
+ },
2035
+ "payload": {
2036
+ "$ref": "#/definitions/EmptyPayload"
2037
+ }
2038
+ }
2039
+ },
2040
+ "versionHistoryOpened": {
2041
+ "type": "object",
2042
+ "additionalProperties": false,
2043
+ "required": [
2044
+ "event_name",
2045
+ "event_source",
2046
+ "event_display_name",
2047
+ "interaction",
2048
+ "payload"
2049
+ ],
2050
+ "properties": {
2051
+ "event_name": {
2052
+ "type": "string",
2053
+ "const": "version_history_opened"
2054
+ },
2055
+ "event_source": {
2056
+ "type": "string",
2057
+ "const": "editor"
2058
+ },
2059
+ "event_display_name": {
2060
+ "type": "string",
2061
+ "const": "Version History opened"
2062
+ },
2063
+ "interaction": {
2064
+ "type": "object",
2065
+ "additionalProperties": false,
2066
+ "required": ["location", "trigger", "type"],
2067
+ "properties": {
2068
+ "location": {
2069
+ "type": "string",
2070
+ "const": "workflow_toolbar"
2071
+ },
2072
+ "trigger": {
2073
+ "allOf": [
2074
+ {
2075
+ "$ref": "#/definitions/InteractionTrigger"
2076
+ },
2077
+ {
2078
+ "const": "user"
2079
+ }
2080
+ ]
2081
+ },
2082
+ "type": {
2083
+ "allOf": [
2084
+ {
2085
+ "$ref": "#/definitions/InteractionType"
2086
+ },
2087
+ {
2088
+ "const": "click"
2089
+ }
2090
+ ]
2091
+ },
2092
+ "ui_element": {
2093
+ "type": "string",
2094
+ "const": "dropdown_menu"
2095
+ }
2096
+ }
2097
+ },
2098
+ "payload": {
2099
+ "$ref": "#/definitions/EmptyPayload"
2100
+ }
2101
+ }
2102
+ },
2103
+ "actionUndoneToolbar": {
2104
+ "type": "object",
2105
+ "additionalProperties": false,
2106
+ "required": [
2107
+ "event_name",
2108
+ "event_source",
2109
+ "event_display_name",
2110
+ "interaction",
2111
+ "payload"
2112
+ ],
2113
+ "properties": {
2114
+ "event_name": {
2115
+ "type": "string",
2116
+ "const": "action_undone"
2117
+ },
2118
+ "event_source": {
2119
+ "type": "string",
2120
+ "const": "editor"
2121
+ },
2122
+ "event_display_name": {
2123
+ "type": "string",
2124
+ "const": "Action Undone"
2125
+ },
2126
+ "interaction": {
2127
+ "type": "object",
2128
+ "additionalProperties": false,
2129
+ "required": ["location", "trigger", "type"],
2130
+ "properties": {
2131
+ "location": {
2132
+ "type": "string",
2133
+ "const": "workflow_toolbar"
2134
+ },
2135
+ "trigger": {
2136
+ "allOf": [
2137
+ {
2138
+ "$ref": "#/definitions/InteractionTrigger"
2139
+ },
2140
+ {
2141
+ "const": "user"
2142
+ }
2143
+ ]
2144
+ },
2145
+ "type": {
2146
+ "allOf": [
2147
+ {
2148
+ "$ref": "#/definitions/InteractionType"
2149
+ },
2150
+ {
2151
+ "const": "click"
2152
+ }
2153
+ ]
2154
+ }
2155
+ }
2156
+ },
2157
+ "payload": {
2158
+ "$ref": "#/definitions/EmptyPayload"
2159
+ }
2160
+ }
2161
+ },
2162
+ "actionUndoneKeyboard": {
2163
+ "type": "object",
2164
+ "additionalProperties": false,
2165
+ "required": [
2166
+ "event_name",
2167
+ "event_source",
2168
+ "event_display_name",
2169
+ "interaction",
2170
+ "payload"
2171
+ ],
2172
+ "properties": {
2173
+ "event_name": {
2174
+ "type": "string",
2175
+ "const": "action_undone"
2176
+ },
2177
+ "event_source": {
2178
+ "type": "string",
2179
+ "const": "editor"
2180
+ },
2181
+ "event_display_name": {
2182
+ "type": "string",
2183
+ "const": "Action Undone"
2184
+ },
2185
+ "interaction": {
2186
+ "type": "object",
2187
+ "additionalProperties": false,
2188
+ "required": ["location", "trigger", "type"],
2189
+ "properties": {
2190
+ "location": {
2191
+ "type": "string",
2192
+ "const": "global"
2193
+ },
2194
+ "trigger": {
2195
+ "allOf": [
2196
+ {
2197
+ "$ref": "#/definitions/InteractionTrigger"
2198
+ },
2199
+ {
2200
+ "const": "user"
2201
+ }
2202
+ ]
2203
+ },
2204
+ "type": {
2205
+ "allOf": [
2206
+ {
2207
+ "$ref": "#/definitions/InteractionType"
2208
+ },
2209
+ {
2210
+ "const": "shortcut"
2211
+ }
2212
+ ]
2213
+ }
2214
+ }
2215
+ },
2216
+ "payload": {
2217
+ "$ref": "#/definitions/EmptyPayload"
2218
+ }
2219
+ }
2220
+ },
2221
+ "actionRedoneToolbar": {
2222
+ "type": "object",
2223
+ "additionalProperties": false,
2224
+ "required": [
2225
+ "event_name",
2226
+ "event_source",
2227
+ "event_display_name",
2228
+ "interaction",
2229
+ "payload"
2230
+ ],
2231
+ "properties": {
2232
+ "event_name": {
2233
+ "type": "string",
2234
+ "const": "action_redone"
2235
+ },
2236
+ "event_source": {
2237
+ "type": "string",
2238
+ "const": "editor"
2239
+ },
2240
+ "event_display_name": {
2241
+ "type": "string",
2242
+ "const": "Action Redone"
2243
+ },
2244
+ "interaction": {
2245
+ "type": "object",
2246
+ "additionalProperties": false,
2247
+ "required": ["location", "trigger", "type"],
2248
+ "properties": {
2249
+ "location": {
2250
+ "type": "string",
2251
+ "const": "workflow_toolbar"
2252
+ },
2253
+ "trigger": {
2254
+ "allOf": [
2255
+ {
2256
+ "$ref": "#/definitions/InteractionTrigger"
2257
+ },
2258
+ {
2259
+ "const": "user"
2260
+ }
2261
+ ]
2262
+ },
2263
+ "type": {
2264
+ "allOf": [
2265
+ {
2266
+ "$ref": "#/definitions/InteractionType"
2267
+ },
2268
+ {
2269
+ "const": "click"
2270
+ }
2271
+ ]
2272
+ }
2273
+ }
2274
+ },
2275
+ "payload": {
2276
+ "$ref": "#/definitions/EmptyPayload"
2277
+ }
2278
+ }
2279
+ },
2280
+ "actionRedoneKeyboard": {
2281
+ "type": "object",
2282
+ "additionalProperties": false,
2283
+ "required": [
2284
+ "event_name",
2285
+ "event_source",
2286
+ "event_display_name",
2287
+ "interaction",
2288
+ "payload"
2289
+ ],
2290
+ "properties": {
2291
+ "event_name": {
2292
+ "type": "string",
2293
+ "const": "action_redone"
2294
+ },
2295
+ "event_source": {
2296
+ "type": "string",
2297
+ "const": "editor"
2298
+ },
2299
+ "event_display_name": {
2300
+ "type": "string",
2301
+ "const": "Action Redone"
2302
+ },
2303
+ "interaction": {
2304
+ "type": "object",
2305
+ "additionalProperties": false,
2306
+ "required": ["location", "trigger", "type"],
2307
+ "properties": {
2308
+ "location": {
2309
+ "type": "string",
2310
+ "const": "global"
2311
+ },
2312
+ "trigger": {
2313
+ "allOf": [
2314
+ {
2315
+ "$ref": "#/definitions/InteractionTrigger"
2316
+ },
2317
+ {
2318
+ "const": "user"
2319
+ }
2320
+ ]
2321
+ },
2322
+ "type": {
2323
+ "allOf": [
2324
+ {
2325
+ "$ref": "#/definitions/InteractionType"
2326
+ },
2327
+ {
2328
+ "const": "shortcut"
2329
+ }
2330
+ ]
2331
+ }
2332
+ }
2333
+ },
2334
+ "payload": {
2335
+ "$ref": "#/definitions/EmptyPayload"
2336
+ }
2337
+ }
2338
+ },
2339
+ "versionCreated": {
2340
+ "type": "object",
2341
+ "additionalProperties": false,
2342
+ "required": [
2343
+ "event_name",
2344
+ "event_source",
2345
+ "event_display_name",
2346
+ "interaction",
2347
+ "payload"
2348
+ ],
2349
+ "properties": {
2350
+ "event_name": {
2351
+ "type": "string",
2352
+ "const": "version_created"
2353
+ },
2354
+ "event_source": {
2355
+ "type": "string",
2356
+ "const": "editor"
2357
+ },
2358
+ "event_display_name": {
2359
+ "type": "string",
2360
+ "const": "Version Created"
2361
+ },
2362
+ "interaction": {
2363
+ "type": "object",
2364
+ "additionalProperties": false,
2365
+ "required": ["location", "trigger", "type"],
2366
+ "properties": {
2367
+ "location": {
2368
+ "type": "string",
2369
+ "const": "version_history"
2370
+ },
2371
+ "trigger": {
2372
+ "allOf": [
2373
+ {
2374
+ "$ref": "#/definitions/InteractionTrigger"
2375
+ },
2376
+ {
2377
+ "const": "user"
2378
+ }
2379
+ ]
2380
+ },
2381
+ "type": {
2382
+ "allOf": [
2383
+ {
2384
+ "$ref": "#/definitions/InteractionType"
2385
+ },
2386
+ {
2387
+ "const": "click"
2388
+ }
2389
+ ]
2390
+ }
2391
+ }
2392
+ },
2393
+ "payload": {
2394
+ "$ref": "#/definitions/EmptyPayload"
118
2395
  }
119
2396
  }
120
2397
  },
121
- "hint_shown": {
122
- "type": "object",
123
- "additionalProperties": false,
124
- "required": ["autotrigger"],
125
- "properties": {
126
- "autotrigger": { "$ref": "#/definitions/HintIdPayload" }
127
- }
128
- },
129
- "hint_closed": {
2398
+ "sessionEnded": {
130
2399
  "type": "object",
131
2400
  "additionalProperties": false,
132
- "required": ["hint_button_"],
2401
+ "required": [
2402
+ "event_name",
2403
+ "event_source",
2404
+ "event_display_name",
2405
+ "interaction",
2406
+ "payload"
2407
+ ],
133
2408
  "properties": {
134
- "hint_button_": { "$ref": "#/definitions/HintIdPayload" }
2409
+ "event_name": {
2410
+ "type": "string",
2411
+ "const": "session_ended"
2412
+ },
2413
+ "event_source": {
2414
+ "type": "string",
2415
+ "const": "editor"
2416
+ },
2417
+ "event_display_name": {
2418
+ "type": "string",
2419
+ "const": "Editor Session End"
2420
+ },
2421
+ "interaction": {
2422
+ "type": "object",
2423
+ "additionalProperties": false,
2424
+ "required": ["location", "trigger", "type"],
2425
+ "properties": {
2426
+ "location": {
2427
+ "type": "string",
2428
+ "const": "global"
2429
+ },
2430
+ "trigger": {
2431
+ "allOf": [
2432
+ {
2433
+ "$ref": "#/definitions/InteractionTrigger"
2434
+ },
2435
+ {
2436
+ "const": "user"
2437
+ }
2438
+ ]
2439
+ },
2440
+ "type": {
2441
+ "allOf": [
2442
+ {
2443
+ "$ref": "#/definitions/InteractionType"
2444
+ },
2445
+ {
2446
+ "const": "click"
2447
+ }
2448
+ ]
2449
+ }
2450
+ }
2451
+ },
2452
+ "payload": {
2453
+ "$ref": "#/definitions/SessionEndedPayload"
2454
+ }
135
2455
  }
136
2456
  },
137
- "configuration_completed": {
2457
+ "sessionInterrupted": {
138
2458
  "type": "object",
139
2459
  "additionalProperties": false,
140
- "required": ["nodedialog_button_apply", "nodedialog_click_autoapply"],
2460
+ "required": [
2461
+ "event_name",
2462
+ "event_source",
2463
+ "event_display_name",
2464
+ "interaction",
2465
+ "payload"
2466
+ ],
141
2467
  "properties": {
142
- "nodedialog_button_apply": {
143
- "$ref": "#/definitions/ConfigurationCompletedPayload"
2468
+ "event_name": {
2469
+ "type": "string",
2470
+ "const": "session_interrupted"
144
2471
  },
145
- "nodedialog_click_autoapply": {
146
- "$ref": "#/definitions/ConfigurationCompletedPayload"
2472
+ "event_source": {
2473
+ "type": "string",
2474
+ "const": "editor"
2475
+ },
2476
+ "event_display_name": {
2477
+ "type": "string",
2478
+ "const": "Editor Session Interrupted"
2479
+ },
2480
+ "interaction": {
2481
+ "type": "object",
2482
+ "additionalProperties": false,
2483
+ "required": ["location", "trigger", "type"],
2484
+ "properties": {
2485
+ "location": {
2486
+ "type": "string",
2487
+ "const": "global"
2488
+ },
2489
+ "trigger": {
2490
+ "allOf": [
2491
+ {
2492
+ "$ref": "#/definitions/InteractionTrigger"
2493
+ },
2494
+ {
2495
+ "const": "system"
2496
+ }
2497
+ ]
2498
+ },
2499
+ "type": {
2500
+ "allOf": [
2501
+ {
2502
+ "$ref": "#/definitions/InteractionType"
2503
+ },
2504
+ {
2505
+ "const": "auto"
2506
+ }
2507
+ ]
2508
+ }
2509
+ }
2510
+ },
2511
+ "payload": {
2512
+ "$ref": "#/definitions/EmptyPayload"
147
2513
  }
148
2514
  }
149
2515
  },
150
- "layouteditor_opened": {
2516
+ "sessionResumed": {
151
2517
  "type": "object",
152
2518
  "additionalProperties": false,
153
2519
  "required": [
154
- "canvas_ctxmenu_openlayouteditor",
155
- "keyboard_shortcut_openlayouteditor",
156
- "wftoolbar_button_openlayouteditor"
2520
+ "event_name",
2521
+ "event_source",
2522
+ "event_display_name",
2523
+ "interaction",
2524
+ "payload"
157
2525
  ],
158
2526
  "properties": {
159
- "canvas_ctxmenu_openlayouteditor": {
160
- "$ref": "#/definitions/EmptyPayload"
2527
+ "event_name": {
2528
+ "type": "string",
2529
+ "const": "session_resumed"
161
2530
  },
162
- "keyboard_shortcut_openlayouteditor": {
163
- "$ref": "#/definitions/EmptyPayload"
2531
+ "event_source": {
2532
+ "type": "string",
2533
+ "const": "editor"
2534
+ },
2535
+ "event_display_name": {
2536
+ "type": "string",
2537
+ "const": "Editor Session Resumed"
2538
+ },
2539
+ "interaction": {
2540
+ "type": "object",
2541
+ "additionalProperties": false,
2542
+ "required": ["location", "trigger", "type"],
2543
+ "properties": {
2544
+ "location": {
2545
+ "type": "string",
2546
+ "const": "global"
2547
+ },
2548
+ "trigger": {
2549
+ "allOf": [
2550
+ {
2551
+ "$ref": "#/definitions/InteractionTrigger"
2552
+ },
2553
+ {
2554
+ "const": "system"
2555
+ }
2556
+ ]
2557
+ },
2558
+ "type": {
2559
+ "allOf": [
2560
+ {
2561
+ "$ref": "#/definitions/InteractionType"
2562
+ },
2563
+ {
2564
+ "const": "auto"
2565
+ }
2566
+ ]
2567
+ }
2568
+ }
164
2569
  },
165
- "wftoolbar_button_openlayouteditor": {
2570
+ "payload": {
166
2571
  "$ref": "#/definitions/EmptyPayload"
167
2572
  }
168
2573
  }
169
2574
  },
170
- "annotation_created": {
2575
+ "containerNodeCreatedCtxMenu": {
171
2576
  "type": "object",
172
2577
  "additionalProperties": false,
173
2578
  "required": [
174
- "canvas_ctxmenu_newannotation",
175
- "canvas_ctxmenu_kaiexplain"
2579
+ "event_name",
2580
+ "event_source",
2581
+ "event_display_name",
2582
+ "interaction",
2583
+ "payload"
176
2584
  ],
177
2585
  "properties": {
178
- "canvas_ctxmenu_newannotation": {
179
- "$ref": "#/definitions/EmptyPayload"
2586
+ "event_name": {
2587
+ "type": "string",
2588
+ "const": "containernode_created"
180
2589
  },
181
- "canvas_ctxmenu_kaiexplain": {
182
- "$ref": "#/definitions/EmptyPayload"
2590
+ "event_source": {
2591
+ "type": "string",
2592
+ "const": "editor"
2593
+ },
2594
+ "event_display_name": {
2595
+ "type": "string",
2596
+ "const": "Container Node Created"
2597
+ },
2598
+ "interaction": {
2599
+ "type": "object",
2600
+ "additionalProperties": false,
2601
+ "required": ["location", "trigger", "type"],
2602
+ "properties": {
2603
+ "location": {
2604
+ "type": "string",
2605
+ "const": "canvas"
2606
+ },
2607
+ "trigger": {
2608
+ "allOf": [
2609
+ {
2610
+ "$ref": "#/definitions/InteractionTrigger"
2611
+ },
2612
+ {
2613
+ "const": "user"
2614
+ }
2615
+ ]
2616
+ },
2617
+ "type": {
2618
+ "allOf": [
2619
+ {
2620
+ "$ref": "#/definitions/InteractionType"
2621
+ },
2622
+ {
2623
+ "const": "click"
2624
+ }
2625
+ ]
2626
+ },
2627
+ "ui_element": {
2628
+ "type": "string",
2629
+ "const": "context_menu"
2630
+ }
2631
+ }
2632
+ },
2633
+ "payload": {
2634
+ "$ref": "#/definitions/ContainerNodeCreatedPayload"
183
2635
  }
184
2636
  }
185
2637
  },
186
- "workflow_saved": {
2638
+ "containerNodeCreatedKeyboard": {
187
2639
  "type": "object",
188
2640
  "additionalProperties": false,
189
- "required": ["wftoolbar_button_save", "keyboard_shortcut_savewf"],
2641
+ "required": [
2642
+ "event_name",
2643
+ "event_source",
2644
+ "event_display_name",
2645
+ "interaction",
2646
+ "payload"
2647
+ ],
190
2648
  "properties": {
191
- "wftoolbar_button_save": {
192
- "$ref": "#/definitions/WorkflowSavedPayload"
2649
+ "event_name": {
2650
+ "type": "string",
2651
+ "const": "containernode_created"
193
2652
  },
194
- "keyboard_shortcut_savewf": {
195
- "$ref": "#/definitions/WorkflowSavedPayload"
2653
+ "event_source": {
2654
+ "type": "string",
2655
+ "const": "editor"
2656
+ },
2657
+ "event_display_name": {
2658
+ "type": "string",
2659
+ "const": "Container Node Created"
2660
+ },
2661
+ "interaction": {
2662
+ "type": "object",
2663
+ "additionalProperties": false,
2664
+ "required": ["location", "trigger", "type"],
2665
+ "properties": {
2666
+ "location": {
2667
+ "type": "string",
2668
+ "const": "canvas"
2669
+ },
2670
+ "trigger": {
2671
+ "allOf": [
2672
+ {
2673
+ "$ref": "#/definitions/InteractionTrigger"
2674
+ },
2675
+ {
2676
+ "const": "user"
2677
+ }
2678
+ ]
2679
+ },
2680
+ "type": {
2681
+ "allOf": [
2682
+ {
2683
+ "$ref": "#/definitions/InteractionType"
2684
+ },
2685
+ {
2686
+ "const": "shortcut"
2687
+ }
2688
+ ]
2689
+ }
2690
+ }
2691
+ },
2692
+ "payload": {
2693
+ "$ref": "#/definitions/ContainerNodeCreatedPayload"
196
2694
  }
197
2695
  }
198
2696
  },
199
- "connection_created": {
2697
+ "hintShown": {
200
2698
  "type": "object",
201
2699
  "additionalProperties": false,
202
2700
  "required": [
203
- "port_dragdrop_fwd",
204
- "port_dragdrop_bwd",
205
- "keyboard_shortcut_connectnodes",
206
- "keyboard_shortcut_connectflowvar",
207
- "canvas_ctxmenu_connectnodes",
208
- "canvas_ctxmenu_connectflowvar"
2701
+ "event_name",
2702
+ "event_source",
2703
+ "event_display_name",
2704
+ "interaction",
2705
+ "payload"
209
2706
  ],
210
2707
  "properties": {
211
- "port_dragdrop_fwd": {
212
- "$ref": "#/definitions/ConnectionCreatedPayload"
213
- },
214
- "port_dragdrop_bwd": {
215
- "$ref": "#/definitions/ConnectionCreatedPayload"
2708
+ "event_name": {
2709
+ "type": "string",
2710
+ "const": "hint_shown"
216
2711
  },
217
- "keyboard_shortcut_connectnodes": {
218
- "$ref": "#/definitions/EmptyPayload"
2712
+ "event_source": {
2713
+ "type": "string",
2714
+ "const": "editor"
219
2715
  },
220
- "keyboard_shortcut_connectflowvar": {
221
- "$ref": "#/definitions/EmptyPayload"
2716
+ "event_display_name": {
2717
+ "type": "string",
2718
+ "const": "Hint Shown"
222
2719
  },
223
- "canvas_ctxmenu_connectnodes": {
224
- "$ref": "#/definitions/EmptyPayload"
2720
+ "interaction": {
2721
+ "type": "object",
2722
+ "additionalProperties": false,
2723
+ "required": ["location", "trigger", "type"],
2724
+ "properties": {
2725
+ "location": {
2726
+ "type": "string",
2727
+ "const": "global"
2728
+ },
2729
+ "trigger": {
2730
+ "allOf": [
2731
+ {
2732
+ "$ref": "#/definitions/InteractionTrigger"
2733
+ },
2734
+ {
2735
+ "const": "system"
2736
+ }
2737
+ ]
2738
+ },
2739
+ "type": {
2740
+ "allOf": [
2741
+ {
2742
+ "$ref": "#/definitions/InteractionType"
2743
+ },
2744
+ {
2745
+ "const": "auto"
2746
+ }
2747
+ ]
2748
+ }
2749
+ }
225
2750
  },
226
- "canvas_ctxmenu_connectflowvar": {
227
- "$ref": "#/definitions/EmptyPayload"
2751
+ "payload": {
2752
+ "$ref": "#/definitions/HintIdPayload"
228
2753
  }
229
2754
  }
230
2755
  },
231
- "node_created": {
2756
+ "hintClosed": {
232
2757
  "type": "object",
233
2758
  "additionalProperties": false,
234
2759
  "required": [
235
- "noderepo_dragdrop_",
236
- "noderepo_doubleclick_",
237
- "noderepo_keyboard_enter",
238
- "canvas_dragdrop_datafile",
239
- "floatingcanvastools_button_addnodebyfile",
240
- "explorer_dragdrop_",
241
- "qam_click_",
242
- "qam_keyboard_enter",
243
- "kaiqa_dragdrop_",
244
- "kaiqa_keyboard_enter"
2760
+ "event_name",
2761
+ "event_source",
2762
+ "event_display_name",
2763
+ "interaction",
2764
+ "payload"
245
2765
  ],
246
2766
  "properties": {
247
- "noderepo_dragdrop_": {
248
- "$ref": "#/definitions/NodeCreated_Base"
249
- },
250
- "noderepo_doubleclick_": {
251
- "$ref": "#/definitions/NodeCreated_WithOptionalConnectedTo"
2767
+ "event_name": {
2768
+ "type": "string",
2769
+ "const": "hint_closed"
252
2770
  },
253
- "noderepo_keyboard_enter": {
254
- "$ref": "#/definitions/NodeCreated_WithOptionalConnectedTo"
2771
+ "event_source": {
2772
+ "type": "string",
2773
+ "const": "editor"
255
2774
  },
256
- "canvas_dragdrop_datafile": {
257
- "$ref": "#/definitions/NodeCreated_Base"
2775
+ "event_display_name": {
2776
+ "type": "string",
2777
+ "const": "Hint Closed"
258
2778
  },
259
- "floatingcanvastools_button_addnodebyfile": {
260
- "$ref": "#/definitions/NodeCreated_Base"
2779
+ "interaction": {
2780
+ "type": "object",
2781
+ "additionalProperties": false,
2782
+ "required": ["location", "trigger", "type"],
2783
+ "properties": {
2784
+ "location": {
2785
+ "type": "string",
2786
+ "const": "hint"
2787
+ },
2788
+ "trigger": {
2789
+ "allOf": [
2790
+ {
2791
+ "$ref": "#/definitions/InteractionTrigger"
2792
+ },
2793
+ {
2794
+ "const": "user"
2795
+ }
2796
+ ]
2797
+ },
2798
+ "type": {
2799
+ "allOf": [
2800
+ {
2801
+ "$ref": "#/definitions/InteractionType"
2802
+ },
2803
+ {
2804
+ "const": "click"
2805
+ }
2806
+ ]
2807
+ }
2808
+ }
261
2809
  },
262
- "explorer_dragdrop_": {
263
- "$ref": "#/definitions/NodeCreated_Base"
2810
+ "payload": {
2811
+ "$ref": "#/definitions/HintIdPayload"
2812
+ }
2813
+ }
2814
+ },
2815
+ "configurationCompletedApply": {
2816
+ "type": "object",
2817
+ "additionalProperties": false,
2818
+ "required": [
2819
+ "event_name",
2820
+ "event_source",
2821
+ "event_display_name",
2822
+ "interaction",
2823
+ "payload"
2824
+ ],
2825
+ "properties": {
2826
+ "event_name": {
2827
+ "type": "string",
2828
+ "const": "configuration_completed"
264
2829
  },
265
- "qam_click_": {
266
- "$ref": "#/definitions/NodeCreated_WithOptionalConnectedToPorts"
2830
+ "event_source": {
2831
+ "type": "string",
2832
+ "const": "editor"
267
2833
  },
268
- "qam_keyboard_enter": {
269
- "$ref": "#/definitions/NodeCreated_WithOptionalConnectedToPorts"
2834
+ "event_display_name": {
2835
+ "type": "string",
2836
+ "const": "Configuration Completed"
270
2837
  },
271
- "kaiqa_dragdrop_": {
272
- "$ref": "#/definitions/NodeCreated_Base"
2838
+ "interaction": {
2839
+ "type": "object",
2840
+ "additionalProperties": false,
2841
+ "required": ["location", "trigger", "type"],
2842
+ "properties": {
2843
+ "location": {
2844
+ "type": "string",
2845
+ "const": "node_configuration"
2846
+ },
2847
+ "trigger": {
2848
+ "allOf": [
2849
+ {
2850
+ "$ref": "#/definitions/InteractionTrigger"
2851
+ },
2852
+ {
2853
+ "const": "user"
2854
+ }
2855
+ ]
2856
+ },
2857
+ "type": {
2858
+ "allOf": [
2859
+ {
2860
+ "$ref": "#/definitions/InteractionType"
2861
+ },
2862
+ {
2863
+ "const": "click"
2864
+ }
2865
+ ]
2866
+ }
2867
+ }
273
2868
  },
274
- "kaiqa_keyboard_enter": {
275
- "$ref": "#/definitions/NodeCreated_Base"
2869
+ "payload": {
2870
+ "$ref": "#/definitions/ConfigurationCompletedPayload"
276
2871
  }
277
2872
  }
278
2873
  },
279
- "qam_opened": {
2874
+ "configurationCompletedAutoApply": {
280
2875
  "type": "object",
281
2876
  "additionalProperties": false,
282
2877
  "required": [
283
- "port_dragdrop_fwd",
284
- "port_dragdrop_bwd",
285
- "canvas_doubleclick_",
286
- "keyboard_shortcut_",
287
- "canvas_ctxmenu_quickaddnode"
2878
+ "event_name",
2879
+ "event_source",
2880
+ "event_display_name",
2881
+ "interaction",
2882
+ "payload"
288
2883
  ],
289
2884
  "properties": {
290
- "port_dragdrop_fwd": {
291
- "$ref": "#/definitions/QAMOpened_Payload"
2885
+ "event_name": {
2886
+ "type": "string",
2887
+ "const": "configuration_completed"
292
2888
  },
293
- "port_dragdrop_bwd": {
294
- "$ref": "#/definitions/QAMOpened_Payload"
2889
+ "event_source": {
2890
+ "type": "string",
2891
+ "const": "editor"
295
2892
  },
296
- "canvas_doubleclick_": {
297
- "$ref": "#/definitions/EmptyPayload"
2893
+ "event_display_name": {
2894
+ "type": "string",
2895
+ "const": "Configuration Completed"
298
2896
  },
299
- "keyboard_shortcut_": {
300
- "$ref": "#/definitions/QAMOpened_PartialPayload"
2897
+ "interaction": {
2898
+ "type": "object",
2899
+ "additionalProperties": false,
2900
+ "required": ["location", "trigger", "type"],
2901
+ "properties": {
2902
+ "location": {
2903
+ "type": "string",
2904
+ "const": "node_configuration"
2905
+ },
2906
+ "trigger": {
2907
+ "allOf": [
2908
+ {
2909
+ "$ref": "#/definitions/InteractionTrigger"
2910
+ },
2911
+ {
2912
+ "const": "user"
2913
+ }
2914
+ ]
2915
+ },
2916
+ "type": {
2917
+ "allOf": [
2918
+ {
2919
+ "$ref": "#/definitions/InteractionType"
2920
+ },
2921
+ {
2922
+ "const": "auto"
2923
+ }
2924
+ ]
2925
+ }
2926
+ }
301
2927
  },
302
- "canvas_ctxmenu_quickaddnode": {
303
- "$ref": "#/definitions/EmptyPayload"
2928
+ "payload": {
2929
+ "$ref": "#/definitions/ConfigurationCompletedPayload"
304
2930
  }
305
2931
  }
306
2932
  },
307
- "node_searched": {
2933
+ "containerNodeEnteredCanvasDoubleClick": {
308
2934
  "type": "object",
309
2935
  "additionalProperties": false,
310
- "required": ["noderepo_type_", "qam_type_"],
2936
+ "required": [
2937
+ "event_name",
2938
+ "event_source",
2939
+ "event_display_name",
2940
+ "interaction",
2941
+ "payload"
2942
+ ],
311
2943
  "properties": {
312
- "noderepo_type_": {
313
- "$ref": "#/definitions/SearchPayload"
2944
+ "event_name": {
2945
+ "type": "string",
2946
+ "const": "containernode_entered"
314
2947
  },
315
- "qam_type_": {
316
- "$ref": "#/definitions/SearchPayload"
2948
+ "event_source": {
2949
+ "type": "string",
2950
+ "const": "editor"
2951
+ },
2952
+ "event_display_name": {
2953
+ "type": "string",
2954
+ "const": "Container Node Entered"
2955
+ },
2956
+ "interaction": {
2957
+ "type": "object",
2958
+ "additionalProperties": false,
2959
+ "required": ["location", "trigger", "type"],
2960
+ "properties": {
2961
+ "location": {
2962
+ "type": "string",
2963
+ "const": "canvas"
2964
+ },
2965
+ "trigger": {
2966
+ "allOf": [
2967
+ {
2968
+ "$ref": "#/definitions/InteractionTrigger"
2969
+ },
2970
+ {
2971
+ "const": "user"
2972
+ }
2973
+ ]
2974
+ },
2975
+ "type": {
2976
+ "allOf": [
2977
+ {
2978
+ "$ref": "#/definitions/InteractionType"
2979
+ },
2980
+ {
2981
+ "const": "double_click"
2982
+ }
2983
+ ]
2984
+ },
2985
+ "ui_element": {
2986
+ "type": "string",
2987
+ "const": "node"
2988
+ }
2989
+ }
2990
+ },
2991
+ "payload": {
2992
+ "$ref": "#/definitions/ContainerNodeTypePayload"
317
2993
  }
318
2994
  }
319
2995
  },
320
- "sidepanel_opened": {
2996
+ "containerNodeEnteredKeyboard": {
321
2997
  "type": "object",
322
2998
  "additionalProperties": false,
323
2999
  "required": [
324
- "sidepanel_click_info",
325
- "sidepanel_click_noderepo",
326
- "sidepanel_click_explorer",
327
- "sidepanel_click_kai",
328
- "sidepanel_click_monitor",
329
- "wftoolbar_dropdownmenu_versionhistory"
3000
+ "event_name",
3001
+ "event_source",
3002
+ "event_display_name",
3003
+ "interaction",
3004
+ "payload"
330
3005
  ],
331
3006
  "properties": {
332
- "sidepanel_click_info": {
333
- "$ref": "#/definitions/EmptyPayload"
334
- },
335
- "sidepanel_click_noderepo": {
336
- "$ref": "#/definitions/EmptyPayload"
3007
+ "event_name": {
3008
+ "type": "string",
3009
+ "const": "containernode_entered"
337
3010
  },
338
- "sidepanel_click_explorer": {
339
- "$ref": "#/definitions/EmptyPayload"
3011
+ "event_source": {
3012
+ "type": "string",
3013
+ "const": "editor"
340
3014
  },
341
- "sidepanel_click_kai": {
342
- "$ref": "#/definitions/EmptyPayload"
3015
+ "event_display_name": {
3016
+ "type": "string",
3017
+ "const": "Container Node Entered"
343
3018
  },
344
- "sidepanel_click_monitor": {
345
- "$ref": "#/definitions/EmptyPayload"
3019
+ "interaction": {
3020
+ "type": "object",
3021
+ "additionalProperties": false,
3022
+ "required": ["location", "trigger", "type"],
3023
+ "properties": {
3024
+ "location": {
3025
+ "type": "string",
3026
+ "const": "canvas"
3027
+ },
3028
+ "trigger": {
3029
+ "allOf": [
3030
+ {
3031
+ "$ref": "#/definitions/InteractionTrigger"
3032
+ },
3033
+ {
3034
+ "const": "user"
3035
+ }
3036
+ ]
3037
+ },
3038
+ "type": {
3039
+ "allOf": [
3040
+ {
3041
+ "$ref": "#/definitions/InteractionType"
3042
+ },
3043
+ {
3044
+ "const": "shortcut"
3045
+ }
3046
+ ]
3047
+ }
3048
+ }
346
3049
  },
347
- "wftoolbar_dropdownmenu_versionhistory": {
348
- "$ref": "#/definitions/EmptyPayload"
3050
+ "payload": {
3051
+ "$ref": "#/definitions/ContainerNodeTypePayload"
349
3052
  }
350
3053
  }
351
3054
  },
352
- "action_undone": {
3055
+ "containerNodeEnteredCtxMenu": {
353
3056
  "type": "object",
354
3057
  "additionalProperties": false,
355
- "required": ["wftoolbar_button_", "keyboard_shortcut_"],
3058
+ "required": [
3059
+ "event_name",
3060
+ "event_source",
3061
+ "event_display_name",
3062
+ "interaction",
3063
+ "payload"
3064
+ ],
356
3065
  "properties": {
357
- "wftoolbar_button_": {
358
- "$ref": "#/definitions/EmptyPayload"
3066
+ "event_name": {
3067
+ "type": "string",
3068
+ "const": "containernode_entered"
359
3069
  },
360
- "keyboard_shortcut_": {
361
- "$ref": "#/definitions/EmptyPayload"
3070
+ "event_source": {
3071
+ "type": "string",
3072
+ "const": "editor"
3073
+ },
3074
+ "event_display_name": {
3075
+ "type": "string",
3076
+ "const": "Container Node Entered"
3077
+ },
3078
+ "interaction": {
3079
+ "type": "object",
3080
+ "additionalProperties": false,
3081
+ "required": ["location", "trigger", "type"],
3082
+ "properties": {
3083
+ "location": {
3084
+ "type": "string",
3085
+ "const": "canvas"
3086
+ },
3087
+ "trigger": {
3088
+ "allOf": [
3089
+ {
3090
+ "$ref": "#/definitions/InteractionTrigger"
3091
+ },
3092
+ {
3093
+ "const": "user"
3094
+ }
3095
+ ]
3096
+ },
3097
+ "type": {
3098
+ "allOf": [
3099
+ {
3100
+ "$ref": "#/definitions/InteractionType"
3101
+ },
3102
+ {
3103
+ "const": "click"
3104
+ }
3105
+ ]
3106
+ },
3107
+ "ui_element": {
3108
+ "type": "string",
3109
+ "const": "context_menu"
3110
+ }
3111
+ }
3112
+ },
3113
+ "payload": {
3114
+ "$ref": "#/definitions/ContainerNodeTypePayload"
362
3115
  }
363
3116
  }
364
3117
  },
365
- "action_redone": {
3118
+ "containerNodeExitedKeyboard": {
366
3119
  "type": "object",
367
3120
  "additionalProperties": false,
368
- "required": ["wftoolbar_button_", "keyboard_shortcut_"],
3121
+ "required": [
3122
+ "event_name",
3123
+ "event_source",
3124
+ "event_display_name",
3125
+ "interaction",
3126
+ "payload"
3127
+ ],
369
3128
  "properties": {
370
- "wftoolbar_button_": {
371
- "$ref": "#/definitions/EmptyPayload"
3129
+ "event_name": {
3130
+ "type": "string",
3131
+ "const": "containernode_exited"
372
3132
  },
373
- "keyboard_shortcut_": {
374
- "$ref": "#/definitions/EmptyPayload"
3133
+ "event_source": {
3134
+ "type": "string",
3135
+ "const": "editor"
3136
+ },
3137
+ "event_display_name": {
3138
+ "type": "string",
3139
+ "const": "Container Node Exited"
3140
+ },
3141
+ "interaction": {
3142
+ "type": "object",
3143
+ "additionalProperties": false,
3144
+ "required": ["location", "trigger", "type"],
3145
+ "properties": {
3146
+ "location": {
3147
+ "type": "string",
3148
+ "const": "global"
3149
+ },
3150
+ "trigger": {
3151
+ "allOf": [
3152
+ {
3153
+ "$ref": "#/definitions/InteractionTrigger"
3154
+ },
3155
+ {
3156
+ "const": "user"
3157
+ }
3158
+ ]
3159
+ },
3160
+ "type": {
3161
+ "allOf": [
3162
+ {
3163
+ "$ref": "#/definitions/InteractionType"
3164
+ },
3165
+ {
3166
+ "const": "shortcut"
3167
+ }
3168
+ ]
3169
+ }
3170
+ }
3171
+ },
3172
+ "payload": {
3173
+ "$ref": "#/definitions/ContainerNodeTypePayload"
375
3174
  }
376
3175
  }
377
3176
  },
378
- "version_created": {
3177
+ "containerNodeExitedToolbar": {
379
3178
  "type": "object",
380
3179
  "additionalProperties": false,
381
- "required": ["versionhistorypanel_button_"],
3180
+ "required": [
3181
+ "event_name",
3182
+ "event_source",
3183
+ "event_display_name",
3184
+ "interaction",
3185
+ "payload"
3186
+ ],
382
3187
  "properties": {
383
- "versionhistorypanel_button_": {
384
- "$ref": "#/definitions/EmptyPayload"
3188
+ "event_name": {
3189
+ "type": "string",
3190
+ "const": "containernode_exited"
3191
+ },
3192
+ "event_source": {
3193
+ "type": "string",
3194
+ "const": "editor"
3195
+ },
3196
+ "event_display_name": {
3197
+ "type": "string",
3198
+ "const": "Container Node Exited"
3199
+ },
3200
+ "interaction": {
3201
+ "type": "object",
3202
+ "additionalProperties": false,
3203
+ "required": ["location", "trigger", "type"],
3204
+ "properties": {
3205
+ "location": {
3206
+ "type": "string",
3207
+ "const": "workflow_toolbar"
3208
+ },
3209
+ "trigger": {
3210
+ "allOf": [
3211
+ {
3212
+ "$ref": "#/definitions/InteractionTrigger"
3213
+ },
3214
+ {
3215
+ "const": "user"
3216
+ }
3217
+ ]
3218
+ },
3219
+ "type": {
3220
+ "allOf": [
3221
+ {
3222
+ "$ref": "#/definitions/InteractionType"
3223
+ },
3224
+ {
3225
+ "const": "click"
3226
+ }
3227
+ ]
3228
+ }
3229
+ }
3230
+ },
3231
+ "payload": {
3232
+ "$ref": "#/definitions/ContainerNodeTypePayload"
385
3233
  }
386
3234
  }
387
3235
  },
388
- "containernode_entered": {
3236
+ "nodeCreatedCanvasDragDropFile": {
389
3237
  "type": "object",
390
3238
  "additionalProperties": false,
391
3239
  "required": [
392
- "component_doubleclick_ctrl",
393
- "component_ctxmenu_",
394
- "keyboard_shortcut_"
3240
+ "event_name",
3241
+ "event_source",
3242
+ "event_display_name",
3243
+ "interaction",
3244
+ "payload"
395
3245
  ],
396
3246
  "properties": {
397
- "component_doubleclick_ctrl": {
398
- "$ref": "#/definitions/ContainerNodeNavigationPayload"
3247
+ "event_name": {
3248
+ "type": "string",
3249
+ "const": "node_created"
3250
+ },
3251
+ "event_source": {
3252
+ "type": "string",
3253
+ "const": "editor"
399
3254
  },
400
- "component_ctxmenu_": {
401
- "$ref": "#/definitions/ContainerNodeNavigationPayload"
3255
+ "event_display_name": {
3256
+ "type": "string",
3257
+ "const": "Node Created"
3258
+ },
3259
+ "interaction": {
3260
+ "type": "object",
3261
+ "additionalProperties": false,
3262
+ "required": ["location", "trigger", "type"],
3263
+ "properties": {
3264
+ "location": {
3265
+ "type": "string",
3266
+ "const": "canvas"
3267
+ },
3268
+ "trigger": {
3269
+ "allOf": [
3270
+ {
3271
+ "$ref": "#/definitions/InteractionTrigger"
3272
+ },
3273
+ {
3274
+ "const": "user"
3275
+ }
3276
+ ]
3277
+ },
3278
+ "type": {
3279
+ "allOf": [
3280
+ {
3281
+ "$ref": "#/definitions/InteractionType"
3282
+ },
3283
+ {
3284
+ "const": "drag_drop"
3285
+ }
3286
+ ]
3287
+ }
3288
+ }
402
3289
  },
403
- "keyboard_shortcut_": {
404
- "$ref": "#/definitions/ContainerNodeNavigationPayload"
3290
+ "payload": {
3291
+ "$ref": "#/definitions/NodeCreated_Base"
405
3292
  }
406
3293
  }
407
3294
  },
408
- "containernode_exited": {
3295
+ "nodeCreatedFloatingToolsAddByFile": {
409
3296
  "type": "object",
410
3297
  "additionalProperties": false,
411
- "required": ["wftoolbar_button_workflow", "keyboard_shortcut_"],
3298
+ "required": [
3299
+ "event_name",
3300
+ "event_source",
3301
+ "event_display_name",
3302
+ "interaction",
3303
+ "payload"
3304
+ ],
412
3305
  "properties": {
413
- "wftoolbar_button_workflow": {
414
- "$ref": "#/definitions/ContainerNodeNavigationPayload"
3306
+ "event_name": {
3307
+ "type": "string",
3308
+ "const": "node_created"
3309
+ },
3310
+ "event_source": {
3311
+ "type": "string",
3312
+ "const": "editor"
415
3313
  },
416
- "keyboard_shortcut_": {
417
- "$ref": "#/definitions/ContainerNodeNavigationPayload"
3314
+ "event_display_name": {
3315
+ "type": "string",
3316
+ "const": "Node Created"
3317
+ },
3318
+ "interaction": {
3319
+ "type": "object",
3320
+ "additionalProperties": false,
3321
+ "required": ["location", "trigger", "type"],
3322
+ "properties": {
3323
+ "location": {
3324
+ "type": "string",
3325
+ "const": "floating_canvas_tools"
3326
+ },
3327
+ "trigger": {
3328
+ "allOf": [
3329
+ {
3330
+ "$ref": "#/definitions/InteractionTrigger"
3331
+ },
3332
+ {
3333
+ "const": "user"
3334
+ }
3335
+ ]
3336
+ },
3337
+ "type": {
3338
+ "allOf": [
3339
+ {
3340
+ "$ref": "#/definitions/InteractionType"
3341
+ },
3342
+ {
3343
+ "const": "click"
3344
+ }
3345
+ ]
3346
+ }
3347
+ }
3348
+ },
3349
+ "payload": {
3350
+ "$ref": "#/definitions/NodeCreated_Base"
418
3351
  }
419
3352
  }
420
3353
  }
@@ -427,45 +3360,16 @@
427
3360
  "additionalProperties": false,
428
3361
  "maxProperties": 0
429
3362
  },
430
- "ContainerNodeCreatedPayload": {
431
- "type": "object",
432
- "additionalProperties": false,
433
- "required": ["nodeType", "childrenNodes"],
434
- "properties": {
435
- "nodeType": {
436
- "type": "string",
437
- "enum": ["component", "metanode"]
438
- },
439
- "childrenNodes": {
440
- "type": "array",
441
- "items": {
442
- "type": "object",
443
- "additionalProperties": false,
444
- "required": ["nodeType"],
445
- "properties": {
446
- "nodeType": {
447
- "type": "string",
448
- "enum": ["component", "metanode", "node"]
449
- },
450
- "nodeFactoryId": {
451
- "type": "string"
452
- }
453
- }
454
- }
455
- }
456
- }
457
- },
458
- "ConfigurationCompletedPayload": {
3363
+ "KaiPromptedPayload": {
459
3364
  "type": "object",
460
3365
  "additionalProperties": false,
461
- "required": ["state"],
462
3366
  "properties": {
463
3367
  "nodeFactoryId": {
464
3368
  "type": "string"
465
3369
  },
466
- "state": {
3370
+ "nodeType": {
467
3371
  "type": "string",
468
- "enum": ["success", "failed_invalid_setting"]
3372
+ "enum": ["node", "component", "metanode"]
469
3373
  }
470
3374
  }
471
3375
  },
@@ -502,8 +3406,12 @@
502
3406
  "ConnectionCreatedPayload": {
503
3407
  "type": "object",
504
3408
  "additionalProperties": false,
505
- "required": ["fromNode", "toNode"],
3409
+ "required": ["fromNode", "toNode", "direction"],
506
3410
  "properties": {
3411
+ "direction": {
3412
+ "type": "string",
3413
+ "enum": ["forwards", "backwards"]
3414
+ },
507
3415
  "fromNode": {
508
3416
  "$ref": "#/definitions/ConnectionCreated_NodePayload"
509
3417
  },
@@ -512,26 +3420,12 @@
512
3420
  }
513
3421
  }
514
3422
  },
515
- "KaiPromptedPayload": {
516
- "type": "object",
517
- "additionalProperties": false,
518
- "properties": {
519
- "nodeFactoryId": {
520
- "type": "string"
521
- },
522
- "nodeType": {
523
- "type": "string",
524
- "enum": ["node", "component", "metanode"]
525
- }
526
- }
527
- },
528
3423
  "NodeOrComponent": {
529
3424
  "type": "object",
530
3425
  "additionalProperties": false,
531
3426
  "properties": {
532
3427
  "nodeFactoryId": {
533
- "type": "string",
534
- "$comment": "asdasd"
3428
+ "type": "string"
535
3429
  },
536
3430
  "nodeHubId": {
537
3431
  "type": "string"
@@ -566,7 +3460,7 @@
566
3460
  "ConnectedTo_WithPorts": {
567
3461
  "type": "object",
568
3462
  "additionalProperties": false,
569
- "required": ["nodeType", "nodeFactoryId", "direction"],
3463
+ "required": ["nodeType", "nodeFactoryId"],
570
3464
  "properties": {
571
3465
  "nodeType": {
572
3466
  "type": "string",
@@ -580,10 +3474,6 @@
580
3474
  },
581
3475
  "nodePortId": {
582
3476
  "type": "string"
583
- },
584
- "direction": {
585
- "type": "string",
586
- "enum": ["forward", "backward"]
587
3477
  }
588
3478
  }
589
3479
  },
@@ -638,8 +3528,12 @@
638
3528
  "QAMOpened_Payload": {
639
3529
  "type": "object",
640
3530
  "additionalProperties": false,
641
- "required": ["connectedTo"],
3531
+ "required": ["connectedTo", "direction"],
642
3532
  "properties": {
3533
+ "direction": {
3534
+ "type": "string",
3535
+ "enum": ["forwards", "backwards"]
3536
+ },
643
3537
  "connectedTo": {
644
3538
  "$ref": "#/definitions/ConnectedTo_WithPorts"
645
3539
  }
@@ -673,20 +3567,97 @@
673
3567
  "additionalProperties": false,
674
3568
  "required": ["hintId"],
675
3569
  "properties": {
676
- "hintId": { "type": "string" }
3570
+ "hintId": {
3571
+ "type": "string"
3572
+ }
677
3573
  }
678
3574
  },
679
- "ContainerNodeNavigationPayload": {
3575
+ "ContainerNodeCreatedPayload": {
680
3576
  "type": "object",
681
3577
  "additionalProperties": false,
682
- "required": ["nodeType"],
3578
+ "required": ["nodeType", "childrenNodes"],
683
3579
  "properties": {
684
3580
  "nodeType": {
685
3581
  "type": "string",
686
3582
  "enum": ["component", "metanode"]
687
3583
  },
688
- "nodeHubId": {
3584
+ "childrenNodes": {
3585
+ "type": "array",
3586
+ "items": {
3587
+ "type": "object",
3588
+ "additionalProperties": false,
3589
+ "required": ["nodeType"],
3590
+ "properties": {
3591
+ "nodeType": {
3592
+ "type": "string",
3593
+ "enum": ["component", "metanode", "node"]
3594
+ },
3595
+ "nodeFactoryId": {
3596
+ "type": "string"
3597
+ }
3598
+ }
3599
+ }
3600
+ }
3601
+ }
3602
+ },
3603
+ "ConfigurationCompletedPayload": {
3604
+ "type": "object",
3605
+ "additionalProperties": false,
3606
+ "required": ["state"],
3607
+ "properties": {
3608
+ "nodeFactoryId": {
689
3609
  "type": "string"
3610
+ },
3611
+ "state": {
3612
+ "type": "string",
3613
+ "enum": ["success", "failed_invalid_setting"]
3614
+ }
3615
+ }
3616
+ },
3617
+ "ContainerNodeTypePayload": {
3618
+ "type": "object",
3619
+ "additionalProperties": false,
3620
+ "required": ["nodeType"],
3621
+ "properties": {
3622
+ "nodeType": {
3623
+ "type": "string",
3624
+ "enum": ["component", "metanode"]
3625
+ }
3626
+ }
3627
+ },
3628
+ "InteractionTrigger": {
3629
+ "type": "string",
3630
+ "enum": ["user", "system"]
3631
+ },
3632
+ "InteractionType": {
3633
+ "type": "string",
3634
+ "enum": [
3635
+ "click",
3636
+ "double_click",
3637
+ "shortcut",
3638
+ "key_press",
3639
+ "drag_drop",
3640
+ "auto"
3641
+ ]
3642
+ },
3643
+ "ConnectionCreatedAutoconnectPayload": {
3644
+ "type": "object",
3645
+ "additionalProperties": false,
3646
+ "required": ["flowVariable"],
3647
+ "properties": {
3648
+ "flowVariable": {
3649
+ "type": "boolean"
3650
+ }
3651
+ }
3652
+ },
3653
+ "SessionEndedPayload": {
3654
+ "type": "object",
3655
+ "additionalProperties": false,
3656
+ "required": ["type"],
3657
+ "properties": {
3658
+ "type": {
3659
+ "type": "string",
3660
+ "enum": ["timedout", "user_closed"]
690
3661
  }
691
3662
  }
692
3663
  }