@elyra/pipeline-schemas 3.0.91 → 3.0.93
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.
- package/common-canvas/canvas-info/canvas-info-v3-schema.json +86 -70
- package/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json +59 -49
- package/common-pipeline/pipeline-flow/pipeline-flow-v3-schema.json +18 -19
- package/package.json +1 -1
- package/types/canvas-info-v3.ts +84 -63
- package/types/index.d.ts +27 -12
- package/types/palette-v3.ts +32 -38
- package/types/pipeline-flow-v3.ts +62 -57
|
@@ -157,37 +157,9 @@
|
|
|
157
157
|
"additionalProperties": true
|
|
158
158
|
},
|
|
159
159
|
"zoom": {
|
|
160
|
-
"
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
"type": "integer",
|
|
164
|
-
"deprecated": true
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
"description": "A zoom object containing translation and scale amounts.",
|
|
168
|
-
"type": "object",
|
|
169
|
-
"properties": {
|
|
170
|
-
"x": {
|
|
171
|
-
"description": "Horizontal translation amount. Positive value moves right, negative to the left.",
|
|
172
|
-
"type": "number"
|
|
173
|
-
},
|
|
174
|
-
"y": {
|
|
175
|
-
"description": "Vertical translation amount. Positive value moves down, negative moves up.",
|
|
176
|
-
"type": "number"
|
|
177
|
-
},
|
|
178
|
-
"k": {
|
|
179
|
-
"description": "Scale amount. 1.0 is the standard scale amount. Smaller values zoom out. Larger values zoom in.",
|
|
180
|
-
"type": "number"
|
|
181
|
-
}
|
|
182
|
-
},
|
|
183
|
-
"required": [
|
|
184
|
-
"x",
|
|
185
|
-
"y",
|
|
186
|
-
"k"
|
|
187
|
-
],
|
|
188
|
-
"additionalProperties": false
|
|
189
|
-
}
|
|
190
|
-
]
|
|
160
|
+
"description": "X/Y pan and scale amounts for the canvas.",
|
|
161
|
+
"type": "object",
|
|
162
|
+
"$ref": "./pipeline-flow-ui-v3-schema.json#/definitions/zoom_object_def"
|
|
191
163
|
},
|
|
192
164
|
"app_data": {
|
|
193
165
|
"description": "Object containing app-specific data",
|
|
@@ -228,11 +200,11 @@
|
|
|
228
200
|
"type": "string"
|
|
229
201
|
},
|
|
230
202
|
"label": {
|
|
231
|
-
"description": "Label of this canvas
|
|
203
|
+
"description": "Label of this canvas node.",
|
|
232
204
|
"type": "string"
|
|
233
205
|
},
|
|
234
206
|
"description": {
|
|
235
|
-
"description": "Description of this canvas
|
|
207
|
+
"description": "Description of this canvas node.",
|
|
236
208
|
"type": "string"
|
|
237
209
|
},
|
|
238
210
|
"class_name": {
|
|
@@ -248,23 +220,33 @@
|
|
|
248
220
|
"type": ["string", "object"]
|
|
249
221
|
},
|
|
250
222
|
"x_pos": {
|
|
251
|
-
"description": "
|
|
223
|
+
"description": "X coordinate position of the node on the canvas. Calculated by Common Canvas for automatically positioned nodes.",
|
|
252
224
|
"type": "number"
|
|
253
225
|
},
|
|
254
226
|
"y_pos": {
|
|
255
|
-
"description": "
|
|
227
|
+
"description": "Y coordinate position of the node on the canvas. Calculated by Common Canvas for automatically positioned nodes.",
|
|
256
228
|
"type": "number"
|
|
257
229
|
},
|
|
258
|
-
"
|
|
259
|
-
"description": "
|
|
230
|
+
"height": {
|
|
231
|
+
"description": "Height of the node calculated by Common Canvas based on what customization options are enabled.",
|
|
232
|
+
"type": "number",
|
|
233
|
+
"readOnly": true
|
|
234
|
+
},
|
|
235
|
+
"width": {
|
|
236
|
+
"description": "Width of the node calculated by Common Canvas based on what customization options are enabled.",
|
|
237
|
+
"type": "number",
|
|
238
|
+
"readOnly": true
|
|
239
|
+
},
|
|
240
|
+
"isResized": {
|
|
241
|
+
"description": "Indicates whether a node has been resized or not. If true, resizeWidth and resizeHeight are used for node display. If false, the default width and height are used.",
|
|
260
242
|
"type": "boolean"
|
|
261
243
|
},
|
|
262
|
-
"
|
|
263
|
-
"description": "Height of resized node. The node will be displayed with this height, when
|
|
244
|
+
"resizeHeight": {
|
|
245
|
+
"description": "Height of resized node. The node will be displayed with this height, when isResized is true, in preference to its default height.",
|
|
264
246
|
"type": "number"
|
|
265
247
|
},
|
|
266
|
-
"
|
|
267
|
-
"description": "Width of resized node. The node will be displayed with this width, when
|
|
248
|
+
"resizeWidth": {
|
|
249
|
+
"description": "Width of resized node. The node will be displayed with this width, when isResized is true, in preference to its default width.",
|
|
268
250
|
"type": "number"
|
|
269
251
|
},
|
|
270
252
|
"attributes": {
|
|
@@ -306,7 +288,11 @@
|
|
|
306
288
|
"type": "object",
|
|
307
289
|
"additionalProperties": true
|
|
308
290
|
}
|
|
309
|
-
}
|
|
291
|
+
},
|
|
292
|
+
"additionalProperties": false,
|
|
293
|
+
"required": [
|
|
294
|
+
"id"
|
|
295
|
+
]
|
|
310
296
|
},
|
|
311
297
|
"canvas_execution_node": {
|
|
312
298
|
"allOf": [
|
|
@@ -348,7 +334,6 @@
|
|
|
348
334
|
}
|
|
349
335
|
},
|
|
350
336
|
"required": [
|
|
351
|
-
"id",
|
|
352
337
|
"type",
|
|
353
338
|
"op"
|
|
354
339
|
],
|
|
@@ -428,7 +413,6 @@
|
|
|
428
413
|
}
|
|
429
414
|
},
|
|
430
415
|
"required": [
|
|
431
|
-
"id",
|
|
432
416
|
"type",
|
|
433
417
|
"subflow_ref"
|
|
434
418
|
],
|
|
@@ -476,7 +460,6 @@
|
|
|
476
460
|
}
|
|
477
461
|
},
|
|
478
462
|
"required": [
|
|
479
|
-
"id",
|
|
480
463
|
"type",
|
|
481
464
|
"outputs"
|
|
482
465
|
],
|
|
@@ -501,7 +484,6 @@
|
|
|
501
484
|
"$ref": "#/definitions/canvas_ports"
|
|
502
485
|
},
|
|
503
486
|
"outputs": {
|
|
504
|
-
"description": "An optional set of output ports, typically used for directing error information out of the binding node.",
|
|
505
487
|
"$ref": "#/definitions/canvas_ports"
|
|
506
488
|
},
|
|
507
489
|
"app_data": {
|
|
@@ -527,7 +509,6 @@
|
|
|
527
509
|
}
|
|
528
510
|
},
|
|
529
511
|
"required": [
|
|
530
|
-
"id",
|
|
531
512
|
"type",
|
|
532
513
|
"inputs"
|
|
533
514
|
],
|
|
@@ -574,7 +555,6 @@
|
|
|
574
555
|
}
|
|
575
556
|
},
|
|
576
557
|
"required": [
|
|
577
|
-
"id",
|
|
578
558
|
"type",
|
|
579
559
|
"inputs"
|
|
580
560
|
],
|
|
@@ -750,12 +730,12 @@
|
|
|
750
730
|
"description": "CSS class(es) to apply to the comment",
|
|
751
731
|
"type": "string"
|
|
752
732
|
},
|
|
753
|
-
"
|
|
754
|
-
"description": "
|
|
733
|
+
"contentType": {
|
|
734
|
+
"description": "The type of content either regular or markdown or WYSIWYG",
|
|
755
735
|
"type": "string"
|
|
756
736
|
},
|
|
757
737
|
"formats": {
|
|
758
|
-
"description": "
|
|
738
|
+
"description": "An array of format objects that describe the comment appearance.",
|
|
759
739
|
"type": "array",
|
|
760
740
|
"items": {
|
|
761
741
|
"type": "object",
|
|
@@ -815,11 +795,11 @@
|
|
|
815
795
|
"commentLink"
|
|
816
796
|
]
|
|
817
797
|
},
|
|
818
|
-
"
|
|
798
|
+
"srcNodeId": {
|
|
819
799
|
"description": "ID of the comment this link connects from.",
|
|
820
800
|
"type": "string"
|
|
821
801
|
},
|
|
822
|
-
"
|
|
802
|
+
"trgNodeId": {
|
|
823
803
|
"description": "ID of the node this link connects to.",
|
|
824
804
|
"type": "string"
|
|
825
805
|
},
|
|
@@ -842,7 +822,7 @@
|
|
|
842
822
|
}
|
|
843
823
|
},
|
|
844
824
|
"required": [
|
|
845
|
-
"
|
|
825
|
+
"id"
|
|
846
826
|
],
|
|
847
827
|
"additionalProperties": true
|
|
848
828
|
},
|
|
@@ -860,35 +840,71 @@
|
|
|
860
840
|
"nodeLink"
|
|
861
841
|
]
|
|
862
842
|
},
|
|
863
|
-
"
|
|
843
|
+
"srcNodeId": {
|
|
864
844
|
"description": "ID of the source node this link connects from.",
|
|
865
845
|
"type": "string"
|
|
866
846
|
},
|
|
867
|
-
"
|
|
847
|
+
"srcNodePortId": {
|
|
868
848
|
"description": "Optional ID of the port on the source node this link connects from. Defaults to the first port if omitted.",
|
|
869
849
|
"type": "string"
|
|
870
850
|
},
|
|
871
|
-
"
|
|
851
|
+
"trgNodeId": {
|
|
872
852
|
"description": "ID of the target node this link connects to.",
|
|
873
853
|
"type": "string"
|
|
874
854
|
},
|
|
875
|
-
"
|
|
855
|
+
"trgNodePortId": {
|
|
876
856
|
"description": "Optional ID of the port on the target node this link connects from. Defaults to the first port if omitted.",
|
|
877
857
|
"type": "string"
|
|
878
858
|
},
|
|
879
|
-
"
|
|
880
|
-
"
|
|
881
|
-
"
|
|
859
|
+
"srcPos": {
|
|
860
|
+
"description": "The coordinate position on the canvas of the source of the link, when this source end of the link is detached",
|
|
861
|
+
"type": "object",
|
|
862
|
+
"properties": {
|
|
863
|
+
"x_pos": {
|
|
864
|
+
"type": "number"
|
|
865
|
+
},
|
|
866
|
+
"y_pos": {
|
|
867
|
+
"type": "number"
|
|
868
|
+
}
|
|
869
|
+
},
|
|
870
|
+
"required": [
|
|
871
|
+
"x_pos",
|
|
872
|
+
"y_pos"
|
|
873
|
+
],
|
|
874
|
+
"additionalProperties": false
|
|
882
875
|
},
|
|
883
|
-
"
|
|
884
|
-
"
|
|
885
|
-
"
|
|
876
|
+
"trgPos": {
|
|
877
|
+
"description": "The coordinate position on the canvas of the target of the link, when this target end of the this link is detached",
|
|
878
|
+
"type": "object",
|
|
879
|
+
"properties": {
|
|
880
|
+
"x_pos": {
|
|
881
|
+
"type": "number"
|
|
882
|
+
},
|
|
883
|
+
"y_pos": {
|
|
884
|
+
"type": "number"
|
|
885
|
+
}
|
|
886
|
+
},
|
|
887
|
+
"required": [
|
|
888
|
+
"x_pos",
|
|
889
|
+
"y_pos"
|
|
890
|
+
],
|
|
891
|
+
"additionalProperties": false
|
|
892
|
+
},
|
|
893
|
+
"srcObj": {
|
|
894
|
+
"description": "The source object for the link. This property is added by Common Canvas during processing of links.",
|
|
895
|
+
"$ref": "#/definitions/canvas_node",
|
|
896
|
+
"readOnly": true
|
|
886
897
|
},
|
|
887
|
-
"
|
|
898
|
+
"trgNode": {
|
|
899
|
+
"description": "The target object for the link. This property is added by Common Canvas during processing of links.",
|
|
900
|
+
"$ref": "#/definitions/canvas_node",
|
|
901
|
+
"readOnly": true
|
|
902
|
+
},
|
|
903
|
+
"linkName": {
|
|
888
904
|
"description": "optional link name (used in parameter sets when there are multiple input sources)",
|
|
889
905
|
"type": "string"
|
|
890
906
|
},
|
|
891
|
-
"
|
|
907
|
+
"typeAttr": {
|
|
892
908
|
"description": "Optional type attribute for the link. This can store optional atribute info.",
|
|
893
909
|
"type": "string"
|
|
894
910
|
},
|
|
@@ -920,7 +936,7 @@
|
|
|
920
936
|
}
|
|
921
937
|
},
|
|
922
938
|
"required": [
|
|
923
|
-
"
|
|
939
|
+
"id"
|
|
924
940
|
],
|
|
925
941
|
"additionalProperties": false
|
|
926
942
|
},
|
|
@@ -938,11 +954,11 @@
|
|
|
938
954
|
"associationLink"
|
|
939
955
|
]
|
|
940
956
|
},
|
|
941
|
-
"
|
|
957
|
+
"srcNodeId": {
|
|
942
958
|
"description": "ID of the source node of the association.",
|
|
943
959
|
"type": "string"
|
|
944
960
|
},
|
|
945
|
-
"
|
|
961
|
+
"trgNodeId": {
|
|
946
962
|
"description": "ID of the target node of the association.",
|
|
947
963
|
"type": "string"
|
|
948
964
|
},
|
|
@@ -966,7 +982,7 @@
|
|
|
966
982
|
}
|
|
967
983
|
},
|
|
968
984
|
"required": [
|
|
969
|
-
"
|
|
985
|
+
"id"
|
|
970
986
|
],
|
|
971
987
|
"additionalProperties": false
|
|
972
988
|
}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"additionalProperties": true,
|
|
8
8
|
"definitions": {
|
|
9
9
|
"pipeline_flow_ui_def": {
|
|
10
|
-
"description": "
|
|
10
|
+
"description": "Pipeline flow UI properties.",
|
|
11
11
|
"type": "object",
|
|
12
12
|
"properties": {
|
|
13
13
|
"name": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"additionalProperties": true
|
|
27
27
|
},
|
|
28
28
|
"pipeline_ui_def": {
|
|
29
|
-
"description": "Pipeline
|
|
29
|
+
"description": "Pipeline UI properties",
|
|
30
30
|
"type": "object",
|
|
31
31
|
"properties": {
|
|
32
32
|
"description": {
|
|
@@ -34,37 +34,9 @@
|
|
|
34
34
|
"type": "string"
|
|
35
35
|
},
|
|
36
36
|
"zoom": {
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"type": "integer",
|
|
41
|
-
"deprecated": true
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"description": "A zoom object containing translation and scale amounts.",
|
|
45
|
-
"type": "object",
|
|
46
|
-
"properties": {
|
|
47
|
-
"x": {
|
|
48
|
-
"description": "Horizontal translation amount. Positive value moves right, negative to the left.",
|
|
49
|
-
"type": "number"
|
|
50
|
-
},
|
|
51
|
-
"y": {
|
|
52
|
-
"description": "Vertical translation amount. Positive value moves down, negative moves up.",
|
|
53
|
-
"type": "number"
|
|
54
|
-
},
|
|
55
|
-
"k": {
|
|
56
|
-
"description": "Scale amount. 1.0 is the standard scale amount. Smaller values zoom out. Larger values zoom in.",
|
|
57
|
-
"type": "number"
|
|
58
|
-
}
|
|
59
|
-
},
|
|
60
|
-
"required": [
|
|
61
|
-
"x",
|
|
62
|
-
"y",
|
|
63
|
-
"k"
|
|
64
|
-
],
|
|
65
|
-
"additionalProperties": false
|
|
66
|
-
}
|
|
67
|
-
]
|
|
37
|
+
"description": "X/Y pan and scale amounts for the canvas.",
|
|
38
|
+
"type": "object",
|
|
39
|
+
"$ref": "#/definitions/zoom_object_def"
|
|
68
40
|
},
|
|
69
41
|
"comments": {
|
|
70
42
|
"description": "Array of Comments, optionally associated with nodes",
|
|
@@ -78,8 +50,41 @@
|
|
|
78
50
|
},
|
|
79
51
|
"additionalProperties": true
|
|
80
52
|
},
|
|
81
|
-
"
|
|
82
|
-
"
|
|
53
|
+
"zoom_object_def": {
|
|
54
|
+
"oneOf": [
|
|
55
|
+
{
|
|
56
|
+
"description": "Deprecated - use zoom object instead. Scale factor as a percentage. 100% is standard scale amount. Smaller values zoom out. Larger values zoom in.",
|
|
57
|
+
"type": "integer",
|
|
58
|
+
"deprecated": true
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"description": "A zoom object containing translation and scale amounts.",
|
|
62
|
+
"type": "object",
|
|
63
|
+
"properties": {
|
|
64
|
+
"x": {
|
|
65
|
+
"description": "Horizontal translation amount. Positive value moves right, negative to the left.",
|
|
66
|
+
"type": "number"
|
|
67
|
+
},
|
|
68
|
+
"y": {
|
|
69
|
+
"description": "Vertical translation amount. Positive value moves down, negative moves up.",
|
|
70
|
+
"type": "number"
|
|
71
|
+
},
|
|
72
|
+
"k": {
|
|
73
|
+
"description": "Scale amount. 1.0 is the standard scale amount. Smaller values zoom out. Larger values zoom in.",
|
|
74
|
+
"type": "number"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"required": [
|
|
78
|
+
"x",
|
|
79
|
+
"y",
|
|
80
|
+
"k"
|
|
81
|
+
],
|
|
82
|
+
"additionalProperties": false
|
|
83
|
+
}
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
"port_ui_def": {
|
|
87
|
+
"description": "Port UI properties ",
|
|
83
88
|
"type": "object",
|
|
84
89
|
"properties": {
|
|
85
90
|
"cardinality": {
|
|
@@ -113,8 +118,8 @@
|
|
|
113
118
|
},
|
|
114
119
|
"additionalProperties": true
|
|
115
120
|
},
|
|
116
|
-
"
|
|
117
|
-
"description": "
|
|
121
|
+
"node_ui_def": {
|
|
122
|
+
"description": "Node UI properties.",
|
|
118
123
|
"type": "object",
|
|
119
124
|
"properties": {
|
|
120
125
|
"label": {
|
|
@@ -184,7 +189,7 @@
|
|
|
184
189
|
"type": "array",
|
|
185
190
|
"minItems": 0,
|
|
186
191
|
"items": {
|
|
187
|
-
"$ref": "#/definitions/
|
|
192
|
+
"$ref": "#/definitions/association_link_def"
|
|
188
193
|
}
|
|
189
194
|
},
|
|
190
195
|
"messages": {
|
|
@@ -226,8 +231,8 @@
|
|
|
226
231
|
},
|
|
227
232
|
"additionalProperties": true
|
|
228
233
|
},
|
|
229
|
-
"
|
|
230
|
-
"description": "
|
|
234
|
+
"node_link_ui_def": {
|
|
235
|
+
"description": "Node link UI properties.",
|
|
231
236
|
"type": "object",
|
|
232
237
|
"properties": {
|
|
233
238
|
"description": {
|
|
@@ -254,14 +259,14 @@
|
|
|
254
259
|
},
|
|
255
260
|
"additionalProperties": true
|
|
256
261
|
},
|
|
257
|
-
"
|
|
258
|
-
"description": "Runtime
|
|
262
|
+
"runtime_ui_def": {
|
|
263
|
+
"description": "Runtime UI properties.",
|
|
259
264
|
"type": "object",
|
|
260
265
|
"properties": {},
|
|
261
266
|
"additionalProperties": true
|
|
262
267
|
},
|
|
263
|
-
"
|
|
264
|
-
"description": "
|
|
268
|
+
"association_link_def": {
|
|
269
|
+
"description": "Association link properties",
|
|
265
270
|
"type": "object",
|
|
266
271
|
"properties": {
|
|
267
272
|
"id": {
|
|
@@ -386,7 +391,7 @@
|
|
|
386
391
|
}
|
|
387
392
|
}
|
|
388
393
|
},
|
|
389
|
-
{ "$ref": "#/definitions/
|
|
394
|
+
{ "$ref": "#/definitions/decoration_shared_properties" }
|
|
390
395
|
]
|
|
391
396
|
},
|
|
392
397
|
"label_decoration_def": {
|
|
@@ -424,7 +429,7 @@
|
|
|
424
429
|
}
|
|
425
430
|
}
|
|
426
431
|
},
|
|
427
|
-
{ "$ref": "#/definitions/
|
|
432
|
+
{ "$ref": "#/definitions/decoration_shared_properties" }
|
|
428
433
|
]
|
|
429
434
|
},
|
|
430
435
|
"shape_decoration_def": {
|
|
@@ -439,7 +444,7 @@
|
|
|
439
444
|
}
|
|
440
445
|
}
|
|
441
446
|
},
|
|
442
|
-
{ "$ref": "#/definitions/
|
|
447
|
+
{ "$ref": "#/definitions/decoration_shared_properties" }
|
|
443
448
|
]
|
|
444
449
|
},
|
|
445
450
|
"jsx_decoration_def": {
|
|
@@ -454,10 +459,10 @@
|
|
|
454
459
|
}
|
|
455
460
|
}
|
|
456
461
|
},
|
|
457
|
-
{ "$ref": "#/definitions/
|
|
462
|
+
{ "$ref": "#/definitions/decoration_shared_properties" }
|
|
458
463
|
]
|
|
459
464
|
},
|
|
460
|
-
"
|
|
465
|
+
"decoration_shared_properties": {
|
|
461
466
|
"description": "Shared properties across all types of decoration.",
|
|
462
467
|
"type": "object",
|
|
463
468
|
"properties": {
|
|
@@ -535,6 +540,7 @@
|
|
|
535
540
|
]
|
|
536
541
|
},
|
|
537
542
|
"comment_def": {
|
|
543
|
+
"description": "Comment definition",
|
|
538
544
|
"type": "object",
|
|
539
545
|
"properties": {
|
|
540
546
|
"id": {
|
|
@@ -575,6 +581,10 @@
|
|
|
575
581
|
"description": "Comment content",
|
|
576
582
|
"type": "string"
|
|
577
583
|
},
|
|
584
|
+
"content_type": {
|
|
585
|
+
"description": "The type of content either regular or markdown or WYSIWYG",
|
|
586
|
+
"type": "string"
|
|
587
|
+
},
|
|
578
588
|
"associated_id_refs": {
|
|
579
589
|
"description": "Optional array of associated node id references",
|
|
580
590
|
"type": "array",
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
"type": "string"
|
|
177
177
|
},
|
|
178
178
|
"description": {
|
|
179
|
-
"description": "Deprecated - use description in pipeline-flow-ui-v3-schema.json#/definitions/
|
|
179
|
+
"description": "Deprecated - use description in pipeline-flow-ui-v3-schema.json#/definitions/node_ui_def instead.",
|
|
180
180
|
"type": "string",
|
|
181
181
|
"deprecated": true
|
|
182
182
|
},
|
|
@@ -211,7 +211,7 @@
|
|
|
211
211
|
"type": "object",
|
|
212
212
|
"properties": {
|
|
213
213
|
"ui_data": {
|
|
214
|
-
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/
|
|
214
|
+
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/node_ui_def"
|
|
215
215
|
}
|
|
216
216
|
},
|
|
217
217
|
"additionalProperties": true
|
|
@@ -233,7 +233,7 @@
|
|
|
233
233
|
"type": "string"
|
|
234
234
|
},
|
|
235
235
|
"description": {
|
|
236
|
-
"description": "Deprecated - use description in pipeline-flow-ui-v3-schema.json#/definitions/
|
|
236
|
+
"description": "Deprecated - use description in pipeline-flow-ui-v3-schema.json#/definitions/node_ui_def instead.",
|
|
237
237
|
"type": "string",
|
|
238
238
|
"deprecated": true
|
|
239
239
|
},
|
|
@@ -281,7 +281,7 @@
|
|
|
281
281
|
"type": "object",
|
|
282
282
|
"properties": {
|
|
283
283
|
"ui_data": {
|
|
284
|
-
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/
|
|
284
|
+
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/node_ui_def"
|
|
285
285
|
}
|
|
286
286
|
},
|
|
287
287
|
"additionalProperties": true
|
|
@@ -303,7 +303,7 @@
|
|
|
303
303
|
"type": "string"
|
|
304
304
|
},
|
|
305
305
|
"description": {
|
|
306
|
-
"description": "Deprecated - use description in pipeline-flow-ui-v3-schema.json#/definitions/
|
|
306
|
+
"description": "Deprecated - use description in pipeline-flow-ui-v3-schema.json#/definitions/node_ui_def instead.",
|
|
307
307
|
"type": "string",
|
|
308
308
|
"deprecated": true
|
|
309
309
|
},
|
|
@@ -321,7 +321,7 @@
|
|
|
321
321
|
"type": "object",
|
|
322
322
|
"properties": {
|
|
323
323
|
"ui_data": {
|
|
324
|
-
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/
|
|
324
|
+
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/node_ui_def"
|
|
325
325
|
}
|
|
326
326
|
},
|
|
327
327
|
"additionalProperties": true
|
|
@@ -359,7 +359,7 @@
|
|
|
359
359
|
"type": "string"
|
|
360
360
|
},
|
|
361
361
|
"description": {
|
|
362
|
-
"description": "Deprecated - use description in pipeline-flow-ui-v3-schema.json#/definitions/
|
|
362
|
+
"description": "Deprecated - use description in pipeline-flow-ui-v3-schema.json#/definitions/node_ui_def instead.",
|
|
363
363
|
"type": "string",
|
|
364
364
|
"deprecated": true
|
|
365
365
|
},
|
|
@@ -373,7 +373,6 @@
|
|
|
373
373
|
"$ref": "#/definitions/ports_def"
|
|
374
374
|
},
|
|
375
375
|
"outputs": {
|
|
376
|
-
"description": "An optional set of output ports, typically used for directing error information out of the binding node.",
|
|
377
376
|
"$ref": "#/definitions/ports_def"
|
|
378
377
|
},
|
|
379
378
|
"app_data": {
|
|
@@ -381,7 +380,7 @@
|
|
|
381
380
|
"type": "object",
|
|
382
381
|
"properties": {
|
|
383
382
|
"ui_data": {
|
|
384
|
-
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/
|
|
383
|
+
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/node_ui_def"
|
|
385
384
|
}
|
|
386
385
|
},
|
|
387
386
|
"additionalProperties": true
|
|
@@ -419,7 +418,7 @@
|
|
|
419
418
|
"type": "string"
|
|
420
419
|
},
|
|
421
420
|
"description": {
|
|
422
|
-
"description": "Deprecated - use description in pipeline-flow-ui-v3-schema.json#/definitions/
|
|
421
|
+
"description": "Deprecated - use description in pipeline-flow-ui-v3-schema.json#/definitions/node_ui_def instead.",
|
|
423
422
|
"type": "string",
|
|
424
423
|
"deprecated": true
|
|
425
424
|
},
|
|
@@ -458,7 +457,7 @@
|
|
|
458
457
|
"type": "object",
|
|
459
458
|
"properties": {
|
|
460
459
|
"ui_data": {
|
|
461
|
-
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/
|
|
460
|
+
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/node_ui_def"
|
|
462
461
|
}
|
|
463
462
|
},
|
|
464
463
|
"additionalProperties": true
|
|
@@ -488,7 +487,7 @@
|
|
|
488
487
|
"type": "array",
|
|
489
488
|
"minItems": 0,
|
|
490
489
|
"items": {
|
|
491
|
-
"$ref": "#/definitions/
|
|
490
|
+
"$ref": "#/definitions/node_link_def"
|
|
492
491
|
},
|
|
493
492
|
"uniqueItems": true
|
|
494
493
|
},
|
|
@@ -503,7 +502,7 @@
|
|
|
503
502
|
"type": "object",
|
|
504
503
|
"properties": {
|
|
505
504
|
"ui_data": {
|
|
506
|
-
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/
|
|
505
|
+
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/port_ui_def"
|
|
507
506
|
}
|
|
508
507
|
},
|
|
509
508
|
"additionalProperties": true
|
|
@@ -547,7 +546,7 @@
|
|
|
547
546
|
"type": "array",
|
|
548
547
|
"minItems": 1,
|
|
549
548
|
"items": {
|
|
550
|
-
"$ref": "#/definitions/
|
|
549
|
+
"$ref": "#/definitions/node_link_def"
|
|
551
550
|
},
|
|
552
551
|
"uniqueItems": true
|
|
553
552
|
},
|
|
@@ -566,7 +565,7 @@
|
|
|
566
565
|
"type": "object",
|
|
567
566
|
"properties": {
|
|
568
567
|
"ui_data": {
|
|
569
|
-
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/
|
|
568
|
+
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/port_ui_def"
|
|
570
569
|
}
|
|
571
570
|
},
|
|
572
571
|
"additionalProperties": true
|
|
@@ -577,7 +576,7 @@
|
|
|
577
576
|
],
|
|
578
577
|
"additionalProperties": false
|
|
579
578
|
},
|
|
580
|
-
"
|
|
579
|
+
"node_link_def": {
|
|
581
580
|
"description": "Node link definition",
|
|
582
581
|
"type": "object",
|
|
583
582
|
"properties": {
|
|
@@ -602,7 +601,7 @@
|
|
|
602
601
|
"type": "string"
|
|
603
602
|
},
|
|
604
603
|
"description": {
|
|
605
|
-
"description": "Deprecated - use description in pipeline-flow-ui-v3-schema.json#/definitions/
|
|
604
|
+
"description": "Deprecated - use description in pipeline-flow-ui-v3-schema.json#/definitions/node_link_ui_def instead.",
|
|
606
605
|
"type": "string",
|
|
607
606
|
"deprecated": true
|
|
608
607
|
},
|
|
@@ -611,7 +610,7 @@
|
|
|
611
610
|
"type": "object",
|
|
612
611
|
"properties": {
|
|
613
612
|
"ui_data": {
|
|
614
|
-
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/
|
|
613
|
+
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/node_link_ui_def"
|
|
615
614
|
}
|
|
616
615
|
},
|
|
617
616
|
"additionalProperties": true
|
|
@@ -643,7 +642,7 @@
|
|
|
643
642
|
"type": "object",
|
|
644
643
|
"properties": {
|
|
645
644
|
"ui_data": {
|
|
646
|
-
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/
|
|
645
|
+
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json#/definitions/runtime_ui_def"
|
|
647
646
|
}
|
|
648
647
|
},
|
|
649
648
|
"additionalProperties": true
|