@fuaran-ui/conformance 0.19.0 → 0.21.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.
- package/corpus/lenient/lenient-1521-int-slot-integral-float.expected.json +1 -0
- package/corpus/lenient/lenient-1521-int-slot-integral-float.json +1 -0
- package/corpus/lenient/lenient-1521-payload-integer-beyond-int53.expected.json +1 -0
- package/corpus/lenient/lenient-1521-payload-integer-beyond-int53.json +1 -0
- package/corpus/lenient/lenient-filterable-static-dashboard-compact.expected.json +1 -1
- package/corpus/lenient/lenient-navigate-target-self.expected.json +1 -0
- package/corpus/lenient/lenient-navigate-target-self.json +1 -0
- package/corpus/manifest.json +437 -0
- package/corpus/nodes/action-confirm-cancel.json +1 -0
- package/corpus/nodes/action-confirm.json +1 -0
- package/corpus/nodes/action-focus.json +1 -0
- package/corpus/nodes/action-navigate-bound.json +1 -0
- package/corpus/nodes/action-navigate-target.json +1 -0
- package/corpus/nodes/chart-annotation-bands.json +1 -0
- package/corpus/nodes/chart-annotation-events.json +1 -0
- package/corpus/nodes/chart-annotations.json +1 -0
- package/corpus/nodes/chart-axis-titles.json +1 -1
- package/corpus/nodes/chart-data-labels.json +1 -1
- package/corpus/nodes/chart-legend-position.json +1 -1
- package/corpus/nodes/chart-state-rows.json +1 -1
- package/corpus/nodes/chart-temporal-x.json +1 -1
- package/corpus/nodes/chart-value-format.json +1 -1
- package/corpus/nodes/custom-nonascii-keys.json +1 -0
- package/corpus/nodes/expr-params-state-selection.json +1 -0
- package/corpus/nodes/expr-scalar.json +1 -0
- package/corpus/nodes/filterable-static-dashboard.json +1 -1
- package/corpus/nodes/form-local-declared.json +1 -0
- package/corpus/nodes/format-since.json +1 -0
- package/corpus/nodes/metric-float-1e17.json +1 -0
- package/corpus/nodes/node-visible.json +1 -0
- package/corpus/nodes/now-grain.json +1 -0
- package/corpus/nodes/switch-on-transform-scalar.json +1 -0
- package/corpus/nodes/switch-predicate-only.json +1 -0
- package/corpus/nodes/switch-predicate.json +1 -0
- package/corpus/reject/reject-binding-floatseq-sentinel-case.json +1 -0
- package/corpus/reject/reject-chart-annotation-date-unparseable.json +1 -0
- package/corpus/reject/reject-chart-annotation-nonfinite.json +1 -0
- package/corpus/reject/reject-chart-annotation-range-unordered.json +1 -0
- package/corpus/reject/reject-confirm-missing-onconfirm.json +1 -0
- package/corpus/reject/reject-confirm-nested.json +1 -0
- package/corpus/reject/reject-expr-col-reference.json +1 -0
- package/corpus/reject/reject-expr-unbound-param.json +1 -0
- package/corpus/reject/reject-int-slot-fractional.json +1 -0
- package/corpus/reject/reject-int-slot-out-of-range.json +1 -0
- package/corpus/reject/reject-json-bare-nan.json +1 -0
- package/corpus/reject/reject-json-duplicate-key.json +1 -0
- package/corpus/reject/reject-json-lone-high-surrogate.json +1 -0
- package/corpus/reject/reject-json-lone-low-surrogate.json +1 -0
- package/corpus/reject/reject-json-number-empty-exponent.json +1 -0
- package/corpus/reject/reject-json-number-leading-plus.json +1 -0
- package/corpus/reject/reject-json-number-leading-zero.json +1 -0
- package/corpus/reject/reject-json-number-no-integer-part.json +1 -0
- package/corpus/reject/reject-json-number-trailing-point.json +1 -0
- package/corpus/reject/reject-json-raw-control-char.json +1 -0
- package/corpus/reject/reject-json-surrogate-pair-split.json +1 -0
- package/corpus/reject/reject-json-trailing-content.json +1 -0
- package/corpus/reject/reject-local-codec-no-inverse.json +1 -0
- package/corpus/reject/reject-local-oncommit-and-committo.json +1 -0
- package/corpus/reject/reject-navigate-target-invalid.json +1 -0
- package/corpus/reject/reject-now-grain-invalid.json +1 -0
- package/corpus/reject/reject-spark-element-nonnumeric.json +1 -0
- package/corpus/reject/reject-switch-case-match-and-when.json +1 -0
- package/corpus/reject/reject-switch-case-neither.json +1 -0
- package/corpus/schema.json +1580 -76
- package/package.json +3 -3
package/corpus/schema.json
CHANGED
|
@@ -120,6 +120,13 @@
|
|
|
120
120
|
"Popover"
|
|
121
121
|
]
|
|
122
122
|
},
|
|
123
|
+
"NavigateTarget": {
|
|
124
|
+
"type": "string",
|
|
125
|
+
"enum": [
|
|
126
|
+
"Self",
|
|
127
|
+
"Blank"
|
|
128
|
+
]
|
|
129
|
+
},
|
|
123
130
|
"CaptureSource": {
|
|
124
131
|
"type": "string",
|
|
125
132
|
"enum": [
|
|
@@ -293,6 +300,15 @@
|
|
|
293
300
|
"Year"
|
|
294
301
|
]
|
|
295
302
|
},
|
|
303
|
+
"TimeGrain": {
|
|
304
|
+
"type": "string",
|
|
305
|
+
"enum": [
|
|
306
|
+
"Second",
|
|
307
|
+
"Minute",
|
|
308
|
+
"Hour",
|
|
309
|
+
"Day"
|
|
310
|
+
]
|
|
311
|
+
},
|
|
296
312
|
"DurationUnit": {
|
|
297
313
|
"type": "string",
|
|
298
314
|
"enum": [
|
|
@@ -406,7 +422,8 @@
|
|
|
406
422
|
}
|
|
407
423
|
},
|
|
408
424
|
"required": [
|
|
409
|
-
"$type"
|
|
425
|
+
"$type",
|
|
426
|
+
"value"
|
|
410
427
|
]
|
|
411
428
|
},
|
|
412
429
|
{
|
|
@@ -507,6 +524,9 @@
|
|
|
507
524
|
"properties": {
|
|
508
525
|
"$type": {
|
|
509
526
|
"const": "Now"
|
|
527
|
+
},
|
|
528
|
+
"grain": {
|
|
529
|
+
"$ref": "#/$defs/TimeGrain"
|
|
510
530
|
}
|
|
511
531
|
},
|
|
512
532
|
"required": [
|
|
@@ -540,6 +560,12 @@
|
|
|
540
560
|
"$type": {
|
|
541
561
|
"const": "Local"
|
|
542
562
|
},
|
|
563
|
+
"codec": {
|
|
564
|
+
"$ref": "#/$defs/Format"
|
|
565
|
+
},
|
|
566
|
+
"commitTo": {
|
|
567
|
+
"type": "string"
|
|
568
|
+
},
|
|
543
569
|
"flushOn": {
|
|
544
570
|
"$ref": "#/$defs/LocalFlushTrigger"
|
|
545
571
|
},
|
|
@@ -561,7 +587,6 @@
|
|
|
561
587
|
"flushOn",
|
|
562
588
|
"format",
|
|
563
589
|
"initialFrom",
|
|
564
|
-
"onCommit",
|
|
565
590
|
"parse"
|
|
566
591
|
]
|
|
567
592
|
},
|
|
@@ -614,7 +639,9 @@
|
|
|
614
639
|
},
|
|
615
640
|
"pipeline": {
|
|
616
641
|
"type": "array",
|
|
617
|
-
"items":
|
|
642
|
+
"items": {
|
|
643
|
+
"$ref": "#/$defs/TransformStep"
|
|
644
|
+
}
|
|
618
645
|
},
|
|
619
646
|
"source": {
|
|
620
647
|
"type": "object"
|
|
@@ -626,6 +653,39 @@
|
|
|
626
653
|
"source"
|
|
627
654
|
]
|
|
628
655
|
},
|
|
656
|
+
{
|
|
657
|
+
"type": "object",
|
|
658
|
+
"properties": {
|
|
659
|
+
"$type": {
|
|
660
|
+
"const": "Expr"
|
|
661
|
+
},
|
|
662
|
+
"expr": {
|
|
663
|
+
"type": "object"
|
|
664
|
+
},
|
|
665
|
+
"params": {
|
|
666
|
+
"type": "array",
|
|
667
|
+
"items": {
|
|
668
|
+
"type": "object",
|
|
669
|
+
"properties": {
|
|
670
|
+
"from": {
|
|
671
|
+
"$ref": "#/$defs/Binding_json"
|
|
672
|
+
},
|
|
673
|
+
"name": {
|
|
674
|
+
"type": "string"
|
|
675
|
+
}
|
|
676
|
+
},
|
|
677
|
+
"required": [
|
|
678
|
+
"from",
|
|
679
|
+
"name"
|
|
680
|
+
]
|
|
681
|
+
}
|
|
682
|
+
}
|
|
683
|
+
},
|
|
684
|
+
"required": [
|
|
685
|
+
"$type",
|
|
686
|
+
"expr"
|
|
687
|
+
]
|
|
688
|
+
},
|
|
629
689
|
{
|
|
630
690
|
"type": "object",
|
|
631
691
|
"properties": {
|
|
@@ -635,7 +695,19 @@
|
|
|
635
695
|
"args": {
|
|
636
696
|
"type": "array",
|
|
637
697
|
"items": {
|
|
638
|
-
"type": "object"
|
|
698
|
+
"type": "object",
|
|
699
|
+
"properties": {
|
|
700
|
+
"addr": {
|
|
701
|
+
"type": "string"
|
|
702
|
+
},
|
|
703
|
+
"value": {
|
|
704
|
+
"type": "string"
|
|
705
|
+
}
|
|
706
|
+
},
|
|
707
|
+
"required": [
|
|
708
|
+
"addr",
|
|
709
|
+
"value"
|
|
710
|
+
]
|
|
639
711
|
}
|
|
640
712
|
},
|
|
641
713
|
"capabilityId": {
|
|
@@ -674,7 +746,8 @@
|
|
|
674
746
|
}
|
|
675
747
|
},
|
|
676
748
|
"required": [
|
|
677
|
-
"$type"
|
|
749
|
+
"$type",
|
|
750
|
+
"value"
|
|
678
751
|
]
|
|
679
752
|
},
|
|
680
753
|
{
|
|
@@ -808,6 +881,9 @@
|
|
|
808
881
|
"properties": {
|
|
809
882
|
"$type": {
|
|
810
883
|
"const": "Now"
|
|
884
|
+
},
|
|
885
|
+
"grain": {
|
|
886
|
+
"$ref": "#/$defs/TimeGrain"
|
|
811
887
|
}
|
|
812
888
|
},
|
|
813
889
|
"required": [
|
|
@@ -841,6 +917,12 @@
|
|
|
841
917
|
"$type": {
|
|
842
918
|
"const": "Local"
|
|
843
919
|
},
|
|
920
|
+
"codec": {
|
|
921
|
+
"$ref": "#/$defs/Format"
|
|
922
|
+
},
|
|
923
|
+
"commitTo": {
|
|
924
|
+
"type": "string"
|
|
925
|
+
},
|
|
844
926
|
"flushOn": {
|
|
845
927
|
"$ref": "#/$defs/LocalFlushTrigger"
|
|
846
928
|
},
|
|
@@ -862,7 +944,6 @@
|
|
|
862
944
|
"flushOn",
|
|
863
945
|
"format",
|
|
864
946
|
"initialFrom",
|
|
865
|
-
"onCommit",
|
|
866
947
|
"parse"
|
|
867
948
|
]
|
|
868
949
|
},
|
|
@@ -915,7 +996,9 @@
|
|
|
915
996
|
},
|
|
916
997
|
"pipeline": {
|
|
917
998
|
"type": "array",
|
|
918
|
-
"items":
|
|
999
|
+
"items": {
|
|
1000
|
+
"$ref": "#/$defs/TransformStep"
|
|
1001
|
+
}
|
|
919
1002
|
},
|
|
920
1003
|
"source": {
|
|
921
1004
|
"type": "object"
|
|
@@ -927,6 +1010,39 @@
|
|
|
927
1010
|
"source"
|
|
928
1011
|
]
|
|
929
1012
|
},
|
|
1013
|
+
{
|
|
1014
|
+
"type": "object",
|
|
1015
|
+
"properties": {
|
|
1016
|
+
"$type": {
|
|
1017
|
+
"const": "Expr"
|
|
1018
|
+
},
|
|
1019
|
+
"expr": {
|
|
1020
|
+
"type": "object"
|
|
1021
|
+
},
|
|
1022
|
+
"params": {
|
|
1023
|
+
"type": "array",
|
|
1024
|
+
"items": {
|
|
1025
|
+
"type": "object",
|
|
1026
|
+
"properties": {
|
|
1027
|
+
"from": {
|
|
1028
|
+
"$ref": "#/$defs/Binding_json"
|
|
1029
|
+
},
|
|
1030
|
+
"name": {
|
|
1031
|
+
"type": "string"
|
|
1032
|
+
}
|
|
1033
|
+
},
|
|
1034
|
+
"required": [
|
|
1035
|
+
"from",
|
|
1036
|
+
"name"
|
|
1037
|
+
]
|
|
1038
|
+
}
|
|
1039
|
+
}
|
|
1040
|
+
},
|
|
1041
|
+
"required": [
|
|
1042
|
+
"$type",
|
|
1043
|
+
"expr"
|
|
1044
|
+
]
|
|
1045
|
+
},
|
|
930
1046
|
{
|
|
931
1047
|
"type": "object",
|
|
932
1048
|
"properties": {
|
|
@@ -936,7 +1052,19 @@
|
|
|
936
1052
|
"args": {
|
|
937
1053
|
"type": "array",
|
|
938
1054
|
"items": {
|
|
939
|
-
"type": "object"
|
|
1055
|
+
"type": "object",
|
|
1056
|
+
"properties": {
|
|
1057
|
+
"addr": {
|
|
1058
|
+
"type": "string"
|
|
1059
|
+
},
|
|
1060
|
+
"value": {
|
|
1061
|
+
"type": "string"
|
|
1062
|
+
}
|
|
1063
|
+
},
|
|
1064
|
+
"required": [
|
|
1065
|
+
"addr",
|
|
1066
|
+
"value"
|
|
1067
|
+
]
|
|
940
1068
|
}
|
|
941
1069
|
},
|
|
942
1070
|
"capabilityId": {
|
|
@@ -1057,6 +1185,9 @@
|
|
|
1057
1185
|
"properties": {
|
|
1058
1186
|
"$type": {
|
|
1059
1187
|
"const": "Now"
|
|
1188
|
+
},
|
|
1189
|
+
"grain": {
|
|
1190
|
+
"$ref": "#/$defs/TimeGrain"
|
|
1060
1191
|
}
|
|
1061
1192
|
},
|
|
1062
1193
|
"required": [
|
|
@@ -1090,6 +1221,12 @@
|
|
|
1090
1221
|
"$type": {
|
|
1091
1222
|
"const": "Local"
|
|
1092
1223
|
},
|
|
1224
|
+
"codec": {
|
|
1225
|
+
"$ref": "#/$defs/Format"
|
|
1226
|
+
},
|
|
1227
|
+
"commitTo": {
|
|
1228
|
+
"type": "string"
|
|
1229
|
+
},
|
|
1093
1230
|
"flushOn": {
|
|
1094
1231
|
"$ref": "#/$defs/LocalFlushTrigger"
|
|
1095
1232
|
},
|
|
@@ -1111,7 +1248,6 @@
|
|
|
1111
1248
|
"flushOn",
|
|
1112
1249
|
"format",
|
|
1113
1250
|
"initialFrom",
|
|
1114
|
-
"onCommit",
|
|
1115
1251
|
"parse"
|
|
1116
1252
|
]
|
|
1117
1253
|
},
|
|
@@ -1164,7 +1300,9 @@
|
|
|
1164
1300
|
},
|
|
1165
1301
|
"pipeline": {
|
|
1166
1302
|
"type": "array",
|
|
1167
|
-
"items":
|
|
1303
|
+
"items": {
|
|
1304
|
+
"$ref": "#/$defs/TransformStep"
|
|
1305
|
+
}
|
|
1168
1306
|
},
|
|
1169
1307
|
"source": {
|
|
1170
1308
|
"type": "object"
|
|
@@ -1176,6 +1314,39 @@
|
|
|
1176
1314
|
"source"
|
|
1177
1315
|
]
|
|
1178
1316
|
},
|
|
1317
|
+
{
|
|
1318
|
+
"type": "object",
|
|
1319
|
+
"properties": {
|
|
1320
|
+
"$type": {
|
|
1321
|
+
"const": "Expr"
|
|
1322
|
+
},
|
|
1323
|
+
"expr": {
|
|
1324
|
+
"type": "object"
|
|
1325
|
+
},
|
|
1326
|
+
"params": {
|
|
1327
|
+
"type": "array",
|
|
1328
|
+
"items": {
|
|
1329
|
+
"type": "object",
|
|
1330
|
+
"properties": {
|
|
1331
|
+
"from": {
|
|
1332
|
+
"$ref": "#/$defs/Binding_json"
|
|
1333
|
+
},
|
|
1334
|
+
"name": {
|
|
1335
|
+
"type": "string"
|
|
1336
|
+
}
|
|
1337
|
+
},
|
|
1338
|
+
"required": [
|
|
1339
|
+
"from",
|
|
1340
|
+
"name"
|
|
1341
|
+
]
|
|
1342
|
+
}
|
|
1343
|
+
}
|
|
1344
|
+
},
|
|
1345
|
+
"required": [
|
|
1346
|
+
"$type",
|
|
1347
|
+
"expr"
|
|
1348
|
+
]
|
|
1349
|
+
},
|
|
1179
1350
|
{
|
|
1180
1351
|
"type": "object",
|
|
1181
1352
|
"properties": {
|
|
@@ -1185,7 +1356,19 @@
|
|
|
1185
1356
|
"args": {
|
|
1186
1357
|
"type": "array",
|
|
1187
1358
|
"items": {
|
|
1188
|
-
"type": "object"
|
|
1359
|
+
"type": "object",
|
|
1360
|
+
"properties": {
|
|
1361
|
+
"addr": {
|
|
1362
|
+
"type": "string"
|
|
1363
|
+
},
|
|
1364
|
+
"value": {
|
|
1365
|
+
"type": "string"
|
|
1366
|
+
}
|
|
1367
|
+
},
|
|
1368
|
+
"required": [
|
|
1369
|
+
"addr",
|
|
1370
|
+
"value"
|
|
1371
|
+
]
|
|
1189
1372
|
}
|
|
1190
1373
|
},
|
|
1191
1374
|
"capabilityId": {
|
|
@@ -1213,7 +1396,8 @@
|
|
|
1213
1396
|
}
|
|
1214
1397
|
},
|
|
1215
1398
|
"required": [
|
|
1216
|
-
"$type"
|
|
1399
|
+
"$type",
|
|
1400
|
+
"value"
|
|
1217
1401
|
]
|
|
1218
1402
|
},
|
|
1219
1403
|
{
|
|
@@ -1314,6 +1498,9 @@
|
|
|
1314
1498
|
"properties": {
|
|
1315
1499
|
"$type": {
|
|
1316
1500
|
"const": "Now"
|
|
1501
|
+
},
|
|
1502
|
+
"grain": {
|
|
1503
|
+
"$ref": "#/$defs/TimeGrain"
|
|
1317
1504
|
}
|
|
1318
1505
|
},
|
|
1319
1506
|
"required": [
|
|
@@ -1347,6 +1534,12 @@
|
|
|
1347
1534
|
"$type": {
|
|
1348
1535
|
"const": "Local"
|
|
1349
1536
|
},
|
|
1537
|
+
"codec": {
|
|
1538
|
+
"$ref": "#/$defs/Format"
|
|
1539
|
+
},
|
|
1540
|
+
"commitTo": {
|
|
1541
|
+
"type": "string"
|
|
1542
|
+
},
|
|
1350
1543
|
"flushOn": {
|
|
1351
1544
|
"$ref": "#/$defs/LocalFlushTrigger"
|
|
1352
1545
|
},
|
|
@@ -1368,7 +1561,6 @@
|
|
|
1368
1561
|
"flushOn",
|
|
1369
1562
|
"format",
|
|
1370
1563
|
"initialFrom",
|
|
1371
|
-
"onCommit",
|
|
1372
1564
|
"parse"
|
|
1373
1565
|
]
|
|
1374
1566
|
},
|
|
@@ -1421,7 +1613,9 @@
|
|
|
1421
1613
|
},
|
|
1422
1614
|
"pipeline": {
|
|
1423
1615
|
"type": "array",
|
|
1424
|
-
"items":
|
|
1616
|
+
"items": {
|
|
1617
|
+
"$ref": "#/$defs/TransformStep"
|
|
1618
|
+
}
|
|
1425
1619
|
},
|
|
1426
1620
|
"source": {
|
|
1427
1621
|
"type": "object"
|
|
@@ -1433,6 +1627,39 @@
|
|
|
1433
1627
|
"source"
|
|
1434
1628
|
]
|
|
1435
1629
|
},
|
|
1630
|
+
{
|
|
1631
|
+
"type": "object",
|
|
1632
|
+
"properties": {
|
|
1633
|
+
"$type": {
|
|
1634
|
+
"const": "Expr"
|
|
1635
|
+
},
|
|
1636
|
+
"expr": {
|
|
1637
|
+
"type": "object"
|
|
1638
|
+
},
|
|
1639
|
+
"params": {
|
|
1640
|
+
"type": "array",
|
|
1641
|
+
"items": {
|
|
1642
|
+
"type": "object",
|
|
1643
|
+
"properties": {
|
|
1644
|
+
"from": {
|
|
1645
|
+
"$ref": "#/$defs/Binding_json"
|
|
1646
|
+
},
|
|
1647
|
+
"name": {
|
|
1648
|
+
"type": "string"
|
|
1649
|
+
}
|
|
1650
|
+
},
|
|
1651
|
+
"required": [
|
|
1652
|
+
"from",
|
|
1653
|
+
"name"
|
|
1654
|
+
]
|
|
1655
|
+
}
|
|
1656
|
+
}
|
|
1657
|
+
},
|
|
1658
|
+
"required": [
|
|
1659
|
+
"$type",
|
|
1660
|
+
"expr"
|
|
1661
|
+
]
|
|
1662
|
+
},
|
|
1436
1663
|
{
|
|
1437
1664
|
"type": "object",
|
|
1438
1665
|
"properties": {
|
|
@@ -1442,7 +1669,19 @@
|
|
|
1442
1669
|
"args": {
|
|
1443
1670
|
"type": "array",
|
|
1444
1671
|
"items": {
|
|
1445
|
-
"type": "object"
|
|
1672
|
+
"type": "object",
|
|
1673
|
+
"properties": {
|
|
1674
|
+
"addr": {
|
|
1675
|
+
"type": "string"
|
|
1676
|
+
},
|
|
1677
|
+
"value": {
|
|
1678
|
+
"type": "string"
|
|
1679
|
+
}
|
|
1680
|
+
},
|
|
1681
|
+
"required": [
|
|
1682
|
+
"addr",
|
|
1683
|
+
"value"
|
|
1684
|
+
]
|
|
1446
1685
|
}
|
|
1447
1686
|
},
|
|
1448
1687
|
"capabilityId": {
|
|
@@ -1563,6 +1802,9 @@
|
|
|
1563
1802
|
"properties": {
|
|
1564
1803
|
"$type": {
|
|
1565
1804
|
"const": "Now"
|
|
1805
|
+
},
|
|
1806
|
+
"grain": {
|
|
1807
|
+
"$ref": "#/$defs/TimeGrain"
|
|
1566
1808
|
}
|
|
1567
1809
|
},
|
|
1568
1810
|
"required": [
|
|
@@ -1596,6 +1838,12 @@
|
|
|
1596
1838
|
"$type": {
|
|
1597
1839
|
"const": "Local"
|
|
1598
1840
|
},
|
|
1841
|
+
"codec": {
|
|
1842
|
+
"$ref": "#/$defs/Format"
|
|
1843
|
+
},
|
|
1844
|
+
"commitTo": {
|
|
1845
|
+
"type": "string"
|
|
1846
|
+
},
|
|
1599
1847
|
"flushOn": {
|
|
1600
1848
|
"$ref": "#/$defs/LocalFlushTrigger"
|
|
1601
1849
|
},
|
|
@@ -1617,7 +1865,6 @@
|
|
|
1617
1865
|
"flushOn",
|
|
1618
1866
|
"format",
|
|
1619
1867
|
"initialFrom",
|
|
1620
|
-
"onCommit",
|
|
1621
1868
|
"parse"
|
|
1622
1869
|
]
|
|
1623
1870
|
},
|
|
@@ -1670,7 +1917,9 @@
|
|
|
1670
1917
|
},
|
|
1671
1918
|
"pipeline": {
|
|
1672
1919
|
"type": "array",
|
|
1673
|
-
"items":
|
|
1920
|
+
"items": {
|
|
1921
|
+
"$ref": "#/$defs/TransformStep"
|
|
1922
|
+
}
|
|
1674
1923
|
},
|
|
1675
1924
|
"source": {
|
|
1676
1925
|
"type": "object"
|
|
@@ -1682,6 +1931,39 @@
|
|
|
1682
1931
|
"source"
|
|
1683
1932
|
]
|
|
1684
1933
|
},
|
|
1934
|
+
{
|
|
1935
|
+
"type": "object",
|
|
1936
|
+
"properties": {
|
|
1937
|
+
"$type": {
|
|
1938
|
+
"const": "Expr"
|
|
1939
|
+
},
|
|
1940
|
+
"expr": {
|
|
1941
|
+
"type": "object"
|
|
1942
|
+
},
|
|
1943
|
+
"params": {
|
|
1944
|
+
"type": "array",
|
|
1945
|
+
"items": {
|
|
1946
|
+
"type": "object",
|
|
1947
|
+
"properties": {
|
|
1948
|
+
"from": {
|
|
1949
|
+
"$ref": "#/$defs/Binding_json"
|
|
1950
|
+
},
|
|
1951
|
+
"name": {
|
|
1952
|
+
"type": "string"
|
|
1953
|
+
}
|
|
1954
|
+
},
|
|
1955
|
+
"required": [
|
|
1956
|
+
"from",
|
|
1957
|
+
"name"
|
|
1958
|
+
]
|
|
1959
|
+
}
|
|
1960
|
+
}
|
|
1961
|
+
},
|
|
1962
|
+
"required": [
|
|
1963
|
+
"$type",
|
|
1964
|
+
"expr"
|
|
1965
|
+
]
|
|
1966
|
+
},
|
|
1685
1967
|
{
|
|
1686
1968
|
"type": "object",
|
|
1687
1969
|
"properties": {
|
|
@@ -1691,7 +1973,19 @@
|
|
|
1691
1973
|
"args": {
|
|
1692
1974
|
"type": "array",
|
|
1693
1975
|
"items": {
|
|
1694
|
-
"type": "object"
|
|
1976
|
+
"type": "object",
|
|
1977
|
+
"properties": {
|
|
1978
|
+
"addr": {
|
|
1979
|
+
"type": "string"
|
|
1980
|
+
},
|
|
1981
|
+
"value": {
|
|
1982
|
+
"type": "string"
|
|
1983
|
+
}
|
|
1984
|
+
},
|
|
1985
|
+
"required": [
|
|
1986
|
+
"addr",
|
|
1987
|
+
"value"
|
|
1988
|
+
]
|
|
1695
1989
|
}
|
|
1696
1990
|
},
|
|
1697
1991
|
"capabilityId": {
|
|
@@ -1832,6 +2126,9 @@
|
|
|
1832
2126
|
"properties": {
|
|
1833
2127
|
"$type": {
|
|
1834
2128
|
"const": "Now"
|
|
2129
|
+
},
|
|
2130
|
+
"grain": {
|
|
2131
|
+
"$ref": "#/$defs/TimeGrain"
|
|
1835
2132
|
}
|
|
1836
2133
|
},
|
|
1837
2134
|
"required": [
|
|
@@ -1865,6 +2162,12 @@
|
|
|
1865
2162
|
"$type": {
|
|
1866
2163
|
"const": "Local"
|
|
1867
2164
|
},
|
|
2165
|
+
"codec": {
|
|
2166
|
+
"$ref": "#/$defs/Format"
|
|
2167
|
+
},
|
|
2168
|
+
"commitTo": {
|
|
2169
|
+
"type": "string"
|
|
2170
|
+
},
|
|
1868
2171
|
"flushOn": {
|
|
1869
2172
|
"$ref": "#/$defs/LocalFlushTrigger"
|
|
1870
2173
|
},
|
|
@@ -1886,7 +2189,6 @@
|
|
|
1886
2189
|
"flushOn",
|
|
1887
2190
|
"format",
|
|
1888
2191
|
"initialFrom",
|
|
1889
|
-
"onCommit",
|
|
1890
2192
|
"parse"
|
|
1891
2193
|
]
|
|
1892
2194
|
},
|
|
@@ -1939,8 +2241,10 @@
|
|
|
1939
2241
|
},
|
|
1940
2242
|
"pipeline": {
|
|
1941
2243
|
"type": "array",
|
|
1942
|
-
"items":
|
|
1943
|
-
|
|
2244
|
+
"items": {
|
|
2245
|
+
"$ref": "#/$defs/TransformStep"
|
|
2246
|
+
}
|
|
2247
|
+
},
|
|
1944
2248
|
"source": {
|
|
1945
2249
|
"type": "object"
|
|
1946
2250
|
}
|
|
@@ -1951,6 +2255,39 @@
|
|
|
1951
2255
|
"source"
|
|
1952
2256
|
]
|
|
1953
2257
|
},
|
|
2258
|
+
{
|
|
2259
|
+
"type": "object",
|
|
2260
|
+
"properties": {
|
|
2261
|
+
"$type": {
|
|
2262
|
+
"const": "Expr"
|
|
2263
|
+
},
|
|
2264
|
+
"expr": {
|
|
2265
|
+
"type": "object"
|
|
2266
|
+
},
|
|
2267
|
+
"params": {
|
|
2268
|
+
"type": "array",
|
|
2269
|
+
"items": {
|
|
2270
|
+
"type": "object",
|
|
2271
|
+
"properties": {
|
|
2272
|
+
"from": {
|
|
2273
|
+
"$ref": "#/$defs/Binding_json"
|
|
2274
|
+
},
|
|
2275
|
+
"name": {
|
|
2276
|
+
"type": "string"
|
|
2277
|
+
}
|
|
2278
|
+
},
|
|
2279
|
+
"required": [
|
|
2280
|
+
"from",
|
|
2281
|
+
"name"
|
|
2282
|
+
]
|
|
2283
|
+
}
|
|
2284
|
+
}
|
|
2285
|
+
},
|
|
2286
|
+
"required": [
|
|
2287
|
+
"$type",
|
|
2288
|
+
"expr"
|
|
2289
|
+
]
|
|
2290
|
+
},
|
|
1954
2291
|
{
|
|
1955
2292
|
"type": "object",
|
|
1956
2293
|
"properties": {
|
|
@@ -1960,7 +2297,19 @@
|
|
|
1960
2297
|
"args": {
|
|
1961
2298
|
"type": "array",
|
|
1962
2299
|
"items": {
|
|
1963
|
-
"type": "object"
|
|
2300
|
+
"type": "object",
|
|
2301
|
+
"properties": {
|
|
2302
|
+
"addr": {
|
|
2303
|
+
"type": "string"
|
|
2304
|
+
},
|
|
2305
|
+
"value": {
|
|
2306
|
+
"type": "string"
|
|
2307
|
+
}
|
|
2308
|
+
},
|
|
2309
|
+
"required": [
|
|
2310
|
+
"addr",
|
|
2311
|
+
"value"
|
|
2312
|
+
]
|
|
1964
2313
|
}
|
|
1965
2314
|
},
|
|
1966
2315
|
"capabilityId": {
|
|
@@ -2101,6 +2450,9 @@
|
|
|
2101
2450
|
"properties": {
|
|
2102
2451
|
"$type": {
|
|
2103
2452
|
"const": "Now"
|
|
2453
|
+
},
|
|
2454
|
+
"grain": {
|
|
2455
|
+
"$ref": "#/$defs/TimeGrain"
|
|
2104
2456
|
}
|
|
2105
2457
|
},
|
|
2106
2458
|
"required": [
|
|
@@ -2134,6 +2486,12 @@
|
|
|
2134
2486
|
"$type": {
|
|
2135
2487
|
"const": "Local"
|
|
2136
2488
|
},
|
|
2489
|
+
"codec": {
|
|
2490
|
+
"$ref": "#/$defs/Format"
|
|
2491
|
+
},
|
|
2492
|
+
"commitTo": {
|
|
2493
|
+
"type": "string"
|
|
2494
|
+
},
|
|
2137
2495
|
"flushOn": {
|
|
2138
2496
|
"$ref": "#/$defs/LocalFlushTrigger"
|
|
2139
2497
|
},
|
|
@@ -2155,7 +2513,6 @@
|
|
|
2155
2513
|
"flushOn",
|
|
2156
2514
|
"format",
|
|
2157
2515
|
"initialFrom",
|
|
2158
|
-
"onCommit",
|
|
2159
2516
|
"parse"
|
|
2160
2517
|
]
|
|
2161
2518
|
},
|
|
@@ -2208,7 +2565,9 @@
|
|
|
2208
2565
|
},
|
|
2209
2566
|
"pipeline": {
|
|
2210
2567
|
"type": "array",
|
|
2211
|
-
"items":
|
|
2568
|
+
"items": {
|
|
2569
|
+
"$ref": "#/$defs/TransformStep"
|
|
2570
|
+
}
|
|
2212
2571
|
},
|
|
2213
2572
|
"source": {
|
|
2214
2573
|
"type": "object"
|
|
@@ -2220,6 +2579,39 @@
|
|
|
2220
2579
|
"source"
|
|
2221
2580
|
]
|
|
2222
2581
|
},
|
|
2582
|
+
{
|
|
2583
|
+
"type": "object",
|
|
2584
|
+
"properties": {
|
|
2585
|
+
"$type": {
|
|
2586
|
+
"const": "Expr"
|
|
2587
|
+
},
|
|
2588
|
+
"expr": {
|
|
2589
|
+
"type": "object"
|
|
2590
|
+
},
|
|
2591
|
+
"params": {
|
|
2592
|
+
"type": "array",
|
|
2593
|
+
"items": {
|
|
2594
|
+
"type": "object",
|
|
2595
|
+
"properties": {
|
|
2596
|
+
"from": {
|
|
2597
|
+
"$ref": "#/$defs/Binding_json"
|
|
2598
|
+
},
|
|
2599
|
+
"name": {
|
|
2600
|
+
"type": "string"
|
|
2601
|
+
}
|
|
2602
|
+
},
|
|
2603
|
+
"required": [
|
|
2604
|
+
"from",
|
|
2605
|
+
"name"
|
|
2606
|
+
]
|
|
2607
|
+
}
|
|
2608
|
+
}
|
|
2609
|
+
},
|
|
2610
|
+
"required": [
|
|
2611
|
+
"$type",
|
|
2612
|
+
"expr"
|
|
2613
|
+
]
|
|
2614
|
+
},
|
|
2223
2615
|
{
|
|
2224
2616
|
"type": "object",
|
|
2225
2617
|
"properties": {
|
|
@@ -2229,7 +2621,19 @@
|
|
|
2229
2621
|
"args": {
|
|
2230
2622
|
"type": "array",
|
|
2231
2623
|
"items": {
|
|
2232
|
-
"type": "object"
|
|
2624
|
+
"type": "object",
|
|
2625
|
+
"properties": {
|
|
2626
|
+
"addr": {
|
|
2627
|
+
"type": "string"
|
|
2628
|
+
},
|
|
2629
|
+
"value": {
|
|
2630
|
+
"type": "string"
|
|
2631
|
+
}
|
|
2632
|
+
},
|
|
2633
|
+
"required": [
|
|
2634
|
+
"addr",
|
|
2635
|
+
"value"
|
|
2636
|
+
]
|
|
2233
2637
|
}
|
|
2234
2638
|
},
|
|
2235
2639
|
"capabilityId": {
|
|
@@ -2414,6 +2818,9 @@
|
|
|
2414
2818
|
"properties": {
|
|
2415
2819
|
"$type": {
|
|
2416
2820
|
"const": "Now"
|
|
2821
|
+
},
|
|
2822
|
+
"grain": {
|
|
2823
|
+
"$ref": "#/$defs/TimeGrain"
|
|
2417
2824
|
}
|
|
2418
2825
|
},
|
|
2419
2826
|
"required": [
|
|
@@ -2447,6 +2854,12 @@
|
|
|
2447
2854
|
"$type": {
|
|
2448
2855
|
"const": "Local"
|
|
2449
2856
|
},
|
|
2857
|
+
"codec": {
|
|
2858
|
+
"$ref": "#/$defs/Format"
|
|
2859
|
+
},
|
|
2860
|
+
"commitTo": {
|
|
2861
|
+
"type": "string"
|
|
2862
|
+
},
|
|
2450
2863
|
"flushOn": {
|
|
2451
2864
|
"$ref": "#/$defs/LocalFlushTrigger"
|
|
2452
2865
|
},
|
|
@@ -2468,7 +2881,6 @@
|
|
|
2468
2881
|
"flushOn",
|
|
2469
2882
|
"format",
|
|
2470
2883
|
"initialFrom",
|
|
2471
|
-
"onCommit",
|
|
2472
2884
|
"parse"
|
|
2473
2885
|
]
|
|
2474
2886
|
},
|
|
@@ -2521,7 +2933,9 @@
|
|
|
2521
2933
|
},
|
|
2522
2934
|
"pipeline": {
|
|
2523
2935
|
"type": "array",
|
|
2524
|
-
"items":
|
|
2936
|
+
"items": {
|
|
2937
|
+
"$ref": "#/$defs/TransformStep"
|
|
2938
|
+
}
|
|
2525
2939
|
},
|
|
2526
2940
|
"source": {
|
|
2527
2941
|
"type": "object"
|
|
@@ -2533,6 +2947,39 @@
|
|
|
2533
2947
|
"source"
|
|
2534
2948
|
]
|
|
2535
2949
|
},
|
|
2950
|
+
{
|
|
2951
|
+
"type": "object",
|
|
2952
|
+
"properties": {
|
|
2953
|
+
"$type": {
|
|
2954
|
+
"const": "Expr"
|
|
2955
|
+
},
|
|
2956
|
+
"expr": {
|
|
2957
|
+
"type": "object"
|
|
2958
|
+
},
|
|
2959
|
+
"params": {
|
|
2960
|
+
"type": "array",
|
|
2961
|
+
"items": {
|
|
2962
|
+
"type": "object",
|
|
2963
|
+
"properties": {
|
|
2964
|
+
"from": {
|
|
2965
|
+
"$ref": "#/$defs/Binding_json"
|
|
2966
|
+
},
|
|
2967
|
+
"name": {
|
|
2968
|
+
"type": "string"
|
|
2969
|
+
}
|
|
2970
|
+
},
|
|
2971
|
+
"required": [
|
|
2972
|
+
"from",
|
|
2973
|
+
"name"
|
|
2974
|
+
]
|
|
2975
|
+
}
|
|
2976
|
+
}
|
|
2977
|
+
},
|
|
2978
|
+
"required": [
|
|
2979
|
+
"$type",
|
|
2980
|
+
"expr"
|
|
2981
|
+
]
|
|
2982
|
+
},
|
|
2536
2983
|
{
|
|
2537
2984
|
"type": "object",
|
|
2538
2985
|
"properties": {
|
|
@@ -2542,7 +2989,19 @@
|
|
|
2542
2989
|
"args": {
|
|
2543
2990
|
"type": "array",
|
|
2544
2991
|
"items": {
|
|
2545
|
-
"type": "object"
|
|
2992
|
+
"type": "object",
|
|
2993
|
+
"properties": {
|
|
2994
|
+
"addr": {
|
|
2995
|
+
"type": "string"
|
|
2996
|
+
},
|
|
2997
|
+
"value": {
|
|
2998
|
+
"type": "string"
|
|
2999
|
+
}
|
|
3000
|
+
},
|
|
3001
|
+
"required": [
|
|
3002
|
+
"addr",
|
|
3003
|
+
"value"
|
|
3004
|
+
]
|
|
2546
3005
|
}
|
|
2547
3006
|
},
|
|
2548
3007
|
"capabilityId": {
|
|
@@ -2683,6 +3142,9 @@
|
|
|
2683
3142
|
"properties": {
|
|
2684
3143
|
"$type": {
|
|
2685
3144
|
"const": "Now"
|
|
3145
|
+
},
|
|
3146
|
+
"grain": {
|
|
3147
|
+
"$ref": "#/$defs/TimeGrain"
|
|
2686
3148
|
}
|
|
2687
3149
|
},
|
|
2688
3150
|
"required": [
|
|
@@ -2716,6 +3178,12 @@
|
|
|
2716
3178
|
"$type": {
|
|
2717
3179
|
"const": "Local"
|
|
2718
3180
|
},
|
|
3181
|
+
"codec": {
|
|
3182
|
+
"$ref": "#/$defs/Format"
|
|
3183
|
+
},
|
|
3184
|
+
"commitTo": {
|
|
3185
|
+
"type": "string"
|
|
3186
|
+
},
|
|
2719
3187
|
"flushOn": {
|
|
2720
3188
|
"$ref": "#/$defs/LocalFlushTrigger"
|
|
2721
3189
|
},
|
|
@@ -2737,7 +3205,6 @@
|
|
|
2737
3205
|
"flushOn",
|
|
2738
3206
|
"format",
|
|
2739
3207
|
"initialFrom",
|
|
2740
|
-
"onCommit",
|
|
2741
3208
|
"parse"
|
|
2742
3209
|
]
|
|
2743
3210
|
},
|
|
@@ -2790,7 +3257,9 @@
|
|
|
2790
3257
|
},
|
|
2791
3258
|
"pipeline": {
|
|
2792
3259
|
"type": "array",
|
|
2793
|
-
"items":
|
|
3260
|
+
"items": {
|
|
3261
|
+
"$ref": "#/$defs/TransformStep"
|
|
3262
|
+
}
|
|
2794
3263
|
},
|
|
2795
3264
|
"source": {
|
|
2796
3265
|
"type": "object"
|
|
@@ -2802,6 +3271,39 @@
|
|
|
2802
3271
|
"source"
|
|
2803
3272
|
]
|
|
2804
3273
|
},
|
|
3274
|
+
{
|
|
3275
|
+
"type": "object",
|
|
3276
|
+
"properties": {
|
|
3277
|
+
"$type": {
|
|
3278
|
+
"const": "Expr"
|
|
3279
|
+
},
|
|
3280
|
+
"expr": {
|
|
3281
|
+
"type": "object"
|
|
3282
|
+
},
|
|
3283
|
+
"params": {
|
|
3284
|
+
"type": "array",
|
|
3285
|
+
"items": {
|
|
3286
|
+
"type": "object",
|
|
3287
|
+
"properties": {
|
|
3288
|
+
"from": {
|
|
3289
|
+
"$ref": "#/$defs/Binding_json"
|
|
3290
|
+
},
|
|
3291
|
+
"name": {
|
|
3292
|
+
"type": "string"
|
|
3293
|
+
}
|
|
3294
|
+
},
|
|
3295
|
+
"required": [
|
|
3296
|
+
"from",
|
|
3297
|
+
"name"
|
|
3298
|
+
]
|
|
3299
|
+
}
|
|
3300
|
+
}
|
|
3301
|
+
},
|
|
3302
|
+
"required": [
|
|
3303
|
+
"$type",
|
|
3304
|
+
"expr"
|
|
3305
|
+
]
|
|
3306
|
+
},
|
|
2805
3307
|
{
|
|
2806
3308
|
"type": "object",
|
|
2807
3309
|
"properties": {
|
|
@@ -2811,7 +3313,19 @@
|
|
|
2811
3313
|
"args": {
|
|
2812
3314
|
"type": "array",
|
|
2813
3315
|
"items": {
|
|
2814
|
-
"type": "object"
|
|
3316
|
+
"type": "object",
|
|
3317
|
+
"properties": {
|
|
3318
|
+
"addr": {
|
|
3319
|
+
"type": "string"
|
|
3320
|
+
},
|
|
3321
|
+
"value": {
|
|
3322
|
+
"type": "string"
|
|
3323
|
+
}
|
|
3324
|
+
},
|
|
3325
|
+
"required": [
|
|
3326
|
+
"addr",
|
|
3327
|
+
"value"
|
|
3328
|
+
]
|
|
2815
3329
|
}
|
|
2816
3330
|
},
|
|
2817
3331
|
"capabilityId": {
|
|
@@ -2839,7 +3353,8 @@
|
|
|
2839
3353
|
}
|
|
2840
3354
|
},
|
|
2841
3355
|
"required": [
|
|
2842
|
-
"$type"
|
|
3356
|
+
"$type",
|
|
3357
|
+
"value"
|
|
2843
3358
|
]
|
|
2844
3359
|
},
|
|
2845
3360
|
{
|
|
@@ -2940,6 +3455,9 @@
|
|
|
2940
3455
|
"properties": {
|
|
2941
3456
|
"$type": {
|
|
2942
3457
|
"const": "Now"
|
|
3458
|
+
},
|
|
3459
|
+
"grain": {
|
|
3460
|
+
"$ref": "#/$defs/TimeGrain"
|
|
2943
3461
|
}
|
|
2944
3462
|
},
|
|
2945
3463
|
"required": [
|
|
@@ -2973,6 +3491,12 @@
|
|
|
2973
3491
|
"$type": {
|
|
2974
3492
|
"const": "Local"
|
|
2975
3493
|
},
|
|
3494
|
+
"codec": {
|
|
3495
|
+
"$ref": "#/$defs/Format"
|
|
3496
|
+
},
|
|
3497
|
+
"commitTo": {
|
|
3498
|
+
"type": "string"
|
|
3499
|
+
},
|
|
2976
3500
|
"flushOn": {
|
|
2977
3501
|
"$ref": "#/$defs/LocalFlushTrigger"
|
|
2978
3502
|
},
|
|
@@ -2994,7 +3518,6 @@
|
|
|
2994
3518
|
"flushOn",
|
|
2995
3519
|
"format",
|
|
2996
3520
|
"initialFrom",
|
|
2997
|
-
"onCommit",
|
|
2998
3521
|
"parse"
|
|
2999
3522
|
]
|
|
3000
3523
|
},
|
|
@@ -3047,7 +3570,654 @@
|
|
|
3047
3570
|
},
|
|
3048
3571
|
"pipeline": {
|
|
3049
3572
|
"type": "array",
|
|
3050
|
-
"items":
|
|
3573
|
+
"items": {
|
|
3574
|
+
"$ref": "#/$defs/TransformStep"
|
|
3575
|
+
}
|
|
3576
|
+
},
|
|
3577
|
+
"source": {
|
|
3578
|
+
"type": "object"
|
|
3579
|
+
}
|
|
3580
|
+
},
|
|
3581
|
+
"required": [
|
|
3582
|
+
"$type",
|
|
3583
|
+
"pipeline",
|
|
3584
|
+
"source"
|
|
3585
|
+
]
|
|
3586
|
+
},
|
|
3587
|
+
{
|
|
3588
|
+
"type": "object",
|
|
3589
|
+
"properties": {
|
|
3590
|
+
"$type": {
|
|
3591
|
+
"const": "Expr"
|
|
3592
|
+
},
|
|
3593
|
+
"expr": {
|
|
3594
|
+
"type": "object"
|
|
3595
|
+
},
|
|
3596
|
+
"params": {
|
|
3597
|
+
"type": "array",
|
|
3598
|
+
"items": {
|
|
3599
|
+
"type": "object",
|
|
3600
|
+
"properties": {
|
|
3601
|
+
"from": {
|
|
3602
|
+
"$ref": "#/$defs/Binding_json"
|
|
3603
|
+
},
|
|
3604
|
+
"name": {
|
|
3605
|
+
"type": "string"
|
|
3606
|
+
}
|
|
3607
|
+
},
|
|
3608
|
+
"required": [
|
|
3609
|
+
"from",
|
|
3610
|
+
"name"
|
|
3611
|
+
]
|
|
3612
|
+
}
|
|
3613
|
+
}
|
|
3614
|
+
},
|
|
3615
|
+
"required": [
|
|
3616
|
+
"$type",
|
|
3617
|
+
"expr"
|
|
3618
|
+
]
|
|
3619
|
+
},
|
|
3620
|
+
{
|
|
3621
|
+
"type": "object",
|
|
3622
|
+
"properties": {
|
|
3623
|
+
"$type": {
|
|
3624
|
+
"const": "Invoke"
|
|
3625
|
+
},
|
|
3626
|
+
"args": {
|
|
3627
|
+
"type": "array",
|
|
3628
|
+
"items": {
|
|
3629
|
+
"type": "object",
|
|
3630
|
+
"properties": {
|
|
3631
|
+
"addr": {
|
|
3632
|
+
"type": "string"
|
|
3633
|
+
},
|
|
3634
|
+
"value": {
|
|
3635
|
+
"type": "string"
|
|
3636
|
+
}
|
|
3637
|
+
},
|
|
3638
|
+
"required": [
|
|
3639
|
+
"addr",
|
|
3640
|
+
"value"
|
|
3641
|
+
]
|
|
3642
|
+
}
|
|
3643
|
+
},
|
|
3644
|
+
"capabilityId": {
|
|
3645
|
+
"type": "string"
|
|
3646
|
+
}
|
|
3647
|
+
},
|
|
3648
|
+
"required": [
|
|
3649
|
+
"$type",
|
|
3650
|
+
"args",
|
|
3651
|
+
"capabilityId"
|
|
3652
|
+
]
|
|
3653
|
+
}
|
|
3654
|
+
]
|
|
3655
|
+
},
|
|
3656
|
+
"Binding_str_choice": {
|
|
3657
|
+
"description": "Binding<string> at a choice-valued control (Choice / SegmentedChoice / Combobox / Select). The Static payload is OPTIONAL and its absence is the value: no selection. Every other string-valued slot uses Binding_str, where the payload is required.",
|
|
3658
|
+
"oneOf": [
|
|
3659
|
+
{
|
|
3660
|
+
"type": "object",
|
|
3661
|
+
"properties": {
|
|
3662
|
+
"$type": {
|
|
3663
|
+
"const": "Static"
|
|
3664
|
+
},
|
|
3665
|
+
"value": {
|
|
3666
|
+
"type": "string"
|
|
3667
|
+
}
|
|
3668
|
+
},
|
|
3669
|
+
"required": [
|
|
3670
|
+
"$type"
|
|
3671
|
+
]
|
|
3672
|
+
},
|
|
3673
|
+
{
|
|
3674
|
+
"type": "object",
|
|
3675
|
+
"properties": {
|
|
3676
|
+
"$type": {
|
|
3677
|
+
"const": "Query"
|
|
3678
|
+
},
|
|
3679
|
+
"dependsOn": {
|
|
3680
|
+
"type": "array",
|
|
3681
|
+
"items": {
|
|
3682
|
+
"type": "string"
|
|
3683
|
+
}
|
|
3684
|
+
},
|
|
3685
|
+
"name": {
|
|
3686
|
+
"type": "string"
|
|
3687
|
+
}
|
|
3688
|
+
},
|
|
3689
|
+
"required": [
|
|
3690
|
+
"$type",
|
|
3691
|
+
"name"
|
|
3692
|
+
]
|
|
3693
|
+
},
|
|
3694
|
+
{
|
|
3695
|
+
"type": "object",
|
|
3696
|
+
"properties": {
|
|
3697
|
+
"$type": {
|
|
3698
|
+
"const": "Filter"
|
|
3699
|
+
},
|
|
3700
|
+
"defaultValue": {
|
|
3701
|
+
"type": "string"
|
|
3702
|
+
},
|
|
3703
|
+
"name": {
|
|
3704
|
+
"type": "string"
|
|
3705
|
+
}
|
|
3706
|
+
},
|
|
3707
|
+
"required": [
|
|
3708
|
+
"$type",
|
|
3709
|
+
"name"
|
|
3710
|
+
]
|
|
3711
|
+
},
|
|
3712
|
+
{
|
|
3713
|
+
"type": "object",
|
|
3714
|
+
"properties": {
|
|
3715
|
+
"$type": {
|
|
3716
|
+
"const": "Selection"
|
|
3717
|
+
},
|
|
3718
|
+
"defaultValue": {
|
|
3719
|
+
"type": "string"
|
|
3720
|
+
},
|
|
3721
|
+
"field": {
|
|
3722
|
+
"type": "string"
|
|
3723
|
+
},
|
|
3724
|
+
"nodeId": {
|
|
3725
|
+
"type": "string"
|
|
3726
|
+
}
|
|
3727
|
+
},
|
|
3728
|
+
"required": [
|
|
3729
|
+
"$type",
|
|
3730
|
+
"nodeId"
|
|
3731
|
+
]
|
|
3732
|
+
},
|
|
3733
|
+
{
|
|
3734
|
+
"type": "object",
|
|
3735
|
+
"properties": {
|
|
3736
|
+
"$type": {
|
|
3737
|
+
"const": "State"
|
|
3738
|
+
},
|
|
3739
|
+
"defaultValue": {
|
|
3740
|
+
"type": "string"
|
|
3741
|
+
},
|
|
3742
|
+
"key": {
|
|
3743
|
+
"type": "string"
|
|
3744
|
+
}
|
|
3745
|
+
},
|
|
3746
|
+
"required": [
|
|
3747
|
+
"$type",
|
|
3748
|
+
"key"
|
|
3749
|
+
]
|
|
3750
|
+
},
|
|
3751
|
+
{
|
|
3752
|
+
"type": "object",
|
|
3753
|
+
"properties": {
|
|
3754
|
+
"$type": {
|
|
3755
|
+
"const": "Computed"
|
|
3756
|
+
},
|
|
3757
|
+
"fn": {
|
|
3758
|
+
"const": "<closure>"
|
|
3759
|
+
}
|
|
3760
|
+
},
|
|
3761
|
+
"required": [
|
|
3762
|
+
"$type",
|
|
3763
|
+
"fn"
|
|
3764
|
+
]
|
|
3765
|
+
},
|
|
3766
|
+
{
|
|
3767
|
+
"type": "object",
|
|
3768
|
+
"properties": {
|
|
3769
|
+
"$type": {
|
|
3770
|
+
"const": "Now"
|
|
3771
|
+
},
|
|
3772
|
+
"grain": {
|
|
3773
|
+
"$ref": "#/$defs/TimeGrain"
|
|
3774
|
+
}
|
|
3775
|
+
},
|
|
3776
|
+
"required": [
|
|
3777
|
+
"$type"
|
|
3778
|
+
]
|
|
3779
|
+
},
|
|
3780
|
+
{
|
|
3781
|
+
"type": "object",
|
|
3782
|
+
"properties": {
|
|
3783
|
+
"$type": {
|
|
3784
|
+
"const": "I18n"
|
|
3785
|
+
},
|
|
3786
|
+
"args": {
|
|
3787
|
+
"type": "object",
|
|
3788
|
+
"additionalProperties": {
|
|
3789
|
+
"$ref": "#/$defs/Binding_json"
|
|
3790
|
+
}
|
|
3791
|
+
},
|
|
3792
|
+
"key": {
|
|
3793
|
+
"type": "string"
|
|
3794
|
+
}
|
|
3795
|
+
},
|
|
3796
|
+
"required": [
|
|
3797
|
+
"$type",
|
|
3798
|
+
"key"
|
|
3799
|
+
]
|
|
3800
|
+
},
|
|
3801
|
+
{
|
|
3802
|
+
"type": "object",
|
|
3803
|
+
"properties": {
|
|
3804
|
+
"$type": {
|
|
3805
|
+
"const": "Local"
|
|
3806
|
+
},
|
|
3807
|
+
"codec": {
|
|
3808
|
+
"$ref": "#/$defs/Format"
|
|
3809
|
+
},
|
|
3810
|
+
"commitTo": {
|
|
3811
|
+
"type": "string"
|
|
3812
|
+
},
|
|
3813
|
+
"flushOn": {
|
|
3814
|
+
"$ref": "#/$defs/LocalFlushTrigger"
|
|
3815
|
+
},
|
|
3816
|
+
"format": {
|
|
3817
|
+
"const": "<closure>"
|
|
3818
|
+
},
|
|
3819
|
+
"initialFrom": {
|
|
3820
|
+
"$ref": "#/$defs/Binding_str_choice"
|
|
3821
|
+
},
|
|
3822
|
+
"onCommit": {
|
|
3823
|
+
"const": "<closure>"
|
|
3824
|
+
},
|
|
3825
|
+
"parse": {
|
|
3826
|
+
"const": "<closure>"
|
|
3827
|
+
}
|
|
3828
|
+
},
|
|
3829
|
+
"required": [
|
|
3830
|
+
"$type",
|
|
3831
|
+
"flushOn",
|
|
3832
|
+
"format",
|
|
3833
|
+
"initialFrom",
|
|
3834
|
+
"parse"
|
|
3835
|
+
]
|
|
3836
|
+
},
|
|
3837
|
+
{
|
|
3838
|
+
"type": "object",
|
|
3839
|
+
"properties": {
|
|
3840
|
+
"$type": {
|
|
3841
|
+
"const": "Format"
|
|
3842
|
+
},
|
|
3843
|
+
"format": {
|
|
3844
|
+
"$ref": "#/$defs/Format"
|
|
3845
|
+
},
|
|
3846
|
+
"locale": {
|
|
3847
|
+
"$ref": "#/$defs/LocaleSource"
|
|
3848
|
+
},
|
|
3849
|
+
"source": {
|
|
3850
|
+
"$ref": "#/$defs/Binding_float"
|
|
3851
|
+
}
|
|
3852
|
+
},
|
|
3853
|
+
"required": [
|
|
3854
|
+
"$type",
|
|
3855
|
+
"format",
|
|
3856
|
+
"locale",
|
|
3857
|
+
"source"
|
|
3858
|
+
]
|
|
3859
|
+
},
|
|
3860
|
+
{
|
|
3861
|
+
"type": "object",
|
|
3862
|
+
"properties": {
|
|
3863
|
+
"$type": {
|
|
3864
|
+
"const": "Transform"
|
|
3865
|
+
},
|
|
3866
|
+
"params": {
|
|
3867
|
+
"type": "array",
|
|
3868
|
+
"items": {
|
|
3869
|
+
"type": "object",
|
|
3870
|
+
"properties": {
|
|
3871
|
+
"from": {
|
|
3872
|
+
"$ref": "#/$defs/Binding_json"
|
|
3873
|
+
},
|
|
3874
|
+
"name": {
|
|
3875
|
+
"type": "string"
|
|
3876
|
+
}
|
|
3877
|
+
},
|
|
3878
|
+
"required": [
|
|
3879
|
+
"from",
|
|
3880
|
+
"name"
|
|
3881
|
+
]
|
|
3882
|
+
}
|
|
3883
|
+
},
|
|
3884
|
+
"pipeline": {
|
|
3885
|
+
"type": "array",
|
|
3886
|
+
"items": {
|
|
3887
|
+
"$ref": "#/$defs/TransformStep"
|
|
3888
|
+
}
|
|
3889
|
+
},
|
|
3890
|
+
"source": {
|
|
3891
|
+
"type": "object"
|
|
3892
|
+
}
|
|
3893
|
+
},
|
|
3894
|
+
"required": [
|
|
3895
|
+
"$type",
|
|
3896
|
+
"pipeline",
|
|
3897
|
+
"source"
|
|
3898
|
+
]
|
|
3899
|
+
},
|
|
3900
|
+
{
|
|
3901
|
+
"type": "object",
|
|
3902
|
+
"properties": {
|
|
3903
|
+
"$type": {
|
|
3904
|
+
"const": "Expr"
|
|
3905
|
+
},
|
|
3906
|
+
"expr": {
|
|
3907
|
+
"type": "object"
|
|
3908
|
+
},
|
|
3909
|
+
"params": {
|
|
3910
|
+
"type": "array",
|
|
3911
|
+
"items": {
|
|
3912
|
+
"type": "object",
|
|
3913
|
+
"properties": {
|
|
3914
|
+
"from": {
|
|
3915
|
+
"$ref": "#/$defs/Binding_json"
|
|
3916
|
+
},
|
|
3917
|
+
"name": {
|
|
3918
|
+
"type": "string"
|
|
3919
|
+
}
|
|
3920
|
+
},
|
|
3921
|
+
"required": [
|
|
3922
|
+
"from",
|
|
3923
|
+
"name"
|
|
3924
|
+
]
|
|
3925
|
+
}
|
|
3926
|
+
}
|
|
3927
|
+
},
|
|
3928
|
+
"required": [
|
|
3929
|
+
"$type",
|
|
3930
|
+
"expr"
|
|
3931
|
+
]
|
|
3932
|
+
},
|
|
3933
|
+
{
|
|
3934
|
+
"type": "object",
|
|
3935
|
+
"properties": {
|
|
3936
|
+
"$type": {
|
|
3937
|
+
"const": "Invoke"
|
|
3938
|
+
},
|
|
3939
|
+
"args": {
|
|
3940
|
+
"type": "array",
|
|
3941
|
+
"items": {
|
|
3942
|
+
"type": "object",
|
|
3943
|
+
"properties": {
|
|
3944
|
+
"addr": {
|
|
3945
|
+
"type": "string"
|
|
3946
|
+
},
|
|
3947
|
+
"value": {
|
|
3948
|
+
"type": "string"
|
|
3949
|
+
}
|
|
3950
|
+
},
|
|
3951
|
+
"required": [
|
|
3952
|
+
"addr",
|
|
3953
|
+
"value"
|
|
3954
|
+
]
|
|
3955
|
+
}
|
|
3956
|
+
},
|
|
3957
|
+
"capabilityId": {
|
|
3958
|
+
"type": "string"
|
|
3959
|
+
}
|
|
3960
|
+
},
|
|
3961
|
+
"required": [
|
|
3962
|
+
"$type",
|
|
3963
|
+
"args",
|
|
3964
|
+
"capabilityId"
|
|
3965
|
+
]
|
|
3966
|
+
}
|
|
3967
|
+
]
|
|
3968
|
+
},
|
|
3969
|
+
"TransformStep": {
|
|
3970
|
+
"oneOf": [
|
|
3971
|
+
{
|
|
3972
|
+
"type": "object",
|
|
3973
|
+
"properties": {
|
|
3974
|
+
"$type": {
|
|
3975
|
+
"const": "filter"
|
|
3976
|
+
},
|
|
3977
|
+
"pred": {
|
|
3978
|
+
"type": "object"
|
|
3979
|
+
}
|
|
3980
|
+
},
|
|
3981
|
+
"required": [
|
|
3982
|
+
"$type",
|
|
3983
|
+
"pred"
|
|
3984
|
+
]
|
|
3985
|
+
},
|
|
3986
|
+
{
|
|
3987
|
+
"type": "object",
|
|
3988
|
+
"properties": {
|
|
3989
|
+
"$type": {
|
|
3990
|
+
"const": "project"
|
|
3991
|
+
},
|
|
3992
|
+
"cols": {
|
|
3993
|
+
"type": "array",
|
|
3994
|
+
"items": {
|
|
3995
|
+
"$ref": "#/$defs/TransformRename"
|
|
3996
|
+
}
|
|
3997
|
+
}
|
|
3998
|
+
},
|
|
3999
|
+
"required": [
|
|
4000
|
+
"$type",
|
|
4001
|
+
"cols"
|
|
4002
|
+
]
|
|
4003
|
+
},
|
|
4004
|
+
{
|
|
4005
|
+
"type": "object",
|
|
4006
|
+
"properties": {
|
|
4007
|
+
"$type": {
|
|
4008
|
+
"const": "derive"
|
|
4009
|
+
},
|
|
4010
|
+
"expr": {
|
|
4011
|
+
"type": "object"
|
|
4012
|
+
},
|
|
4013
|
+
"name": {
|
|
4014
|
+
"type": "string"
|
|
4015
|
+
}
|
|
4016
|
+
},
|
|
4017
|
+
"required": [
|
|
4018
|
+
"$type",
|
|
4019
|
+
"expr",
|
|
4020
|
+
"name"
|
|
4021
|
+
]
|
|
4022
|
+
},
|
|
4023
|
+
{
|
|
4024
|
+
"type": "object",
|
|
4025
|
+
"properties": {
|
|
4026
|
+
"$type": {
|
|
4027
|
+
"const": "groupBy"
|
|
4028
|
+
},
|
|
4029
|
+
"aggs": {
|
|
4030
|
+
"type": "array",
|
|
4031
|
+
"items": {
|
|
4032
|
+
"$ref": "#/$defs/TransformAgg"
|
|
4033
|
+
}
|
|
4034
|
+
},
|
|
4035
|
+
"keys": {
|
|
4036
|
+
"type": "array",
|
|
4037
|
+
"items": {
|
|
4038
|
+
"type": "string"
|
|
4039
|
+
}
|
|
4040
|
+
}
|
|
4041
|
+
},
|
|
4042
|
+
"required": [
|
|
4043
|
+
"$type",
|
|
4044
|
+
"aggs",
|
|
4045
|
+
"keys"
|
|
4046
|
+
]
|
|
4047
|
+
},
|
|
4048
|
+
{
|
|
4049
|
+
"type": "object",
|
|
4050
|
+
"properties": {
|
|
4051
|
+
"$type": {
|
|
4052
|
+
"const": "join"
|
|
4053
|
+
},
|
|
4054
|
+
"how": {
|
|
4055
|
+
"$ref": "#/$defs/JoinKind"
|
|
4056
|
+
},
|
|
4057
|
+
"on": {
|
|
4058
|
+
"type": "array",
|
|
4059
|
+
"items": {
|
|
4060
|
+
"$ref": "#/$defs/TransformRename"
|
|
4061
|
+
}
|
|
4062
|
+
},
|
|
4063
|
+
"source": {
|
|
4064
|
+
"type": "object"
|
|
4065
|
+
}
|
|
4066
|
+
},
|
|
4067
|
+
"required": [
|
|
4068
|
+
"$type",
|
|
4069
|
+
"how",
|
|
4070
|
+
"on",
|
|
4071
|
+
"source"
|
|
4072
|
+
]
|
|
4073
|
+
},
|
|
4074
|
+
{
|
|
4075
|
+
"type": "object",
|
|
4076
|
+
"properties": {
|
|
4077
|
+
"$type": {
|
|
4078
|
+
"const": "window"
|
|
4079
|
+
},
|
|
4080
|
+
"as": {
|
|
4081
|
+
"type": "string"
|
|
4082
|
+
},
|
|
4083
|
+
"fn": {
|
|
4084
|
+
"$ref": "#/$defs/WindowFn"
|
|
4085
|
+
},
|
|
4086
|
+
"n": {
|
|
4087
|
+
"type": "integer"
|
|
4088
|
+
},
|
|
4089
|
+
"of": {
|
|
4090
|
+
"type": "string"
|
|
4091
|
+
},
|
|
4092
|
+
"orderBy": {
|
|
4093
|
+
"type": "array",
|
|
4094
|
+
"items": {
|
|
4095
|
+
"$ref": "#/$defs/TransformSortKey"
|
|
4096
|
+
}
|
|
4097
|
+
},
|
|
4098
|
+
"partitionBy": {
|
|
4099
|
+
"type": "array",
|
|
4100
|
+
"items": {
|
|
4101
|
+
"type": "string"
|
|
4102
|
+
}
|
|
4103
|
+
}
|
|
4104
|
+
},
|
|
4105
|
+
"required": [
|
|
4106
|
+
"$type",
|
|
4107
|
+
"as",
|
|
4108
|
+
"fn",
|
|
4109
|
+
"of",
|
|
4110
|
+
"orderBy",
|
|
4111
|
+
"partitionBy"
|
|
4112
|
+
]
|
|
4113
|
+
},
|
|
4114
|
+
{
|
|
4115
|
+
"type": "object",
|
|
4116
|
+
"properties": {
|
|
4117
|
+
"$type": {
|
|
4118
|
+
"const": "pivot"
|
|
4119
|
+
},
|
|
4120
|
+
"agg": {
|
|
4121
|
+
"$ref": "#/$defs/AggFn"
|
|
4122
|
+
},
|
|
4123
|
+
"index": {
|
|
4124
|
+
"type": "array",
|
|
4125
|
+
"items": {
|
|
4126
|
+
"type": "string"
|
|
4127
|
+
}
|
|
4128
|
+
},
|
|
4129
|
+
"on": {
|
|
4130
|
+
"type": "string"
|
|
4131
|
+
},
|
|
4132
|
+
"values": {
|
|
4133
|
+
"type": "string"
|
|
4134
|
+
}
|
|
4135
|
+
},
|
|
4136
|
+
"required": [
|
|
4137
|
+
"$type",
|
|
4138
|
+
"agg",
|
|
4139
|
+
"index",
|
|
4140
|
+
"on",
|
|
4141
|
+
"values"
|
|
4142
|
+
]
|
|
4143
|
+
},
|
|
4144
|
+
{
|
|
4145
|
+
"type": "object",
|
|
4146
|
+
"properties": {
|
|
4147
|
+
"$type": {
|
|
4148
|
+
"const": "unpivot"
|
|
4149
|
+
},
|
|
4150
|
+
"idVars": {
|
|
4151
|
+
"type": "array",
|
|
4152
|
+
"items": {
|
|
4153
|
+
"type": "string"
|
|
4154
|
+
}
|
|
4155
|
+
},
|
|
4156
|
+
"valueVars": {
|
|
4157
|
+
"type": "array",
|
|
4158
|
+
"items": {
|
|
4159
|
+
"type": "string"
|
|
4160
|
+
}
|
|
4161
|
+
}
|
|
4162
|
+
},
|
|
4163
|
+
"required": [
|
|
4164
|
+
"$type",
|
|
4165
|
+
"idVars",
|
|
4166
|
+
"valueVars"
|
|
4167
|
+
]
|
|
4168
|
+
},
|
|
4169
|
+
{
|
|
4170
|
+
"type": "object",
|
|
4171
|
+
"properties": {
|
|
4172
|
+
"$type": {
|
|
4173
|
+
"const": "sort"
|
|
4174
|
+
},
|
|
4175
|
+
"by": {
|
|
4176
|
+
"type": "array",
|
|
4177
|
+
"items": {
|
|
4178
|
+
"$ref": "#/$defs/TransformSortKey"
|
|
4179
|
+
}
|
|
4180
|
+
}
|
|
4181
|
+
},
|
|
4182
|
+
"required": [
|
|
4183
|
+
"$type",
|
|
4184
|
+
"by"
|
|
4185
|
+
]
|
|
4186
|
+
},
|
|
4187
|
+
{
|
|
4188
|
+
"type": "object",
|
|
4189
|
+
"properties": {
|
|
4190
|
+
"$type": {
|
|
4191
|
+
"const": "distinct"
|
|
4192
|
+
}
|
|
4193
|
+
},
|
|
4194
|
+
"required": [
|
|
4195
|
+
"$type"
|
|
4196
|
+
]
|
|
4197
|
+
},
|
|
4198
|
+
{
|
|
4199
|
+
"type": "object",
|
|
4200
|
+
"properties": {
|
|
4201
|
+
"$type": {
|
|
4202
|
+
"const": "limit"
|
|
4203
|
+
},
|
|
4204
|
+
"n": {
|
|
4205
|
+
"type": "integer"
|
|
4206
|
+
},
|
|
4207
|
+
"offset": {
|
|
4208
|
+
"type": "integer"
|
|
4209
|
+
}
|
|
4210
|
+
},
|
|
4211
|
+
"required": [
|
|
4212
|
+
"$type",
|
|
4213
|
+
"n"
|
|
4214
|
+
]
|
|
4215
|
+
},
|
|
4216
|
+
{
|
|
4217
|
+
"type": "object",
|
|
4218
|
+
"properties": {
|
|
4219
|
+
"$type": {
|
|
4220
|
+
"const": "union"
|
|
3051
4221
|
},
|
|
3052
4222
|
"source": {
|
|
3053
4223
|
"type": "object"
|
|
@@ -3055,7 +4225,6 @@
|
|
|
3055
4225
|
},
|
|
3056
4226
|
"required": [
|
|
3057
4227
|
"$type",
|
|
3058
|
-
"pipeline",
|
|
3059
4228
|
"source"
|
|
3060
4229
|
]
|
|
3061
4230
|
},
|
|
@@ -3063,26 +4232,132 @@
|
|
|
3063
4232
|
"type": "object",
|
|
3064
4233
|
"properties": {
|
|
3065
4234
|
"$type": {
|
|
3066
|
-
"const": "
|
|
4235
|
+
"const": "intersect"
|
|
3067
4236
|
},
|
|
3068
|
-
"
|
|
3069
|
-
"type": "
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
|
|
4237
|
+
"source": {
|
|
4238
|
+
"type": "object"
|
|
4239
|
+
}
|
|
4240
|
+
},
|
|
4241
|
+
"required": [
|
|
4242
|
+
"$type",
|
|
4243
|
+
"source"
|
|
4244
|
+
]
|
|
4245
|
+
},
|
|
4246
|
+
{
|
|
4247
|
+
"type": "object",
|
|
4248
|
+
"properties": {
|
|
4249
|
+
"$type": {
|
|
4250
|
+
"const": "except"
|
|
3073
4251
|
},
|
|
3074
|
-
"
|
|
3075
|
-
"type": "
|
|
4252
|
+
"source": {
|
|
4253
|
+
"type": "object"
|
|
3076
4254
|
}
|
|
3077
4255
|
},
|
|
3078
4256
|
"required": [
|
|
3079
4257
|
"$type",
|
|
3080
|
-
"
|
|
3081
|
-
"capabilityId"
|
|
4258
|
+
"source"
|
|
3082
4259
|
]
|
|
3083
4260
|
}
|
|
3084
4261
|
]
|
|
3085
4262
|
},
|
|
4263
|
+
"TransformRename": {
|
|
4264
|
+
"type": "object",
|
|
4265
|
+
"properties": {
|
|
4266
|
+
"a": {
|
|
4267
|
+
"type": "string"
|
|
4268
|
+
},
|
|
4269
|
+
"b": {
|
|
4270
|
+
"type": "string"
|
|
4271
|
+
}
|
|
4272
|
+
},
|
|
4273
|
+
"required": [
|
|
4274
|
+
"a",
|
|
4275
|
+
"b"
|
|
4276
|
+
]
|
|
4277
|
+
},
|
|
4278
|
+
"TransformAgg": {
|
|
4279
|
+
"type": "object",
|
|
4280
|
+
"properties": {
|
|
4281
|
+
"fn": {
|
|
4282
|
+
"$ref": "#/$defs/AggFn"
|
|
4283
|
+
},
|
|
4284
|
+
"name": {
|
|
4285
|
+
"type": "string"
|
|
4286
|
+
},
|
|
4287
|
+
"of": {
|
|
4288
|
+
"type": "string"
|
|
4289
|
+
}
|
|
4290
|
+
},
|
|
4291
|
+
"required": [
|
|
4292
|
+
"fn",
|
|
4293
|
+
"name",
|
|
4294
|
+
"of"
|
|
4295
|
+
]
|
|
4296
|
+
},
|
|
4297
|
+
"TransformSortKey": {
|
|
4298
|
+
"type": "object",
|
|
4299
|
+
"properties": {
|
|
4300
|
+
"col": {
|
|
4301
|
+
"type": "string"
|
|
4302
|
+
},
|
|
4303
|
+
"dir": {
|
|
4304
|
+
"$ref": "#/$defs/SortDir"
|
|
4305
|
+
}
|
|
4306
|
+
},
|
|
4307
|
+
"required": [
|
|
4308
|
+
"col"
|
|
4309
|
+
]
|
|
4310
|
+
},
|
|
4311
|
+
"SortDir": {
|
|
4312
|
+
"type": "string",
|
|
4313
|
+
"enum": [
|
|
4314
|
+
"asc",
|
|
4315
|
+
"desc"
|
|
4316
|
+
]
|
|
4317
|
+
},
|
|
4318
|
+
"JoinKind": {
|
|
4319
|
+
"type": "string",
|
|
4320
|
+
"enum": [
|
|
4321
|
+
"inner",
|
|
4322
|
+
"left",
|
|
4323
|
+
"right",
|
|
4324
|
+
"outer",
|
|
4325
|
+
"semi",
|
|
4326
|
+
"anti"
|
|
4327
|
+
]
|
|
4328
|
+
},
|
|
4329
|
+
"AggFn": {
|
|
4330
|
+
"type": "string",
|
|
4331
|
+
"enum": [
|
|
4332
|
+
"sum",
|
|
4333
|
+
"mean",
|
|
4334
|
+
"min",
|
|
4335
|
+
"max",
|
|
4336
|
+
"count",
|
|
4337
|
+
"median",
|
|
4338
|
+
"stddev",
|
|
4339
|
+
"first",
|
|
4340
|
+
"last",
|
|
4341
|
+
"countDistinct"
|
|
4342
|
+
]
|
|
4343
|
+
},
|
|
4344
|
+
"WindowFn": {
|
|
4345
|
+
"type": "string",
|
|
4346
|
+
"enum": [
|
|
4347
|
+
"rowNumber",
|
|
4348
|
+
"rank",
|
|
4349
|
+
"lag",
|
|
4350
|
+
"lead",
|
|
4351
|
+
"cumulSum",
|
|
4352
|
+
"rollingMean",
|
|
4353
|
+
"denseRank",
|
|
4354
|
+
"competitionRank",
|
|
4355
|
+
"ntile",
|
|
4356
|
+
"cumulMax",
|
|
4357
|
+
"cumulMin",
|
|
4358
|
+
"rollingSum"
|
|
4359
|
+
]
|
|
4360
|
+
},
|
|
3086
4361
|
"LocalFlushTrigger": {
|
|
3087
4362
|
"oneOf": [
|
|
3088
4363
|
{
|
|
@@ -3231,7 +4506,10 @@
|
|
|
3231
4506
|
"const": "Navigate"
|
|
3232
4507
|
},
|
|
3233
4508
|
"route": {
|
|
3234
|
-
"
|
|
4509
|
+
"$ref": "#/$defs/TextSource"
|
|
4510
|
+
},
|
|
4511
|
+
"target": {
|
|
4512
|
+
"$ref": "#/$defs/NavigateTarget"
|
|
3235
4513
|
}
|
|
3236
4514
|
},
|
|
3237
4515
|
"required": [
|
|
@@ -3368,8 +4646,7 @@
|
|
|
3368
4646
|
"required": [
|
|
3369
4647
|
"$type",
|
|
3370
4648
|
"encoding",
|
|
3371
|
-
"fileRef"
|
|
3372
|
-
"onRead"
|
|
4649
|
+
"fileRef"
|
|
3373
4650
|
]
|
|
3374
4651
|
},
|
|
3375
4652
|
{
|
|
@@ -3381,7 +4658,19 @@
|
|
|
3381
4658
|
"args": {
|
|
3382
4659
|
"type": "array",
|
|
3383
4660
|
"items": {
|
|
3384
|
-
"type": "object"
|
|
4661
|
+
"type": "object",
|
|
4662
|
+
"properties": {
|
|
4663
|
+
"addr": {
|
|
4664
|
+
"type": "string"
|
|
4665
|
+
},
|
|
4666
|
+
"value": {
|
|
4667
|
+
"type": "string"
|
|
4668
|
+
}
|
|
4669
|
+
},
|
|
4670
|
+
"required": [
|
|
4671
|
+
"addr",
|
|
4672
|
+
"value"
|
|
4673
|
+
]
|
|
3385
4674
|
}
|
|
3386
4675
|
},
|
|
3387
4676
|
"capabilityId": {
|
|
@@ -3405,6 +4694,43 @@
|
|
|
3405
4694
|
"$type"
|
|
3406
4695
|
],
|
|
3407
4696
|
"additionalProperties": false
|
|
4697
|
+
},
|
|
4698
|
+
{
|
|
4699
|
+
"type": "object",
|
|
4700
|
+
"properties": {
|
|
4701
|
+
"$type": {
|
|
4702
|
+
"const": "Confirm"
|
|
4703
|
+
},
|
|
4704
|
+
"onCancel": {
|
|
4705
|
+
"$ref": "#/$defs/Action"
|
|
4706
|
+
},
|
|
4707
|
+
"onConfirm": {
|
|
4708
|
+
"$ref": "#/$defs/Action"
|
|
4709
|
+
},
|
|
4710
|
+
"prompt": {
|
|
4711
|
+
"$ref": "#/$defs/TextSource"
|
|
4712
|
+
}
|
|
4713
|
+
},
|
|
4714
|
+
"required": [
|
|
4715
|
+
"$type",
|
|
4716
|
+
"onConfirm",
|
|
4717
|
+
"prompt"
|
|
4718
|
+
]
|
|
4719
|
+
},
|
|
4720
|
+
{
|
|
4721
|
+
"type": "object",
|
|
4722
|
+
"properties": {
|
|
4723
|
+
"$type": {
|
|
4724
|
+
"const": "Focus"
|
|
4725
|
+
},
|
|
4726
|
+
"nodeId": {
|
|
4727
|
+
"type": "string"
|
|
4728
|
+
}
|
|
4729
|
+
},
|
|
4730
|
+
"required": [
|
|
4731
|
+
"$type",
|
|
4732
|
+
"nodeId"
|
|
4733
|
+
]
|
|
3408
4734
|
}
|
|
3409
4735
|
]
|
|
3410
4736
|
},
|
|
@@ -3780,6 +5106,20 @@
|
|
|
3780
5106
|
"style",
|
|
3781
5107
|
"unit"
|
|
3782
5108
|
]
|
|
5109
|
+
},
|
|
5110
|
+
{
|
|
5111
|
+
"type": "object",
|
|
5112
|
+
"properties": {
|
|
5113
|
+
"$type": {
|
|
5114
|
+
"const": "Since"
|
|
5115
|
+
},
|
|
5116
|
+
"unit": {
|
|
5117
|
+
"$ref": "#/$defs/RelativeTimeUnit"
|
|
5118
|
+
}
|
|
5119
|
+
},
|
|
5120
|
+
"required": [
|
|
5121
|
+
"$type"
|
|
5122
|
+
]
|
|
3783
5123
|
}
|
|
3784
5124
|
]
|
|
3785
5125
|
},
|
|
@@ -3953,7 +5293,7 @@
|
|
|
3953
5293
|
"$ref": "#/$defs/Binding_list_SelectOption"
|
|
3954
5294
|
},
|
|
3955
5295
|
"value": {
|
|
3956
|
-
"$ref": "#/$defs/
|
|
5296
|
+
"$ref": "#/$defs/Binding_str_choice"
|
|
3957
5297
|
}
|
|
3958
5298
|
},
|
|
3959
5299
|
"required": [
|
|
@@ -4036,7 +5376,7 @@
|
|
|
4036
5376
|
"$ref": "#/$defs/Orientation"
|
|
4037
5377
|
},
|
|
4038
5378
|
"value": {
|
|
4039
|
-
"$ref": "#/$defs/
|
|
5379
|
+
"$ref": "#/$defs/Binding_str_choice"
|
|
4040
5380
|
}
|
|
4041
5381
|
},
|
|
4042
5382
|
"required": [
|
|
@@ -4162,7 +5502,7 @@
|
|
|
4162
5502
|
"$ref": "#/$defs/Binding_list_SelectOption"
|
|
4163
5503
|
},
|
|
4164
5504
|
"value": {
|
|
4165
|
-
"$ref": "#/$defs/
|
|
5505
|
+
"$ref": "#/$defs/Binding_str_choice"
|
|
4166
5506
|
}
|
|
4167
5507
|
},
|
|
4168
5508
|
"required": [
|
|
@@ -4282,8 +5622,7 @@
|
|
|
4282
5622
|
}
|
|
4283
5623
|
},
|
|
4284
5624
|
"required": [
|
|
4285
|
-
"$type"
|
|
4286
|
-
"onEdit"
|
|
5625
|
+
"$type"
|
|
4287
5626
|
]
|
|
4288
5627
|
},
|
|
4289
5628
|
{
|
|
@@ -4301,8 +5640,7 @@
|
|
|
4301
5640
|
},
|
|
4302
5641
|
"required": [
|
|
4303
5642
|
"$type",
|
|
4304
|
-
"get"
|
|
4305
|
-
"onToggle"
|
|
5643
|
+
"get"
|
|
4306
5644
|
]
|
|
4307
5645
|
},
|
|
4308
5646
|
{
|
|
@@ -4320,8 +5658,7 @@
|
|
|
4320
5658
|
},
|
|
4321
5659
|
"required": [
|
|
4322
5660
|
"$type",
|
|
4323
|
-
"label"
|
|
4324
|
-
"onClick"
|
|
5661
|
+
"label"
|
|
4325
5662
|
]
|
|
4326
5663
|
},
|
|
4327
5664
|
{
|
|
@@ -4343,8 +5680,7 @@
|
|
|
4343
5680
|
}
|
|
4344
5681
|
},
|
|
4345
5682
|
"required": [
|
|
4346
|
-
"label"
|
|
4347
|
-
"onClick"
|
|
5683
|
+
"label"
|
|
4348
5684
|
]
|
|
4349
5685
|
}
|
|
4350
5686
|
}
|
|
@@ -4432,8 +5768,7 @@
|
|
|
4432
5768
|
},
|
|
4433
5769
|
"required": [
|
|
4434
5770
|
"$type",
|
|
4435
|
-
"fractionFn"
|
|
4436
|
-
"labelFn"
|
|
5771
|
+
"fractionFn"
|
|
4437
5772
|
]
|
|
4438
5773
|
},
|
|
4439
5774
|
{
|
|
@@ -6333,7 +7668,7 @@
|
|
|
6333
7668
|
"$ref": "#/$defs/Binding_list_SelectOption"
|
|
6334
7669
|
},
|
|
6335
7670
|
"value": {
|
|
6336
|
-
"$ref": "#/$defs/
|
|
7671
|
+
"$ref": "#/$defs/Binding_str_choice"
|
|
6337
7672
|
},
|
|
6338
7673
|
"placeholder": {
|
|
6339
7674
|
"$ref": "#/$defs/TextSource"
|
|
@@ -6395,8 +7730,7 @@
|
|
|
6395
7730
|
"required": [
|
|
6396
7731
|
"accept",
|
|
6397
7732
|
"label",
|
|
6398
|
-
"multiple"
|
|
6399
|
-
"onSelect"
|
|
7733
|
+
"multiple"
|
|
6400
7734
|
]
|
|
6401
7735
|
},
|
|
6402
7736
|
"InputKind": {
|
|
@@ -6759,6 +8093,12 @@
|
|
|
6759
8093
|
"xScale": {
|
|
6760
8094
|
"$ref": "#/$defs/ChartXScale"
|
|
6761
8095
|
},
|
|
8096
|
+
"annotations": {
|
|
8097
|
+
"type": "array",
|
|
8098
|
+
"items": {
|
|
8099
|
+
"$ref": "#/$defs/ChartAnnotation"
|
|
8100
|
+
}
|
|
8101
|
+
},
|
|
6762
8102
|
"onPointClick": {
|
|
6763
8103
|
"const": "<closure>"
|
|
6764
8104
|
}
|
|
@@ -6770,6 +8110,140 @@
|
|
|
6770
8110
|
"yFields"
|
|
6771
8111
|
]
|
|
6772
8112
|
},
|
|
8113
|
+
"ChartAnnotation": {
|
|
8114
|
+
"oneOf": [
|
|
8115
|
+
{
|
|
8116
|
+
"type": "object",
|
|
8117
|
+
"properties": {
|
|
8118
|
+
"$type": {
|
|
8119
|
+
"const": "ReferenceLine"
|
|
8120
|
+
},
|
|
8121
|
+
"value": {
|
|
8122
|
+
"type": "number"
|
|
8123
|
+
},
|
|
8124
|
+
"label": {
|
|
8125
|
+
"$ref": "#/$defs/TextSource"
|
|
8126
|
+
}
|
|
8127
|
+
},
|
|
8128
|
+
"required": [
|
|
8129
|
+
"$type",
|
|
8130
|
+
"value"
|
|
8131
|
+
]
|
|
8132
|
+
},
|
|
8133
|
+
{
|
|
8134
|
+
"type": "object",
|
|
8135
|
+
"properties": {
|
|
8136
|
+
"$type": {
|
|
8137
|
+
"const": "EventMarker"
|
|
8138
|
+
},
|
|
8139
|
+
"at": {
|
|
8140
|
+
"$ref": "#/$defs/ChartAnnotationX"
|
|
8141
|
+
},
|
|
8142
|
+
"label": {
|
|
8143
|
+
"$ref": "#/$defs/TextSource"
|
|
8144
|
+
}
|
|
8145
|
+
},
|
|
8146
|
+
"required": [
|
|
8147
|
+
"$type",
|
|
8148
|
+
"at"
|
|
8149
|
+
]
|
|
8150
|
+
},
|
|
8151
|
+
{
|
|
8152
|
+
"type": "object",
|
|
8153
|
+
"properties": {
|
|
8154
|
+
"$type": {
|
|
8155
|
+
"const": "RangeBand"
|
|
8156
|
+
},
|
|
8157
|
+
"range": {
|
|
8158
|
+
"$ref": "#/$defs/ChartAnnotationRange"
|
|
8159
|
+
},
|
|
8160
|
+
"label": {
|
|
8161
|
+
"$ref": "#/$defs/TextSource"
|
|
8162
|
+
}
|
|
8163
|
+
},
|
|
8164
|
+
"required": [
|
|
8165
|
+
"$type",
|
|
8166
|
+
"range"
|
|
8167
|
+
]
|
|
8168
|
+
}
|
|
8169
|
+
]
|
|
8170
|
+
},
|
|
8171
|
+
"ChartAnnotationRange": {
|
|
8172
|
+
"oneOf": [
|
|
8173
|
+
{
|
|
8174
|
+
"type": "object",
|
|
8175
|
+
"properties": {
|
|
8176
|
+
"$type": {
|
|
8177
|
+
"const": "ValueRange"
|
|
8178
|
+
},
|
|
8179
|
+
"from": {
|
|
8180
|
+
"type": "number"
|
|
8181
|
+
},
|
|
8182
|
+
"to": {
|
|
8183
|
+
"type": "number"
|
|
8184
|
+
}
|
|
8185
|
+
},
|
|
8186
|
+
"required": [
|
|
8187
|
+
"$type",
|
|
8188
|
+
"from",
|
|
8189
|
+
"to"
|
|
8190
|
+
]
|
|
8191
|
+
},
|
|
8192
|
+
{
|
|
8193
|
+
"type": "object",
|
|
8194
|
+
"properties": {
|
|
8195
|
+
"$type": {
|
|
8196
|
+
"const": "XRange"
|
|
8197
|
+
},
|
|
8198
|
+
"from": {
|
|
8199
|
+
"$ref": "#/$defs/ChartAnnotationX"
|
|
8200
|
+
},
|
|
8201
|
+
"to": {
|
|
8202
|
+
"$ref": "#/$defs/ChartAnnotationX"
|
|
8203
|
+
}
|
|
8204
|
+
},
|
|
8205
|
+
"required": [
|
|
8206
|
+
"$type",
|
|
8207
|
+
"from",
|
|
8208
|
+
"to"
|
|
8209
|
+
]
|
|
8210
|
+
}
|
|
8211
|
+
]
|
|
8212
|
+
},
|
|
8213
|
+
"ChartAnnotationX": {
|
|
8214
|
+
"oneOf": [
|
|
8215
|
+
{
|
|
8216
|
+
"type": "object",
|
|
8217
|
+
"properties": {
|
|
8218
|
+
"$type": {
|
|
8219
|
+
"const": "Category"
|
|
8220
|
+
},
|
|
8221
|
+
"key": {
|
|
8222
|
+
"type": "string"
|
|
8223
|
+
}
|
|
8224
|
+
},
|
|
8225
|
+
"required": [
|
|
8226
|
+
"$type",
|
|
8227
|
+
"key"
|
|
8228
|
+
]
|
|
8229
|
+
},
|
|
8230
|
+
{
|
|
8231
|
+
"type": "object",
|
|
8232
|
+
"properties": {
|
|
8233
|
+
"$type": {
|
|
8234
|
+
"const": "Date"
|
|
8235
|
+
},
|
|
8236
|
+
"iso": {
|
|
8237
|
+
"type": "string"
|
|
8238
|
+
}
|
|
8239
|
+
},
|
|
8240
|
+
"required": [
|
|
8241
|
+
"$type",
|
|
8242
|
+
"iso"
|
|
8243
|
+
]
|
|
8244
|
+
}
|
|
8245
|
+
]
|
|
8246
|
+
},
|
|
6773
8247
|
"MapMarker": {
|
|
6774
8248
|
"type": "object",
|
|
6775
8249
|
"properties": {
|
|
@@ -7917,18 +9391,46 @@
|
|
|
7917
9391
|
"cases": {
|
|
7918
9392
|
"type": "array",
|
|
7919
9393
|
"items": {
|
|
7920
|
-
"
|
|
7921
|
-
|
|
7922
|
-
|
|
7923
|
-
"
|
|
9394
|
+
"allOf": [
|
|
9395
|
+
{
|
|
9396
|
+
"type": "object",
|
|
9397
|
+
"properties": {
|
|
9398
|
+
"child": {
|
|
9399
|
+
"$ref": "#/$defs/Node"
|
|
9400
|
+
},
|
|
9401
|
+
"match": {
|
|
9402
|
+
"type": "string"
|
|
9403
|
+
},
|
|
9404
|
+
"when": {
|
|
9405
|
+
"$ref": "#/$defs/Binding_bool"
|
|
9406
|
+
}
|
|
9407
|
+
},
|
|
9408
|
+
"required": [
|
|
9409
|
+
"child"
|
|
9410
|
+
]
|
|
9411
|
+
},
|
|
9412
|
+
{
|
|
9413
|
+
"anyOf": [
|
|
9414
|
+
{
|
|
9415
|
+
"required": [
|
|
9416
|
+
"match"
|
|
9417
|
+
]
|
|
9418
|
+
},
|
|
9419
|
+
{
|
|
9420
|
+
"required": [
|
|
9421
|
+
"when"
|
|
9422
|
+
]
|
|
9423
|
+
}
|
|
9424
|
+
]
|
|
7924
9425
|
},
|
|
7925
|
-
|
|
7926
|
-
"
|
|
9426
|
+
{
|
|
9427
|
+
"not": {
|
|
9428
|
+
"required": [
|
|
9429
|
+
"match",
|
|
9430
|
+
"when"
|
|
9431
|
+
]
|
|
9432
|
+
}
|
|
7927
9433
|
}
|
|
7928
|
-
},
|
|
7929
|
-
"required": [
|
|
7930
|
-
"child",
|
|
7931
|
-
"match"
|
|
7932
9434
|
]
|
|
7933
9435
|
}
|
|
7934
9436
|
},
|
|
@@ -8049,7 +9551,6 @@
|
|
|
8049
9551
|
"$type",
|
|
8050
9552
|
"capabilities",
|
|
8051
9553
|
"channel",
|
|
8052
|
-
"onBubble",
|
|
8053
9554
|
"scopeId"
|
|
8054
9555
|
]
|
|
8055
9556
|
}
|
|
@@ -8250,6 +9751,9 @@
|
|
|
8250
9751
|
},
|
|
8251
9752
|
"tooltip": {
|
|
8252
9753
|
"$ref": "#/$defs/TextSource"
|
|
9754
|
+
},
|
|
9755
|
+
"visible": {
|
|
9756
|
+
"$ref": "#/$defs/Binding_bool"
|
|
8253
9757
|
}
|
|
8254
9758
|
},
|
|
8255
9759
|
"required": [
|