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.
- package/CHANGELOG.md +14 -0
- package/CONTRIBUTING.md +47 -0
- package/README.md +14 -5
- package/SECURITY.md +20 -0
- package/THIRD_PARTY_NOTICES.md +1 -1
- package/dist/cli.js +17 -3
- package/dist/cli.js.map +1 -1
- package/dist/commands.d.ts +12 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/mcp.js +18 -2
- package/dist/mcp.js.map +1 -1
- package/dist/print-scene.d.ts +6 -0
- package/dist/program.js +3 -1
- package/dist/program.js.map +1 -1
- package/dist/project-config.js +2 -1
- package/dist/project-config.js.map +1 -1
- package/dist/render.js +21 -1
- package/dist/render.js.map +1 -1
- package/dist/schema.d.ts +46 -0
- package/dist/schema.js +107 -0
- package/dist/schema.js.map +1 -1
- package/dist/sprites.d.ts +31 -0
- package/dist/sprites.js +142 -0
- package/dist/sprites.js.map +1 -0
- package/dist/studio-reference.js +1 -1
- package/dist/studio-reference.js.map +1 -1
- package/docs/agent-art-workflow.md +10 -0
- package/docs/agent-setup.md +8 -3
- package/docs/atelier.md +12 -1
- package/docs/cli-reference.md +76 -25
- package/docs/core-concepts.md +95 -0
- package/docs/decisions/004-print-production-and-projects.md +1 -1
- package/docs/decisions/005-programmable-digital-art.md +1 -1
- package/docs/engine-overview.md +121 -165
- package/docs/evolution.md +12 -9
- package/docs/getting-started.md +15 -8
- package/docs/next-milestone.md +4 -4
- package/docs/production.md +22 -16
- package/docs/releasing.md +99 -43
- package/docs/scene-format.md +44 -7
- package/docs/sprites.md +166 -0
- package/docs/studio.md +25 -10
- package/examples/hello/README.md +4 -0
- package/package.json +8 -5
- package/schemas/authoring.schema.json +359 -229
- package/schemas/command.schema.json +462 -332
- package/schemas/patch.schema.json +462 -332
- package/schemas/scene.schema.json +347 -217
- package/schemas/sprites.schema.json +41 -0
|
@@ -95,6 +95,108 @@
|
|
|
95
95
|
"$ref": "#/$defs/__schema13"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
|
+
"pixel_art": {
|
|
99
|
+
"type": "object",
|
|
100
|
+
"properties": {
|
|
101
|
+
"scale": {
|
|
102
|
+
"default": 1,
|
|
103
|
+
"type": "integer",
|
|
104
|
+
"minimum": 1,
|
|
105
|
+
"maximum": 256
|
|
106
|
+
},
|
|
107
|
+
"palette": {
|
|
108
|
+
"minItems": 1,
|
|
109
|
+
"maxItems": 256,
|
|
110
|
+
"type": "array",
|
|
111
|
+
"items": {
|
|
112
|
+
"$ref": "#/$defs/__schema1"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"strict": {
|
|
116
|
+
"default": true,
|
|
117
|
+
"type": "boolean"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"required": ["scale", "strict"],
|
|
121
|
+
"additionalProperties": false
|
|
122
|
+
},
|
|
123
|
+
"sprites": {
|
|
124
|
+
"type": "object",
|
|
125
|
+
"properties": {
|
|
126
|
+
"frames": {
|
|
127
|
+
"type": "object",
|
|
128
|
+
"propertyNames": {
|
|
129
|
+
"$ref": "#/$defs/__schema3"
|
|
130
|
+
},
|
|
131
|
+
"additionalProperties": {
|
|
132
|
+
"$ref": "#/$defs/__schema14"
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"animations": {
|
|
136
|
+
"default": {},
|
|
137
|
+
"type": "object",
|
|
138
|
+
"propertyNames": {
|
|
139
|
+
"$ref": "#/$defs/__schema3"
|
|
140
|
+
},
|
|
141
|
+
"additionalProperties": {
|
|
142
|
+
"type": "object",
|
|
143
|
+
"properties": {
|
|
144
|
+
"frames": {
|
|
145
|
+
"minItems": 1,
|
|
146
|
+
"maxItems": 4096,
|
|
147
|
+
"type": "array",
|
|
148
|
+
"items": {
|
|
149
|
+
"$ref": "#/$defs/__schema3"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"loop": {
|
|
153
|
+
"default": true,
|
|
154
|
+
"type": "boolean"
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"required": ["frames", "loop"],
|
|
158
|
+
"additionalProperties": false
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
"atlas": {
|
|
162
|
+
"default": {
|
|
163
|
+
"padding": 0,
|
|
164
|
+
"extrusion": 0,
|
|
165
|
+
"power_of_two": false,
|
|
166
|
+
"max_width": 8192
|
|
167
|
+
},
|
|
168
|
+
"type": "object",
|
|
169
|
+
"properties": {
|
|
170
|
+
"padding": {
|
|
171
|
+
"default": 0,
|
|
172
|
+
"type": "integer",
|
|
173
|
+
"minimum": 0,
|
|
174
|
+
"maximum": 128
|
|
175
|
+
},
|
|
176
|
+
"extrusion": {
|
|
177
|
+
"default": 0,
|
|
178
|
+
"type": "integer",
|
|
179
|
+
"minimum": 0,
|
|
180
|
+
"maximum": 32
|
|
181
|
+
},
|
|
182
|
+
"power_of_two": {
|
|
183
|
+
"default": false,
|
|
184
|
+
"type": "boolean"
|
|
185
|
+
},
|
|
186
|
+
"max_width": {
|
|
187
|
+
"default": 8192,
|
|
188
|
+
"type": "integer",
|
|
189
|
+
"minimum": 1,
|
|
190
|
+
"maximum": 8192
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
"required": ["padding", "extrusion", "power_of_two", "max_width"],
|
|
194
|
+
"additionalProperties": false
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"required": ["frames", "animations", "atlas"],
|
|
198
|
+
"additionalProperties": false
|
|
199
|
+
},
|
|
98
200
|
"assets": {
|
|
99
201
|
"default": {},
|
|
100
202
|
"type": "object",
|
|
@@ -102,14 +204,14 @@
|
|
|
102
204
|
"$ref": "#/$defs/__schema3"
|
|
103
205
|
},
|
|
104
206
|
"additionalProperties": {
|
|
105
|
-
"$ref": "#/$defs/
|
|
207
|
+
"$ref": "#/$defs/__schema18"
|
|
106
208
|
}
|
|
107
209
|
},
|
|
108
210
|
"layers": {
|
|
109
211
|
"maxItems": 256,
|
|
110
212
|
"type": "array",
|
|
111
213
|
"items": {
|
|
112
|
-
"$ref": "#/$defs/
|
|
214
|
+
"$ref": "#/$defs/__schema19"
|
|
113
215
|
}
|
|
114
216
|
},
|
|
115
217
|
"verification": {
|
|
@@ -123,7 +225,7 @@
|
|
|
123
225
|
"maxItems": 256,
|
|
124
226
|
"type": "array",
|
|
125
227
|
"items": {
|
|
126
|
-
"$ref": "#/$defs/
|
|
228
|
+
"$ref": "#/$defs/__schema57"
|
|
127
229
|
}
|
|
128
230
|
}
|
|
129
231
|
},
|
|
@@ -167,14 +269,14 @@
|
|
|
167
269
|
"const": "setPath"
|
|
168
270
|
},
|
|
169
271
|
"target": {
|
|
170
|
-
"$ref": "#/$defs/
|
|
272
|
+
"$ref": "#/$defs/__schema58"
|
|
171
273
|
},
|
|
172
274
|
"segments": {
|
|
173
275
|
"minItems": 1,
|
|
174
276
|
"maxItems": 4096,
|
|
175
277
|
"type": "array",
|
|
176
278
|
"items": {
|
|
177
|
-
"$ref": "#/$defs/
|
|
279
|
+
"$ref": "#/$defs/__schema59"
|
|
178
280
|
}
|
|
179
281
|
}
|
|
180
282
|
},
|
|
@@ -189,12 +291,12 @@
|
|
|
189
291
|
"const": "setAffine"
|
|
190
292
|
},
|
|
191
293
|
"target": {
|
|
192
|
-
"$ref": "#/$defs/
|
|
294
|
+
"$ref": "#/$defs/__schema58"
|
|
193
295
|
},
|
|
194
296
|
"matrix": {
|
|
195
297
|
"anyOf": [
|
|
196
298
|
{
|
|
197
|
-
"$ref": "#/$defs/
|
|
299
|
+
"$ref": "#/$defs/__schema29"
|
|
198
300
|
},
|
|
199
301
|
{
|
|
200
302
|
"type": "null"
|
|
@@ -213,12 +315,12 @@
|
|
|
213
315
|
"const": "setCrop"
|
|
214
316
|
},
|
|
215
317
|
"target": {
|
|
216
|
-
"$ref": "#/$defs/
|
|
318
|
+
"$ref": "#/$defs/__schema58"
|
|
217
319
|
},
|
|
218
320
|
"crop": {
|
|
219
321
|
"anyOf": [
|
|
220
322
|
{
|
|
221
|
-
"$ref": "#/$defs/
|
|
323
|
+
"$ref": "#/$defs/__schema15"
|
|
222
324
|
},
|
|
223
325
|
{
|
|
224
326
|
"type": "null"
|
|
@@ -226,7 +328,7 @@
|
|
|
226
328
|
]
|
|
227
329
|
},
|
|
228
330
|
"focal_point": {
|
|
229
|
-
"$ref": "#/$defs/
|
|
331
|
+
"$ref": "#/$defs/__schema40"
|
|
230
332
|
}
|
|
231
333
|
},
|
|
232
334
|
"required": ["type", "target", "crop"],
|
|
@@ -240,12 +342,12 @@
|
|
|
240
342
|
"const": "setPerspective"
|
|
241
343
|
},
|
|
242
344
|
"target": {
|
|
243
|
-
"$ref": "#/$defs/
|
|
345
|
+
"$ref": "#/$defs/__schema58"
|
|
244
346
|
},
|
|
245
347
|
"corners": {
|
|
246
348
|
"anyOf": [
|
|
247
349
|
{
|
|
248
|
-
"$ref": "#/$defs/
|
|
350
|
+
"$ref": "#/$defs/__schema41"
|
|
249
351
|
},
|
|
250
352
|
{
|
|
251
353
|
"type": "null"
|
|
@@ -264,10 +366,10 @@
|
|
|
264
366
|
"const": "setTextRuns"
|
|
265
367
|
},
|
|
266
368
|
"target": {
|
|
267
|
-
"$ref": "#/$defs/
|
|
369
|
+
"$ref": "#/$defs/__schema58"
|
|
268
370
|
},
|
|
269
371
|
"runs": {
|
|
270
|
-
"$ref": "#/$defs/
|
|
372
|
+
"$ref": "#/$defs/__schema38"
|
|
271
373
|
}
|
|
272
374
|
},
|
|
273
375
|
"required": ["type", "target", "runs"],
|
|
@@ -298,7 +400,7 @@
|
|
|
298
400
|
"const": "useParagraphStyle"
|
|
299
401
|
},
|
|
300
402
|
"target": {
|
|
301
|
-
"$ref": "#/$defs/
|
|
403
|
+
"$ref": "#/$defs/__schema58"
|
|
302
404
|
},
|
|
303
405
|
"id": {
|
|
304
406
|
"type": "string"
|
|
@@ -315,13 +417,13 @@
|
|
|
315
417
|
"const": "setAdjustmentStack"
|
|
316
418
|
},
|
|
317
419
|
"target": {
|
|
318
|
-
"$ref": "#/$defs/
|
|
420
|
+
"$ref": "#/$defs/__schema58"
|
|
319
421
|
},
|
|
320
422
|
"operations": {
|
|
321
423
|
"maxItems": 1000,
|
|
322
424
|
"type": "array",
|
|
323
425
|
"items": {
|
|
324
|
-
"$ref": "#/$defs/
|
|
426
|
+
"$ref": "#/$defs/__schema48"
|
|
325
427
|
}
|
|
326
428
|
}
|
|
327
429
|
},
|
|
@@ -340,7 +442,7 @@
|
|
|
340
442
|
"maxItems": 32,
|
|
341
443
|
"type": "array",
|
|
342
444
|
"items": {
|
|
343
|
-
"$ref": "#/$defs/
|
|
445
|
+
"$ref": "#/$defs/__schema60"
|
|
344
446
|
}
|
|
345
447
|
},
|
|
346
448
|
"id": {
|
|
@@ -393,10 +495,10 @@
|
|
|
393
495
|
"const": "promoteRegion"
|
|
394
496
|
},
|
|
395
497
|
"target": {
|
|
396
|
-
"$ref": "#/$defs/
|
|
498
|
+
"$ref": "#/$defs/__schema58"
|
|
397
499
|
},
|
|
398
500
|
"region": {
|
|
399
|
-
"$ref": "#/$defs/
|
|
501
|
+
"$ref": "#/$defs/__schema52"
|
|
400
502
|
}
|
|
401
503
|
},
|
|
402
504
|
"required": ["type", "target", "region"],
|
|
@@ -410,10 +512,10 @@
|
|
|
410
512
|
"const": "updateRegion"
|
|
411
513
|
},
|
|
412
514
|
"target": {
|
|
413
|
-
"$ref": "#/$defs/
|
|
515
|
+
"$ref": "#/$defs/__schema58"
|
|
414
516
|
},
|
|
415
517
|
"region": {
|
|
416
|
-
"$ref": "#/$defs/
|
|
518
|
+
"$ref": "#/$defs/__schema52"
|
|
417
519
|
}
|
|
418
520
|
},
|
|
419
521
|
"required": ["type", "target", "region"],
|
|
@@ -427,7 +529,7 @@
|
|
|
427
529
|
"const": "demoteRegion"
|
|
428
530
|
},
|
|
429
531
|
"target": {
|
|
430
|
-
"$ref": "#/$defs/
|
|
532
|
+
"$ref": "#/$defs/__schema58"
|
|
431
533
|
},
|
|
432
534
|
"id": {
|
|
433
535
|
"type": "string"
|
|
@@ -447,7 +549,7 @@
|
|
|
447
549
|
"type": "string"
|
|
448
550
|
},
|
|
449
551
|
"asset": {
|
|
450
|
-
"$ref": "#/$defs/
|
|
552
|
+
"$ref": "#/$defs/__schema18"
|
|
451
553
|
}
|
|
452
554
|
},
|
|
453
555
|
"required": ["type", "id", "asset"],
|
|
@@ -475,10 +577,10 @@
|
|
|
475
577
|
"const": "setShape"
|
|
476
578
|
},
|
|
477
579
|
"target": {
|
|
478
|
-
"$ref": "#/$defs/
|
|
580
|
+
"$ref": "#/$defs/__schema58"
|
|
479
581
|
},
|
|
480
582
|
"shape": {
|
|
481
|
-
"$ref": "#/$defs/
|
|
583
|
+
"$ref": "#/$defs/__schema32"
|
|
482
584
|
}
|
|
483
585
|
},
|
|
484
586
|
"required": ["type", "target", "shape"],
|
|
@@ -492,10 +594,10 @@
|
|
|
492
594
|
"const": "setGenerator"
|
|
493
595
|
},
|
|
494
596
|
"target": {
|
|
495
|
-
"$ref": "#/$defs/
|
|
597
|
+
"$ref": "#/$defs/__schema58"
|
|
496
598
|
},
|
|
497
599
|
"generator": {
|
|
498
|
-
"$ref": "#/$defs/
|
|
600
|
+
"$ref": "#/$defs/__schema43"
|
|
499
601
|
}
|
|
500
602
|
},
|
|
501
603
|
"required": ["type", "target", "generator"],
|
|
@@ -509,12 +611,12 @@
|
|
|
509
611
|
"const": "setTransform"
|
|
510
612
|
},
|
|
511
613
|
"target": {
|
|
512
|
-
"$ref": "#/$defs/
|
|
614
|
+
"$ref": "#/$defs/__schema58"
|
|
513
615
|
},
|
|
514
616
|
"transform": {
|
|
515
617
|
"anyOf": [
|
|
516
618
|
{
|
|
517
|
-
"$ref": "#/$defs/
|
|
619
|
+
"$ref": "#/$defs/__schema30"
|
|
518
620
|
},
|
|
519
621
|
{
|
|
520
622
|
"type": "null"
|
|
@@ -533,12 +635,12 @@
|
|
|
533
635
|
"const": "setMask"
|
|
534
636
|
},
|
|
535
637
|
"target": {
|
|
536
|
-
"$ref": "#/$defs/
|
|
638
|
+
"$ref": "#/$defs/__schema58"
|
|
537
639
|
},
|
|
538
640
|
"mask": {
|
|
539
641
|
"anyOf": [
|
|
540
642
|
{
|
|
541
|
-
"$ref": "#/$defs/
|
|
643
|
+
"$ref": "#/$defs/__schema44"
|
|
542
644
|
},
|
|
543
645
|
{
|
|
544
646
|
"type": "null"
|
|
@@ -557,12 +659,12 @@
|
|
|
557
659
|
"const": "setLayout"
|
|
558
660
|
},
|
|
559
661
|
"target": {
|
|
560
|
-
"$ref": "#/$defs/
|
|
662
|
+
"$ref": "#/$defs/__schema58"
|
|
561
663
|
},
|
|
562
664
|
"layout": {
|
|
563
665
|
"anyOf": [
|
|
564
666
|
{
|
|
565
|
-
"$ref": "#/$defs/
|
|
667
|
+
"$ref": "#/$defs/__schema31"
|
|
566
668
|
},
|
|
567
669
|
{
|
|
568
670
|
"type": "null"
|
|
@@ -581,28 +683,28 @@
|
|
|
581
683
|
"const": "setGeometry"
|
|
582
684
|
},
|
|
583
685
|
"target": {
|
|
584
|
-
"$ref": "#/$defs/
|
|
686
|
+
"$ref": "#/$defs/__schema58"
|
|
585
687
|
},
|
|
586
688
|
"geometry": {
|
|
587
689
|
"type": "object",
|
|
588
690
|
"properties": {
|
|
589
691
|
"bounds": {
|
|
590
|
-
"$ref": "#/$defs/
|
|
692
|
+
"$ref": "#/$defs/__schema22"
|
|
591
693
|
},
|
|
592
694
|
"width": {
|
|
593
|
-
"$ref": "#/$defs/
|
|
695
|
+
"$ref": "#/$defs/__schema23"
|
|
594
696
|
},
|
|
595
697
|
"height": {
|
|
596
|
-
"$ref": "#/$defs/
|
|
698
|
+
"$ref": "#/$defs/__schema27"
|
|
597
699
|
},
|
|
598
700
|
"anchor": {
|
|
599
|
-
"$ref": "#/$defs/
|
|
701
|
+
"$ref": "#/$defs/__schema28"
|
|
600
702
|
},
|
|
601
703
|
"aspect_ratio": {
|
|
602
|
-
"$ref": "#/$defs/
|
|
704
|
+
"$ref": "#/$defs/__schema25"
|
|
603
705
|
},
|
|
604
706
|
"grow": {
|
|
605
|
-
"$ref": "#/$defs/
|
|
707
|
+
"$ref": "#/$defs/__schema26"
|
|
606
708
|
}
|
|
607
709
|
},
|
|
608
710
|
"additionalProperties": false
|
|
@@ -619,13 +721,13 @@
|
|
|
619
721
|
"const": "setSource"
|
|
620
722
|
},
|
|
621
723
|
"target": {
|
|
622
|
-
"$ref": "#/$defs/
|
|
724
|
+
"$ref": "#/$defs/__schema58"
|
|
623
725
|
},
|
|
624
726
|
"source": {
|
|
625
727
|
"type": "string"
|
|
626
728
|
},
|
|
627
729
|
"fit": {
|
|
628
|
-
"$ref": "#/$defs/
|
|
730
|
+
"$ref": "#/$defs/__schema42"
|
|
629
731
|
}
|
|
630
732
|
},
|
|
631
733
|
"required": ["type", "target", "source"],
|
|
@@ -639,7 +741,7 @@
|
|
|
639
741
|
"const": "setVisibility"
|
|
640
742
|
},
|
|
641
743
|
"target": {
|
|
642
|
-
"$ref": "#/$defs/
|
|
744
|
+
"$ref": "#/$defs/__schema58"
|
|
643
745
|
},
|
|
644
746
|
"visible": {
|
|
645
747
|
"type": "boolean"
|
|
@@ -656,7 +758,7 @@
|
|
|
656
758
|
"const": "setRole"
|
|
657
759
|
},
|
|
658
760
|
"target": {
|
|
659
|
-
"$ref": "#/$defs/
|
|
761
|
+
"$ref": "#/$defs/__schema58"
|
|
660
762
|
},
|
|
661
763
|
"role": {
|
|
662
764
|
"type": ["string", "null"]
|
|
@@ -673,7 +775,7 @@
|
|
|
673
775
|
"const": "setZ"
|
|
674
776
|
},
|
|
675
777
|
"target": {
|
|
676
|
-
"$ref": "#/$defs/
|
|
778
|
+
"$ref": "#/$defs/__schema58"
|
|
677
779
|
},
|
|
678
780
|
"z": {
|
|
679
781
|
"type": "number"
|
|
@@ -693,7 +795,7 @@
|
|
|
693
795
|
"maxItems": 256,
|
|
694
796
|
"type": "array",
|
|
695
797
|
"items": {
|
|
696
|
-
"$ref": "#/$defs/
|
|
798
|
+
"$ref": "#/$defs/__schema57"
|
|
697
799
|
}
|
|
698
800
|
}
|
|
699
801
|
},
|
|
@@ -708,7 +810,7 @@
|
|
|
708
810
|
"const": "updateEffect"
|
|
709
811
|
},
|
|
710
812
|
"target": {
|
|
711
|
-
"$ref": "#/$defs/
|
|
813
|
+
"$ref": "#/$defs/__schema58"
|
|
712
814
|
},
|
|
713
815
|
"index": {
|
|
714
816
|
"type": "integer",
|
|
@@ -716,7 +818,7 @@
|
|
|
716
818
|
"maximum": 9007199254740991
|
|
717
819
|
},
|
|
718
820
|
"effect": {
|
|
719
|
-
"$ref": "#/$defs/
|
|
821
|
+
"$ref": "#/$defs/__schema47"
|
|
720
822
|
}
|
|
721
823
|
},
|
|
722
824
|
"required": ["type", "target", "index", "effect"],
|
|
@@ -730,7 +832,7 @@
|
|
|
730
832
|
"const": "removeEffect"
|
|
731
833
|
},
|
|
732
834
|
"target": {
|
|
733
|
-
"$ref": "#/$defs/
|
|
835
|
+
"$ref": "#/$defs/__schema58"
|
|
734
836
|
},
|
|
735
837
|
"index": {
|
|
736
838
|
"type": "integer",
|
|
@@ -749,7 +851,7 @@
|
|
|
749
851
|
"const": "updateRasterOperation"
|
|
750
852
|
},
|
|
751
853
|
"target": {
|
|
752
|
-
"$ref": "#/$defs/
|
|
854
|
+
"$ref": "#/$defs/__schema58"
|
|
753
855
|
},
|
|
754
856
|
"index": {
|
|
755
857
|
"type": "integer",
|
|
@@ -757,7 +859,7 @@
|
|
|
757
859
|
"maximum": 9007199254740991
|
|
758
860
|
},
|
|
759
861
|
"operation": {
|
|
760
|
-
"$ref": "#/$defs/
|
|
862
|
+
"$ref": "#/$defs/__schema48"
|
|
761
863
|
}
|
|
762
864
|
},
|
|
763
865
|
"required": ["type", "target", "index", "operation"],
|
|
@@ -771,7 +873,7 @@
|
|
|
771
873
|
"const": "removeRasterOperation"
|
|
772
874
|
},
|
|
773
875
|
"target": {
|
|
774
|
-
"$ref": "#/$defs/
|
|
876
|
+
"$ref": "#/$defs/__schema58"
|
|
775
877
|
},
|
|
776
878
|
"index": {
|
|
777
879
|
"type": "integer",
|
|
@@ -790,7 +892,7 @@
|
|
|
790
892
|
"const": "removeTile"
|
|
791
893
|
},
|
|
792
894
|
"target": {
|
|
793
|
-
"$ref": "#/$defs/
|
|
895
|
+
"$ref": "#/$defs/__schema58"
|
|
794
896
|
},
|
|
795
897
|
"index": {
|
|
796
898
|
"type": "integer",
|
|
@@ -809,7 +911,7 @@
|
|
|
809
911
|
"const": "addLayer"
|
|
810
912
|
},
|
|
811
913
|
"layer": {
|
|
812
|
-
"$ref": "#/$defs/
|
|
914
|
+
"$ref": "#/$defs/__schema19"
|
|
813
915
|
},
|
|
814
916
|
"parent": {
|
|
815
917
|
"type": "string"
|
|
@@ -826,7 +928,7 @@
|
|
|
826
928
|
"const": "removeLayer"
|
|
827
929
|
},
|
|
828
930
|
"target": {
|
|
829
|
-
"$ref": "#/$defs/
|
|
931
|
+
"$ref": "#/$defs/__schema58"
|
|
830
932
|
}
|
|
831
933
|
},
|
|
832
934
|
"required": ["type", "target"],
|
|
@@ -840,7 +942,7 @@
|
|
|
840
942
|
"const": "moveLayer"
|
|
841
943
|
},
|
|
842
944
|
"target": {
|
|
843
|
-
"$ref": "#/$defs/
|
|
945
|
+
"$ref": "#/$defs/__schema58"
|
|
844
946
|
},
|
|
845
947
|
"x": {
|
|
846
948
|
"type": "number"
|
|
@@ -860,7 +962,7 @@
|
|
|
860
962
|
"const": "resizeLayer"
|
|
861
963
|
},
|
|
862
964
|
"target": {
|
|
863
|
-
"$ref": "#/$defs/
|
|
965
|
+
"$ref": "#/$defs/__schema58"
|
|
864
966
|
},
|
|
865
967
|
"width": {
|
|
866
968
|
"type": "number",
|
|
@@ -884,7 +986,7 @@
|
|
|
884
986
|
"const": "setOpacity"
|
|
885
987
|
},
|
|
886
988
|
"target": {
|
|
887
|
-
"$ref": "#/$defs/
|
|
989
|
+
"$ref": "#/$defs/__schema58"
|
|
888
990
|
},
|
|
889
991
|
"opacity": {
|
|
890
992
|
"type": "number",
|
|
@@ -903,10 +1005,10 @@
|
|
|
903
1005
|
"const": "setBlendMode"
|
|
904
1006
|
},
|
|
905
1007
|
"target": {
|
|
906
|
-
"$ref": "#/$defs/
|
|
1008
|
+
"$ref": "#/$defs/__schema58"
|
|
907
1009
|
},
|
|
908
1010
|
"blend_mode": {
|
|
909
|
-
"$ref": "#/$defs/
|
|
1011
|
+
"$ref": "#/$defs/__schema21"
|
|
910
1012
|
}
|
|
911
1013
|
},
|
|
912
1014
|
"required": ["type", "target", "blend_mode"],
|
|
@@ -920,7 +1022,7 @@
|
|
|
920
1022
|
"const": "setText"
|
|
921
1023
|
},
|
|
922
1024
|
"target": {
|
|
923
|
-
"$ref": "#/$defs/
|
|
1025
|
+
"$ref": "#/$defs/__schema58"
|
|
924
1026
|
},
|
|
925
1027
|
"content": {
|
|
926
1028
|
"type": "string",
|
|
@@ -938,7 +1040,7 @@
|
|
|
938
1040
|
"const": "setStyle"
|
|
939
1041
|
},
|
|
940
1042
|
"target": {
|
|
941
|
-
"$ref": "#/$defs/
|
|
1043
|
+
"$ref": "#/$defs/__schema58"
|
|
942
1044
|
},
|
|
943
1045
|
"style": {
|
|
944
1046
|
"type": "object",
|
|
@@ -982,10 +1084,10 @@
|
|
|
982
1084
|
"const": "applyEffect"
|
|
983
1085
|
},
|
|
984
1086
|
"target": {
|
|
985
|
-
"$ref": "#/$defs/
|
|
1087
|
+
"$ref": "#/$defs/__schema58"
|
|
986
1088
|
},
|
|
987
1089
|
"effect": {
|
|
988
|
-
"$ref": "#/$defs/
|
|
1090
|
+
"$ref": "#/$defs/__schema47"
|
|
989
1091
|
}
|
|
990
1092
|
},
|
|
991
1093
|
"required": ["type", "target", "effect"],
|
|
@@ -999,10 +1101,10 @@
|
|
|
999
1101
|
"const": "applyRasterOperation"
|
|
1000
1102
|
},
|
|
1001
1103
|
"target": {
|
|
1002
|
-
"$ref": "#/$defs/
|
|
1104
|
+
"$ref": "#/$defs/__schema58"
|
|
1003
1105
|
},
|
|
1004
1106
|
"operation": {
|
|
1005
|
-
"$ref": "#/$defs/
|
|
1107
|
+
"$ref": "#/$defs/__schema48"
|
|
1006
1108
|
}
|
|
1007
1109
|
},
|
|
1008
1110
|
"required": ["type", "target", "operation"],
|
|
@@ -1016,10 +1118,10 @@
|
|
|
1016
1118
|
"const": "replaceTile"
|
|
1017
1119
|
},
|
|
1018
1120
|
"target": {
|
|
1019
|
-
"$ref": "#/$defs/
|
|
1121
|
+
"$ref": "#/$defs/__schema58"
|
|
1020
1122
|
},
|
|
1021
1123
|
"tile": {
|
|
1022
|
-
"$ref": "#/$defs/
|
|
1124
|
+
"$ref": "#/$defs/__schema53"
|
|
1023
1125
|
}
|
|
1024
1126
|
},
|
|
1025
1127
|
"required": ["type", "target", "tile"],
|
|
@@ -1036,7 +1138,7 @@
|
|
|
1036
1138
|
"minItems": 1,
|
|
1037
1139
|
"type": "array",
|
|
1038
1140
|
"items": {
|
|
1039
|
-
"$ref": "#/$defs/
|
|
1141
|
+
"$ref": "#/$defs/__schema61"
|
|
1040
1142
|
}
|
|
1041
1143
|
},
|
|
1042
1144
|
"id": {
|
|
@@ -1060,7 +1162,7 @@
|
|
|
1060
1162
|
"minItems": 1,
|
|
1061
1163
|
"type": "array",
|
|
1062
1164
|
"items": {
|
|
1063
|
-
"$ref": "#/$defs/
|
|
1165
|
+
"$ref": "#/$defs/__schema62"
|
|
1064
1166
|
}
|
|
1065
1167
|
},
|
|
1066
1168
|
"axis": {
|
|
@@ -1082,7 +1184,7 @@
|
|
|
1082
1184
|
"minItems": 3,
|
|
1083
1185
|
"type": "array",
|
|
1084
1186
|
"items": {
|
|
1085
|
-
"$ref": "#/$defs/
|
|
1187
|
+
"$ref": "#/$defs/__schema63"
|
|
1086
1188
|
}
|
|
1087
1189
|
},
|
|
1088
1190
|
"axis": {
|
|
@@ -1259,6 +1361,74 @@
|
|
|
1259
1361
|
]
|
|
1260
1362
|
},
|
|
1261
1363
|
"__schema14": {
|
|
1364
|
+
"type": "object",
|
|
1365
|
+
"properties": {
|
|
1366
|
+
"bounds": {
|
|
1367
|
+
"$ref": "#/$defs/__schema15"
|
|
1368
|
+
},
|
|
1369
|
+
"pivot": {
|
|
1370
|
+
"default": [0, 0],
|
|
1371
|
+
"$ref": "#/$defs/__schema17"
|
|
1372
|
+
},
|
|
1373
|
+
"duration": {
|
|
1374
|
+
"default": 100,
|
|
1375
|
+
"type": "integer",
|
|
1376
|
+
"exclusiveMinimum": 0,
|
|
1377
|
+
"maximum": 60000
|
|
1378
|
+
},
|
|
1379
|
+
"tags": {
|
|
1380
|
+
"default": [],
|
|
1381
|
+
"maxItems": 32,
|
|
1382
|
+
"type": "array",
|
|
1383
|
+
"items": {
|
|
1384
|
+
"$ref": "#/$defs/__schema3"
|
|
1385
|
+
}
|
|
1386
|
+
}
|
|
1387
|
+
},
|
|
1388
|
+
"required": ["bounds", "pivot", "duration", "tags"],
|
|
1389
|
+
"additionalProperties": false
|
|
1390
|
+
},
|
|
1391
|
+
"__schema15": {
|
|
1392
|
+
"type": "array",
|
|
1393
|
+
"prefixItems": [
|
|
1394
|
+
{
|
|
1395
|
+
"$ref": "#/$defs/__schema6"
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
"$ref": "#/$defs/__schema6"
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
"$ref": "#/$defs/__schema16"
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
"$ref": "#/$defs/__schema16"
|
|
1405
|
+
}
|
|
1406
|
+
],
|
|
1407
|
+
"items": false,
|
|
1408
|
+
"minItems": 4,
|
|
1409
|
+
"maxItems": 4
|
|
1410
|
+
},
|
|
1411
|
+
"__schema16": {
|
|
1412
|
+
"type": "number",
|
|
1413
|
+
"exclusiveMinimum": 0,
|
|
1414
|
+
"maximum": 8192,
|
|
1415
|
+
"$ref": "#/$defs/__schema6"
|
|
1416
|
+
},
|
|
1417
|
+
"__schema17": {
|
|
1418
|
+
"type": "array",
|
|
1419
|
+
"prefixItems": [
|
|
1420
|
+
{
|
|
1421
|
+
"$ref": "#/$defs/__schema6"
|
|
1422
|
+
},
|
|
1423
|
+
{
|
|
1424
|
+
"$ref": "#/$defs/__schema6"
|
|
1425
|
+
}
|
|
1426
|
+
],
|
|
1427
|
+
"items": false,
|
|
1428
|
+
"minItems": 2,
|
|
1429
|
+
"maxItems": 2
|
|
1430
|
+
},
|
|
1431
|
+
"__schema18": {
|
|
1262
1432
|
"type": "object",
|
|
1263
1433
|
"properties": {
|
|
1264
1434
|
"recipe": {
|
|
@@ -1294,7 +1464,7 @@
|
|
|
1294
1464
|
"required": ["type", "source"],
|
|
1295
1465
|
"additionalProperties": false
|
|
1296
1466
|
},
|
|
1297
|
-
"
|
|
1467
|
+
"__schema19": {
|
|
1298
1468
|
"type": "object",
|
|
1299
1469
|
"properties": {
|
|
1300
1470
|
"id": {
|
|
@@ -1327,65 +1497,65 @@
|
|
|
1327
1497
|
},
|
|
1328
1498
|
"opacity": {
|
|
1329
1499
|
"default": 1,
|
|
1330
|
-
"$ref": "#/$defs/
|
|
1500
|
+
"$ref": "#/$defs/__schema20"
|
|
1331
1501
|
},
|
|
1332
1502
|
"blend_mode": {
|
|
1333
1503
|
"default": "normal",
|
|
1334
|
-
"$ref": "#/$defs/
|
|
1504
|
+
"$ref": "#/$defs/__schema21"
|
|
1335
1505
|
},
|
|
1336
1506
|
"z": {
|
|
1337
1507
|
"default": 0,
|
|
1338
1508
|
"$ref": "#/$defs/__schema6"
|
|
1339
1509
|
},
|
|
1340
1510
|
"bounds": {
|
|
1341
|
-
"$ref": "#/$defs/
|
|
1511
|
+
"$ref": "#/$defs/__schema22"
|
|
1342
1512
|
},
|
|
1343
1513
|
"width": {
|
|
1344
|
-
"$ref": "#/$defs/
|
|
1514
|
+
"$ref": "#/$defs/__schema23"
|
|
1345
1515
|
},
|
|
1346
1516
|
"aspect_ratio": {
|
|
1347
|
-
"$ref": "#/$defs/
|
|
1517
|
+
"$ref": "#/$defs/__schema25"
|
|
1348
1518
|
},
|
|
1349
1519
|
"grow": {
|
|
1350
|
-
"$ref": "#/$defs/
|
|
1520
|
+
"$ref": "#/$defs/__schema26"
|
|
1351
1521
|
},
|
|
1352
1522
|
"height": {
|
|
1353
|
-
"$ref": "#/$defs/
|
|
1523
|
+
"$ref": "#/$defs/__schema27"
|
|
1354
1524
|
},
|
|
1355
1525
|
"anchor": {
|
|
1356
1526
|
"default": "top-left",
|
|
1357
|
-
"$ref": "#/$defs/
|
|
1527
|
+
"$ref": "#/$defs/__schema28"
|
|
1358
1528
|
},
|
|
1359
1529
|
"affine": {
|
|
1360
|
-
"$ref": "#/$defs/
|
|
1530
|
+
"$ref": "#/$defs/__schema29"
|
|
1361
1531
|
},
|
|
1362
1532
|
"transform": {
|
|
1363
|
-
"$ref": "#/$defs/
|
|
1533
|
+
"$ref": "#/$defs/__schema30"
|
|
1364
1534
|
},
|
|
1365
1535
|
"layout": {
|
|
1366
|
-
"$ref": "#/$defs/
|
|
1536
|
+
"$ref": "#/$defs/__schema31"
|
|
1367
1537
|
},
|
|
1368
1538
|
"shape": {
|
|
1369
|
-
"$ref": "#/$defs/
|
|
1539
|
+
"$ref": "#/$defs/__schema32"
|
|
1370
1540
|
},
|
|
1371
1541
|
"content": {
|
|
1372
1542
|
"type": "string",
|
|
1373
1543
|
"maxLength": 50000
|
|
1374
1544
|
},
|
|
1375
1545
|
"runs": {
|
|
1376
|
-
"$ref": "#/$defs/
|
|
1546
|
+
"$ref": "#/$defs/__schema38"
|
|
1377
1547
|
},
|
|
1378
1548
|
"paragraph_style": {
|
|
1379
1549
|
"$ref": "#/$defs/__schema3"
|
|
1380
1550
|
},
|
|
1381
1551
|
"crop": {
|
|
1382
|
-
"$ref": "#/$defs/
|
|
1552
|
+
"$ref": "#/$defs/__schema15"
|
|
1383
1553
|
},
|
|
1384
1554
|
"focal_point": {
|
|
1385
|
-
"$ref": "#/$defs/
|
|
1555
|
+
"$ref": "#/$defs/__schema40"
|
|
1386
1556
|
},
|
|
1387
1557
|
"perspective": {
|
|
1388
|
-
"$ref": "#/$defs/
|
|
1558
|
+
"$ref": "#/$defs/__schema41"
|
|
1389
1559
|
},
|
|
1390
1560
|
"style": {
|
|
1391
1561
|
"$ref": "#/$defs/__schema4"
|
|
@@ -1395,20 +1565,20 @@
|
|
|
1395
1565
|
},
|
|
1396
1566
|
"fit": {
|
|
1397
1567
|
"default": "contain",
|
|
1398
|
-
"$ref": "#/$defs/
|
|
1568
|
+
"$ref": "#/$defs/__schema42"
|
|
1399
1569
|
},
|
|
1400
1570
|
"generator": {
|
|
1401
|
-
"$ref": "#/$defs/
|
|
1571
|
+
"$ref": "#/$defs/__schema43"
|
|
1402
1572
|
},
|
|
1403
1573
|
"mask": {
|
|
1404
|
-
"$ref": "#/$defs/
|
|
1574
|
+
"$ref": "#/$defs/__schema44"
|
|
1405
1575
|
},
|
|
1406
1576
|
"effects": {
|
|
1407
1577
|
"default": [],
|
|
1408
1578
|
"maxItems": 16,
|
|
1409
1579
|
"type": "array",
|
|
1410
1580
|
"items": {
|
|
1411
|
-
"$ref": "#/$defs/
|
|
1581
|
+
"$ref": "#/$defs/__schema47"
|
|
1412
1582
|
}
|
|
1413
1583
|
},
|
|
1414
1584
|
"operations": {
|
|
@@ -1416,14 +1586,14 @@
|
|
|
1416
1586
|
"maxItems": 1000,
|
|
1417
1587
|
"type": "array",
|
|
1418
1588
|
"items": {
|
|
1419
|
-
"$ref": "#/$defs/
|
|
1589
|
+
"$ref": "#/$defs/__schema48"
|
|
1420
1590
|
}
|
|
1421
1591
|
},
|
|
1422
1592
|
"regions": {
|
|
1423
1593
|
"maxItems": 256,
|
|
1424
1594
|
"type": "array",
|
|
1425
1595
|
"items": {
|
|
1426
|
-
"$ref": "#/$defs/
|
|
1596
|
+
"$ref": "#/$defs/__schema52"
|
|
1427
1597
|
}
|
|
1428
1598
|
},
|
|
1429
1599
|
"tiles": {
|
|
@@ -1431,7 +1601,7 @@
|
|
|
1431
1601
|
"maxItems": 4096,
|
|
1432
1602
|
"type": "array",
|
|
1433
1603
|
"items": {
|
|
1434
|
-
"$ref": "#/$defs/
|
|
1604
|
+
"$ref": "#/$defs/__schema53"
|
|
1435
1605
|
}
|
|
1436
1606
|
},
|
|
1437
1607
|
"children": {
|
|
@@ -1439,7 +1609,7 @@
|
|
|
1439
1609
|
"maxItems": 256,
|
|
1440
1610
|
"type": "array",
|
|
1441
1611
|
"items": {
|
|
1442
|
-
"$ref": "#/$defs/
|
|
1612
|
+
"$ref": "#/$defs/__schema19"
|
|
1443
1613
|
}
|
|
1444
1614
|
}
|
|
1445
1615
|
},
|
|
@@ -1459,13 +1629,13 @@
|
|
|
1459
1629
|
],
|
|
1460
1630
|
"additionalProperties": false
|
|
1461
1631
|
},
|
|
1462
|
-
"
|
|
1632
|
+
"__schema20": {
|
|
1463
1633
|
"type": "number",
|
|
1464
1634
|
"minimum": 0,
|
|
1465
1635
|
"maximum": 1,
|
|
1466
1636
|
"$ref": "#/$defs/__schema6"
|
|
1467
1637
|
},
|
|
1468
|
-
"
|
|
1638
|
+
"__schema21": {
|
|
1469
1639
|
"type": "string",
|
|
1470
1640
|
"enum": [
|
|
1471
1641
|
"normal",
|
|
@@ -1479,42 +1649,16 @@
|
|
|
1479
1649
|
"hard-light"
|
|
1480
1650
|
]
|
|
1481
1651
|
},
|
|
1482
|
-
"
|
|
1483
|
-
"$ref": "#/$defs/
|
|
1484
|
-
},
|
|
1485
|
-
"__schema19": {
|
|
1486
|
-
"type": "array",
|
|
1487
|
-
"prefixItems": [
|
|
1488
|
-
{
|
|
1489
|
-
"$ref": "#/$defs/__schema6"
|
|
1490
|
-
},
|
|
1491
|
-
{
|
|
1492
|
-
"$ref": "#/$defs/__schema6"
|
|
1493
|
-
},
|
|
1494
|
-
{
|
|
1495
|
-
"$ref": "#/$defs/__schema20"
|
|
1496
|
-
},
|
|
1497
|
-
{
|
|
1498
|
-
"$ref": "#/$defs/__schema20"
|
|
1499
|
-
}
|
|
1500
|
-
],
|
|
1501
|
-
"items": false,
|
|
1502
|
-
"minItems": 4,
|
|
1503
|
-
"maxItems": 4
|
|
1504
|
-
},
|
|
1505
|
-
"__schema20": {
|
|
1506
|
-
"type": "number",
|
|
1507
|
-
"exclusiveMinimum": 0,
|
|
1508
|
-
"maximum": 8192,
|
|
1509
|
-
"$ref": "#/$defs/__schema6"
|
|
1652
|
+
"__schema22": {
|
|
1653
|
+
"$ref": "#/$defs/__schema15"
|
|
1510
1654
|
},
|
|
1511
|
-
"
|
|
1512
|
-
"$ref": "#/$defs/
|
|
1655
|
+
"__schema23": {
|
|
1656
|
+
"$ref": "#/$defs/__schema24"
|
|
1513
1657
|
},
|
|
1514
|
-
"
|
|
1658
|
+
"__schema24": {
|
|
1515
1659
|
"anyOf": [
|
|
1516
1660
|
{
|
|
1517
|
-
"$ref": "#/$defs/
|
|
1661
|
+
"$ref": "#/$defs/__schema16"
|
|
1518
1662
|
},
|
|
1519
1663
|
{
|
|
1520
1664
|
"type": "string",
|
|
@@ -1522,26 +1666,26 @@
|
|
|
1522
1666
|
}
|
|
1523
1667
|
]
|
|
1524
1668
|
},
|
|
1525
|
-
"
|
|
1669
|
+
"__schema25": {
|
|
1526
1670
|
"type": "number",
|
|
1527
1671
|
"exclusiveMinimum": 0,
|
|
1528
1672
|
"maximum": 100,
|
|
1529
1673
|
"$ref": "#/$defs/__schema6"
|
|
1530
1674
|
},
|
|
1531
|
-
"
|
|
1675
|
+
"__schema26": {
|
|
1532
1676
|
"type": "number",
|
|
1533
1677
|
"minimum": 0,
|
|
1534
1678
|
"maximum": 100,
|
|
1535
1679
|
"$ref": "#/$defs/__schema6"
|
|
1536
1680
|
},
|
|
1537
|
-
"
|
|
1538
|
-
"$ref": "#/$defs/
|
|
1681
|
+
"__schema27": {
|
|
1682
|
+
"$ref": "#/$defs/__schema24"
|
|
1539
1683
|
},
|
|
1540
|
-
"
|
|
1684
|
+
"__schema28": {
|
|
1541
1685
|
"type": "string",
|
|
1542
1686
|
"enum": ["top-left", "center", "top-right", "bottom-left", "bottom-right"]
|
|
1543
1687
|
},
|
|
1544
|
-
"
|
|
1688
|
+
"__schema29": {
|
|
1545
1689
|
"type": "array",
|
|
1546
1690
|
"prefixItems": [
|
|
1547
1691
|
{
|
|
@@ -1567,7 +1711,7 @@
|
|
|
1567
1711
|
"minItems": 6,
|
|
1568
1712
|
"maxItems": 6
|
|
1569
1713
|
},
|
|
1570
|
-
"
|
|
1714
|
+
"__schema30": {
|
|
1571
1715
|
"type": "object",
|
|
1572
1716
|
"properties": {
|
|
1573
1717
|
"rotation": {
|
|
@@ -1599,7 +1743,7 @@
|
|
|
1599
1743
|
"required": ["rotation", "scale"],
|
|
1600
1744
|
"additionalProperties": false
|
|
1601
1745
|
},
|
|
1602
|
-
"
|
|
1746
|
+
"__schema31": {
|
|
1603
1747
|
"type": "object",
|
|
1604
1748
|
"properties": {
|
|
1605
1749
|
"type": {
|
|
@@ -1634,7 +1778,7 @@
|
|
|
1634
1778
|
"required": ["type", "padding", "gap", "align"],
|
|
1635
1779
|
"additionalProperties": false
|
|
1636
1780
|
},
|
|
1637
|
-
"
|
|
1781
|
+
"__schema32": {
|
|
1638
1782
|
"oneOf": [
|
|
1639
1783
|
{
|
|
1640
1784
|
"type": "object",
|
|
@@ -1664,16 +1808,16 @@
|
|
|
1664
1808
|
"$ref": "#/$defs/__schema6"
|
|
1665
1809
|
},
|
|
1666
1810
|
"line_cap": {
|
|
1667
|
-
"$ref": "#/$defs/
|
|
1811
|
+
"$ref": "#/$defs/__schema33"
|
|
1668
1812
|
},
|
|
1669
1813
|
"line_join": {
|
|
1670
|
-
"$ref": "#/$defs/
|
|
1814
|
+
"$ref": "#/$defs/__schema34"
|
|
1671
1815
|
},
|
|
1672
1816
|
"dash": {
|
|
1673
|
-
"$ref": "#/$defs/
|
|
1817
|
+
"$ref": "#/$defs/__schema35"
|
|
1674
1818
|
},
|
|
1675
1819
|
"dash_offset": {
|
|
1676
|
-
"$ref": "#/$defs/
|
|
1820
|
+
"$ref": "#/$defs/__schema37"
|
|
1677
1821
|
}
|
|
1678
1822
|
},
|
|
1679
1823
|
"required": ["type", "fill", "radius", "stroke_width"],
|
|
@@ -1700,16 +1844,16 @@
|
|
|
1700
1844
|
"$ref": "#/$defs/__schema6"
|
|
1701
1845
|
},
|
|
1702
1846
|
"line_cap": {
|
|
1703
|
-
"$ref": "#/$defs/
|
|
1847
|
+
"$ref": "#/$defs/__schema33"
|
|
1704
1848
|
},
|
|
1705
1849
|
"line_join": {
|
|
1706
|
-
"$ref": "#/$defs/
|
|
1850
|
+
"$ref": "#/$defs/__schema34"
|
|
1707
1851
|
},
|
|
1708
1852
|
"dash": {
|
|
1709
|
-
"$ref": "#/$defs/
|
|
1853
|
+
"$ref": "#/$defs/__schema35"
|
|
1710
1854
|
},
|
|
1711
1855
|
"dash_offset": {
|
|
1712
|
-
"$ref": "#/$defs/
|
|
1856
|
+
"$ref": "#/$defs/__schema37"
|
|
1713
1857
|
}
|
|
1714
1858
|
},
|
|
1715
1859
|
"required": ["type", "fill", "stroke_width"],
|
|
@@ -1741,16 +1885,16 @@
|
|
|
1741
1885
|
"$ref": "#/$defs/__schema6"
|
|
1742
1886
|
},
|
|
1743
1887
|
"line_cap": {
|
|
1744
|
-
"$ref": "#/$defs/
|
|
1888
|
+
"$ref": "#/$defs/__schema33"
|
|
1745
1889
|
},
|
|
1746
1890
|
"line_join": {
|
|
1747
|
-
"$ref": "#/$defs/
|
|
1891
|
+
"$ref": "#/$defs/__schema34"
|
|
1748
1892
|
},
|
|
1749
1893
|
"dash": {
|
|
1750
|
-
"$ref": "#/$defs/
|
|
1894
|
+
"$ref": "#/$defs/__schema35"
|
|
1751
1895
|
},
|
|
1752
1896
|
"dash_offset": {
|
|
1753
|
-
"$ref": "#/$defs/
|
|
1897
|
+
"$ref": "#/$defs/__schema37"
|
|
1754
1898
|
}
|
|
1755
1899
|
},
|
|
1756
1900
|
"required": ["type", "d", "fill", "stroke_width"],
|
|
@@ -1758,38 +1902,38 @@
|
|
|
1758
1902
|
}
|
|
1759
1903
|
]
|
|
1760
1904
|
},
|
|
1761
|
-
"
|
|
1905
|
+
"__schema33": {
|
|
1762
1906
|
"type": "string",
|
|
1763
1907
|
"enum": ["butt", "round", "square"]
|
|
1764
1908
|
},
|
|
1765
|
-
"
|
|
1909
|
+
"__schema34": {
|
|
1766
1910
|
"type": "string",
|
|
1767
1911
|
"enum": ["miter", "round", "bevel"]
|
|
1768
1912
|
},
|
|
1769
|
-
"
|
|
1913
|
+
"__schema35": {
|
|
1770
1914
|
"maxItems": 32,
|
|
1771
1915
|
"type": "array",
|
|
1772
1916
|
"items": {
|
|
1773
|
-
"$ref": "#/$defs/
|
|
1917
|
+
"$ref": "#/$defs/__schema36"
|
|
1774
1918
|
}
|
|
1775
1919
|
},
|
|
1776
|
-
"
|
|
1920
|
+
"__schema36": {
|
|
1777
1921
|
"type": "number",
|
|
1778
1922
|
"minimum": 0,
|
|
1779
1923
|
"maximum": 10000,
|
|
1780
1924
|
"$ref": "#/$defs/__schema6"
|
|
1781
1925
|
},
|
|
1782
|
-
"
|
|
1926
|
+
"__schema37": {
|
|
1783
1927
|
"$ref": "#/$defs/__schema6"
|
|
1784
1928
|
},
|
|
1785
|
-
"
|
|
1929
|
+
"__schema38": {
|
|
1786
1930
|
"maxItems": 256,
|
|
1787
1931
|
"type": "array",
|
|
1788
1932
|
"items": {
|
|
1789
|
-
"$ref": "#/$defs/
|
|
1933
|
+
"$ref": "#/$defs/__schema39"
|
|
1790
1934
|
}
|
|
1791
1935
|
},
|
|
1792
|
-
"
|
|
1936
|
+
"__schema39": {
|
|
1793
1937
|
"type": "object",
|
|
1794
1938
|
"properties": {
|
|
1795
1939
|
"text": {
|
|
@@ -1806,59 +1950,45 @@
|
|
|
1806
1950
|
"required": ["text"],
|
|
1807
1951
|
"additionalProperties": false
|
|
1808
1952
|
},
|
|
1809
|
-
"
|
|
1953
|
+
"__schema40": {
|
|
1810
1954
|
"type": "array",
|
|
1811
1955
|
"prefixItems": [
|
|
1812
1956
|
{
|
|
1813
|
-
"$ref": "#/$defs/
|
|
1957
|
+
"$ref": "#/$defs/__schema20"
|
|
1814
1958
|
},
|
|
1815
1959
|
{
|
|
1816
|
-
"$ref": "#/$defs/
|
|
1960
|
+
"$ref": "#/$defs/__schema20"
|
|
1817
1961
|
}
|
|
1818
1962
|
],
|
|
1819
1963
|
"items": false,
|
|
1820
1964
|
"minItems": 2,
|
|
1821
1965
|
"maxItems": 2
|
|
1822
1966
|
},
|
|
1823
|
-
"
|
|
1967
|
+
"__schema41": {
|
|
1824
1968
|
"type": "array",
|
|
1825
1969
|
"prefixItems": [
|
|
1826
1970
|
{
|
|
1827
|
-
"$ref": "#/$defs/
|
|
1971
|
+
"$ref": "#/$defs/__schema17"
|
|
1828
1972
|
},
|
|
1829
1973
|
{
|
|
1830
|
-
"$ref": "#/$defs/
|
|
1974
|
+
"$ref": "#/$defs/__schema17"
|
|
1831
1975
|
},
|
|
1832
1976
|
{
|
|
1833
|
-
"$ref": "#/$defs/
|
|
1977
|
+
"$ref": "#/$defs/__schema17"
|
|
1834
1978
|
},
|
|
1835
1979
|
{
|
|
1836
|
-
"$ref": "#/$defs/
|
|
1980
|
+
"$ref": "#/$defs/__schema17"
|
|
1837
1981
|
}
|
|
1838
1982
|
],
|
|
1839
1983
|
"items": false,
|
|
1840
1984
|
"minItems": 4,
|
|
1841
1985
|
"maxItems": 4
|
|
1842
1986
|
},
|
|
1843
|
-
"
|
|
1844
|
-
"type": "array",
|
|
1845
|
-
"prefixItems": [
|
|
1846
|
-
{
|
|
1847
|
-
"$ref": "#/$defs/__schema6"
|
|
1848
|
-
},
|
|
1849
|
-
{
|
|
1850
|
-
"$ref": "#/$defs/__schema6"
|
|
1851
|
-
}
|
|
1852
|
-
],
|
|
1853
|
-
"items": false,
|
|
1854
|
-
"minItems": 2,
|
|
1855
|
-
"maxItems": 2
|
|
1856
|
-
},
|
|
1857
|
-
"__schema41": {
|
|
1987
|
+
"__schema42": {
|
|
1858
1988
|
"type": "string",
|
|
1859
1989
|
"enum": ["contain", "cover", "stretch"]
|
|
1860
1990
|
},
|
|
1861
|
-
"
|
|
1991
|
+
"__schema43": {
|
|
1862
1992
|
"oneOf": [
|
|
1863
1993
|
{
|
|
1864
1994
|
"type": "object",
|
|
@@ -1908,7 +2038,7 @@
|
|
|
1908
2038
|
"maximum": 4294967295
|
|
1909
2039
|
},
|
|
1910
2040
|
"amount": {
|
|
1911
|
-
"$ref": "#/$defs/
|
|
2041
|
+
"$ref": "#/$defs/__schema20"
|
|
1912
2042
|
},
|
|
1913
2043
|
"colour": {
|
|
1914
2044
|
"default": "#808080",
|
|
@@ -1920,7 +2050,7 @@
|
|
|
1920
2050
|
}
|
|
1921
2051
|
]
|
|
1922
2052
|
},
|
|
1923
|
-
"
|
|
2053
|
+
"__schema44": {
|
|
1924
2054
|
"anyOf": [
|
|
1925
2055
|
{
|
|
1926
2056
|
"oneOf": [
|
|
@@ -1937,10 +2067,10 @@
|
|
|
1937
2067
|
"maxLength": 100000
|
|
1938
2068
|
},
|
|
1939
2069
|
"space": {
|
|
1940
|
-
"$ref": "#/$defs/
|
|
2070
|
+
"$ref": "#/$defs/__schema45"
|
|
1941
2071
|
},
|
|
1942
2072
|
"reference_size": {
|
|
1943
|
-
"$ref": "#/$defs/
|
|
2073
|
+
"$ref": "#/$defs/__schema46"
|
|
1944
2074
|
},
|
|
1945
2075
|
"feather": {
|
|
1946
2076
|
"default": 0,
|
|
@@ -1970,13 +2100,13 @@
|
|
|
1970
2100
|
"const": "rectangle"
|
|
1971
2101
|
},
|
|
1972
2102
|
"bounds": {
|
|
1973
|
-
"$ref": "#/$defs/
|
|
2103
|
+
"$ref": "#/$defs/__schema15"
|
|
1974
2104
|
},
|
|
1975
2105
|
"space": {
|
|
1976
|
-
"$ref": "#/$defs/
|
|
2106
|
+
"$ref": "#/$defs/__schema45"
|
|
1977
2107
|
},
|
|
1978
2108
|
"reference_size": {
|
|
1979
|
-
"$ref": "#/$defs/
|
|
2109
|
+
"$ref": "#/$defs/__schema46"
|
|
1980
2110
|
},
|
|
1981
2111
|
"expand": {
|
|
1982
2112
|
"type": "number",
|
|
@@ -2006,13 +2136,13 @@
|
|
|
2006
2136
|
"const": "ellipse"
|
|
2007
2137
|
},
|
|
2008
2138
|
"bounds": {
|
|
2009
|
-
"$ref": "#/$defs/
|
|
2139
|
+
"$ref": "#/$defs/__schema15"
|
|
2010
2140
|
},
|
|
2011
2141
|
"space": {
|
|
2012
|
-
"$ref": "#/$defs/
|
|
2142
|
+
"$ref": "#/$defs/__schema45"
|
|
2013
2143
|
},
|
|
2014
2144
|
"reference_size": {
|
|
2015
|
-
"$ref": "#/$defs/
|
|
2145
|
+
"$ref": "#/$defs/__schema46"
|
|
2016
2146
|
},
|
|
2017
2147
|
"expand": {
|
|
2018
2148
|
"type": "number",
|
|
@@ -2046,14 +2176,14 @@
|
|
|
2046
2176
|
"maxItems": 4096,
|
|
2047
2177
|
"type": "array",
|
|
2048
2178
|
"items": {
|
|
2049
|
-
"$ref": "#/$defs/
|
|
2179
|
+
"$ref": "#/$defs/__schema17"
|
|
2050
2180
|
}
|
|
2051
2181
|
},
|
|
2052
2182
|
"space": {
|
|
2053
|
-
"$ref": "#/$defs/
|
|
2183
|
+
"$ref": "#/$defs/__schema45"
|
|
2054
2184
|
},
|
|
2055
2185
|
"reference_size": {
|
|
2056
|
-
"$ref": "#/$defs/
|
|
2186
|
+
"$ref": "#/$defs/__schema46"
|
|
2057
2187
|
},
|
|
2058
2188
|
"expand": {
|
|
2059
2189
|
"type": "number",
|
|
@@ -2086,10 +2216,10 @@
|
|
|
2086
2216
|
"$ref": "#/$defs/__schema3"
|
|
2087
2217
|
},
|
|
2088
2218
|
"space": {
|
|
2089
|
-
"$ref": "#/$defs/
|
|
2219
|
+
"$ref": "#/$defs/__schema45"
|
|
2090
2220
|
},
|
|
2091
2221
|
"reference_size": {
|
|
2092
|
-
"$ref": "#/$defs/
|
|
2222
|
+
"$ref": "#/$defs/__schema46"
|
|
2093
2223
|
},
|
|
2094
2224
|
"expand": {
|
|
2095
2225
|
"type": "number",
|
|
@@ -2129,14 +2259,14 @@
|
|
|
2129
2259
|
"maxItems": 16,
|
|
2130
2260
|
"type": "array",
|
|
2131
2261
|
"items": {
|
|
2132
|
-
"$ref": "#/$defs/
|
|
2262
|
+
"$ref": "#/$defs/__schema44"
|
|
2133
2263
|
}
|
|
2134
2264
|
},
|
|
2135
2265
|
"space": {
|
|
2136
|
-
"$ref": "#/$defs/
|
|
2266
|
+
"$ref": "#/$defs/__schema45"
|
|
2137
2267
|
},
|
|
2138
2268
|
"reference_size": {
|
|
2139
|
-
"$ref": "#/$defs/
|
|
2269
|
+
"$ref": "#/$defs/__schema46"
|
|
2140
2270
|
},
|
|
2141
2271
|
"feather": {
|
|
2142
2272
|
"default": 0,
|
|
@@ -2169,7 +2299,7 @@
|
|
|
2169
2299
|
"$ref": "#/$defs/__schema3"
|
|
2170
2300
|
},
|
|
2171
2301
|
"bounds": {
|
|
2172
|
-
"$ref": "#/$defs/
|
|
2302
|
+
"$ref": "#/$defs/__schema15"
|
|
2173
2303
|
},
|
|
2174
2304
|
"channel": {
|
|
2175
2305
|
"default": "luma",
|
|
@@ -2181,13 +2311,13 @@
|
|
|
2181
2311
|
},
|
|
2182
2312
|
"tolerance": {
|
|
2183
2313
|
"default": 0.1,
|
|
2184
|
-
"$ref": "#/$defs/
|
|
2314
|
+
"$ref": "#/$defs/__schema20"
|
|
2185
2315
|
},
|
|
2186
2316
|
"space": {
|
|
2187
|
-
"$ref": "#/$defs/
|
|
2317
|
+
"$ref": "#/$defs/__schema45"
|
|
2188
2318
|
},
|
|
2189
2319
|
"reference_size": {
|
|
2190
|
-
"$ref": "#/$defs/
|
|
2320
|
+
"$ref": "#/$defs/__schema46"
|
|
2191
2321
|
},
|
|
2192
2322
|
"feather": {
|
|
2193
2323
|
"default": 0,
|
|
@@ -2211,25 +2341,25 @@
|
|
|
2211
2341
|
}
|
|
2212
2342
|
]
|
|
2213
2343
|
},
|
|
2214
|
-
"
|
|
2344
|
+
"__schema45": {
|
|
2215
2345
|
"type": "string",
|
|
2216
2346
|
"enum": ["canvas", "layer"]
|
|
2217
2347
|
},
|
|
2218
|
-
"
|
|
2348
|
+
"__schema46": {
|
|
2219
2349
|
"type": "array",
|
|
2220
2350
|
"prefixItems": [
|
|
2221
2351
|
{
|
|
2222
|
-
"$ref": "#/$defs/
|
|
2352
|
+
"$ref": "#/$defs/__schema16"
|
|
2223
2353
|
},
|
|
2224
2354
|
{
|
|
2225
|
-
"$ref": "#/$defs/
|
|
2355
|
+
"$ref": "#/$defs/__schema16"
|
|
2226
2356
|
}
|
|
2227
2357
|
],
|
|
2228
2358
|
"items": false,
|
|
2229
2359
|
"minItems": 2,
|
|
2230
2360
|
"maxItems": 2
|
|
2231
2361
|
},
|
|
2232
|
-
"
|
|
2362
|
+
"__schema47": {
|
|
2233
2363
|
"oneOf": [
|
|
2234
2364
|
{
|
|
2235
2365
|
"type": "object",
|
|
@@ -2250,7 +2380,7 @@
|
|
|
2250
2380
|
}
|
|
2251
2381
|
]
|
|
2252
2382
|
},
|
|
2253
|
-
"
|
|
2383
|
+
"__schema48": {
|
|
2254
2384
|
"oneOf": [
|
|
2255
2385
|
{
|
|
2256
2386
|
"type": "object",
|
|
@@ -2260,24 +2390,24 @@
|
|
|
2260
2390
|
"const": "levels"
|
|
2261
2391
|
},
|
|
2262
2392
|
"space": {
|
|
2263
|
-
"$ref": "#/$defs/
|
|
2393
|
+
"$ref": "#/$defs/__schema45"
|
|
2264
2394
|
},
|
|
2265
2395
|
"reference_size": {
|
|
2266
|
-
"$ref": "#/$defs/
|
|
2396
|
+
"$ref": "#/$defs/__schema46"
|
|
2267
2397
|
},
|
|
2268
2398
|
"bounds": {
|
|
2269
|
-
"$ref": "#/$defs/
|
|
2399
|
+
"$ref": "#/$defs/__schema15"
|
|
2270
2400
|
},
|
|
2271
2401
|
"mask": {
|
|
2272
|
-
"$ref": "#/$defs/
|
|
2402
|
+
"$ref": "#/$defs/__schema49"
|
|
2273
2403
|
},
|
|
2274
2404
|
"black": {
|
|
2275
2405
|
"default": 0,
|
|
2276
|
-
"$ref": "#/$defs/
|
|
2406
|
+
"$ref": "#/$defs/__schema20"
|
|
2277
2407
|
},
|
|
2278
2408
|
"white": {
|
|
2279
2409
|
"default": 1,
|
|
2280
|
-
"$ref": "#/$defs/
|
|
2410
|
+
"$ref": "#/$defs/__schema20"
|
|
2281
2411
|
},
|
|
2282
2412
|
"gamma": {
|
|
2283
2413
|
"default": 1,
|
|
@@ -2298,16 +2428,16 @@
|
|
|
2298
2428
|
"const": "curves"
|
|
2299
2429
|
},
|
|
2300
2430
|
"space": {
|
|
2301
|
-
"$ref": "#/$defs/
|
|
2431
|
+
"$ref": "#/$defs/__schema45"
|
|
2302
2432
|
},
|
|
2303
2433
|
"reference_size": {
|
|
2304
|
-
"$ref": "#/$defs/
|
|
2434
|
+
"$ref": "#/$defs/__schema46"
|
|
2305
2435
|
},
|
|
2306
2436
|
"bounds": {
|
|
2307
|
-
"$ref": "#/$defs/
|
|
2437
|
+
"$ref": "#/$defs/__schema15"
|
|
2308
2438
|
},
|
|
2309
2439
|
"mask": {
|
|
2310
|
-
"$ref": "#/$defs/
|
|
2440
|
+
"$ref": "#/$defs/__schema49"
|
|
2311
2441
|
},
|
|
2312
2442
|
"channel": {
|
|
2313
2443
|
"default": "rgb",
|
|
@@ -2319,7 +2449,7 @@
|
|
|
2319
2449
|
"maxItems": 32,
|
|
2320
2450
|
"type": "array",
|
|
2321
2451
|
"items": {
|
|
2322
|
-
"$ref": "#/$defs/
|
|
2452
|
+
"$ref": "#/$defs/__schema50"
|
|
2323
2453
|
}
|
|
2324
2454
|
}
|
|
2325
2455
|
},
|
|
@@ -2334,16 +2464,16 @@
|
|
|
2334
2464
|
"const": "whiteBalance"
|
|
2335
2465
|
},
|
|
2336
2466
|
"space": {
|
|
2337
|
-
"$ref": "#/$defs/
|
|
2467
|
+
"$ref": "#/$defs/__schema45"
|
|
2338
2468
|
},
|
|
2339
2469
|
"reference_size": {
|
|
2340
|
-
"$ref": "#/$defs/
|
|
2470
|
+
"$ref": "#/$defs/__schema46"
|
|
2341
2471
|
},
|
|
2342
2472
|
"bounds": {
|
|
2343
|
-
"$ref": "#/$defs/
|
|
2473
|
+
"$ref": "#/$defs/__schema15"
|
|
2344
2474
|
},
|
|
2345
2475
|
"mask": {
|
|
2346
|
-
"$ref": "#/$defs/
|
|
2476
|
+
"$ref": "#/$defs/__schema49"
|
|
2347
2477
|
},
|
|
2348
2478
|
"temperature": {
|
|
2349
2479
|
"type": "number",
|
|
@@ -2370,23 +2500,23 @@
|
|
|
2370
2500
|
"const": "clone"
|
|
2371
2501
|
},
|
|
2372
2502
|
"space": {
|
|
2373
|
-
"$ref": "#/$defs/
|
|
2503
|
+
"$ref": "#/$defs/__schema45"
|
|
2374
2504
|
},
|
|
2375
2505
|
"reference_size": {
|
|
2376
|
-
"$ref": "#/$defs/
|
|
2506
|
+
"$ref": "#/$defs/__schema46"
|
|
2377
2507
|
},
|
|
2378
2508
|
"bounds": {
|
|
2379
|
-
"$ref": "#/$defs/
|
|
2509
|
+
"$ref": "#/$defs/__schema15"
|
|
2380
2510
|
},
|
|
2381
2511
|
"mask": {
|
|
2382
|
-
"$ref": "#/$defs/
|
|
2512
|
+
"$ref": "#/$defs/__schema49"
|
|
2383
2513
|
},
|
|
2384
2514
|
"source_offset": {
|
|
2385
|
-
"$ref": "#/$defs/
|
|
2515
|
+
"$ref": "#/$defs/__schema17"
|
|
2386
2516
|
},
|
|
2387
2517
|
"opacity": {
|
|
2388
2518
|
"default": 1,
|
|
2389
|
-
"$ref": "#/$defs/
|
|
2519
|
+
"$ref": "#/$defs/__schema20"
|
|
2390
2520
|
}
|
|
2391
2521
|
},
|
|
2392
2522
|
"required": ["type", "bounds", "source_offset", "opacity"],
|
|
@@ -2400,23 +2530,23 @@
|
|
|
2400
2530
|
"const": "heal"
|
|
2401
2531
|
},
|
|
2402
2532
|
"space": {
|
|
2403
|
-
"$ref": "#/$defs/
|
|
2533
|
+
"$ref": "#/$defs/__schema45"
|
|
2404
2534
|
},
|
|
2405
2535
|
"reference_size": {
|
|
2406
|
-
"$ref": "#/$defs/
|
|
2536
|
+
"$ref": "#/$defs/__schema46"
|
|
2407
2537
|
},
|
|
2408
2538
|
"bounds": {
|
|
2409
|
-
"$ref": "#/$defs/
|
|
2539
|
+
"$ref": "#/$defs/__schema15"
|
|
2410
2540
|
},
|
|
2411
2541
|
"mask": {
|
|
2412
|
-
"$ref": "#/$defs/
|
|
2542
|
+
"$ref": "#/$defs/__schema49"
|
|
2413
2543
|
},
|
|
2414
2544
|
"source_offset": {
|
|
2415
|
-
"$ref": "#/$defs/
|
|
2545
|
+
"$ref": "#/$defs/__schema17"
|
|
2416
2546
|
},
|
|
2417
2547
|
"opacity": {
|
|
2418
2548
|
"default": 1,
|
|
2419
|
-
"$ref": "#/$defs/
|
|
2549
|
+
"$ref": "#/$defs/__schema20"
|
|
2420
2550
|
}
|
|
2421
2551
|
},
|
|
2422
2552
|
"required": ["type", "bounds", "source_offset", "opacity"],
|
|
@@ -2430,16 +2560,16 @@
|
|
|
2430
2560
|
"const": "fill"
|
|
2431
2561
|
},
|
|
2432
2562
|
"space": {
|
|
2433
|
-
"$ref": "#/$defs/
|
|
2563
|
+
"$ref": "#/$defs/__schema45"
|
|
2434
2564
|
},
|
|
2435
2565
|
"reference_size": {
|
|
2436
|
-
"$ref": "#/$defs/
|
|
2566
|
+
"$ref": "#/$defs/__schema46"
|
|
2437
2567
|
},
|
|
2438
2568
|
"bounds": {
|
|
2439
|
-
"$ref": "#/$defs/
|
|
2569
|
+
"$ref": "#/$defs/__schema15"
|
|
2440
2570
|
},
|
|
2441
2571
|
"mask": {
|
|
2442
|
-
"$ref": "#/$defs/
|
|
2572
|
+
"$ref": "#/$defs/__schema49"
|
|
2443
2573
|
},
|
|
2444
2574
|
"colour": {
|
|
2445
2575
|
"$ref": "#/$defs/__schema1"
|
|
@@ -2456,23 +2586,23 @@
|
|
|
2456
2586
|
"const": "paintStroke"
|
|
2457
2587
|
},
|
|
2458
2588
|
"space": {
|
|
2459
|
-
"$ref": "#/$defs/
|
|
2589
|
+
"$ref": "#/$defs/__schema45"
|
|
2460
2590
|
},
|
|
2461
2591
|
"reference_size": {
|
|
2462
|
-
"$ref": "#/$defs/
|
|
2592
|
+
"$ref": "#/$defs/__schema46"
|
|
2463
2593
|
},
|
|
2464
2594
|
"bounds": {
|
|
2465
|
-
"$ref": "#/$defs/
|
|
2595
|
+
"$ref": "#/$defs/__schema15"
|
|
2466
2596
|
},
|
|
2467
2597
|
"mask": {
|
|
2468
|
-
"$ref": "#/$defs/
|
|
2598
|
+
"$ref": "#/$defs/__schema49"
|
|
2469
2599
|
},
|
|
2470
2600
|
"path": {
|
|
2471
2601
|
"minItems": 1,
|
|
2472
2602
|
"maxItems": 4096,
|
|
2473
2603
|
"type": "array",
|
|
2474
2604
|
"items": {
|
|
2475
|
-
"$ref": "#/$defs/
|
|
2605
|
+
"$ref": "#/$defs/__schema17"
|
|
2476
2606
|
}
|
|
2477
2607
|
},
|
|
2478
2608
|
"radius": {
|
|
@@ -2483,14 +2613,14 @@
|
|
|
2483
2613
|
},
|
|
2484
2614
|
"hardness": {
|
|
2485
2615
|
"default": 1,
|
|
2486
|
-
"$ref": "#/$defs/
|
|
2616
|
+
"$ref": "#/$defs/__schema20"
|
|
2487
2617
|
},
|
|
2488
2618
|
"colour": {
|
|
2489
2619
|
"$ref": "#/$defs/__schema1"
|
|
2490
2620
|
},
|
|
2491
2621
|
"opacity": {
|
|
2492
2622
|
"default": 1,
|
|
2493
|
-
"$ref": "#/$defs/
|
|
2623
|
+
"$ref": "#/$defs/__schema20"
|
|
2494
2624
|
}
|
|
2495
2625
|
},
|
|
2496
2626
|
"required": ["type", "bounds", "path", "radius", "hardness", "colour", "opacity"],
|
|
@@ -2504,23 +2634,23 @@
|
|
|
2504
2634
|
"const": "eraseStroke"
|
|
2505
2635
|
},
|
|
2506
2636
|
"space": {
|
|
2507
|
-
"$ref": "#/$defs/
|
|
2637
|
+
"$ref": "#/$defs/__schema45"
|
|
2508
2638
|
},
|
|
2509
2639
|
"reference_size": {
|
|
2510
|
-
"$ref": "#/$defs/
|
|
2640
|
+
"$ref": "#/$defs/__schema46"
|
|
2511
2641
|
},
|
|
2512
2642
|
"bounds": {
|
|
2513
|
-
"$ref": "#/$defs/
|
|
2643
|
+
"$ref": "#/$defs/__schema15"
|
|
2514
2644
|
},
|
|
2515
2645
|
"mask": {
|
|
2516
|
-
"$ref": "#/$defs/
|
|
2646
|
+
"$ref": "#/$defs/__schema49"
|
|
2517
2647
|
},
|
|
2518
2648
|
"path": {
|
|
2519
2649
|
"minItems": 1,
|
|
2520
2650
|
"maxItems": 4096,
|
|
2521
2651
|
"type": "array",
|
|
2522
2652
|
"items": {
|
|
2523
|
-
"$ref": "#/$defs/
|
|
2653
|
+
"$ref": "#/$defs/__schema17"
|
|
2524
2654
|
}
|
|
2525
2655
|
},
|
|
2526
2656
|
"radius": {
|
|
@@ -2531,11 +2661,11 @@
|
|
|
2531
2661
|
},
|
|
2532
2662
|
"hardness": {
|
|
2533
2663
|
"default": 1,
|
|
2534
|
-
"$ref": "#/$defs/
|
|
2664
|
+
"$ref": "#/$defs/__schema20"
|
|
2535
2665
|
},
|
|
2536
2666
|
"opacity": {
|
|
2537
2667
|
"default": 1,
|
|
2538
|
-
"$ref": "#/$defs/
|
|
2668
|
+
"$ref": "#/$defs/__schema20"
|
|
2539
2669
|
}
|
|
2540
2670
|
},
|
|
2541
2671
|
"required": ["type", "bounds", "path", "radius", "hardness", "opacity"],
|
|
@@ -2549,16 +2679,16 @@
|
|
|
2549
2679
|
"const": "brightness"
|
|
2550
2680
|
},
|
|
2551
2681
|
"space": {
|
|
2552
|
-
"$ref": "#/$defs/
|
|
2682
|
+
"$ref": "#/$defs/__schema45"
|
|
2553
2683
|
},
|
|
2554
2684
|
"reference_size": {
|
|
2555
|
-
"$ref": "#/$defs/
|
|
2685
|
+
"$ref": "#/$defs/__schema46"
|
|
2556
2686
|
},
|
|
2557
2687
|
"bounds": {
|
|
2558
|
-
"$ref": "#/$defs/
|
|
2688
|
+
"$ref": "#/$defs/__schema15"
|
|
2559
2689
|
},
|
|
2560
2690
|
"mask": {
|
|
2561
|
-
"$ref": "#/$defs/
|
|
2691
|
+
"$ref": "#/$defs/__schema49"
|
|
2562
2692
|
},
|
|
2563
2693
|
"amount": {
|
|
2564
2694
|
"type": "number",
|
|
@@ -2578,16 +2708,16 @@
|
|
|
2578
2708
|
"const": "contrast"
|
|
2579
2709
|
},
|
|
2580
2710
|
"space": {
|
|
2581
|
-
"$ref": "#/$defs/
|
|
2711
|
+
"$ref": "#/$defs/__schema45"
|
|
2582
2712
|
},
|
|
2583
2713
|
"reference_size": {
|
|
2584
|
-
"$ref": "#/$defs/
|
|
2714
|
+
"$ref": "#/$defs/__schema46"
|
|
2585
2715
|
},
|
|
2586
2716
|
"bounds": {
|
|
2587
|
-
"$ref": "#/$defs/
|
|
2717
|
+
"$ref": "#/$defs/__schema15"
|
|
2588
2718
|
},
|
|
2589
2719
|
"mask": {
|
|
2590
|
-
"$ref": "#/$defs/
|
|
2720
|
+
"$ref": "#/$defs/__schema49"
|
|
2591
2721
|
},
|
|
2592
2722
|
"amount": {
|
|
2593
2723
|
"type": "number",
|
|
@@ -2607,16 +2737,16 @@
|
|
|
2607
2737
|
"const": "saturation"
|
|
2608
2738
|
},
|
|
2609
2739
|
"space": {
|
|
2610
|
-
"$ref": "#/$defs/
|
|
2740
|
+
"$ref": "#/$defs/__schema45"
|
|
2611
2741
|
},
|
|
2612
2742
|
"reference_size": {
|
|
2613
|
-
"$ref": "#/$defs/
|
|
2743
|
+
"$ref": "#/$defs/__schema46"
|
|
2614
2744
|
},
|
|
2615
2745
|
"bounds": {
|
|
2616
|
-
"$ref": "#/$defs/
|
|
2746
|
+
"$ref": "#/$defs/__schema15"
|
|
2617
2747
|
},
|
|
2618
2748
|
"mask": {
|
|
2619
|
-
"$ref": "#/$defs/
|
|
2749
|
+
"$ref": "#/$defs/__schema49"
|
|
2620
2750
|
},
|
|
2621
2751
|
"amount": {
|
|
2622
2752
|
"type": "number",
|
|
@@ -2636,16 +2766,16 @@
|
|
|
2636
2766
|
"const": "hueShift"
|
|
2637
2767
|
},
|
|
2638
2768
|
"space": {
|
|
2639
|
-
"$ref": "#/$defs/
|
|
2769
|
+
"$ref": "#/$defs/__schema45"
|
|
2640
2770
|
},
|
|
2641
2771
|
"reference_size": {
|
|
2642
|
-
"$ref": "#/$defs/
|
|
2772
|
+
"$ref": "#/$defs/__schema46"
|
|
2643
2773
|
},
|
|
2644
2774
|
"bounds": {
|
|
2645
|
-
"$ref": "#/$defs/
|
|
2775
|
+
"$ref": "#/$defs/__schema15"
|
|
2646
2776
|
},
|
|
2647
2777
|
"mask": {
|
|
2648
|
-
"$ref": "#/$defs/
|
|
2778
|
+
"$ref": "#/$defs/__schema49"
|
|
2649
2779
|
},
|
|
2650
2780
|
"degrees": {
|
|
2651
2781
|
"type": "number",
|
|
@@ -2665,19 +2795,19 @@
|
|
|
2665
2795
|
"const": "noise"
|
|
2666
2796
|
},
|
|
2667
2797
|
"space": {
|
|
2668
|
-
"$ref": "#/$defs/
|
|
2798
|
+
"$ref": "#/$defs/__schema45"
|
|
2669
2799
|
},
|
|
2670
2800
|
"reference_size": {
|
|
2671
|
-
"$ref": "#/$defs/
|
|
2801
|
+
"$ref": "#/$defs/__schema46"
|
|
2672
2802
|
},
|
|
2673
2803
|
"bounds": {
|
|
2674
|
-
"$ref": "#/$defs/
|
|
2804
|
+
"$ref": "#/$defs/__schema15"
|
|
2675
2805
|
},
|
|
2676
2806
|
"mask": {
|
|
2677
|
-
"$ref": "#/$defs/
|
|
2807
|
+
"$ref": "#/$defs/__schema49"
|
|
2678
2808
|
},
|
|
2679
2809
|
"amount": {
|
|
2680
|
-
"$ref": "#/$defs/
|
|
2810
|
+
"$ref": "#/$defs/__schema20"
|
|
2681
2811
|
},
|
|
2682
2812
|
"seed": {
|
|
2683
2813
|
"type": "integer",
|
|
@@ -2696,16 +2826,16 @@
|
|
|
2696
2826
|
"const": "blur"
|
|
2697
2827
|
},
|
|
2698
2828
|
"space": {
|
|
2699
|
-
"$ref": "#/$defs/
|
|
2829
|
+
"$ref": "#/$defs/__schema45"
|
|
2700
2830
|
},
|
|
2701
2831
|
"reference_size": {
|
|
2702
|
-
"$ref": "#/$defs/
|
|
2832
|
+
"$ref": "#/$defs/__schema46"
|
|
2703
2833
|
},
|
|
2704
2834
|
"bounds": {
|
|
2705
|
-
"$ref": "#/$defs/
|
|
2835
|
+
"$ref": "#/$defs/__schema15"
|
|
2706
2836
|
},
|
|
2707
2837
|
"mask": {
|
|
2708
|
-
"$ref": "#/$defs/
|
|
2838
|
+
"$ref": "#/$defs/__schema49"
|
|
2709
2839
|
},
|
|
2710
2840
|
"radius": {
|
|
2711
2841
|
"type": "number",
|
|
@@ -2725,16 +2855,16 @@
|
|
|
2725
2855
|
"const": "colourReplace"
|
|
2726
2856
|
},
|
|
2727
2857
|
"space": {
|
|
2728
|
-
"$ref": "#/$defs/
|
|
2858
|
+
"$ref": "#/$defs/__schema45"
|
|
2729
2859
|
},
|
|
2730
2860
|
"reference_size": {
|
|
2731
|
-
"$ref": "#/$defs/
|
|
2861
|
+
"$ref": "#/$defs/__schema46"
|
|
2732
2862
|
},
|
|
2733
2863
|
"bounds": {
|
|
2734
|
-
"$ref": "#/$defs/
|
|
2864
|
+
"$ref": "#/$defs/__schema15"
|
|
2735
2865
|
},
|
|
2736
2866
|
"mask": {
|
|
2737
|
-
"$ref": "#/$defs/
|
|
2867
|
+
"$ref": "#/$defs/__schema49"
|
|
2738
2868
|
},
|
|
2739
2869
|
"from": {
|
|
2740
2870
|
"$ref": "#/$defs/__schema1"
|
|
@@ -2744,7 +2874,7 @@
|
|
|
2744
2874
|
},
|
|
2745
2875
|
"tolerance": {
|
|
2746
2876
|
"default": 0,
|
|
2747
|
-
"$ref": "#/$defs/
|
|
2877
|
+
"$ref": "#/$defs/__schema20"
|
|
2748
2878
|
}
|
|
2749
2879
|
},
|
|
2750
2880
|
"required": ["type", "bounds", "from", "to", "tolerance"],
|
|
@@ -2758,22 +2888,22 @@
|
|
|
2758
2888
|
"const": "setPixels"
|
|
2759
2889
|
},
|
|
2760
2890
|
"space": {
|
|
2761
|
-
"$ref": "#/$defs/
|
|
2891
|
+
"$ref": "#/$defs/__schema45"
|
|
2762
2892
|
},
|
|
2763
2893
|
"reference_size": {
|
|
2764
|
-
"$ref": "#/$defs/
|
|
2894
|
+
"$ref": "#/$defs/__schema46"
|
|
2765
2895
|
},
|
|
2766
2896
|
"bounds": {
|
|
2767
|
-
"$ref": "#/$defs/
|
|
2897
|
+
"$ref": "#/$defs/__schema15"
|
|
2768
2898
|
},
|
|
2769
2899
|
"mask": {
|
|
2770
|
-
"$ref": "#/$defs/
|
|
2900
|
+
"$ref": "#/$defs/__schema49"
|
|
2771
2901
|
},
|
|
2772
2902
|
"pixels": {
|
|
2773
2903
|
"maxItems": 4096,
|
|
2774
2904
|
"type": "array",
|
|
2775
2905
|
"items": {
|
|
2776
|
-
"$ref": "#/$defs/
|
|
2906
|
+
"$ref": "#/$defs/__schema51"
|
|
2777
2907
|
}
|
|
2778
2908
|
}
|
|
2779
2909
|
},
|
|
@@ -2782,24 +2912,24 @@
|
|
|
2782
2912
|
}
|
|
2783
2913
|
]
|
|
2784
2914
|
},
|
|
2785
|
-
"__schema48": {
|
|
2786
|
-
"$ref": "#/$defs/__schema43"
|
|
2787
|
-
},
|
|
2788
2915
|
"__schema49": {
|
|
2916
|
+
"$ref": "#/$defs/__schema44"
|
|
2917
|
+
},
|
|
2918
|
+
"__schema50": {
|
|
2789
2919
|
"type": "array",
|
|
2790
2920
|
"prefixItems": [
|
|
2791
2921
|
{
|
|
2792
|
-
"$ref": "#/$defs/
|
|
2922
|
+
"$ref": "#/$defs/__schema20"
|
|
2793
2923
|
},
|
|
2794
2924
|
{
|
|
2795
|
-
"$ref": "#/$defs/
|
|
2925
|
+
"$ref": "#/$defs/__schema20"
|
|
2796
2926
|
}
|
|
2797
2927
|
],
|
|
2798
2928
|
"items": false,
|
|
2799
2929
|
"minItems": 2,
|
|
2800
2930
|
"maxItems": 2
|
|
2801
2931
|
},
|
|
2802
|
-
"
|
|
2932
|
+
"__schema51": {
|
|
2803
2933
|
"type": "object",
|
|
2804
2934
|
"properties": {
|
|
2805
2935
|
"x": {
|
|
@@ -2819,20 +2949,20 @@
|
|
|
2819
2949
|
"required": ["x", "y", "colour"],
|
|
2820
2950
|
"additionalProperties": false
|
|
2821
2951
|
},
|
|
2822
|
-
"
|
|
2952
|
+
"__schema52": {
|
|
2823
2953
|
"type": "object",
|
|
2824
2954
|
"properties": {
|
|
2825
2955
|
"id": {
|
|
2826
2956
|
"$ref": "#/$defs/__schema3"
|
|
2827
2957
|
},
|
|
2828
2958
|
"space": {
|
|
2829
|
-
"$ref": "#/$defs/
|
|
2959
|
+
"$ref": "#/$defs/__schema45"
|
|
2830
2960
|
},
|
|
2831
2961
|
"reference_size": {
|
|
2832
|
-
"$ref": "#/$defs/
|
|
2962
|
+
"$ref": "#/$defs/__schema46"
|
|
2833
2963
|
},
|
|
2834
2964
|
"bounds": {
|
|
2835
|
-
"$ref": "#/$defs/
|
|
2965
|
+
"$ref": "#/$defs/__schema15"
|
|
2836
2966
|
},
|
|
2837
2967
|
"scale": {
|
|
2838
2968
|
"default": 2,
|
|
@@ -2852,36 +2982,36 @@
|
|
|
2852
2982
|
"maxItems": 256,
|
|
2853
2983
|
"type": "array",
|
|
2854
2984
|
"items": {
|
|
2855
|
-
"$ref": "#/$defs/
|
|
2985
|
+
"$ref": "#/$defs/__schema48"
|
|
2856
2986
|
}
|
|
2857
2987
|
}
|
|
2858
2988
|
},
|
|
2859
2989
|
"required": ["id", "bounds", "scale", "operations"],
|
|
2860
2990
|
"additionalProperties": false
|
|
2861
2991
|
},
|
|
2862
|
-
"
|
|
2992
|
+
"__schema53": {
|
|
2863
2993
|
"type": "object",
|
|
2864
2994
|
"properties": {
|
|
2865
2995
|
"space": {
|
|
2866
|
-
"$ref": "#/$defs/
|
|
2996
|
+
"$ref": "#/$defs/__schema45"
|
|
2867
2997
|
},
|
|
2868
2998
|
"reference_size": {
|
|
2869
|
-
"$ref": "#/$defs/
|
|
2999
|
+
"$ref": "#/$defs/__schema46"
|
|
2870
3000
|
},
|
|
2871
3001
|
"bounds": {
|
|
2872
|
-
"$ref": "#/$defs/
|
|
3002
|
+
"$ref": "#/$defs/__schema15"
|
|
2873
3003
|
},
|
|
2874
3004
|
"palette": {
|
|
2875
|
-
"$ref": "#/$defs/
|
|
3005
|
+
"$ref": "#/$defs/__schema54"
|
|
2876
3006
|
},
|
|
2877
3007
|
"pixels": {
|
|
2878
|
-
"$ref": "#/$defs/
|
|
3008
|
+
"$ref": "#/$defs/__schema55"
|
|
2879
3009
|
}
|
|
2880
3010
|
},
|
|
2881
3011
|
"required": ["bounds", "palette", "pixels"],
|
|
2882
3012
|
"additionalProperties": false
|
|
2883
3013
|
},
|
|
2884
|
-
"
|
|
3014
|
+
"__schema54": {
|
|
2885
3015
|
"type": "object",
|
|
2886
3016
|
"propertyNames": {
|
|
2887
3017
|
"type": "string",
|
|
@@ -2892,20 +3022,20 @@
|
|
|
2892
3022
|
"$ref": "#/$defs/__schema1"
|
|
2893
3023
|
}
|
|
2894
3024
|
},
|
|
2895
|
-
"
|
|
3025
|
+
"__schema55": {
|
|
2896
3026
|
"minItems": 1,
|
|
2897
3027
|
"maxItems": 256,
|
|
2898
3028
|
"type": "array",
|
|
2899
3029
|
"items": {
|
|
2900
|
-
"$ref": "#/$defs/
|
|
3030
|
+
"$ref": "#/$defs/__schema56"
|
|
2901
3031
|
}
|
|
2902
3032
|
},
|
|
2903
|
-
"
|
|
3033
|
+
"__schema56": {
|
|
2904
3034
|
"type": "string",
|
|
2905
3035
|
"minLength": 1,
|
|
2906
3036
|
"maxLength": 256
|
|
2907
3037
|
},
|
|
2908
|
-
"
|
|
3038
|
+
"__schema57": {
|
|
2909
3039
|
"oneOf": [
|
|
2910
3040
|
{
|
|
2911
3041
|
"type": "object",
|
|
@@ -2926,7 +3056,7 @@
|
|
|
2926
3056
|
},
|
|
2927
3057
|
"percentile": {
|
|
2928
3058
|
"default": 0.1,
|
|
2929
|
-
"$ref": "#/$defs/
|
|
3059
|
+
"$ref": "#/$defs/__schema20"
|
|
2930
3060
|
}
|
|
2931
3061
|
},
|
|
2932
3062
|
"required": ["type", "target", "minimum", "percentile"],
|
|
@@ -2944,7 +3074,7 @@
|
|
|
2944
3074
|
},
|
|
2945
3075
|
"minimum": {
|
|
2946
3076
|
"default": 0.5,
|
|
2947
|
-
"$ref": "#/$defs/
|
|
3077
|
+
"$ref": "#/$defs/__schema20"
|
|
2948
3078
|
}
|
|
2949
3079
|
},
|
|
2950
3080
|
"required": ["type", "target", "minimum"],
|
|
@@ -2958,15 +3088,15 @@
|
|
|
2958
3088
|
"const": "region-luma"
|
|
2959
3089
|
},
|
|
2960
3090
|
"bounds": {
|
|
2961
|
-
"$ref": "#/$defs/
|
|
3091
|
+
"$ref": "#/$defs/__schema15"
|
|
2962
3092
|
},
|
|
2963
3093
|
"minimum": {
|
|
2964
3094
|
"default": 0,
|
|
2965
|
-
"$ref": "#/$defs/
|
|
3095
|
+
"$ref": "#/$defs/__schema20"
|
|
2966
3096
|
},
|
|
2967
3097
|
"maximum": {
|
|
2968
3098
|
"default": 1,
|
|
2969
|
-
"$ref": "#/$defs/
|
|
3099
|
+
"$ref": "#/$defs/__schema20"
|
|
2970
3100
|
}
|
|
2971
3101
|
},
|
|
2972
3102
|
"required": ["type", "bounds", "minimum", "maximum"],
|
|
@@ -3078,10 +3208,10 @@
|
|
|
3078
3208
|
}
|
|
3079
3209
|
]
|
|
3080
3210
|
},
|
|
3081
|
-
"
|
|
3211
|
+
"__schema58": {
|
|
3082
3212
|
"type": "string"
|
|
3083
3213
|
},
|
|
3084
|
-
"
|
|
3214
|
+
"__schema59": {
|
|
3085
3215
|
"oneOf": [
|
|
3086
3216
|
{
|
|
3087
3217
|
"type": "object",
|
|
@@ -3091,7 +3221,7 @@
|
|
|
3091
3221
|
"const": "move"
|
|
3092
3222
|
},
|
|
3093
3223
|
"to": {
|
|
3094
|
-
"$ref": "#/$defs/
|
|
3224
|
+
"$ref": "#/$defs/__schema17"
|
|
3095
3225
|
}
|
|
3096
3226
|
},
|
|
3097
3227
|
"required": ["type", "to"],
|
|
@@ -3105,7 +3235,7 @@
|
|
|
3105
3235
|
"const": "line"
|
|
3106
3236
|
},
|
|
3107
3237
|
"to": {
|
|
3108
|
-
"$ref": "#/$defs/
|
|
3238
|
+
"$ref": "#/$defs/__schema17"
|
|
3109
3239
|
}
|
|
3110
3240
|
},
|
|
3111
3241
|
"required": ["type", "to"],
|
|
@@ -3119,10 +3249,10 @@
|
|
|
3119
3249
|
"const": "quadratic"
|
|
3120
3250
|
},
|
|
3121
3251
|
"control": {
|
|
3122
|
-
"$ref": "#/$defs/
|
|
3252
|
+
"$ref": "#/$defs/__schema17"
|
|
3123
3253
|
},
|
|
3124
3254
|
"to": {
|
|
3125
|
-
"$ref": "#/$defs/
|
|
3255
|
+
"$ref": "#/$defs/__schema17"
|
|
3126
3256
|
}
|
|
3127
3257
|
},
|
|
3128
3258
|
"required": ["type", "control", "to"],
|
|
@@ -3136,13 +3266,13 @@
|
|
|
3136
3266
|
"const": "cubic"
|
|
3137
3267
|
},
|
|
3138
3268
|
"control1": {
|
|
3139
|
-
"$ref": "#/$defs/
|
|
3269
|
+
"$ref": "#/$defs/__schema17"
|
|
3140
3270
|
},
|
|
3141
3271
|
"control2": {
|
|
3142
|
-
"$ref": "#/$defs/
|
|
3272
|
+
"$ref": "#/$defs/__schema17"
|
|
3143
3273
|
},
|
|
3144
3274
|
"to": {
|
|
3145
|
-
"$ref": "#/$defs/
|
|
3275
|
+
"$ref": "#/$defs/__schema17"
|
|
3146
3276
|
}
|
|
3147
3277
|
},
|
|
3148
3278
|
"required": ["type", "control1", "control2", "to"],
|
|
@@ -3161,9 +3291,6 @@
|
|
|
3161
3291
|
}
|
|
3162
3292
|
]
|
|
3163
3293
|
},
|
|
3164
|
-
"__schema59": {
|
|
3165
|
-
"type": "string"
|
|
3166
|
-
},
|
|
3167
3294
|
"__schema60": {
|
|
3168
3295
|
"type": "string"
|
|
3169
3296
|
},
|
|
@@ -3172,6 +3299,9 @@
|
|
|
3172
3299
|
},
|
|
3173
3300
|
"__schema62": {
|
|
3174
3301
|
"type": "string"
|
|
3302
|
+
},
|
|
3303
|
+
"__schema63": {
|
|
3304
|
+
"type": "string"
|
|
3175
3305
|
}
|
|
3176
3306
|
}
|
|
3177
3307
|
}
|