rtistree 0.5.1 → 0.6.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.
Files changed (51) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/CONTRIBUTING.md +47 -0
  3. package/README.md +14 -5
  4. package/SECURITY.md +20 -0
  5. package/THIRD_PARTY_NOTICES.md +1 -1
  6. package/dist/cli.js +17 -3
  7. package/dist/cli.js.map +1 -1
  8. package/dist/commands.d.ts +12 -0
  9. package/dist/index.d.ts +1 -0
  10. package/dist/index.js +1 -0
  11. package/dist/index.js.map +1 -1
  12. package/dist/mcp.js +18 -2
  13. package/dist/mcp.js.map +1 -1
  14. package/dist/print-scene.d.ts +6 -0
  15. package/dist/program.js +3 -1
  16. package/dist/program.js.map +1 -1
  17. package/dist/project-config.js +2 -1
  18. package/dist/project-config.js.map +1 -1
  19. package/dist/render.js +21 -1
  20. package/dist/render.js.map +1 -1
  21. package/dist/schema.d.ts +46 -0
  22. package/dist/schema.js +107 -0
  23. package/dist/schema.js.map +1 -1
  24. package/dist/sprites.d.ts +31 -0
  25. package/dist/sprites.js +142 -0
  26. package/dist/sprites.js.map +1 -0
  27. package/dist/studio-reference.js +1 -1
  28. package/dist/studio-reference.js.map +1 -1
  29. package/docs/agent-art-workflow.md +10 -0
  30. package/docs/agent-setup.md +8 -3
  31. package/docs/atelier.md +12 -1
  32. package/docs/cli-reference.md +76 -25
  33. package/docs/core-concepts.md +95 -0
  34. package/docs/decisions/004-print-production-and-projects.md +1 -1
  35. package/docs/decisions/005-programmable-digital-art.md +1 -1
  36. package/docs/engine-overview.md +121 -165
  37. package/docs/evolution.md +12 -9
  38. package/docs/getting-started.md +15 -8
  39. package/docs/next-milestone.md +4 -4
  40. package/docs/production.md +22 -16
  41. package/docs/releasing.md +99 -43
  42. package/docs/scene-format.md +44 -7
  43. package/docs/sprites.md +166 -0
  44. package/docs/studio.md +25 -10
  45. package/examples/hello/README.md +4 -0
  46. package/package.json +8 -5
  47. package/schemas/authoring.schema.json +359 -229
  48. package/schemas/command.schema.json +462 -332
  49. package/schemas/patch.schema.json +462 -332
  50. package/schemas/scene.schema.json +347 -217
  51. package/schemas/sprites.schema.json +41 -0
@@ -72,6 +72,108 @@
72
72
  "$ref": "#/$defs/__schema12"
73
73
  }
74
74
  },
75
+ "pixel_art": {
76
+ "type": "object",
77
+ "properties": {
78
+ "scale": {
79
+ "default": 1,
80
+ "type": "integer",
81
+ "minimum": 1,
82
+ "maximum": 256
83
+ },
84
+ "palette": {
85
+ "minItems": 1,
86
+ "maxItems": 256,
87
+ "type": "array",
88
+ "items": {
89
+ "$ref": "#/$defs/__schema0"
90
+ }
91
+ },
92
+ "strict": {
93
+ "default": true,
94
+ "type": "boolean"
95
+ }
96
+ },
97
+ "required": ["scale", "strict"],
98
+ "additionalProperties": false
99
+ },
100
+ "sprites": {
101
+ "type": "object",
102
+ "properties": {
103
+ "frames": {
104
+ "type": "object",
105
+ "propertyNames": {
106
+ "$ref": "#/$defs/__schema2"
107
+ },
108
+ "additionalProperties": {
109
+ "$ref": "#/$defs/__schema13"
110
+ }
111
+ },
112
+ "animations": {
113
+ "default": {},
114
+ "type": "object",
115
+ "propertyNames": {
116
+ "$ref": "#/$defs/__schema2"
117
+ },
118
+ "additionalProperties": {
119
+ "type": "object",
120
+ "properties": {
121
+ "frames": {
122
+ "minItems": 1,
123
+ "maxItems": 4096,
124
+ "type": "array",
125
+ "items": {
126
+ "$ref": "#/$defs/__schema2"
127
+ }
128
+ },
129
+ "loop": {
130
+ "default": true,
131
+ "type": "boolean"
132
+ }
133
+ },
134
+ "required": ["frames", "loop"],
135
+ "additionalProperties": false
136
+ }
137
+ },
138
+ "atlas": {
139
+ "default": {
140
+ "padding": 0,
141
+ "extrusion": 0,
142
+ "power_of_two": false,
143
+ "max_width": 8192
144
+ },
145
+ "type": "object",
146
+ "properties": {
147
+ "padding": {
148
+ "default": 0,
149
+ "type": "integer",
150
+ "minimum": 0,
151
+ "maximum": 128
152
+ },
153
+ "extrusion": {
154
+ "default": 0,
155
+ "type": "integer",
156
+ "minimum": 0,
157
+ "maximum": 32
158
+ },
159
+ "power_of_two": {
160
+ "default": false,
161
+ "type": "boolean"
162
+ },
163
+ "max_width": {
164
+ "default": 8192,
165
+ "type": "integer",
166
+ "minimum": 1,
167
+ "maximum": 8192
168
+ }
169
+ },
170
+ "required": ["padding", "extrusion", "power_of_two", "max_width"],
171
+ "additionalProperties": false
172
+ }
173
+ },
174
+ "required": ["frames", "animations", "atlas"],
175
+ "additionalProperties": false
176
+ },
75
177
  "assets": {
76
178
  "default": {},
77
179
  "type": "object",
@@ -79,14 +181,14 @@
79
181
  "$ref": "#/$defs/__schema2"
80
182
  },
81
183
  "additionalProperties": {
82
- "$ref": "#/$defs/__schema13"
184
+ "$ref": "#/$defs/__schema17"
83
185
  }
84
186
  },
85
187
  "layers": {
86
188
  "maxItems": 256,
87
189
  "type": "array",
88
190
  "items": {
89
- "$ref": "#/$defs/__schema14"
191
+ "$ref": "#/$defs/__schema18"
90
192
  }
91
193
  },
92
194
  "verification": {
@@ -100,7 +202,7 @@
100
202
  "maxItems": 256,
101
203
  "type": "array",
102
204
  "items": {
103
- "$ref": "#/$defs/__schema55"
205
+ "$ref": "#/$defs/__schema56"
104
206
  }
105
207
  }
106
208
  },
@@ -144,14 +246,14 @@
144
246
  "const": "setPath"
145
247
  },
146
248
  "target": {
147
- "$ref": "#/$defs/__schema56"
249
+ "$ref": "#/$defs/__schema57"
148
250
  },
149
251
  "segments": {
150
252
  "minItems": 1,
151
253
  "maxItems": 4096,
152
254
  "type": "array",
153
255
  "items": {
154
- "$ref": "#/$defs/__schema57"
256
+ "$ref": "#/$defs/__schema58"
155
257
  }
156
258
  }
157
259
  },
@@ -166,12 +268,12 @@
166
268
  "const": "setAffine"
167
269
  },
168
270
  "target": {
169
- "$ref": "#/$defs/__schema56"
271
+ "$ref": "#/$defs/__schema57"
170
272
  },
171
273
  "matrix": {
172
274
  "anyOf": [
173
275
  {
174
- "$ref": "#/$defs/__schema26"
276
+ "$ref": "#/$defs/__schema28"
175
277
  },
176
278
  {
177
279
  "type": "null"
@@ -190,12 +292,12 @@
190
292
  "const": "setCrop"
191
293
  },
192
294
  "target": {
193
- "$ref": "#/$defs/__schema56"
295
+ "$ref": "#/$defs/__schema57"
194
296
  },
195
297
  "crop": {
196
298
  "anyOf": [
197
299
  {
198
- "$ref": "#/$defs/__schema18"
300
+ "$ref": "#/$defs/__schema14"
199
301
  },
200
302
  {
201
303
  "type": "null"
@@ -203,7 +305,7 @@
203
305
  ]
204
306
  },
205
307
  "focal_point": {
206
- "$ref": "#/$defs/__schema37"
308
+ "$ref": "#/$defs/__schema39"
207
309
  }
208
310
  },
209
311
  "required": ["type", "target", "crop"],
@@ -217,12 +319,12 @@
217
319
  "const": "setPerspective"
218
320
  },
219
321
  "target": {
220
- "$ref": "#/$defs/__schema56"
322
+ "$ref": "#/$defs/__schema57"
221
323
  },
222
324
  "corners": {
223
325
  "anyOf": [
224
326
  {
225
- "$ref": "#/$defs/__schema38"
327
+ "$ref": "#/$defs/__schema40"
226
328
  },
227
329
  {
228
330
  "type": "null"
@@ -241,10 +343,10 @@
241
343
  "const": "setTextRuns"
242
344
  },
243
345
  "target": {
244
- "$ref": "#/$defs/__schema56"
346
+ "$ref": "#/$defs/__schema57"
245
347
  },
246
348
  "runs": {
247
- "$ref": "#/$defs/__schema35"
349
+ "$ref": "#/$defs/__schema37"
248
350
  }
249
351
  },
250
352
  "required": ["type", "target", "runs"],
@@ -275,7 +377,7 @@
275
377
  "const": "useParagraphStyle"
276
378
  },
277
379
  "target": {
278
- "$ref": "#/$defs/__schema56"
380
+ "$ref": "#/$defs/__schema57"
279
381
  },
280
382
  "id": {
281
383
  "type": "string"
@@ -292,13 +394,13 @@
292
394
  "const": "setAdjustmentStack"
293
395
  },
294
396
  "target": {
295
- "$ref": "#/$defs/__schema56"
397
+ "$ref": "#/$defs/__schema57"
296
398
  },
297
399
  "operations": {
298
400
  "maxItems": 1000,
299
401
  "type": "array",
300
402
  "items": {
301
- "$ref": "#/$defs/__schema46"
403
+ "$ref": "#/$defs/__schema47"
302
404
  }
303
405
  }
304
406
  },
@@ -317,7 +419,7 @@
317
419
  "maxItems": 32,
318
420
  "type": "array",
319
421
  "items": {
320
- "$ref": "#/$defs/__schema58"
422
+ "$ref": "#/$defs/__schema59"
321
423
  }
322
424
  },
323
425
  "id": {
@@ -370,10 +472,10 @@
370
472
  "const": "promoteRegion"
371
473
  },
372
474
  "target": {
373
- "$ref": "#/$defs/__schema56"
475
+ "$ref": "#/$defs/__schema57"
374
476
  },
375
477
  "region": {
376
- "$ref": "#/$defs/__schema50"
478
+ "$ref": "#/$defs/__schema51"
377
479
  }
378
480
  },
379
481
  "required": ["type", "target", "region"],
@@ -387,10 +489,10 @@
387
489
  "const": "updateRegion"
388
490
  },
389
491
  "target": {
390
- "$ref": "#/$defs/__schema56"
492
+ "$ref": "#/$defs/__schema57"
391
493
  },
392
494
  "region": {
393
- "$ref": "#/$defs/__schema50"
495
+ "$ref": "#/$defs/__schema51"
394
496
  }
395
497
  },
396
498
  "required": ["type", "target", "region"],
@@ -404,7 +506,7 @@
404
506
  "const": "demoteRegion"
405
507
  },
406
508
  "target": {
407
- "$ref": "#/$defs/__schema56"
509
+ "$ref": "#/$defs/__schema57"
408
510
  },
409
511
  "id": {
410
512
  "type": "string"
@@ -424,7 +526,7 @@
424
526
  "type": "string"
425
527
  },
426
528
  "asset": {
427
- "$ref": "#/$defs/__schema13"
529
+ "$ref": "#/$defs/__schema17"
428
530
  }
429
531
  },
430
532
  "required": ["type", "id", "asset"],
@@ -452,10 +554,10 @@
452
554
  "const": "setShape"
453
555
  },
454
556
  "target": {
455
- "$ref": "#/$defs/__schema56"
557
+ "$ref": "#/$defs/__schema57"
456
558
  },
457
559
  "shape": {
458
- "$ref": "#/$defs/__schema29"
560
+ "$ref": "#/$defs/__schema31"
459
561
  }
460
562
  },
461
563
  "required": ["type", "target", "shape"],
@@ -469,10 +571,10 @@
469
571
  "const": "setGenerator"
470
572
  },
471
573
  "target": {
472
- "$ref": "#/$defs/__schema56"
574
+ "$ref": "#/$defs/__schema57"
473
575
  },
474
576
  "generator": {
475
- "$ref": "#/$defs/__schema41"
577
+ "$ref": "#/$defs/__schema42"
476
578
  }
477
579
  },
478
580
  "required": ["type", "target", "generator"],
@@ -486,12 +588,12 @@
486
588
  "const": "setTransform"
487
589
  },
488
590
  "target": {
489
- "$ref": "#/$defs/__schema56"
591
+ "$ref": "#/$defs/__schema57"
490
592
  },
491
593
  "transform": {
492
594
  "anyOf": [
493
595
  {
494
- "$ref": "#/$defs/__schema27"
596
+ "$ref": "#/$defs/__schema29"
495
597
  },
496
598
  {
497
599
  "type": "null"
@@ -510,12 +612,12 @@
510
612
  "const": "setMask"
511
613
  },
512
614
  "target": {
513
- "$ref": "#/$defs/__schema56"
615
+ "$ref": "#/$defs/__schema57"
514
616
  },
515
617
  "mask": {
516
618
  "anyOf": [
517
619
  {
518
- "$ref": "#/$defs/__schema42"
620
+ "$ref": "#/$defs/__schema43"
519
621
  },
520
622
  {
521
623
  "type": "null"
@@ -534,12 +636,12 @@
534
636
  "const": "setLayout"
535
637
  },
536
638
  "target": {
537
- "$ref": "#/$defs/__schema56"
639
+ "$ref": "#/$defs/__schema57"
538
640
  },
539
641
  "layout": {
540
642
  "anyOf": [
541
643
  {
542
- "$ref": "#/$defs/__schema28"
644
+ "$ref": "#/$defs/__schema30"
543
645
  },
544
646
  {
545
647
  "type": "null"
@@ -558,28 +660,28 @@
558
660
  "const": "setGeometry"
559
661
  },
560
662
  "target": {
561
- "$ref": "#/$defs/__schema56"
663
+ "$ref": "#/$defs/__schema57"
562
664
  },
563
665
  "geometry": {
564
666
  "type": "object",
565
667
  "properties": {
566
668
  "bounds": {
567
- "$ref": "#/$defs/__schema17"
669
+ "$ref": "#/$defs/__schema21"
568
670
  },
569
671
  "width": {
570
- "$ref": "#/$defs/__schema20"
672
+ "$ref": "#/$defs/__schema22"
571
673
  },
572
674
  "height": {
573
- "$ref": "#/$defs/__schema24"
675
+ "$ref": "#/$defs/__schema26"
574
676
  },
575
677
  "anchor": {
576
- "$ref": "#/$defs/__schema25"
678
+ "$ref": "#/$defs/__schema27"
577
679
  },
578
680
  "aspect_ratio": {
579
- "$ref": "#/$defs/__schema22"
681
+ "$ref": "#/$defs/__schema24"
580
682
  },
581
683
  "grow": {
582
- "$ref": "#/$defs/__schema23"
684
+ "$ref": "#/$defs/__schema25"
583
685
  }
584
686
  },
585
687
  "additionalProperties": false
@@ -596,13 +698,13 @@
596
698
  "const": "setSource"
597
699
  },
598
700
  "target": {
599
- "$ref": "#/$defs/__schema56"
701
+ "$ref": "#/$defs/__schema57"
600
702
  },
601
703
  "source": {
602
704
  "type": "string"
603
705
  },
604
706
  "fit": {
605
- "$ref": "#/$defs/__schema40"
707
+ "$ref": "#/$defs/__schema41"
606
708
  }
607
709
  },
608
710
  "required": ["type", "target", "source"],
@@ -616,7 +718,7 @@
616
718
  "const": "setVisibility"
617
719
  },
618
720
  "target": {
619
- "$ref": "#/$defs/__schema56"
721
+ "$ref": "#/$defs/__schema57"
620
722
  },
621
723
  "visible": {
622
724
  "type": "boolean"
@@ -633,7 +735,7 @@
633
735
  "const": "setRole"
634
736
  },
635
737
  "target": {
636
- "$ref": "#/$defs/__schema56"
738
+ "$ref": "#/$defs/__schema57"
637
739
  },
638
740
  "role": {
639
741
  "type": ["string", "null"]
@@ -650,7 +752,7 @@
650
752
  "const": "setZ"
651
753
  },
652
754
  "target": {
653
- "$ref": "#/$defs/__schema56"
755
+ "$ref": "#/$defs/__schema57"
654
756
  },
655
757
  "z": {
656
758
  "type": "number"
@@ -670,7 +772,7 @@
670
772
  "maxItems": 256,
671
773
  "type": "array",
672
774
  "items": {
673
- "$ref": "#/$defs/__schema55"
775
+ "$ref": "#/$defs/__schema56"
674
776
  }
675
777
  }
676
778
  },
@@ -685,7 +787,7 @@
685
787
  "const": "updateEffect"
686
788
  },
687
789
  "target": {
688
- "$ref": "#/$defs/__schema56"
790
+ "$ref": "#/$defs/__schema57"
689
791
  },
690
792
  "index": {
691
793
  "type": "integer",
@@ -693,7 +795,7 @@
693
795
  "maximum": 9007199254740991
694
796
  },
695
797
  "effect": {
696
- "$ref": "#/$defs/__schema45"
798
+ "$ref": "#/$defs/__schema46"
697
799
  }
698
800
  },
699
801
  "required": ["type", "target", "index", "effect"],
@@ -707,7 +809,7 @@
707
809
  "const": "removeEffect"
708
810
  },
709
811
  "target": {
710
- "$ref": "#/$defs/__schema56"
812
+ "$ref": "#/$defs/__schema57"
711
813
  },
712
814
  "index": {
713
815
  "type": "integer",
@@ -726,7 +828,7 @@
726
828
  "const": "updateRasterOperation"
727
829
  },
728
830
  "target": {
729
- "$ref": "#/$defs/__schema56"
831
+ "$ref": "#/$defs/__schema57"
730
832
  },
731
833
  "index": {
732
834
  "type": "integer",
@@ -734,7 +836,7 @@
734
836
  "maximum": 9007199254740991
735
837
  },
736
838
  "operation": {
737
- "$ref": "#/$defs/__schema46"
839
+ "$ref": "#/$defs/__schema47"
738
840
  }
739
841
  },
740
842
  "required": ["type", "target", "index", "operation"],
@@ -748,7 +850,7 @@
748
850
  "const": "removeRasterOperation"
749
851
  },
750
852
  "target": {
751
- "$ref": "#/$defs/__schema56"
853
+ "$ref": "#/$defs/__schema57"
752
854
  },
753
855
  "index": {
754
856
  "type": "integer",
@@ -767,7 +869,7 @@
767
869
  "const": "removeTile"
768
870
  },
769
871
  "target": {
770
- "$ref": "#/$defs/__schema56"
872
+ "$ref": "#/$defs/__schema57"
771
873
  },
772
874
  "index": {
773
875
  "type": "integer",
@@ -786,7 +888,7 @@
786
888
  "const": "addLayer"
787
889
  },
788
890
  "layer": {
789
- "$ref": "#/$defs/__schema14"
891
+ "$ref": "#/$defs/__schema18"
790
892
  },
791
893
  "parent": {
792
894
  "type": "string"
@@ -803,7 +905,7 @@
803
905
  "const": "removeLayer"
804
906
  },
805
907
  "target": {
806
- "$ref": "#/$defs/__schema56"
908
+ "$ref": "#/$defs/__schema57"
807
909
  }
808
910
  },
809
911
  "required": ["type", "target"],
@@ -817,7 +919,7 @@
817
919
  "const": "moveLayer"
818
920
  },
819
921
  "target": {
820
- "$ref": "#/$defs/__schema56"
922
+ "$ref": "#/$defs/__schema57"
821
923
  },
822
924
  "x": {
823
925
  "type": "number"
@@ -837,7 +939,7 @@
837
939
  "const": "resizeLayer"
838
940
  },
839
941
  "target": {
840
- "$ref": "#/$defs/__schema56"
942
+ "$ref": "#/$defs/__schema57"
841
943
  },
842
944
  "width": {
843
945
  "type": "number",
@@ -861,7 +963,7 @@
861
963
  "const": "setOpacity"
862
964
  },
863
965
  "target": {
864
- "$ref": "#/$defs/__schema56"
966
+ "$ref": "#/$defs/__schema57"
865
967
  },
866
968
  "opacity": {
867
969
  "type": "number",
@@ -880,10 +982,10 @@
880
982
  "const": "setBlendMode"
881
983
  },
882
984
  "target": {
883
- "$ref": "#/$defs/__schema56"
985
+ "$ref": "#/$defs/__schema57"
884
986
  },
885
987
  "blend_mode": {
886
- "$ref": "#/$defs/__schema16"
988
+ "$ref": "#/$defs/__schema20"
887
989
  }
888
990
  },
889
991
  "required": ["type", "target", "blend_mode"],
@@ -897,7 +999,7 @@
897
999
  "const": "setText"
898
1000
  },
899
1001
  "target": {
900
- "$ref": "#/$defs/__schema56"
1002
+ "$ref": "#/$defs/__schema57"
901
1003
  },
902
1004
  "content": {
903
1005
  "type": "string",
@@ -915,7 +1017,7 @@
915
1017
  "const": "setStyle"
916
1018
  },
917
1019
  "target": {
918
- "$ref": "#/$defs/__schema56"
1020
+ "$ref": "#/$defs/__schema57"
919
1021
  },
920
1022
  "style": {
921
1023
  "type": "object",
@@ -959,10 +1061,10 @@
959
1061
  "const": "applyEffect"
960
1062
  },
961
1063
  "target": {
962
- "$ref": "#/$defs/__schema56"
1064
+ "$ref": "#/$defs/__schema57"
963
1065
  },
964
1066
  "effect": {
965
- "$ref": "#/$defs/__schema45"
1067
+ "$ref": "#/$defs/__schema46"
966
1068
  }
967
1069
  },
968
1070
  "required": ["type", "target", "effect"],
@@ -976,10 +1078,10 @@
976
1078
  "const": "applyRasterOperation"
977
1079
  },
978
1080
  "target": {
979
- "$ref": "#/$defs/__schema56"
1081
+ "$ref": "#/$defs/__schema57"
980
1082
  },
981
1083
  "operation": {
982
- "$ref": "#/$defs/__schema46"
1084
+ "$ref": "#/$defs/__schema47"
983
1085
  }
984
1086
  },
985
1087
  "required": ["type", "target", "operation"],
@@ -993,10 +1095,10 @@
993
1095
  "const": "replaceTile"
994
1096
  },
995
1097
  "target": {
996
- "$ref": "#/$defs/__schema56"
1098
+ "$ref": "#/$defs/__schema57"
997
1099
  },
998
1100
  "tile": {
999
- "$ref": "#/$defs/__schema51"
1101
+ "$ref": "#/$defs/__schema52"
1000
1102
  }
1001
1103
  },
1002
1104
  "required": ["type", "target", "tile"],
@@ -1013,7 +1115,7 @@
1013
1115
  "minItems": 1,
1014
1116
  "type": "array",
1015
1117
  "items": {
1016
- "$ref": "#/$defs/__schema59"
1118
+ "$ref": "#/$defs/__schema60"
1017
1119
  }
1018
1120
  },
1019
1121
  "id": {
@@ -1037,7 +1139,7 @@
1037
1139
  "minItems": 1,
1038
1140
  "type": "array",
1039
1141
  "items": {
1040
- "$ref": "#/$defs/__schema60"
1142
+ "$ref": "#/$defs/__schema61"
1041
1143
  }
1042
1144
  },
1043
1145
  "axis": {
@@ -1059,7 +1161,7 @@
1059
1161
  "minItems": 3,
1060
1162
  "type": "array",
1061
1163
  "items": {
1062
- "$ref": "#/$defs/__schema61"
1164
+ "$ref": "#/$defs/__schema62"
1063
1165
  }
1064
1166
  },
1065
1167
  "axis": {
@@ -1236,6 +1338,74 @@
1236
1338
  ]
1237
1339
  },
1238
1340
  "__schema13": {
1341
+ "type": "object",
1342
+ "properties": {
1343
+ "bounds": {
1344
+ "$ref": "#/$defs/__schema14"
1345
+ },
1346
+ "pivot": {
1347
+ "default": [0, 0],
1348
+ "$ref": "#/$defs/__schema16"
1349
+ },
1350
+ "duration": {
1351
+ "default": 100,
1352
+ "type": "integer",
1353
+ "exclusiveMinimum": 0,
1354
+ "maximum": 60000
1355
+ },
1356
+ "tags": {
1357
+ "default": [],
1358
+ "maxItems": 32,
1359
+ "type": "array",
1360
+ "items": {
1361
+ "$ref": "#/$defs/__schema2"
1362
+ }
1363
+ }
1364
+ },
1365
+ "required": ["bounds", "pivot", "duration", "tags"],
1366
+ "additionalProperties": false
1367
+ },
1368
+ "__schema14": {
1369
+ "type": "array",
1370
+ "prefixItems": [
1371
+ {
1372
+ "$ref": "#/$defs/__schema5"
1373
+ },
1374
+ {
1375
+ "$ref": "#/$defs/__schema5"
1376
+ },
1377
+ {
1378
+ "$ref": "#/$defs/__schema15"
1379
+ },
1380
+ {
1381
+ "$ref": "#/$defs/__schema15"
1382
+ }
1383
+ ],
1384
+ "items": false,
1385
+ "minItems": 4,
1386
+ "maxItems": 4
1387
+ },
1388
+ "__schema15": {
1389
+ "type": "number",
1390
+ "exclusiveMinimum": 0,
1391
+ "maximum": 8192,
1392
+ "$ref": "#/$defs/__schema5"
1393
+ },
1394
+ "__schema16": {
1395
+ "type": "array",
1396
+ "prefixItems": [
1397
+ {
1398
+ "$ref": "#/$defs/__schema5"
1399
+ },
1400
+ {
1401
+ "$ref": "#/$defs/__schema5"
1402
+ }
1403
+ ],
1404
+ "items": false,
1405
+ "minItems": 2,
1406
+ "maxItems": 2
1407
+ },
1408
+ "__schema17": {
1239
1409
  "type": "object",
1240
1410
  "properties": {
1241
1411
  "recipe": {
@@ -1271,7 +1441,7 @@
1271
1441
  "required": ["type", "source"],
1272
1442
  "additionalProperties": false
1273
1443
  },
1274
- "__schema14": {
1444
+ "__schema18": {
1275
1445
  "type": "object",
1276
1446
  "properties": {
1277
1447
  "id": {
@@ -1304,65 +1474,65 @@
1304
1474
  },
1305
1475
  "opacity": {
1306
1476
  "default": 1,
1307
- "$ref": "#/$defs/__schema15"
1477
+ "$ref": "#/$defs/__schema19"
1308
1478
  },
1309
1479
  "blend_mode": {
1310
1480
  "default": "normal",
1311
- "$ref": "#/$defs/__schema16"
1481
+ "$ref": "#/$defs/__schema20"
1312
1482
  },
1313
1483
  "z": {
1314
1484
  "default": 0,
1315
1485
  "$ref": "#/$defs/__schema5"
1316
1486
  },
1317
1487
  "bounds": {
1318
- "$ref": "#/$defs/__schema17"
1488
+ "$ref": "#/$defs/__schema21"
1319
1489
  },
1320
1490
  "width": {
1321
- "$ref": "#/$defs/__schema20"
1491
+ "$ref": "#/$defs/__schema22"
1322
1492
  },
1323
1493
  "aspect_ratio": {
1324
- "$ref": "#/$defs/__schema22"
1494
+ "$ref": "#/$defs/__schema24"
1325
1495
  },
1326
1496
  "grow": {
1327
- "$ref": "#/$defs/__schema23"
1497
+ "$ref": "#/$defs/__schema25"
1328
1498
  },
1329
1499
  "height": {
1330
- "$ref": "#/$defs/__schema24"
1500
+ "$ref": "#/$defs/__schema26"
1331
1501
  },
1332
1502
  "anchor": {
1333
1503
  "default": "top-left",
1334
- "$ref": "#/$defs/__schema25"
1504
+ "$ref": "#/$defs/__schema27"
1335
1505
  },
1336
1506
  "affine": {
1337
- "$ref": "#/$defs/__schema26"
1507
+ "$ref": "#/$defs/__schema28"
1338
1508
  },
1339
1509
  "transform": {
1340
- "$ref": "#/$defs/__schema27"
1510
+ "$ref": "#/$defs/__schema29"
1341
1511
  },
1342
1512
  "layout": {
1343
- "$ref": "#/$defs/__schema28"
1513
+ "$ref": "#/$defs/__schema30"
1344
1514
  },
1345
1515
  "shape": {
1346
- "$ref": "#/$defs/__schema29"
1516
+ "$ref": "#/$defs/__schema31"
1347
1517
  },
1348
1518
  "content": {
1349
1519
  "type": "string",
1350
1520
  "maxLength": 50000
1351
1521
  },
1352
1522
  "runs": {
1353
- "$ref": "#/$defs/__schema35"
1523
+ "$ref": "#/$defs/__schema37"
1354
1524
  },
1355
1525
  "paragraph_style": {
1356
1526
  "$ref": "#/$defs/__schema2"
1357
1527
  },
1358
1528
  "crop": {
1359
- "$ref": "#/$defs/__schema18"
1529
+ "$ref": "#/$defs/__schema14"
1360
1530
  },
1361
1531
  "focal_point": {
1362
- "$ref": "#/$defs/__schema37"
1532
+ "$ref": "#/$defs/__schema39"
1363
1533
  },
1364
1534
  "perspective": {
1365
- "$ref": "#/$defs/__schema38"
1535
+ "$ref": "#/$defs/__schema40"
1366
1536
  },
1367
1537
  "style": {
1368
1538
  "$ref": "#/$defs/__schema3"
@@ -1372,20 +1542,20 @@
1372
1542
  },
1373
1543
  "fit": {
1374
1544
  "default": "contain",
1375
- "$ref": "#/$defs/__schema40"
1545
+ "$ref": "#/$defs/__schema41"
1376
1546
  },
1377
1547
  "generator": {
1378
- "$ref": "#/$defs/__schema41"
1548
+ "$ref": "#/$defs/__schema42"
1379
1549
  },
1380
1550
  "mask": {
1381
- "$ref": "#/$defs/__schema42"
1551
+ "$ref": "#/$defs/__schema43"
1382
1552
  },
1383
1553
  "effects": {
1384
1554
  "default": [],
1385
1555
  "maxItems": 16,
1386
1556
  "type": "array",
1387
1557
  "items": {
1388
- "$ref": "#/$defs/__schema45"
1558
+ "$ref": "#/$defs/__schema46"
1389
1559
  }
1390
1560
  },
1391
1561
  "operations": {
@@ -1393,14 +1563,14 @@
1393
1563
  "maxItems": 1000,
1394
1564
  "type": "array",
1395
1565
  "items": {
1396
- "$ref": "#/$defs/__schema46"
1566
+ "$ref": "#/$defs/__schema47"
1397
1567
  }
1398
1568
  },
1399
1569
  "regions": {
1400
1570
  "maxItems": 256,
1401
1571
  "type": "array",
1402
1572
  "items": {
1403
- "$ref": "#/$defs/__schema50"
1573
+ "$ref": "#/$defs/__schema51"
1404
1574
  }
1405
1575
  },
1406
1576
  "tiles": {
@@ -1408,7 +1578,7 @@
1408
1578
  "maxItems": 4096,
1409
1579
  "type": "array",
1410
1580
  "items": {
1411
- "$ref": "#/$defs/__schema51"
1581
+ "$ref": "#/$defs/__schema52"
1412
1582
  }
1413
1583
  },
1414
1584
  "children": {
@@ -1416,7 +1586,7 @@
1416
1586
  "maxItems": 256,
1417
1587
  "type": "array",
1418
1588
  "items": {
1419
- "$ref": "#/$defs/__schema14"
1589
+ "$ref": "#/$defs/__schema18"
1420
1590
  }
1421
1591
  }
1422
1592
  },
@@ -1436,13 +1606,13 @@
1436
1606
  ],
1437
1607
  "additionalProperties": false
1438
1608
  },
1439
- "__schema15": {
1609
+ "__schema19": {
1440
1610
  "type": "number",
1441
1611
  "minimum": 0,
1442
1612
  "maximum": 1,
1443
1613
  "$ref": "#/$defs/__schema5"
1444
1614
  },
1445
- "__schema16": {
1615
+ "__schema20": {
1446
1616
  "type": "string",
1447
1617
  "enum": [
1448
1618
  "normal",
@@ -1456,42 +1626,16 @@
1456
1626
  "hard-light"
1457
1627
  ]
1458
1628
  },
1459
- "__schema17": {
1460
- "$ref": "#/$defs/__schema18"
1461
- },
1462
- "__schema18": {
1463
- "type": "array",
1464
- "prefixItems": [
1465
- {
1466
- "$ref": "#/$defs/__schema5"
1467
- },
1468
- {
1469
- "$ref": "#/$defs/__schema5"
1470
- },
1471
- {
1472
- "$ref": "#/$defs/__schema19"
1473
- },
1474
- {
1475
- "$ref": "#/$defs/__schema19"
1476
- }
1477
- ],
1478
- "items": false,
1479
- "minItems": 4,
1480
- "maxItems": 4
1481
- },
1482
- "__schema19": {
1483
- "type": "number",
1484
- "exclusiveMinimum": 0,
1485
- "maximum": 8192,
1486
- "$ref": "#/$defs/__schema5"
1629
+ "__schema21": {
1630
+ "$ref": "#/$defs/__schema14"
1487
1631
  },
1488
- "__schema20": {
1489
- "$ref": "#/$defs/__schema21"
1632
+ "__schema22": {
1633
+ "$ref": "#/$defs/__schema23"
1490
1634
  },
1491
- "__schema21": {
1635
+ "__schema23": {
1492
1636
  "anyOf": [
1493
1637
  {
1494
- "$ref": "#/$defs/__schema19"
1638
+ "$ref": "#/$defs/__schema15"
1495
1639
  },
1496
1640
  {
1497
1641
  "type": "string",
@@ -1499,26 +1643,26 @@
1499
1643
  }
1500
1644
  ]
1501
1645
  },
1502
- "__schema22": {
1646
+ "__schema24": {
1503
1647
  "type": "number",
1504
1648
  "exclusiveMinimum": 0,
1505
1649
  "maximum": 100,
1506
1650
  "$ref": "#/$defs/__schema5"
1507
1651
  },
1508
- "__schema23": {
1652
+ "__schema25": {
1509
1653
  "type": "number",
1510
1654
  "minimum": 0,
1511
1655
  "maximum": 100,
1512
1656
  "$ref": "#/$defs/__schema5"
1513
1657
  },
1514
- "__schema24": {
1515
- "$ref": "#/$defs/__schema21"
1658
+ "__schema26": {
1659
+ "$ref": "#/$defs/__schema23"
1516
1660
  },
1517
- "__schema25": {
1661
+ "__schema27": {
1518
1662
  "type": "string",
1519
1663
  "enum": ["top-left", "center", "top-right", "bottom-left", "bottom-right"]
1520
1664
  },
1521
- "__schema26": {
1665
+ "__schema28": {
1522
1666
  "type": "array",
1523
1667
  "prefixItems": [
1524
1668
  {
@@ -1544,7 +1688,7 @@
1544
1688
  "minItems": 6,
1545
1689
  "maxItems": 6
1546
1690
  },
1547
- "__schema27": {
1691
+ "__schema29": {
1548
1692
  "type": "object",
1549
1693
  "properties": {
1550
1694
  "rotation": {
@@ -1576,7 +1720,7 @@
1576
1720
  "required": ["rotation", "scale"],
1577
1721
  "additionalProperties": false
1578
1722
  },
1579
- "__schema28": {
1723
+ "__schema30": {
1580
1724
  "type": "object",
1581
1725
  "properties": {
1582
1726
  "type": {
@@ -1611,7 +1755,7 @@
1611
1755
  "required": ["type", "padding", "gap", "align"],
1612
1756
  "additionalProperties": false
1613
1757
  },
1614
- "__schema29": {
1758
+ "__schema31": {
1615
1759
  "oneOf": [
1616
1760
  {
1617
1761
  "type": "object",
@@ -1641,16 +1785,16 @@
1641
1785
  "$ref": "#/$defs/__schema5"
1642
1786
  },
1643
1787
  "line_cap": {
1644
- "$ref": "#/$defs/__schema30"
1788
+ "$ref": "#/$defs/__schema32"
1645
1789
  },
1646
1790
  "line_join": {
1647
- "$ref": "#/$defs/__schema31"
1791
+ "$ref": "#/$defs/__schema33"
1648
1792
  },
1649
1793
  "dash": {
1650
- "$ref": "#/$defs/__schema32"
1794
+ "$ref": "#/$defs/__schema34"
1651
1795
  },
1652
1796
  "dash_offset": {
1653
- "$ref": "#/$defs/__schema34"
1797
+ "$ref": "#/$defs/__schema36"
1654
1798
  }
1655
1799
  },
1656
1800
  "required": ["type", "fill", "radius", "stroke_width"],
@@ -1677,16 +1821,16 @@
1677
1821
  "$ref": "#/$defs/__schema5"
1678
1822
  },
1679
1823
  "line_cap": {
1680
- "$ref": "#/$defs/__schema30"
1824
+ "$ref": "#/$defs/__schema32"
1681
1825
  },
1682
1826
  "line_join": {
1683
- "$ref": "#/$defs/__schema31"
1827
+ "$ref": "#/$defs/__schema33"
1684
1828
  },
1685
1829
  "dash": {
1686
- "$ref": "#/$defs/__schema32"
1830
+ "$ref": "#/$defs/__schema34"
1687
1831
  },
1688
1832
  "dash_offset": {
1689
- "$ref": "#/$defs/__schema34"
1833
+ "$ref": "#/$defs/__schema36"
1690
1834
  }
1691
1835
  },
1692
1836
  "required": ["type", "fill", "stroke_width"],
@@ -1718,16 +1862,16 @@
1718
1862
  "$ref": "#/$defs/__schema5"
1719
1863
  },
1720
1864
  "line_cap": {
1721
- "$ref": "#/$defs/__schema30"
1865
+ "$ref": "#/$defs/__schema32"
1722
1866
  },
1723
1867
  "line_join": {
1724
- "$ref": "#/$defs/__schema31"
1868
+ "$ref": "#/$defs/__schema33"
1725
1869
  },
1726
1870
  "dash": {
1727
- "$ref": "#/$defs/__schema32"
1871
+ "$ref": "#/$defs/__schema34"
1728
1872
  },
1729
1873
  "dash_offset": {
1730
- "$ref": "#/$defs/__schema34"
1874
+ "$ref": "#/$defs/__schema36"
1731
1875
  }
1732
1876
  },
1733
1877
  "required": ["type", "d", "fill", "stroke_width"],
@@ -1735,38 +1879,38 @@
1735
1879
  }
1736
1880
  ]
1737
1881
  },
1738
- "__schema30": {
1882
+ "__schema32": {
1739
1883
  "type": "string",
1740
1884
  "enum": ["butt", "round", "square"]
1741
1885
  },
1742
- "__schema31": {
1886
+ "__schema33": {
1743
1887
  "type": "string",
1744
1888
  "enum": ["miter", "round", "bevel"]
1745
1889
  },
1746
- "__schema32": {
1890
+ "__schema34": {
1747
1891
  "maxItems": 32,
1748
1892
  "type": "array",
1749
1893
  "items": {
1750
- "$ref": "#/$defs/__schema33"
1894
+ "$ref": "#/$defs/__schema35"
1751
1895
  }
1752
1896
  },
1753
- "__schema33": {
1897
+ "__schema35": {
1754
1898
  "type": "number",
1755
1899
  "minimum": 0,
1756
1900
  "maximum": 10000,
1757
1901
  "$ref": "#/$defs/__schema5"
1758
1902
  },
1759
- "__schema34": {
1903
+ "__schema36": {
1760
1904
  "$ref": "#/$defs/__schema5"
1761
1905
  },
1762
- "__schema35": {
1906
+ "__schema37": {
1763
1907
  "maxItems": 256,
1764
1908
  "type": "array",
1765
1909
  "items": {
1766
- "$ref": "#/$defs/__schema36"
1910
+ "$ref": "#/$defs/__schema38"
1767
1911
  }
1768
1912
  },
1769
- "__schema36": {
1913
+ "__schema38": {
1770
1914
  "type": "object",
1771
1915
  "properties": {
1772
1916
  "text": {
@@ -1783,59 +1927,45 @@
1783
1927
  "required": ["text"],
1784
1928
  "additionalProperties": false
1785
1929
  },
1786
- "__schema37": {
1930
+ "__schema39": {
1787
1931
  "type": "array",
1788
1932
  "prefixItems": [
1789
1933
  {
1790
- "$ref": "#/$defs/__schema15"
1934
+ "$ref": "#/$defs/__schema19"
1791
1935
  },
1792
1936
  {
1793
- "$ref": "#/$defs/__schema15"
1937
+ "$ref": "#/$defs/__schema19"
1794
1938
  }
1795
1939
  ],
1796
1940
  "items": false,
1797
1941
  "minItems": 2,
1798
1942
  "maxItems": 2
1799
1943
  },
1800
- "__schema38": {
1944
+ "__schema40": {
1801
1945
  "type": "array",
1802
1946
  "prefixItems": [
1803
1947
  {
1804
- "$ref": "#/$defs/__schema39"
1948
+ "$ref": "#/$defs/__schema16"
1805
1949
  },
1806
1950
  {
1807
- "$ref": "#/$defs/__schema39"
1951
+ "$ref": "#/$defs/__schema16"
1808
1952
  },
1809
1953
  {
1810
- "$ref": "#/$defs/__schema39"
1954
+ "$ref": "#/$defs/__schema16"
1811
1955
  },
1812
1956
  {
1813
- "$ref": "#/$defs/__schema39"
1957
+ "$ref": "#/$defs/__schema16"
1814
1958
  }
1815
1959
  ],
1816
1960
  "items": false,
1817
1961
  "minItems": 4,
1818
1962
  "maxItems": 4
1819
1963
  },
1820
- "__schema39": {
1821
- "type": "array",
1822
- "prefixItems": [
1823
- {
1824
- "$ref": "#/$defs/__schema5"
1825
- },
1826
- {
1827
- "$ref": "#/$defs/__schema5"
1828
- }
1829
- ],
1830
- "items": false,
1831
- "minItems": 2,
1832
- "maxItems": 2
1833
- },
1834
- "__schema40": {
1964
+ "__schema41": {
1835
1965
  "type": "string",
1836
1966
  "enum": ["contain", "cover", "stretch"]
1837
1967
  },
1838
- "__schema41": {
1968
+ "__schema42": {
1839
1969
  "oneOf": [
1840
1970
  {
1841
1971
  "type": "object",
@@ -1885,7 +2015,7 @@
1885
2015
  "maximum": 4294967295
1886
2016
  },
1887
2017
  "amount": {
1888
- "$ref": "#/$defs/__schema15"
2018
+ "$ref": "#/$defs/__schema19"
1889
2019
  },
1890
2020
  "colour": {
1891
2021
  "default": "#808080",
@@ -1897,7 +2027,7 @@
1897
2027
  }
1898
2028
  ]
1899
2029
  },
1900
- "__schema42": {
2030
+ "__schema43": {
1901
2031
  "anyOf": [
1902
2032
  {
1903
2033
  "oneOf": [
@@ -1914,10 +2044,10 @@
1914
2044
  "maxLength": 100000
1915
2045
  },
1916
2046
  "space": {
1917
- "$ref": "#/$defs/__schema43"
2047
+ "$ref": "#/$defs/__schema44"
1918
2048
  },
1919
2049
  "reference_size": {
1920
- "$ref": "#/$defs/__schema44"
2050
+ "$ref": "#/$defs/__schema45"
1921
2051
  },
1922
2052
  "feather": {
1923
2053
  "default": 0,
@@ -1947,13 +2077,13 @@
1947
2077
  "const": "rectangle"
1948
2078
  },
1949
2079
  "bounds": {
1950
- "$ref": "#/$defs/__schema18"
2080
+ "$ref": "#/$defs/__schema14"
1951
2081
  },
1952
2082
  "space": {
1953
- "$ref": "#/$defs/__schema43"
2083
+ "$ref": "#/$defs/__schema44"
1954
2084
  },
1955
2085
  "reference_size": {
1956
- "$ref": "#/$defs/__schema44"
2086
+ "$ref": "#/$defs/__schema45"
1957
2087
  },
1958
2088
  "expand": {
1959
2089
  "type": "number",
@@ -1983,13 +2113,13 @@
1983
2113
  "const": "ellipse"
1984
2114
  },
1985
2115
  "bounds": {
1986
- "$ref": "#/$defs/__schema18"
2116
+ "$ref": "#/$defs/__schema14"
1987
2117
  },
1988
2118
  "space": {
1989
- "$ref": "#/$defs/__schema43"
2119
+ "$ref": "#/$defs/__schema44"
1990
2120
  },
1991
2121
  "reference_size": {
1992
- "$ref": "#/$defs/__schema44"
2122
+ "$ref": "#/$defs/__schema45"
1993
2123
  },
1994
2124
  "expand": {
1995
2125
  "type": "number",
@@ -2023,14 +2153,14 @@
2023
2153
  "maxItems": 4096,
2024
2154
  "type": "array",
2025
2155
  "items": {
2026
- "$ref": "#/$defs/__schema39"
2156
+ "$ref": "#/$defs/__schema16"
2027
2157
  }
2028
2158
  },
2029
2159
  "space": {
2030
- "$ref": "#/$defs/__schema43"
2160
+ "$ref": "#/$defs/__schema44"
2031
2161
  },
2032
2162
  "reference_size": {
2033
- "$ref": "#/$defs/__schema44"
2163
+ "$ref": "#/$defs/__schema45"
2034
2164
  },
2035
2165
  "expand": {
2036
2166
  "type": "number",
@@ -2063,10 +2193,10 @@
2063
2193
  "$ref": "#/$defs/__schema2"
2064
2194
  },
2065
2195
  "space": {
2066
- "$ref": "#/$defs/__schema43"
2196
+ "$ref": "#/$defs/__schema44"
2067
2197
  },
2068
2198
  "reference_size": {
2069
- "$ref": "#/$defs/__schema44"
2199
+ "$ref": "#/$defs/__schema45"
2070
2200
  },
2071
2201
  "expand": {
2072
2202
  "type": "number",
@@ -2106,14 +2236,14 @@
2106
2236
  "maxItems": 16,
2107
2237
  "type": "array",
2108
2238
  "items": {
2109
- "$ref": "#/$defs/__schema42"
2239
+ "$ref": "#/$defs/__schema43"
2110
2240
  }
2111
2241
  },
2112
2242
  "space": {
2113
- "$ref": "#/$defs/__schema43"
2243
+ "$ref": "#/$defs/__schema44"
2114
2244
  },
2115
2245
  "reference_size": {
2116
- "$ref": "#/$defs/__schema44"
2246
+ "$ref": "#/$defs/__schema45"
2117
2247
  },
2118
2248
  "feather": {
2119
2249
  "default": 0,
@@ -2146,7 +2276,7 @@
2146
2276
  "$ref": "#/$defs/__schema2"
2147
2277
  },
2148
2278
  "bounds": {
2149
- "$ref": "#/$defs/__schema18"
2279
+ "$ref": "#/$defs/__schema14"
2150
2280
  },
2151
2281
  "channel": {
2152
2282
  "default": "luma",
@@ -2158,13 +2288,13 @@
2158
2288
  },
2159
2289
  "tolerance": {
2160
2290
  "default": 0.1,
2161
- "$ref": "#/$defs/__schema15"
2291
+ "$ref": "#/$defs/__schema19"
2162
2292
  },
2163
2293
  "space": {
2164
- "$ref": "#/$defs/__schema43"
2294
+ "$ref": "#/$defs/__schema44"
2165
2295
  },
2166
2296
  "reference_size": {
2167
- "$ref": "#/$defs/__schema44"
2297
+ "$ref": "#/$defs/__schema45"
2168
2298
  },
2169
2299
  "feather": {
2170
2300
  "default": 0,
@@ -2188,25 +2318,25 @@
2188
2318
  }
2189
2319
  ]
2190
2320
  },
2191
- "__schema43": {
2321
+ "__schema44": {
2192
2322
  "type": "string",
2193
2323
  "enum": ["canvas", "layer"]
2194
2324
  },
2195
- "__schema44": {
2325
+ "__schema45": {
2196
2326
  "type": "array",
2197
2327
  "prefixItems": [
2198
2328
  {
2199
- "$ref": "#/$defs/__schema19"
2329
+ "$ref": "#/$defs/__schema15"
2200
2330
  },
2201
2331
  {
2202
- "$ref": "#/$defs/__schema19"
2332
+ "$ref": "#/$defs/__schema15"
2203
2333
  }
2204
2334
  ],
2205
2335
  "items": false,
2206
2336
  "minItems": 2,
2207
2337
  "maxItems": 2
2208
2338
  },
2209
- "__schema45": {
2339
+ "__schema46": {
2210
2340
  "oneOf": [
2211
2341
  {
2212
2342
  "type": "object",
@@ -2227,7 +2357,7 @@
2227
2357
  }
2228
2358
  ]
2229
2359
  },
2230
- "__schema46": {
2360
+ "__schema47": {
2231
2361
  "oneOf": [
2232
2362
  {
2233
2363
  "type": "object",
@@ -2237,24 +2367,24 @@
2237
2367
  "const": "levels"
2238
2368
  },
2239
2369
  "space": {
2240
- "$ref": "#/$defs/__schema43"
2370
+ "$ref": "#/$defs/__schema44"
2241
2371
  },
2242
2372
  "reference_size": {
2243
- "$ref": "#/$defs/__schema44"
2373
+ "$ref": "#/$defs/__schema45"
2244
2374
  },
2245
2375
  "bounds": {
2246
- "$ref": "#/$defs/__schema18"
2376
+ "$ref": "#/$defs/__schema14"
2247
2377
  },
2248
2378
  "mask": {
2249
- "$ref": "#/$defs/__schema47"
2379
+ "$ref": "#/$defs/__schema48"
2250
2380
  },
2251
2381
  "black": {
2252
2382
  "default": 0,
2253
- "$ref": "#/$defs/__schema15"
2383
+ "$ref": "#/$defs/__schema19"
2254
2384
  },
2255
2385
  "white": {
2256
2386
  "default": 1,
2257
- "$ref": "#/$defs/__schema15"
2387
+ "$ref": "#/$defs/__schema19"
2258
2388
  },
2259
2389
  "gamma": {
2260
2390
  "default": 1,
@@ -2275,16 +2405,16 @@
2275
2405
  "const": "curves"
2276
2406
  },
2277
2407
  "space": {
2278
- "$ref": "#/$defs/__schema43"
2408
+ "$ref": "#/$defs/__schema44"
2279
2409
  },
2280
2410
  "reference_size": {
2281
- "$ref": "#/$defs/__schema44"
2411
+ "$ref": "#/$defs/__schema45"
2282
2412
  },
2283
2413
  "bounds": {
2284
- "$ref": "#/$defs/__schema18"
2414
+ "$ref": "#/$defs/__schema14"
2285
2415
  },
2286
2416
  "mask": {
2287
- "$ref": "#/$defs/__schema47"
2417
+ "$ref": "#/$defs/__schema48"
2288
2418
  },
2289
2419
  "channel": {
2290
2420
  "default": "rgb",
@@ -2296,7 +2426,7 @@
2296
2426
  "maxItems": 32,
2297
2427
  "type": "array",
2298
2428
  "items": {
2299
- "$ref": "#/$defs/__schema48"
2429
+ "$ref": "#/$defs/__schema49"
2300
2430
  }
2301
2431
  }
2302
2432
  },
@@ -2311,16 +2441,16 @@
2311
2441
  "const": "whiteBalance"
2312
2442
  },
2313
2443
  "space": {
2314
- "$ref": "#/$defs/__schema43"
2444
+ "$ref": "#/$defs/__schema44"
2315
2445
  },
2316
2446
  "reference_size": {
2317
- "$ref": "#/$defs/__schema44"
2447
+ "$ref": "#/$defs/__schema45"
2318
2448
  },
2319
2449
  "bounds": {
2320
- "$ref": "#/$defs/__schema18"
2450
+ "$ref": "#/$defs/__schema14"
2321
2451
  },
2322
2452
  "mask": {
2323
- "$ref": "#/$defs/__schema47"
2453
+ "$ref": "#/$defs/__schema48"
2324
2454
  },
2325
2455
  "temperature": {
2326
2456
  "type": "number",
@@ -2347,23 +2477,23 @@
2347
2477
  "const": "clone"
2348
2478
  },
2349
2479
  "space": {
2350
- "$ref": "#/$defs/__schema43"
2480
+ "$ref": "#/$defs/__schema44"
2351
2481
  },
2352
2482
  "reference_size": {
2353
- "$ref": "#/$defs/__schema44"
2483
+ "$ref": "#/$defs/__schema45"
2354
2484
  },
2355
2485
  "bounds": {
2356
- "$ref": "#/$defs/__schema18"
2486
+ "$ref": "#/$defs/__schema14"
2357
2487
  },
2358
2488
  "mask": {
2359
- "$ref": "#/$defs/__schema47"
2489
+ "$ref": "#/$defs/__schema48"
2360
2490
  },
2361
2491
  "source_offset": {
2362
- "$ref": "#/$defs/__schema39"
2492
+ "$ref": "#/$defs/__schema16"
2363
2493
  },
2364
2494
  "opacity": {
2365
2495
  "default": 1,
2366
- "$ref": "#/$defs/__schema15"
2496
+ "$ref": "#/$defs/__schema19"
2367
2497
  }
2368
2498
  },
2369
2499
  "required": ["type", "bounds", "source_offset", "opacity"],
@@ -2377,23 +2507,23 @@
2377
2507
  "const": "heal"
2378
2508
  },
2379
2509
  "space": {
2380
- "$ref": "#/$defs/__schema43"
2510
+ "$ref": "#/$defs/__schema44"
2381
2511
  },
2382
2512
  "reference_size": {
2383
- "$ref": "#/$defs/__schema44"
2513
+ "$ref": "#/$defs/__schema45"
2384
2514
  },
2385
2515
  "bounds": {
2386
- "$ref": "#/$defs/__schema18"
2516
+ "$ref": "#/$defs/__schema14"
2387
2517
  },
2388
2518
  "mask": {
2389
- "$ref": "#/$defs/__schema47"
2519
+ "$ref": "#/$defs/__schema48"
2390
2520
  },
2391
2521
  "source_offset": {
2392
- "$ref": "#/$defs/__schema39"
2522
+ "$ref": "#/$defs/__schema16"
2393
2523
  },
2394
2524
  "opacity": {
2395
2525
  "default": 1,
2396
- "$ref": "#/$defs/__schema15"
2526
+ "$ref": "#/$defs/__schema19"
2397
2527
  }
2398
2528
  },
2399
2529
  "required": ["type", "bounds", "source_offset", "opacity"],
@@ -2407,16 +2537,16 @@
2407
2537
  "const": "fill"
2408
2538
  },
2409
2539
  "space": {
2410
- "$ref": "#/$defs/__schema43"
2540
+ "$ref": "#/$defs/__schema44"
2411
2541
  },
2412
2542
  "reference_size": {
2413
- "$ref": "#/$defs/__schema44"
2543
+ "$ref": "#/$defs/__schema45"
2414
2544
  },
2415
2545
  "bounds": {
2416
- "$ref": "#/$defs/__schema18"
2546
+ "$ref": "#/$defs/__schema14"
2417
2547
  },
2418
2548
  "mask": {
2419
- "$ref": "#/$defs/__schema47"
2549
+ "$ref": "#/$defs/__schema48"
2420
2550
  },
2421
2551
  "colour": {
2422
2552
  "$ref": "#/$defs/__schema0"
@@ -2433,23 +2563,23 @@
2433
2563
  "const": "paintStroke"
2434
2564
  },
2435
2565
  "space": {
2436
- "$ref": "#/$defs/__schema43"
2566
+ "$ref": "#/$defs/__schema44"
2437
2567
  },
2438
2568
  "reference_size": {
2439
- "$ref": "#/$defs/__schema44"
2569
+ "$ref": "#/$defs/__schema45"
2440
2570
  },
2441
2571
  "bounds": {
2442
- "$ref": "#/$defs/__schema18"
2572
+ "$ref": "#/$defs/__schema14"
2443
2573
  },
2444
2574
  "mask": {
2445
- "$ref": "#/$defs/__schema47"
2575
+ "$ref": "#/$defs/__schema48"
2446
2576
  },
2447
2577
  "path": {
2448
2578
  "minItems": 1,
2449
2579
  "maxItems": 4096,
2450
2580
  "type": "array",
2451
2581
  "items": {
2452
- "$ref": "#/$defs/__schema39"
2582
+ "$ref": "#/$defs/__schema16"
2453
2583
  }
2454
2584
  },
2455
2585
  "radius": {
@@ -2460,14 +2590,14 @@
2460
2590
  },
2461
2591
  "hardness": {
2462
2592
  "default": 1,
2463
- "$ref": "#/$defs/__schema15"
2593
+ "$ref": "#/$defs/__schema19"
2464
2594
  },
2465
2595
  "colour": {
2466
2596
  "$ref": "#/$defs/__schema0"
2467
2597
  },
2468
2598
  "opacity": {
2469
2599
  "default": 1,
2470
- "$ref": "#/$defs/__schema15"
2600
+ "$ref": "#/$defs/__schema19"
2471
2601
  }
2472
2602
  },
2473
2603
  "required": ["type", "bounds", "path", "radius", "hardness", "colour", "opacity"],
@@ -2481,23 +2611,23 @@
2481
2611
  "const": "eraseStroke"
2482
2612
  },
2483
2613
  "space": {
2484
- "$ref": "#/$defs/__schema43"
2614
+ "$ref": "#/$defs/__schema44"
2485
2615
  },
2486
2616
  "reference_size": {
2487
- "$ref": "#/$defs/__schema44"
2617
+ "$ref": "#/$defs/__schema45"
2488
2618
  },
2489
2619
  "bounds": {
2490
- "$ref": "#/$defs/__schema18"
2620
+ "$ref": "#/$defs/__schema14"
2491
2621
  },
2492
2622
  "mask": {
2493
- "$ref": "#/$defs/__schema47"
2623
+ "$ref": "#/$defs/__schema48"
2494
2624
  },
2495
2625
  "path": {
2496
2626
  "minItems": 1,
2497
2627
  "maxItems": 4096,
2498
2628
  "type": "array",
2499
2629
  "items": {
2500
- "$ref": "#/$defs/__schema39"
2630
+ "$ref": "#/$defs/__schema16"
2501
2631
  }
2502
2632
  },
2503
2633
  "radius": {
@@ -2508,11 +2638,11 @@
2508
2638
  },
2509
2639
  "hardness": {
2510
2640
  "default": 1,
2511
- "$ref": "#/$defs/__schema15"
2641
+ "$ref": "#/$defs/__schema19"
2512
2642
  },
2513
2643
  "opacity": {
2514
2644
  "default": 1,
2515
- "$ref": "#/$defs/__schema15"
2645
+ "$ref": "#/$defs/__schema19"
2516
2646
  }
2517
2647
  },
2518
2648
  "required": ["type", "bounds", "path", "radius", "hardness", "opacity"],
@@ -2526,16 +2656,16 @@
2526
2656
  "const": "brightness"
2527
2657
  },
2528
2658
  "space": {
2529
- "$ref": "#/$defs/__schema43"
2659
+ "$ref": "#/$defs/__schema44"
2530
2660
  },
2531
2661
  "reference_size": {
2532
- "$ref": "#/$defs/__schema44"
2662
+ "$ref": "#/$defs/__schema45"
2533
2663
  },
2534
2664
  "bounds": {
2535
- "$ref": "#/$defs/__schema18"
2665
+ "$ref": "#/$defs/__schema14"
2536
2666
  },
2537
2667
  "mask": {
2538
- "$ref": "#/$defs/__schema47"
2668
+ "$ref": "#/$defs/__schema48"
2539
2669
  },
2540
2670
  "amount": {
2541
2671
  "type": "number",
@@ -2555,16 +2685,16 @@
2555
2685
  "const": "contrast"
2556
2686
  },
2557
2687
  "space": {
2558
- "$ref": "#/$defs/__schema43"
2688
+ "$ref": "#/$defs/__schema44"
2559
2689
  },
2560
2690
  "reference_size": {
2561
- "$ref": "#/$defs/__schema44"
2691
+ "$ref": "#/$defs/__schema45"
2562
2692
  },
2563
2693
  "bounds": {
2564
- "$ref": "#/$defs/__schema18"
2694
+ "$ref": "#/$defs/__schema14"
2565
2695
  },
2566
2696
  "mask": {
2567
- "$ref": "#/$defs/__schema47"
2697
+ "$ref": "#/$defs/__schema48"
2568
2698
  },
2569
2699
  "amount": {
2570
2700
  "type": "number",
@@ -2584,16 +2714,16 @@
2584
2714
  "const": "saturation"
2585
2715
  },
2586
2716
  "space": {
2587
- "$ref": "#/$defs/__schema43"
2717
+ "$ref": "#/$defs/__schema44"
2588
2718
  },
2589
2719
  "reference_size": {
2590
- "$ref": "#/$defs/__schema44"
2720
+ "$ref": "#/$defs/__schema45"
2591
2721
  },
2592
2722
  "bounds": {
2593
- "$ref": "#/$defs/__schema18"
2723
+ "$ref": "#/$defs/__schema14"
2594
2724
  },
2595
2725
  "mask": {
2596
- "$ref": "#/$defs/__schema47"
2726
+ "$ref": "#/$defs/__schema48"
2597
2727
  },
2598
2728
  "amount": {
2599
2729
  "type": "number",
@@ -2613,16 +2743,16 @@
2613
2743
  "const": "hueShift"
2614
2744
  },
2615
2745
  "space": {
2616
- "$ref": "#/$defs/__schema43"
2746
+ "$ref": "#/$defs/__schema44"
2617
2747
  },
2618
2748
  "reference_size": {
2619
- "$ref": "#/$defs/__schema44"
2749
+ "$ref": "#/$defs/__schema45"
2620
2750
  },
2621
2751
  "bounds": {
2622
- "$ref": "#/$defs/__schema18"
2752
+ "$ref": "#/$defs/__schema14"
2623
2753
  },
2624
2754
  "mask": {
2625
- "$ref": "#/$defs/__schema47"
2755
+ "$ref": "#/$defs/__schema48"
2626
2756
  },
2627
2757
  "degrees": {
2628
2758
  "type": "number",
@@ -2642,19 +2772,19 @@
2642
2772
  "const": "noise"
2643
2773
  },
2644
2774
  "space": {
2645
- "$ref": "#/$defs/__schema43"
2775
+ "$ref": "#/$defs/__schema44"
2646
2776
  },
2647
2777
  "reference_size": {
2648
- "$ref": "#/$defs/__schema44"
2778
+ "$ref": "#/$defs/__schema45"
2649
2779
  },
2650
2780
  "bounds": {
2651
- "$ref": "#/$defs/__schema18"
2781
+ "$ref": "#/$defs/__schema14"
2652
2782
  },
2653
2783
  "mask": {
2654
- "$ref": "#/$defs/__schema47"
2784
+ "$ref": "#/$defs/__schema48"
2655
2785
  },
2656
2786
  "amount": {
2657
- "$ref": "#/$defs/__schema15"
2787
+ "$ref": "#/$defs/__schema19"
2658
2788
  },
2659
2789
  "seed": {
2660
2790
  "type": "integer",
@@ -2673,16 +2803,16 @@
2673
2803
  "const": "blur"
2674
2804
  },
2675
2805
  "space": {
2676
- "$ref": "#/$defs/__schema43"
2806
+ "$ref": "#/$defs/__schema44"
2677
2807
  },
2678
2808
  "reference_size": {
2679
- "$ref": "#/$defs/__schema44"
2809
+ "$ref": "#/$defs/__schema45"
2680
2810
  },
2681
2811
  "bounds": {
2682
- "$ref": "#/$defs/__schema18"
2812
+ "$ref": "#/$defs/__schema14"
2683
2813
  },
2684
2814
  "mask": {
2685
- "$ref": "#/$defs/__schema47"
2815
+ "$ref": "#/$defs/__schema48"
2686
2816
  },
2687
2817
  "radius": {
2688
2818
  "type": "number",
@@ -2702,16 +2832,16 @@
2702
2832
  "const": "colourReplace"
2703
2833
  },
2704
2834
  "space": {
2705
- "$ref": "#/$defs/__schema43"
2835
+ "$ref": "#/$defs/__schema44"
2706
2836
  },
2707
2837
  "reference_size": {
2708
- "$ref": "#/$defs/__schema44"
2838
+ "$ref": "#/$defs/__schema45"
2709
2839
  },
2710
2840
  "bounds": {
2711
- "$ref": "#/$defs/__schema18"
2841
+ "$ref": "#/$defs/__schema14"
2712
2842
  },
2713
2843
  "mask": {
2714
- "$ref": "#/$defs/__schema47"
2844
+ "$ref": "#/$defs/__schema48"
2715
2845
  },
2716
2846
  "from": {
2717
2847
  "$ref": "#/$defs/__schema0"
@@ -2721,7 +2851,7 @@
2721
2851
  },
2722
2852
  "tolerance": {
2723
2853
  "default": 0,
2724
- "$ref": "#/$defs/__schema15"
2854
+ "$ref": "#/$defs/__schema19"
2725
2855
  }
2726
2856
  },
2727
2857
  "required": ["type", "bounds", "from", "to", "tolerance"],
@@ -2735,22 +2865,22 @@
2735
2865
  "const": "setPixels"
2736
2866
  },
2737
2867
  "space": {
2738
- "$ref": "#/$defs/__schema43"
2868
+ "$ref": "#/$defs/__schema44"
2739
2869
  },
2740
2870
  "reference_size": {
2741
- "$ref": "#/$defs/__schema44"
2871
+ "$ref": "#/$defs/__schema45"
2742
2872
  },
2743
2873
  "bounds": {
2744
- "$ref": "#/$defs/__schema18"
2874
+ "$ref": "#/$defs/__schema14"
2745
2875
  },
2746
2876
  "mask": {
2747
- "$ref": "#/$defs/__schema47"
2877
+ "$ref": "#/$defs/__schema48"
2748
2878
  },
2749
2879
  "pixels": {
2750
2880
  "maxItems": 4096,
2751
2881
  "type": "array",
2752
2882
  "items": {
2753
- "$ref": "#/$defs/__schema49"
2883
+ "$ref": "#/$defs/__schema50"
2754
2884
  }
2755
2885
  }
2756
2886
  },
@@ -2759,24 +2889,24 @@
2759
2889
  }
2760
2890
  ]
2761
2891
  },
2762
- "__schema47": {
2763
- "$ref": "#/$defs/__schema42"
2764
- },
2765
2892
  "__schema48": {
2893
+ "$ref": "#/$defs/__schema43"
2894
+ },
2895
+ "__schema49": {
2766
2896
  "type": "array",
2767
2897
  "prefixItems": [
2768
2898
  {
2769
- "$ref": "#/$defs/__schema15"
2899
+ "$ref": "#/$defs/__schema19"
2770
2900
  },
2771
2901
  {
2772
- "$ref": "#/$defs/__schema15"
2902
+ "$ref": "#/$defs/__schema19"
2773
2903
  }
2774
2904
  ],
2775
2905
  "items": false,
2776
2906
  "minItems": 2,
2777
2907
  "maxItems": 2
2778
2908
  },
2779
- "__schema49": {
2909
+ "__schema50": {
2780
2910
  "type": "object",
2781
2911
  "properties": {
2782
2912
  "x": {
@@ -2796,20 +2926,20 @@
2796
2926
  "required": ["x", "y", "colour"],
2797
2927
  "additionalProperties": false
2798
2928
  },
2799
- "__schema50": {
2929
+ "__schema51": {
2800
2930
  "type": "object",
2801
2931
  "properties": {
2802
2932
  "id": {
2803
2933
  "$ref": "#/$defs/__schema2"
2804
2934
  },
2805
2935
  "space": {
2806
- "$ref": "#/$defs/__schema43"
2936
+ "$ref": "#/$defs/__schema44"
2807
2937
  },
2808
2938
  "reference_size": {
2809
- "$ref": "#/$defs/__schema44"
2939
+ "$ref": "#/$defs/__schema45"
2810
2940
  },
2811
2941
  "bounds": {
2812
- "$ref": "#/$defs/__schema18"
2942
+ "$ref": "#/$defs/__schema14"
2813
2943
  },
2814
2944
  "scale": {
2815
2945
  "default": 2,
@@ -2829,36 +2959,36 @@
2829
2959
  "maxItems": 256,
2830
2960
  "type": "array",
2831
2961
  "items": {
2832
- "$ref": "#/$defs/__schema46"
2962
+ "$ref": "#/$defs/__schema47"
2833
2963
  }
2834
2964
  }
2835
2965
  },
2836
2966
  "required": ["id", "bounds", "scale", "operations"],
2837
2967
  "additionalProperties": false
2838
2968
  },
2839
- "__schema51": {
2969
+ "__schema52": {
2840
2970
  "type": "object",
2841
2971
  "properties": {
2842
2972
  "space": {
2843
- "$ref": "#/$defs/__schema43"
2973
+ "$ref": "#/$defs/__schema44"
2844
2974
  },
2845
2975
  "reference_size": {
2846
- "$ref": "#/$defs/__schema44"
2976
+ "$ref": "#/$defs/__schema45"
2847
2977
  },
2848
2978
  "bounds": {
2849
- "$ref": "#/$defs/__schema18"
2979
+ "$ref": "#/$defs/__schema14"
2850
2980
  },
2851
2981
  "palette": {
2852
- "$ref": "#/$defs/__schema52"
2982
+ "$ref": "#/$defs/__schema53"
2853
2983
  },
2854
2984
  "pixels": {
2855
- "$ref": "#/$defs/__schema53"
2985
+ "$ref": "#/$defs/__schema54"
2856
2986
  }
2857
2987
  },
2858
2988
  "required": ["bounds", "palette", "pixels"],
2859
2989
  "additionalProperties": false
2860
2990
  },
2861
- "__schema52": {
2991
+ "__schema53": {
2862
2992
  "type": "object",
2863
2993
  "propertyNames": {
2864
2994
  "type": "string",
@@ -2869,20 +2999,20 @@
2869
2999
  "$ref": "#/$defs/__schema0"
2870
3000
  }
2871
3001
  },
2872
- "__schema53": {
3002
+ "__schema54": {
2873
3003
  "minItems": 1,
2874
3004
  "maxItems": 256,
2875
3005
  "type": "array",
2876
3006
  "items": {
2877
- "$ref": "#/$defs/__schema54"
3007
+ "$ref": "#/$defs/__schema55"
2878
3008
  }
2879
3009
  },
2880
- "__schema54": {
3010
+ "__schema55": {
2881
3011
  "type": "string",
2882
3012
  "minLength": 1,
2883
3013
  "maxLength": 256
2884
3014
  },
2885
- "__schema55": {
3015
+ "__schema56": {
2886
3016
  "oneOf": [
2887
3017
  {
2888
3018
  "type": "object",
@@ -2903,7 +3033,7 @@
2903
3033
  },
2904
3034
  "percentile": {
2905
3035
  "default": 0.1,
2906
- "$ref": "#/$defs/__schema15"
3036
+ "$ref": "#/$defs/__schema19"
2907
3037
  }
2908
3038
  },
2909
3039
  "required": ["type", "target", "minimum", "percentile"],
@@ -2921,7 +3051,7 @@
2921
3051
  },
2922
3052
  "minimum": {
2923
3053
  "default": 0.5,
2924
- "$ref": "#/$defs/__schema15"
3054
+ "$ref": "#/$defs/__schema19"
2925
3055
  }
2926
3056
  },
2927
3057
  "required": ["type", "target", "minimum"],
@@ -2935,15 +3065,15 @@
2935
3065
  "const": "region-luma"
2936
3066
  },
2937
3067
  "bounds": {
2938
- "$ref": "#/$defs/__schema18"
3068
+ "$ref": "#/$defs/__schema14"
2939
3069
  },
2940
3070
  "minimum": {
2941
3071
  "default": 0,
2942
- "$ref": "#/$defs/__schema15"
3072
+ "$ref": "#/$defs/__schema19"
2943
3073
  },
2944
3074
  "maximum": {
2945
3075
  "default": 1,
2946
- "$ref": "#/$defs/__schema15"
3076
+ "$ref": "#/$defs/__schema19"
2947
3077
  }
2948
3078
  },
2949
3079
  "required": ["type", "bounds", "minimum", "maximum"],
@@ -3055,10 +3185,10 @@
3055
3185
  }
3056
3186
  ]
3057
3187
  },
3058
- "__schema56": {
3188
+ "__schema57": {
3059
3189
  "type": "string"
3060
3190
  },
3061
- "__schema57": {
3191
+ "__schema58": {
3062
3192
  "oneOf": [
3063
3193
  {
3064
3194
  "type": "object",
@@ -3068,7 +3198,7 @@
3068
3198
  "const": "move"
3069
3199
  },
3070
3200
  "to": {
3071
- "$ref": "#/$defs/__schema39"
3201
+ "$ref": "#/$defs/__schema16"
3072
3202
  }
3073
3203
  },
3074
3204
  "required": ["type", "to"],
@@ -3082,7 +3212,7 @@
3082
3212
  "const": "line"
3083
3213
  },
3084
3214
  "to": {
3085
- "$ref": "#/$defs/__schema39"
3215
+ "$ref": "#/$defs/__schema16"
3086
3216
  }
3087
3217
  },
3088
3218
  "required": ["type", "to"],
@@ -3096,10 +3226,10 @@
3096
3226
  "const": "quadratic"
3097
3227
  },
3098
3228
  "control": {
3099
- "$ref": "#/$defs/__schema39"
3229
+ "$ref": "#/$defs/__schema16"
3100
3230
  },
3101
3231
  "to": {
3102
- "$ref": "#/$defs/__schema39"
3232
+ "$ref": "#/$defs/__schema16"
3103
3233
  }
3104
3234
  },
3105
3235
  "required": ["type", "control", "to"],
@@ -3113,13 +3243,13 @@
3113
3243
  "const": "cubic"
3114
3244
  },
3115
3245
  "control1": {
3116
- "$ref": "#/$defs/__schema39"
3246
+ "$ref": "#/$defs/__schema16"
3117
3247
  },
3118
3248
  "control2": {
3119
- "$ref": "#/$defs/__schema39"
3249
+ "$ref": "#/$defs/__schema16"
3120
3250
  },
3121
3251
  "to": {
3122
- "$ref": "#/$defs/__schema39"
3252
+ "$ref": "#/$defs/__schema16"
3123
3253
  }
3124
3254
  },
3125
3255
  "required": ["type", "control1", "control2", "to"],
@@ -3138,9 +3268,6 @@
3138
3268
  }
3139
3269
  ]
3140
3270
  },
3141
- "__schema58": {
3142
- "type": "string"
3143
- },
3144
3271
  "__schema59": {
3145
3272
  "type": "string"
3146
3273
  },
@@ -3149,6 +3276,9 @@
3149
3276
  },
3150
3277
  "__schema61": {
3151
3278
  "type": "string"
3279
+ },
3280
+ "__schema62": {
3281
+ "type": "string"
3152
3282
  }
3153
3283
  }
3154
3284
  }