@u-krupaveho-kraba/form-schemas 0.1.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.
@@ -0,0 +1,4686 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "object",
4
+ "properties": {
5
+ "id": {
6
+ "type": "string"
7
+ },
8
+ "name": {
9
+ "type": "string"
10
+ },
11
+ "version": {
12
+ "type": "number",
13
+ "const": 1
14
+ },
15
+ "targeting": {
16
+ "type": "object",
17
+ "properties": {
18
+ "urlPatterns": {
19
+ "type": "array",
20
+ "items": {
21
+ "type": "string"
22
+ }
23
+ },
24
+ "frequency": {
25
+ "type": "object",
26
+ "properties": {
27
+ "minVisitCount": {
28
+ "type": "number"
29
+ },
30
+ "maxDisplays": {
31
+ "type": "number"
32
+ },
33
+ "minHoursBetweenDisplays": {
34
+ "type": "number"
35
+ }
36
+ },
37
+ "additionalProperties": false
38
+ }
39
+ },
40
+ "additionalProperties": false
41
+ },
42
+ "schedule": {
43
+ "type": "object",
44
+ "properties": {
45
+ "startsAt": {
46
+ "type": "string"
47
+ },
48
+ "endsAt": {
49
+ "type": "string"
50
+ }
51
+ },
52
+ "additionalProperties": false
53
+ },
54
+ "trigger": {
55
+ "oneOf": [
56
+ {
57
+ "type": "object",
58
+ "properties": {
59
+ "type": {
60
+ "type": "string",
61
+ "const": "immediate"
62
+ }
63
+ },
64
+ "required": [
65
+ "type"
66
+ ],
67
+ "additionalProperties": false
68
+ },
69
+ {
70
+ "type": "object",
71
+ "properties": {
72
+ "type": {
73
+ "type": "string",
74
+ "const": "delay"
75
+ },
76
+ "seconds": {
77
+ "type": "number"
78
+ }
79
+ },
80
+ "required": [
81
+ "type",
82
+ "seconds"
83
+ ],
84
+ "additionalProperties": false
85
+ },
86
+ {
87
+ "type": "object",
88
+ "properties": {
89
+ "type": {
90
+ "type": "string",
91
+ "const": "scroll_depth"
92
+ },
93
+ "percent": {
94
+ "type": "number"
95
+ }
96
+ },
97
+ "required": [
98
+ "type",
99
+ "percent"
100
+ ],
101
+ "additionalProperties": false
102
+ },
103
+ {
104
+ "type": "object",
105
+ "properties": {
106
+ "type": {
107
+ "type": "string",
108
+ "const": "exit_intent"
109
+ }
110
+ },
111
+ "required": [
112
+ "type"
113
+ ],
114
+ "additionalProperties": false
115
+ }
116
+ ]
117
+ },
118
+ "variants": {
119
+ "type": "array",
120
+ "items": {
121
+ "type": "object",
122
+ "properties": {
123
+ "id": {
124
+ "type": "string"
125
+ },
126
+ "name": {
127
+ "type": "string"
128
+ },
129
+ "definition": {
130
+ "anyOf": [
131
+ {
132
+ "oneOf": [
133
+ {
134
+ "type": "object",
135
+ "properties": {
136
+ "language": {
137
+ "type": "string",
138
+ "enum": [
139
+ "cs",
140
+ "en"
141
+ ]
142
+ },
143
+ "steps": {
144
+ "type": "array",
145
+ "items": {
146
+ "type": "object",
147
+ "properties": {
148
+ "type": {
149
+ "type": "string",
150
+ "const": "step"
151
+ },
152
+ "name": {
153
+ "type": "string"
154
+ },
155
+ "elements": {
156
+ "type": "array",
157
+ "items": {
158
+ "$ref": "#/$defs/__schema0"
159
+ }
160
+ },
161
+ "id": {
162
+ "type": "string"
163
+ },
164
+ "displayProperties": {
165
+ "type": "object",
166
+ "properties": {
167
+ "padding": {
168
+ "type": "object",
169
+ "properties": {
170
+ "left": {
171
+ "type": "number"
172
+ },
173
+ "right": {
174
+ "type": "number"
175
+ },
176
+ "top": {
177
+ "type": "number"
178
+ },
179
+ "bottom": {
180
+ "type": "number"
181
+ },
182
+ "independent": {
183
+ "type": "boolean"
184
+ }
185
+ },
186
+ "required": [
187
+ "left",
188
+ "right",
189
+ "top",
190
+ "bottom",
191
+ "independent"
192
+ ],
193
+ "additionalProperties": false
194
+ },
195
+ "backgroundColor": {
196
+ "type": "string",
197
+ "pattern": "^#[\\s\\S]{0,}$"
198
+ },
199
+ "minHeight": {
200
+ "type": "number"
201
+ }
202
+ },
203
+ "required": [
204
+ "padding"
205
+ ],
206
+ "additionalProperties": false
207
+ }
208
+ },
209
+ "required": [
210
+ "type",
211
+ "name",
212
+ "elements",
213
+ "id",
214
+ "displayProperties"
215
+ ],
216
+ "additionalProperties": false
217
+ }
218
+ },
219
+ "theme": {
220
+ "type": "object",
221
+ "properties": {
222
+ "corners": {
223
+ "type": "string",
224
+ "enum": [
225
+ "none",
226
+ "sm",
227
+ "md",
228
+ "lg"
229
+ ]
230
+ },
231
+ "mainColor": {
232
+ "type": "string",
233
+ "pattern": "^#[\\s\\S]{0,}$"
234
+ },
235
+ "secondaryColor": {
236
+ "type": "array",
237
+ "prefixItems": [
238
+ {
239
+ "type": "string",
240
+ "pattern": "^#[\\s\\S]{0,}$"
241
+ },
242
+ {
243
+ "type": "string",
244
+ "pattern": "^#[\\s\\S]{0,}$"
245
+ },
246
+ {
247
+ "type": "string",
248
+ "pattern": "^#[\\s\\S]{0,}$"
249
+ },
250
+ {
251
+ "type": "string",
252
+ "pattern": "^#[\\s\\S]{0,}$"
253
+ }
254
+ ]
255
+ },
256
+ "backgroundColor": {
257
+ "type": "string",
258
+ "pattern": "^#[\\s\\S]{0,}$"
259
+ },
260
+ "fontFamily": {
261
+ "type": "string"
262
+ }
263
+ },
264
+ "required": [
265
+ "corners",
266
+ "mainColor",
267
+ "secondaryColor",
268
+ "backgroundColor",
269
+ "fontFamily"
270
+ ],
271
+ "additionalProperties": false
272
+ },
273
+ "version": {
274
+ "type": "number",
275
+ "const": 1
276
+ },
277
+ "usedFonts": {
278
+ "type": "array",
279
+ "items": {
280
+ "type": "string"
281
+ }
282
+ },
283
+ "type": {
284
+ "type": "string",
285
+ "const": "basic"
286
+ },
287
+ "display": {
288
+ "type": "object",
289
+ "properties": {
290
+ "border": {
291
+ "type": "object",
292
+ "properties": {
293
+ "width": {
294
+ "type": "number"
295
+ },
296
+ "color": {
297
+ "type": "string",
298
+ "pattern": "^#[\\s\\S]{0,}$"
299
+ },
300
+ "style": {
301
+ "type": "string",
302
+ "enum": [
303
+ "none",
304
+ "solid",
305
+ "dashed",
306
+ "dotted"
307
+ ]
308
+ },
309
+ "sides": {
310
+ "type": "string",
311
+ "enum": [
312
+ "all",
313
+ "top",
314
+ "right",
315
+ "bottom",
316
+ "left"
317
+ ]
318
+ },
319
+ "useTheme": {
320
+ "type": "boolean"
321
+ }
322
+ },
323
+ "required": [
324
+ "width",
325
+ "color",
326
+ "style"
327
+ ],
328
+ "additionalProperties": false
329
+ },
330
+ "shadow": {
331
+ "type": "object",
332
+ "properties": {
333
+ "offsetX": {
334
+ "type": "number"
335
+ },
336
+ "offsetY": {
337
+ "type": "number"
338
+ },
339
+ "blur": {
340
+ "type": "number"
341
+ },
342
+ "spread": {
343
+ "type": "number"
344
+ },
345
+ "color": {
346
+ "type": "string"
347
+ },
348
+ "raw": {
349
+ "type": "string"
350
+ }
351
+ },
352
+ "required": [
353
+ "offsetX",
354
+ "offsetY",
355
+ "blur",
356
+ "spread",
357
+ "color"
358
+ ],
359
+ "additionalProperties": false
360
+ },
361
+ "maxWidth": {
362
+ "type": "number"
363
+ }
364
+ },
365
+ "required": [
366
+ "border",
367
+ "maxWidth"
368
+ ],
369
+ "additionalProperties": false
370
+ }
371
+ },
372
+ "required": [
373
+ "language",
374
+ "steps",
375
+ "theme",
376
+ "version",
377
+ "usedFonts",
378
+ "type",
379
+ "display"
380
+ ],
381
+ "additionalProperties": false
382
+ },
383
+ {
384
+ "type": "object",
385
+ "properties": {
386
+ "language": {
387
+ "type": "string",
388
+ "enum": [
389
+ "cs",
390
+ "en"
391
+ ]
392
+ },
393
+ "steps": {
394
+ "type": "array",
395
+ "items": {
396
+ "type": "object",
397
+ "properties": {
398
+ "type": {
399
+ "type": "string",
400
+ "const": "step"
401
+ },
402
+ "name": {
403
+ "type": "string"
404
+ },
405
+ "elements": {
406
+ "type": "array",
407
+ "items": {
408
+ "$ref": "#/$defs/__schema0"
409
+ }
410
+ },
411
+ "id": {
412
+ "type": "string"
413
+ },
414
+ "displayProperties": {
415
+ "type": "object",
416
+ "properties": {
417
+ "padding": {
418
+ "type": "object",
419
+ "properties": {
420
+ "left": {
421
+ "type": "number"
422
+ },
423
+ "right": {
424
+ "type": "number"
425
+ },
426
+ "top": {
427
+ "type": "number"
428
+ },
429
+ "bottom": {
430
+ "type": "number"
431
+ },
432
+ "independent": {
433
+ "type": "boolean"
434
+ }
435
+ },
436
+ "required": [
437
+ "left",
438
+ "right",
439
+ "top",
440
+ "bottom",
441
+ "independent"
442
+ ],
443
+ "additionalProperties": false
444
+ },
445
+ "backgroundColor": {
446
+ "type": "string",
447
+ "pattern": "^#[\\s\\S]{0,}$"
448
+ },
449
+ "minHeight": {
450
+ "type": "number"
451
+ }
452
+ },
453
+ "required": [
454
+ "padding"
455
+ ],
456
+ "additionalProperties": false
457
+ }
458
+ },
459
+ "required": [
460
+ "type",
461
+ "name",
462
+ "elements",
463
+ "id",
464
+ "displayProperties"
465
+ ],
466
+ "additionalProperties": false
467
+ }
468
+ },
469
+ "theme": {
470
+ "type": "object",
471
+ "properties": {
472
+ "corners": {
473
+ "type": "string",
474
+ "enum": [
475
+ "none",
476
+ "sm",
477
+ "md",
478
+ "lg"
479
+ ]
480
+ },
481
+ "mainColor": {
482
+ "type": "string",
483
+ "pattern": "^#[\\s\\S]{0,}$"
484
+ },
485
+ "secondaryColor": {
486
+ "type": "array",
487
+ "prefixItems": [
488
+ {
489
+ "type": "string",
490
+ "pattern": "^#[\\s\\S]{0,}$"
491
+ },
492
+ {
493
+ "type": "string",
494
+ "pattern": "^#[\\s\\S]{0,}$"
495
+ },
496
+ {
497
+ "type": "string",
498
+ "pattern": "^#[\\s\\S]{0,}$"
499
+ },
500
+ {
501
+ "type": "string",
502
+ "pattern": "^#[\\s\\S]{0,}$"
503
+ }
504
+ ]
505
+ },
506
+ "backgroundColor": {
507
+ "type": "string",
508
+ "pattern": "^#[\\s\\S]{0,}$"
509
+ },
510
+ "fontFamily": {
511
+ "type": "string"
512
+ }
513
+ },
514
+ "required": [
515
+ "corners",
516
+ "mainColor",
517
+ "secondaryColor",
518
+ "backgroundColor",
519
+ "fontFamily"
520
+ ],
521
+ "additionalProperties": false
522
+ },
523
+ "version": {
524
+ "type": "number",
525
+ "const": 1
526
+ },
527
+ "usedFonts": {
528
+ "type": "array",
529
+ "items": {
530
+ "type": "string"
531
+ }
532
+ },
533
+ "type": {
534
+ "type": "string",
535
+ "const": "popup"
536
+ },
537
+ "display": {
538
+ "type": "object",
539
+ "properties": {
540
+ "border": {
541
+ "type": "object",
542
+ "properties": {
543
+ "width": {
544
+ "type": "number"
545
+ },
546
+ "color": {
547
+ "type": "string",
548
+ "pattern": "^#[\\s\\S]{0,}$"
549
+ },
550
+ "style": {
551
+ "type": "string",
552
+ "enum": [
553
+ "none",
554
+ "solid",
555
+ "dashed",
556
+ "dotted"
557
+ ]
558
+ },
559
+ "sides": {
560
+ "type": "string",
561
+ "enum": [
562
+ "all",
563
+ "top",
564
+ "right",
565
+ "bottom",
566
+ "left"
567
+ ]
568
+ },
569
+ "useTheme": {
570
+ "type": "boolean"
571
+ }
572
+ },
573
+ "required": [
574
+ "width",
575
+ "color",
576
+ "style"
577
+ ],
578
+ "additionalProperties": false
579
+ },
580
+ "shadow": {
581
+ "type": "object",
582
+ "properties": {
583
+ "offsetX": {
584
+ "type": "number"
585
+ },
586
+ "offsetY": {
587
+ "type": "number"
588
+ },
589
+ "blur": {
590
+ "type": "number"
591
+ },
592
+ "spread": {
593
+ "type": "number"
594
+ },
595
+ "color": {
596
+ "type": "string"
597
+ },
598
+ "raw": {
599
+ "type": "string"
600
+ }
601
+ },
602
+ "required": [
603
+ "offsetX",
604
+ "offsetY",
605
+ "blur",
606
+ "spread",
607
+ "color"
608
+ ],
609
+ "additionalProperties": false
610
+ },
611
+ "position": {
612
+ "type": "object",
613
+ "properties": {
614
+ "distance": {
615
+ "type": "object",
616
+ "properties": {
617
+ "left": {
618
+ "type": "number"
619
+ },
620
+ "right": {
621
+ "type": "number"
622
+ },
623
+ "top": {
624
+ "type": "number"
625
+ },
626
+ "bottom": {
627
+ "type": "number"
628
+ },
629
+ "independent": {
630
+ "type": "boolean"
631
+ }
632
+ },
633
+ "required": [
634
+ "left",
635
+ "right",
636
+ "top",
637
+ "bottom",
638
+ "independent"
639
+ ],
640
+ "additionalProperties": false
641
+ },
642
+ "id": {
643
+ "type": "number",
644
+ "enum": [
645
+ 1,
646
+ 2,
647
+ 3,
648
+ 4,
649
+ 5,
650
+ 6,
651
+ 7,
652
+ 8,
653
+ 9
654
+ ]
655
+ }
656
+ },
657
+ "required": [
658
+ "distance",
659
+ "id"
660
+ ],
661
+ "additionalProperties": false
662
+ },
663
+ "closeIcon": {
664
+ "type": "object",
665
+ "properties": {
666
+ "color": {
667
+ "type": "string"
668
+ },
669
+ "size": {
670
+ "type": "number"
671
+ },
672
+ "padding": {
673
+ "type": "object",
674
+ "properties": {
675
+ "left": {
676
+ "type": "number"
677
+ },
678
+ "right": {
679
+ "type": "number"
680
+ },
681
+ "top": {
682
+ "type": "number"
683
+ },
684
+ "bottom": {
685
+ "type": "number"
686
+ },
687
+ "independent": {
688
+ "type": "boolean"
689
+ }
690
+ },
691
+ "required": [
692
+ "left",
693
+ "right",
694
+ "top",
695
+ "bottom",
696
+ "independent"
697
+ ],
698
+ "additionalProperties": false
699
+ },
700
+ "position": {
701
+ "type": "object",
702
+ "properties": {
703
+ "top": {
704
+ "type": "number"
705
+ },
706
+ "right": {
707
+ "type": "number"
708
+ }
709
+ },
710
+ "required": [
711
+ "top",
712
+ "right"
713
+ ],
714
+ "additionalProperties": false
715
+ },
716
+ "visibilityDelay": {
717
+ "type": "number"
718
+ },
719
+ "closeOnEscape": {
720
+ "type": "boolean"
721
+ }
722
+ },
723
+ "required": [
724
+ "color",
725
+ "size",
726
+ "padding"
727
+ ],
728
+ "additionalProperties": false
729
+ },
730
+ "teaser": {
731
+ "type": "object",
732
+ "properties": {
733
+ "text": {
734
+ "type": "string"
735
+ },
736
+ "backgroundColor": {
737
+ "type": "string"
738
+ },
739
+ "textColor": {
740
+ "type": "string"
741
+ }
742
+ },
743
+ "required": [
744
+ "text",
745
+ "backgroundColor",
746
+ "textColor"
747
+ ],
748
+ "additionalProperties": false
749
+ }
750
+ },
751
+ "required": [
752
+ "border",
753
+ "position",
754
+ "closeIcon"
755
+ ],
756
+ "additionalProperties": false
757
+ }
758
+ },
759
+ "required": [
760
+ "language",
761
+ "steps",
762
+ "theme",
763
+ "version",
764
+ "usedFonts",
765
+ "type",
766
+ "display"
767
+ ],
768
+ "additionalProperties": false
769
+ },
770
+ {
771
+ "type": "object",
772
+ "properties": {
773
+ "language": {
774
+ "type": "string",
775
+ "enum": [
776
+ "cs",
777
+ "en"
778
+ ]
779
+ },
780
+ "steps": {
781
+ "type": "array",
782
+ "items": {
783
+ "type": "object",
784
+ "properties": {
785
+ "type": {
786
+ "type": "string",
787
+ "const": "step"
788
+ },
789
+ "name": {
790
+ "type": "string"
791
+ },
792
+ "elements": {
793
+ "type": "array",
794
+ "items": {
795
+ "$ref": "#/$defs/__schema0"
796
+ }
797
+ },
798
+ "id": {
799
+ "type": "string"
800
+ },
801
+ "displayProperties": {
802
+ "type": "object",
803
+ "properties": {
804
+ "padding": {
805
+ "type": "object",
806
+ "properties": {
807
+ "left": {
808
+ "type": "number"
809
+ },
810
+ "right": {
811
+ "type": "number"
812
+ },
813
+ "top": {
814
+ "type": "number"
815
+ },
816
+ "bottom": {
817
+ "type": "number"
818
+ },
819
+ "independent": {
820
+ "type": "boolean"
821
+ }
822
+ },
823
+ "required": [
824
+ "left",
825
+ "right",
826
+ "top",
827
+ "bottom",
828
+ "independent"
829
+ ],
830
+ "additionalProperties": false
831
+ },
832
+ "backgroundColor": {
833
+ "type": "string",
834
+ "pattern": "^#[\\s\\S]{0,}$"
835
+ },
836
+ "minHeight": {
837
+ "type": "number"
838
+ }
839
+ },
840
+ "required": [
841
+ "padding"
842
+ ],
843
+ "additionalProperties": false
844
+ }
845
+ },
846
+ "required": [
847
+ "type",
848
+ "name",
849
+ "elements",
850
+ "id",
851
+ "displayProperties"
852
+ ],
853
+ "additionalProperties": false
854
+ }
855
+ },
856
+ "theme": {
857
+ "type": "object",
858
+ "properties": {
859
+ "corners": {
860
+ "type": "string",
861
+ "enum": [
862
+ "none",
863
+ "sm",
864
+ "md",
865
+ "lg"
866
+ ]
867
+ },
868
+ "mainColor": {
869
+ "type": "string",
870
+ "pattern": "^#[\\s\\S]{0,}$"
871
+ },
872
+ "secondaryColor": {
873
+ "type": "array",
874
+ "prefixItems": [
875
+ {
876
+ "type": "string",
877
+ "pattern": "^#[\\s\\S]{0,}$"
878
+ },
879
+ {
880
+ "type": "string",
881
+ "pattern": "^#[\\s\\S]{0,}$"
882
+ },
883
+ {
884
+ "type": "string",
885
+ "pattern": "^#[\\s\\S]{0,}$"
886
+ },
887
+ {
888
+ "type": "string",
889
+ "pattern": "^#[\\s\\S]{0,}$"
890
+ }
891
+ ]
892
+ },
893
+ "backgroundColor": {
894
+ "type": "string",
895
+ "pattern": "^#[\\s\\S]{0,}$"
896
+ },
897
+ "fontFamily": {
898
+ "type": "string"
899
+ }
900
+ },
901
+ "required": [
902
+ "corners",
903
+ "mainColor",
904
+ "secondaryColor",
905
+ "backgroundColor",
906
+ "fontFamily"
907
+ ],
908
+ "additionalProperties": false
909
+ },
910
+ "version": {
911
+ "type": "number",
912
+ "const": 1
913
+ },
914
+ "usedFonts": {
915
+ "type": "array",
916
+ "items": {
917
+ "type": "string"
918
+ }
919
+ },
920
+ "type": {
921
+ "type": "string",
922
+ "const": "slider"
923
+ },
924
+ "display": {
925
+ "type": "object",
926
+ "properties": {
927
+ "border": {
928
+ "type": "object",
929
+ "properties": {
930
+ "width": {
931
+ "type": "number"
932
+ },
933
+ "color": {
934
+ "type": "string",
935
+ "pattern": "^#[\\s\\S]{0,}$"
936
+ },
937
+ "style": {
938
+ "type": "string",
939
+ "enum": [
940
+ "none",
941
+ "solid",
942
+ "dashed",
943
+ "dotted"
944
+ ]
945
+ },
946
+ "sides": {
947
+ "type": "string",
948
+ "enum": [
949
+ "all",
950
+ "top",
951
+ "right",
952
+ "bottom",
953
+ "left"
954
+ ]
955
+ },
956
+ "useTheme": {
957
+ "type": "boolean"
958
+ }
959
+ },
960
+ "required": [
961
+ "width",
962
+ "color",
963
+ "style"
964
+ ],
965
+ "additionalProperties": false
966
+ },
967
+ "shadow": {
968
+ "type": "object",
969
+ "properties": {
970
+ "offsetX": {
971
+ "type": "number"
972
+ },
973
+ "offsetY": {
974
+ "type": "number"
975
+ },
976
+ "blur": {
977
+ "type": "number"
978
+ },
979
+ "spread": {
980
+ "type": "number"
981
+ },
982
+ "color": {
983
+ "type": "string"
984
+ },
985
+ "raw": {
986
+ "type": "string"
987
+ }
988
+ },
989
+ "required": [
990
+ "offsetX",
991
+ "offsetY",
992
+ "blur",
993
+ "spread",
994
+ "color"
995
+ ],
996
+ "additionalProperties": false
997
+ },
998
+ "position": {
999
+ "type": "string",
1000
+ "enum": [
1001
+ "bottom-left",
1002
+ "bottom-center",
1003
+ "bottom-right"
1004
+ ]
1005
+ },
1006
+ "closeIcon": {
1007
+ "type": "object",
1008
+ "properties": {
1009
+ "color": {
1010
+ "type": "string"
1011
+ },
1012
+ "size": {
1013
+ "type": "number"
1014
+ },
1015
+ "padding": {
1016
+ "type": "object",
1017
+ "properties": {
1018
+ "left": {
1019
+ "type": "number"
1020
+ },
1021
+ "right": {
1022
+ "type": "number"
1023
+ },
1024
+ "top": {
1025
+ "type": "number"
1026
+ },
1027
+ "bottom": {
1028
+ "type": "number"
1029
+ },
1030
+ "independent": {
1031
+ "type": "boolean"
1032
+ }
1033
+ },
1034
+ "required": [
1035
+ "left",
1036
+ "right",
1037
+ "top",
1038
+ "bottom",
1039
+ "independent"
1040
+ ],
1041
+ "additionalProperties": false
1042
+ },
1043
+ "position": {
1044
+ "type": "object",
1045
+ "properties": {
1046
+ "top": {
1047
+ "type": "number"
1048
+ },
1049
+ "right": {
1050
+ "type": "number"
1051
+ }
1052
+ },
1053
+ "required": [
1054
+ "top",
1055
+ "right"
1056
+ ],
1057
+ "additionalProperties": false
1058
+ },
1059
+ "visibilityDelay": {
1060
+ "type": "number"
1061
+ },
1062
+ "closeOnEscape": {
1063
+ "type": "boolean"
1064
+ }
1065
+ },
1066
+ "required": [
1067
+ "color",
1068
+ "size",
1069
+ "padding"
1070
+ ],
1071
+ "additionalProperties": false
1072
+ },
1073
+ "teaser": {
1074
+ "type": "object",
1075
+ "properties": {
1076
+ "text": {
1077
+ "type": "string"
1078
+ },
1079
+ "backgroundColor": {
1080
+ "type": "string"
1081
+ },
1082
+ "textColor": {
1083
+ "type": "string"
1084
+ }
1085
+ },
1086
+ "required": [
1087
+ "text",
1088
+ "backgroundColor",
1089
+ "textColor"
1090
+ ],
1091
+ "additionalProperties": false
1092
+ }
1093
+ },
1094
+ "required": [
1095
+ "border",
1096
+ "position",
1097
+ "closeIcon"
1098
+ ],
1099
+ "additionalProperties": false
1100
+ }
1101
+ },
1102
+ "required": [
1103
+ "language",
1104
+ "steps",
1105
+ "theme",
1106
+ "version",
1107
+ "usedFonts",
1108
+ "type",
1109
+ "display"
1110
+ ],
1111
+ "additionalProperties": false
1112
+ },
1113
+ {
1114
+ "type": "object",
1115
+ "properties": {
1116
+ "language": {
1117
+ "type": "string",
1118
+ "enum": [
1119
+ "cs",
1120
+ "en"
1121
+ ]
1122
+ },
1123
+ "steps": {
1124
+ "type": "array",
1125
+ "items": {
1126
+ "type": "object",
1127
+ "properties": {
1128
+ "type": {
1129
+ "type": "string",
1130
+ "const": "step"
1131
+ },
1132
+ "name": {
1133
+ "type": "string"
1134
+ },
1135
+ "elements": {
1136
+ "type": "array",
1137
+ "items": {
1138
+ "$ref": "#/$defs/__schema0"
1139
+ }
1140
+ },
1141
+ "id": {
1142
+ "type": "string"
1143
+ },
1144
+ "displayProperties": {
1145
+ "type": "object",
1146
+ "properties": {
1147
+ "padding": {
1148
+ "type": "object",
1149
+ "properties": {
1150
+ "left": {
1151
+ "type": "number"
1152
+ },
1153
+ "right": {
1154
+ "type": "number"
1155
+ },
1156
+ "top": {
1157
+ "type": "number"
1158
+ },
1159
+ "bottom": {
1160
+ "type": "number"
1161
+ },
1162
+ "independent": {
1163
+ "type": "boolean"
1164
+ }
1165
+ },
1166
+ "required": [
1167
+ "left",
1168
+ "right",
1169
+ "top",
1170
+ "bottom",
1171
+ "independent"
1172
+ ],
1173
+ "additionalProperties": false
1174
+ },
1175
+ "backgroundColor": {
1176
+ "type": "string",
1177
+ "pattern": "^#[\\s\\S]{0,}$"
1178
+ },
1179
+ "minHeight": {
1180
+ "type": "number"
1181
+ }
1182
+ },
1183
+ "required": [
1184
+ "padding"
1185
+ ],
1186
+ "additionalProperties": false
1187
+ }
1188
+ },
1189
+ "required": [
1190
+ "type",
1191
+ "name",
1192
+ "elements",
1193
+ "id",
1194
+ "displayProperties"
1195
+ ],
1196
+ "additionalProperties": false
1197
+ }
1198
+ },
1199
+ "theme": {
1200
+ "type": "object",
1201
+ "properties": {
1202
+ "corners": {
1203
+ "type": "string",
1204
+ "enum": [
1205
+ "none",
1206
+ "sm",
1207
+ "md",
1208
+ "lg"
1209
+ ]
1210
+ },
1211
+ "mainColor": {
1212
+ "type": "string",
1213
+ "pattern": "^#[\\s\\S]{0,}$"
1214
+ },
1215
+ "secondaryColor": {
1216
+ "type": "array",
1217
+ "prefixItems": [
1218
+ {
1219
+ "type": "string",
1220
+ "pattern": "^#[\\s\\S]{0,}$"
1221
+ },
1222
+ {
1223
+ "type": "string",
1224
+ "pattern": "^#[\\s\\S]{0,}$"
1225
+ },
1226
+ {
1227
+ "type": "string",
1228
+ "pattern": "^#[\\s\\S]{0,}$"
1229
+ },
1230
+ {
1231
+ "type": "string",
1232
+ "pattern": "^#[\\s\\S]{0,}$"
1233
+ }
1234
+ ]
1235
+ },
1236
+ "backgroundColor": {
1237
+ "type": "string",
1238
+ "pattern": "^#[\\s\\S]{0,}$"
1239
+ },
1240
+ "fontFamily": {
1241
+ "type": "string"
1242
+ }
1243
+ },
1244
+ "required": [
1245
+ "corners",
1246
+ "mainColor",
1247
+ "secondaryColor",
1248
+ "backgroundColor",
1249
+ "fontFamily"
1250
+ ],
1251
+ "additionalProperties": false
1252
+ },
1253
+ "version": {
1254
+ "type": "number",
1255
+ "const": 1
1256
+ },
1257
+ "usedFonts": {
1258
+ "type": "array",
1259
+ "items": {
1260
+ "type": "string"
1261
+ }
1262
+ },
1263
+ "type": {
1264
+ "type": "string",
1265
+ "const": "mobile_popup"
1266
+ },
1267
+ "display": {
1268
+ "type": "object",
1269
+ "properties": {
1270
+ "border": {
1271
+ "type": "object",
1272
+ "properties": {
1273
+ "width": {
1274
+ "type": "number"
1275
+ },
1276
+ "color": {
1277
+ "type": "string",
1278
+ "pattern": "^#[\\s\\S]{0,}$"
1279
+ },
1280
+ "style": {
1281
+ "type": "string",
1282
+ "enum": [
1283
+ "none",
1284
+ "solid",
1285
+ "dashed",
1286
+ "dotted"
1287
+ ]
1288
+ },
1289
+ "sides": {
1290
+ "type": "string",
1291
+ "enum": [
1292
+ "all",
1293
+ "top",
1294
+ "right",
1295
+ "bottom",
1296
+ "left"
1297
+ ]
1298
+ },
1299
+ "useTheme": {
1300
+ "type": "boolean"
1301
+ }
1302
+ },
1303
+ "required": [
1304
+ "width",
1305
+ "color",
1306
+ "style"
1307
+ ],
1308
+ "additionalProperties": false
1309
+ },
1310
+ "shadow": {
1311
+ "type": "object",
1312
+ "properties": {
1313
+ "offsetX": {
1314
+ "type": "number"
1315
+ },
1316
+ "offsetY": {
1317
+ "type": "number"
1318
+ },
1319
+ "blur": {
1320
+ "type": "number"
1321
+ },
1322
+ "spread": {
1323
+ "type": "number"
1324
+ },
1325
+ "color": {
1326
+ "type": "string"
1327
+ },
1328
+ "raw": {
1329
+ "type": "string"
1330
+ }
1331
+ },
1332
+ "required": [
1333
+ "offsetX",
1334
+ "offsetY",
1335
+ "blur",
1336
+ "spread",
1337
+ "color"
1338
+ ],
1339
+ "additionalProperties": false
1340
+ },
1341
+ "closeIcon": {
1342
+ "type": "object",
1343
+ "properties": {
1344
+ "color": {
1345
+ "type": "string"
1346
+ },
1347
+ "size": {
1348
+ "type": "number"
1349
+ },
1350
+ "padding": {
1351
+ "type": "object",
1352
+ "properties": {
1353
+ "left": {
1354
+ "type": "number"
1355
+ },
1356
+ "right": {
1357
+ "type": "number"
1358
+ },
1359
+ "top": {
1360
+ "type": "number"
1361
+ },
1362
+ "bottom": {
1363
+ "type": "number"
1364
+ },
1365
+ "independent": {
1366
+ "type": "boolean"
1367
+ }
1368
+ },
1369
+ "required": [
1370
+ "left",
1371
+ "right",
1372
+ "top",
1373
+ "bottom",
1374
+ "independent"
1375
+ ],
1376
+ "additionalProperties": false
1377
+ },
1378
+ "position": {
1379
+ "type": "object",
1380
+ "properties": {
1381
+ "top": {
1382
+ "type": "number"
1383
+ },
1384
+ "right": {
1385
+ "type": "number"
1386
+ }
1387
+ },
1388
+ "required": [
1389
+ "top",
1390
+ "right"
1391
+ ],
1392
+ "additionalProperties": false
1393
+ },
1394
+ "visibilityDelay": {
1395
+ "type": "number"
1396
+ },
1397
+ "closeOnEscape": {
1398
+ "type": "boolean"
1399
+ }
1400
+ },
1401
+ "required": [
1402
+ "color",
1403
+ "size",
1404
+ "padding"
1405
+ ],
1406
+ "additionalProperties": false
1407
+ },
1408
+ "teaser": {
1409
+ "type": "object",
1410
+ "properties": {
1411
+ "text": {
1412
+ "type": "string"
1413
+ },
1414
+ "backgroundColor": {
1415
+ "type": "string"
1416
+ },
1417
+ "textColor": {
1418
+ "type": "string"
1419
+ }
1420
+ },
1421
+ "required": [
1422
+ "text",
1423
+ "backgroundColor",
1424
+ "textColor"
1425
+ ],
1426
+ "additionalProperties": false
1427
+ }
1428
+ },
1429
+ "required": [
1430
+ "border",
1431
+ "closeIcon"
1432
+ ],
1433
+ "additionalProperties": false
1434
+ }
1435
+ },
1436
+ "required": [
1437
+ "language",
1438
+ "steps",
1439
+ "theme",
1440
+ "version",
1441
+ "usedFonts",
1442
+ "type",
1443
+ "display"
1444
+ ],
1445
+ "additionalProperties": false
1446
+ }
1447
+ ]
1448
+ },
1449
+ {
1450
+ "type": "object",
1451
+ "properties": {
1452
+ "ref": {
1453
+ "type": "string"
1454
+ }
1455
+ },
1456
+ "required": [
1457
+ "ref"
1458
+ ],
1459
+ "additionalProperties": false
1460
+ }
1461
+ ]
1462
+ },
1463
+ "trafficWeight": {
1464
+ "type": "number"
1465
+ }
1466
+ },
1467
+ "required": [
1468
+ "id",
1469
+ "name",
1470
+ "definition",
1471
+ "trafficWeight"
1472
+ ],
1473
+ "additionalProperties": false
1474
+ }
1475
+ }
1476
+ },
1477
+ "required": [
1478
+ "id",
1479
+ "name",
1480
+ "version",
1481
+ "targeting",
1482
+ "trigger",
1483
+ "variants"
1484
+ ],
1485
+ "additionalProperties": false,
1486
+ "$defs": {
1487
+ "__schema0": {
1488
+ "oneOf": [
1489
+ {
1490
+ "type": "object",
1491
+ "properties": {
1492
+ "id": {
1493
+ "type": "string"
1494
+ },
1495
+ "type": {
1496
+ "type": "string",
1497
+ "const": "button"
1498
+ },
1499
+ "properties": {
1500
+ "type": "object",
1501
+ "properties": {
1502
+ "hideOnMobile": {
1503
+ "type": "boolean"
1504
+ },
1505
+ "hideOnDesktop": {
1506
+ "type": "boolean"
1507
+ },
1508
+ "padding": {
1509
+ "type": "object",
1510
+ "properties": {
1511
+ "left": {
1512
+ "type": "number"
1513
+ },
1514
+ "right": {
1515
+ "type": "number"
1516
+ },
1517
+ "top": {
1518
+ "type": "number"
1519
+ },
1520
+ "bottom": {
1521
+ "type": "number"
1522
+ },
1523
+ "independent": {
1524
+ "type": "boolean"
1525
+ }
1526
+ },
1527
+ "required": [
1528
+ "left",
1529
+ "right",
1530
+ "top",
1531
+ "bottom",
1532
+ "independent"
1533
+ ],
1534
+ "additionalProperties": false
1535
+ },
1536
+ "border": {
1537
+ "type": "object",
1538
+ "properties": {
1539
+ "width": {
1540
+ "type": "number"
1541
+ },
1542
+ "color": {
1543
+ "type": "string",
1544
+ "pattern": "^#[\\s\\S]{0,}$"
1545
+ },
1546
+ "style": {
1547
+ "type": "string",
1548
+ "enum": [
1549
+ "none",
1550
+ "solid",
1551
+ "dashed",
1552
+ "dotted"
1553
+ ]
1554
+ },
1555
+ "sides": {
1556
+ "type": "string",
1557
+ "enum": [
1558
+ "all",
1559
+ "top",
1560
+ "right",
1561
+ "bottom",
1562
+ "left"
1563
+ ]
1564
+ },
1565
+ "useTheme": {
1566
+ "type": "boolean"
1567
+ }
1568
+ },
1569
+ "required": [
1570
+ "width",
1571
+ "color",
1572
+ "style"
1573
+ ],
1574
+ "additionalProperties": false
1575
+ },
1576
+ "backgroundColor": {
1577
+ "type": "string"
1578
+ },
1579
+ "margin": {
1580
+ "type": "object",
1581
+ "properties": {
1582
+ "left": {
1583
+ "type": "number"
1584
+ },
1585
+ "right": {
1586
+ "type": "number"
1587
+ },
1588
+ "top": {
1589
+ "type": "number"
1590
+ },
1591
+ "bottom": {
1592
+ "type": "number"
1593
+ },
1594
+ "independent": {
1595
+ "type": "boolean"
1596
+ }
1597
+ },
1598
+ "required": [
1599
+ "left",
1600
+ "right",
1601
+ "top",
1602
+ "bottom",
1603
+ "independent"
1604
+ ],
1605
+ "additionalProperties": false
1606
+ },
1607
+ "text": {
1608
+ "type": "string"
1609
+ },
1610
+ "action": {
1611
+ "oneOf": [
1612
+ {
1613
+ "type": "object",
1614
+ "properties": {
1615
+ "type": {
1616
+ "type": "string",
1617
+ "const": "next_step"
1618
+ }
1619
+ },
1620
+ "required": [
1621
+ "type"
1622
+ ],
1623
+ "additionalProperties": false
1624
+ },
1625
+ {
1626
+ "type": "object",
1627
+ "properties": {
1628
+ "type": {
1629
+ "type": "string",
1630
+ "const": "send"
1631
+ }
1632
+ },
1633
+ "required": [
1634
+ "type"
1635
+ ],
1636
+ "additionalProperties": false
1637
+ },
1638
+ {
1639
+ "type": "object",
1640
+ "properties": {
1641
+ "type": {
1642
+ "type": "string",
1643
+ "const": "close"
1644
+ }
1645
+ },
1646
+ "required": [
1647
+ "type"
1648
+ ],
1649
+ "additionalProperties": false
1650
+ },
1651
+ {
1652
+ "type": "object",
1653
+ "properties": {
1654
+ "type": {
1655
+ "type": "string",
1656
+ "const": "jump_to"
1657
+ },
1658
+ "targetStepId": {
1659
+ "type": "string"
1660
+ }
1661
+ },
1662
+ "required": [
1663
+ "type",
1664
+ "targetStepId"
1665
+ ],
1666
+ "additionalProperties": false
1667
+ },
1668
+ {
1669
+ "type": "object",
1670
+ "properties": {
1671
+ "type": {
1672
+ "type": "string",
1673
+ "const": "redirect"
1674
+ },
1675
+ "url": {
1676
+ "type": "string"
1677
+ },
1678
+ "openInNewTab": {
1679
+ "type": "boolean"
1680
+ }
1681
+ },
1682
+ "required": [
1683
+ "type",
1684
+ "url"
1685
+ ],
1686
+ "additionalProperties": false
1687
+ },
1688
+ {
1689
+ "type": "object",
1690
+ "properties": {
1691
+ "type": {
1692
+ "type": "string",
1693
+ "const": "call"
1694
+ },
1695
+ "phoneNumber": {
1696
+ "type": "string"
1697
+ }
1698
+ },
1699
+ "required": [
1700
+ "type",
1701
+ "phoneNumber"
1702
+ ],
1703
+ "additionalProperties": false
1704
+ }
1705
+ ]
1706
+ },
1707
+ "fontColor": {
1708
+ "type": "string"
1709
+ },
1710
+ "fontFamily": {
1711
+ "type": "string"
1712
+ },
1713
+ "fontSize": {
1714
+ "type": "number"
1715
+ },
1716
+ "fontWeight": {
1717
+ "type": "string",
1718
+ "enum": [
1719
+ "normal",
1720
+ "bold"
1721
+ ]
1722
+ },
1723
+ "fontStyle": {
1724
+ "type": "string",
1725
+ "enum": [
1726
+ "normal",
1727
+ "italic"
1728
+ ]
1729
+ },
1730
+ "hover": {
1731
+ "type": "object",
1732
+ "properties": {
1733
+ "backgroundColor": {
1734
+ "type": "string"
1735
+ },
1736
+ "fontColor": {
1737
+ "type": "string"
1738
+ }
1739
+ },
1740
+ "additionalProperties": false
1741
+ },
1742
+ "countAsConversion": {
1743
+ "type": "boolean"
1744
+ },
1745
+ "width": {
1746
+ "anyOf": [
1747
+ {
1748
+ "type": "string",
1749
+ "const": "full"
1750
+ },
1751
+ {
1752
+ "type": "string",
1753
+ "const": "auto"
1754
+ },
1755
+ {
1756
+ "type": "object",
1757
+ "properties": {
1758
+ "unit": {
1759
+ "type": "string",
1760
+ "enum": [
1761
+ "px",
1762
+ "%"
1763
+ ]
1764
+ },
1765
+ "value": {
1766
+ "type": "number"
1767
+ }
1768
+ },
1769
+ "required": [
1770
+ "unit",
1771
+ "value"
1772
+ ],
1773
+ "additionalProperties": false
1774
+ }
1775
+ ]
1776
+ },
1777
+ "height": {
1778
+ "type": "number"
1779
+ },
1780
+ "align": {
1781
+ "type": "string",
1782
+ "enum": [
1783
+ "left",
1784
+ "center",
1785
+ "right"
1786
+ ]
1787
+ }
1788
+ },
1789
+ "required": [
1790
+ "hideOnMobile",
1791
+ "hideOnDesktop",
1792
+ "text",
1793
+ "action"
1794
+ ],
1795
+ "additionalProperties": false
1796
+ }
1797
+ },
1798
+ "required": [
1799
+ "id",
1800
+ "type",
1801
+ "properties"
1802
+ ],
1803
+ "additionalProperties": false
1804
+ },
1805
+ {
1806
+ "type": "object",
1807
+ "properties": {
1808
+ "id": {
1809
+ "type": "string"
1810
+ },
1811
+ "type": {
1812
+ "type": "string",
1813
+ "const": "text"
1814
+ },
1815
+ "properties": {
1816
+ "type": "object",
1817
+ "properties": {
1818
+ "hideOnMobile": {
1819
+ "type": "boolean"
1820
+ },
1821
+ "hideOnDesktop": {
1822
+ "type": "boolean"
1823
+ },
1824
+ "padding": {
1825
+ "type": "object",
1826
+ "properties": {
1827
+ "left": {
1828
+ "type": "number"
1829
+ },
1830
+ "right": {
1831
+ "type": "number"
1832
+ },
1833
+ "top": {
1834
+ "type": "number"
1835
+ },
1836
+ "bottom": {
1837
+ "type": "number"
1838
+ },
1839
+ "independent": {
1840
+ "type": "boolean"
1841
+ }
1842
+ },
1843
+ "required": [
1844
+ "left",
1845
+ "right",
1846
+ "top",
1847
+ "bottom",
1848
+ "independent"
1849
+ ],
1850
+ "additionalProperties": false
1851
+ },
1852
+ "border": {
1853
+ "type": "object",
1854
+ "properties": {
1855
+ "width": {
1856
+ "type": "number"
1857
+ },
1858
+ "color": {
1859
+ "type": "string",
1860
+ "pattern": "^#[\\s\\S]{0,}$"
1861
+ },
1862
+ "style": {
1863
+ "type": "string",
1864
+ "enum": [
1865
+ "none",
1866
+ "solid",
1867
+ "dashed",
1868
+ "dotted"
1869
+ ]
1870
+ },
1871
+ "sides": {
1872
+ "type": "string",
1873
+ "enum": [
1874
+ "all",
1875
+ "top",
1876
+ "right",
1877
+ "bottom",
1878
+ "left"
1879
+ ]
1880
+ },
1881
+ "useTheme": {
1882
+ "type": "boolean"
1883
+ }
1884
+ },
1885
+ "required": [
1886
+ "width",
1887
+ "color",
1888
+ "style"
1889
+ ],
1890
+ "additionalProperties": false
1891
+ },
1892
+ "backgroundColor": {
1893
+ "type": "string"
1894
+ },
1895
+ "margin": {
1896
+ "type": "object",
1897
+ "properties": {
1898
+ "left": {
1899
+ "type": "number"
1900
+ },
1901
+ "right": {
1902
+ "type": "number"
1903
+ },
1904
+ "top": {
1905
+ "type": "number"
1906
+ },
1907
+ "bottom": {
1908
+ "type": "number"
1909
+ },
1910
+ "independent": {
1911
+ "type": "boolean"
1912
+ }
1913
+ },
1914
+ "required": [
1915
+ "left",
1916
+ "right",
1917
+ "top",
1918
+ "bottom",
1919
+ "independent"
1920
+ ],
1921
+ "additionalProperties": false
1922
+ },
1923
+ "text": {
1924
+ "type": "string"
1925
+ },
1926
+ "color": {
1927
+ "type": "string"
1928
+ },
1929
+ "fontFamily": {
1930
+ "type": "string"
1931
+ },
1932
+ "rotation": {
1933
+ "type": "number"
1934
+ },
1935
+ "textShadow": {
1936
+ "type": "object",
1937
+ "properties": {
1938
+ "offsetX": {
1939
+ "type": "number"
1940
+ },
1941
+ "offsetY": {
1942
+ "type": "number"
1943
+ },
1944
+ "blur": {
1945
+ "type": "number"
1946
+ },
1947
+ "color": {
1948
+ "type": "string"
1949
+ }
1950
+ },
1951
+ "required": [
1952
+ "offsetX",
1953
+ "offsetY",
1954
+ "blur",
1955
+ "color"
1956
+ ],
1957
+ "additionalProperties": false
1958
+ }
1959
+ },
1960
+ "required": [
1961
+ "hideOnMobile",
1962
+ "hideOnDesktop",
1963
+ "text",
1964
+ "color"
1965
+ ],
1966
+ "additionalProperties": false
1967
+ }
1968
+ },
1969
+ "required": [
1970
+ "id",
1971
+ "type",
1972
+ "properties"
1973
+ ],
1974
+ "additionalProperties": false
1975
+ },
1976
+ {
1977
+ "type": "object",
1978
+ "properties": {
1979
+ "id": {
1980
+ "type": "string"
1981
+ },
1982
+ "type": {
1983
+ "type": "string",
1984
+ "const": "text_input"
1985
+ },
1986
+ "properties": {
1987
+ "type": "object",
1988
+ "properties": {
1989
+ "hideOnMobile": {
1990
+ "type": "boolean"
1991
+ },
1992
+ "hideOnDesktop": {
1993
+ "type": "boolean"
1994
+ },
1995
+ "padding": {
1996
+ "type": "object",
1997
+ "properties": {
1998
+ "left": {
1999
+ "type": "number"
2000
+ },
2001
+ "right": {
2002
+ "type": "number"
2003
+ },
2004
+ "top": {
2005
+ "type": "number"
2006
+ },
2007
+ "bottom": {
2008
+ "type": "number"
2009
+ },
2010
+ "independent": {
2011
+ "type": "boolean"
2012
+ }
2013
+ },
2014
+ "required": [
2015
+ "left",
2016
+ "right",
2017
+ "top",
2018
+ "bottom",
2019
+ "independent"
2020
+ ],
2021
+ "additionalProperties": false
2022
+ },
2023
+ "border": {
2024
+ "type": "object",
2025
+ "properties": {
2026
+ "width": {
2027
+ "type": "number"
2028
+ },
2029
+ "color": {
2030
+ "type": "string",
2031
+ "pattern": "^#[\\s\\S]{0,}$"
2032
+ },
2033
+ "style": {
2034
+ "type": "string",
2035
+ "enum": [
2036
+ "none",
2037
+ "solid",
2038
+ "dashed",
2039
+ "dotted"
2040
+ ]
2041
+ },
2042
+ "sides": {
2043
+ "type": "string",
2044
+ "enum": [
2045
+ "all",
2046
+ "top",
2047
+ "right",
2048
+ "bottom",
2049
+ "left"
2050
+ ]
2051
+ },
2052
+ "useTheme": {
2053
+ "type": "boolean"
2054
+ }
2055
+ },
2056
+ "required": [
2057
+ "width",
2058
+ "color",
2059
+ "style"
2060
+ ],
2061
+ "additionalProperties": false
2062
+ },
2063
+ "backgroundColor": {
2064
+ "type": "string"
2065
+ },
2066
+ "margin": {
2067
+ "type": "object",
2068
+ "properties": {
2069
+ "left": {
2070
+ "type": "number"
2071
+ },
2072
+ "right": {
2073
+ "type": "number"
2074
+ },
2075
+ "top": {
2076
+ "type": "number"
2077
+ },
2078
+ "bottom": {
2079
+ "type": "number"
2080
+ },
2081
+ "independent": {
2082
+ "type": "boolean"
2083
+ }
2084
+ },
2085
+ "required": [
2086
+ "left",
2087
+ "right",
2088
+ "top",
2089
+ "bottom",
2090
+ "independent"
2091
+ ],
2092
+ "additionalProperties": false
2093
+ },
2094
+ "type": {
2095
+ "type": "string",
2096
+ "enum": [
2097
+ "text",
2098
+ "email",
2099
+ "telephone",
2100
+ "number",
2101
+ "date",
2102
+ "url"
2103
+ ]
2104
+ },
2105
+ "name": {
2106
+ "type": "string"
2107
+ },
2108
+ "label": {
2109
+ "type": "string"
2110
+ },
2111
+ "placeholder": {
2112
+ "type": "string"
2113
+ },
2114
+ "labelColor": {
2115
+ "type": "string",
2116
+ "pattern": "^#[\\s\\S]{0,}$"
2117
+ }
2118
+ },
2119
+ "required": [
2120
+ "hideOnMobile",
2121
+ "hideOnDesktop",
2122
+ "type",
2123
+ "name",
2124
+ "label",
2125
+ "placeholder"
2126
+ ],
2127
+ "additionalProperties": false
2128
+ }
2129
+ },
2130
+ "required": [
2131
+ "id",
2132
+ "type",
2133
+ "properties"
2134
+ ],
2135
+ "additionalProperties": false
2136
+ },
2137
+ {
2138
+ "type": "object",
2139
+ "properties": {
2140
+ "id": {
2141
+ "type": "string"
2142
+ },
2143
+ "type": {
2144
+ "type": "string",
2145
+ "const": "image"
2146
+ },
2147
+ "properties": {
2148
+ "type": "object",
2149
+ "properties": {
2150
+ "hideOnMobile": {
2151
+ "type": "boolean"
2152
+ },
2153
+ "hideOnDesktop": {
2154
+ "type": "boolean"
2155
+ },
2156
+ "padding": {
2157
+ "type": "object",
2158
+ "properties": {
2159
+ "left": {
2160
+ "type": "number"
2161
+ },
2162
+ "right": {
2163
+ "type": "number"
2164
+ },
2165
+ "top": {
2166
+ "type": "number"
2167
+ },
2168
+ "bottom": {
2169
+ "type": "number"
2170
+ },
2171
+ "independent": {
2172
+ "type": "boolean"
2173
+ }
2174
+ },
2175
+ "required": [
2176
+ "left",
2177
+ "right",
2178
+ "top",
2179
+ "bottom",
2180
+ "independent"
2181
+ ],
2182
+ "additionalProperties": false
2183
+ },
2184
+ "border": {
2185
+ "type": "object",
2186
+ "properties": {
2187
+ "width": {
2188
+ "type": "number"
2189
+ },
2190
+ "color": {
2191
+ "type": "string",
2192
+ "pattern": "^#[\\s\\S]{0,}$"
2193
+ },
2194
+ "style": {
2195
+ "type": "string",
2196
+ "enum": [
2197
+ "none",
2198
+ "solid",
2199
+ "dashed",
2200
+ "dotted"
2201
+ ]
2202
+ },
2203
+ "sides": {
2204
+ "type": "string",
2205
+ "enum": [
2206
+ "all",
2207
+ "top",
2208
+ "right",
2209
+ "bottom",
2210
+ "left"
2211
+ ]
2212
+ },
2213
+ "useTheme": {
2214
+ "type": "boolean"
2215
+ }
2216
+ },
2217
+ "required": [
2218
+ "width",
2219
+ "color",
2220
+ "style"
2221
+ ],
2222
+ "additionalProperties": false
2223
+ },
2224
+ "backgroundColor": {
2225
+ "type": "string"
2226
+ },
2227
+ "margin": {
2228
+ "type": "object",
2229
+ "properties": {
2230
+ "left": {
2231
+ "type": "number"
2232
+ },
2233
+ "right": {
2234
+ "type": "number"
2235
+ },
2236
+ "top": {
2237
+ "type": "number"
2238
+ },
2239
+ "bottom": {
2240
+ "type": "number"
2241
+ },
2242
+ "independent": {
2243
+ "type": "boolean"
2244
+ }
2245
+ },
2246
+ "required": [
2247
+ "left",
2248
+ "right",
2249
+ "top",
2250
+ "bottom",
2251
+ "independent"
2252
+ ],
2253
+ "additionalProperties": false
2254
+ },
2255
+ "src": {
2256
+ "type": "string"
2257
+ },
2258
+ "link": {
2259
+ "type": "object",
2260
+ "properties": {
2261
+ "url": {
2262
+ "type": "string"
2263
+ },
2264
+ "openInNewTab": {
2265
+ "type": "boolean"
2266
+ }
2267
+ },
2268
+ "required": [
2269
+ "url"
2270
+ ],
2271
+ "additionalProperties": false
2272
+ },
2273
+ "width": {
2274
+ "type": "object",
2275
+ "properties": {
2276
+ "unit": {
2277
+ "type": "string",
2278
+ "enum": [
2279
+ "px",
2280
+ "%"
2281
+ ]
2282
+ },
2283
+ "value": {
2284
+ "type": "number"
2285
+ }
2286
+ },
2287
+ "required": [
2288
+ "unit",
2289
+ "value"
2290
+ ],
2291
+ "additionalProperties": false
2292
+ },
2293
+ "align": {
2294
+ "type": "string",
2295
+ "enum": [
2296
+ "left",
2297
+ "center",
2298
+ "right"
2299
+ ]
2300
+ },
2301
+ "objectFit": {
2302
+ "type": "string",
2303
+ "enum": [
2304
+ "cover",
2305
+ "contain",
2306
+ "fill"
2307
+ ]
2308
+ },
2309
+ "objectPosition": {
2310
+ "type": "string"
2311
+ }
2312
+ },
2313
+ "required": [
2314
+ "hideOnMobile",
2315
+ "hideOnDesktop",
2316
+ "src"
2317
+ ],
2318
+ "additionalProperties": false
2319
+ }
2320
+ },
2321
+ "required": [
2322
+ "id",
2323
+ "type",
2324
+ "properties"
2325
+ ],
2326
+ "additionalProperties": false
2327
+ },
2328
+ {
2329
+ "type": "object",
2330
+ "properties": {
2331
+ "id": {
2332
+ "type": "string"
2333
+ },
2334
+ "type": {
2335
+ "type": "string",
2336
+ "const": "checkbox"
2337
+ },
2338
+ "properties": {
2339
+ "type": "object",
2340
+ "properties": {
2341
+ "hideOnMobile": {
2342
+ "type": "boolean"
2343
+ },
2344
+ "hideOnDesktop": {
2345
+ "type": "boolean"
2346
+ },
2347
+ "padding": {
2348
+ "type": "object",
2349
+ "properties": {
2350
+ "left": {
2351
+ "type": "number"
2352
+ },
2353
+ "right": {
2354
+ "type": "number"
2355
+ },
2356
+ "top": {
2357
+ "type": "number"
2358
+ },
2359
+ "bottom": {
2360
+ "type": "number"
2361
+ },
2362
+ "independent": {
2363
+ "type": "boolean"
2364
+ }
2365
+ },
2366
+ "required": [
2367
+ "left",
2368
+ "right",
2369
+ "top",
2370
+ "bottom",
2371
+ "independent"
2372
+ ],
2373
+ "additionalProperties": false
2374
+ },
2375
+ "border": {
2376
+ "type": "object",
2377
+ "properties": {
2378
+ "width": {
2379
+ "type": "number"
2380
+ },
2381
+ "color": {
2382
+ "type": "string",
2383
+ "pattern": "^#[\\s\\S]{0,}$"
2384
+ },
2385
+ "style": {
2386
+ "type": "string",
2387
+ "enum": [
2388
+ "none",
2389
+ "solid",
2390
+ "dashed",
2391
+ "dotted"
2392
+ ]
2393
+ },
2394
+ "sides": {
2395
+ "type": "string",
2396
+ "enum": [
2397
+ "all",
2398
+ "top",
2399
+ "right",
2400
+ "bottom",
2401
+ "left"
2402
+ ]
2403
+ },
2404
+ "useTheme": {
2405
+ "type": "boolean"
2406
+ }
2407
+ },
2408
+ "required": [
2409
+ "width",
2410
+ "color",
2411
+ "style"
2412
+ ],
2413
+ "additionalProperties": false
2414
+ },
2415
+ "backgroundColor": {
2416
+ "type": "string"
2417
+ },
2418
+ "margin": {
2419
+ "type": "object",
2420
+ "properties": {
2421
+ "left": {
2422
+ "type": "number"
2423
+ },
2424
+ "right": {
2425
+ "type": "number"
2426
+ },
2427
+ "top": {
2428
+ "type": "number"
2429
+ },
2430
+ "bottom": {
2431
+ "type": "number"
2432
+ },
2433
+ "independent": {
2434
+ "type": "boolean"
2435
+ }
2436
+ },
2437
+ "required": [
2438
+ "left",
2439
+ "right",
2440
+ "top",
2441
+ "bottom",
2442
+ "independent"
2443
+ ],
2444
+ "additionalProperties": false
2445
+ },
2446
+ "label": {
2447
+ "type": "string"
2448
+ },
2449
+ "preference": {
2450
+ "anyOf": [
2451
+ {
2452
+ "type": "object",
2453
+ "properties": {
2454
+ "id": {
2455
+ "anyOf": [
2456
+ {
2457
+ "type": "string"
2458
+ },
2459
+ {
2460
+ "type": "number"
2461
+ }
2462
+ ]
2463
+ },
2464
+ "name": {
2465
+ "type": "string"
2466
+ },
2467
+ "options": {
2468
+ "type": "array",
2469
+ "items": {
2470
+ "type": "object",
2471
+ "properties": {
2472
+ "value": {
2473
+ "type": "string"
2474
+ },
2475
+ "label": {
2476
+ "type": "string"
2477
+ }
2478
+ },
2479
+ "required": [
2480
+ "value",
2481
+ "label"
2482
+ ],
2483
+ "additionalProperties": false
2484
+ }
2485
+ },
2486
+ "type": {
2487
+ "type": "string",
2488
+ "enum": [
2489
+ "checkbox",
2490
+ "hidden",
2491
+ "radio",
2492
+ "select"
2493
+ ]
2494
+ }
2495
+ },
2496
+ "required": [
2497
+ "id",
2498
+ "name",
2499
+ "options"
2500
+ ],
2501
+ "additionalProperties": false
2502
+ },
2503
+ {
2504
+ "type": "null"
2505
+ }
2506
+ ]
2507
+ },
2508
+ "custom_options": {
2509
+ "type": "array",
2510
+ "items": {
2511
+ "type": "object",
2512
+ "properties": {
2513
+ "value": {
2514
+ "type": "string"
2515
+ },
2516
+ "label": {
2517
+ "type": "string"
2518
+ }
2519
+ },
2520
+ "required": [
2521
+ "value",
2522
+ "label"
2523
+ ],
2524
+ "additionalProperties": false
2525
+ }
2526
+ },
2527
+ "required": {
2528
+ "type": "boolean"
2529
+ }
2530
+ },
2531
+ "required": [
2532
+ "hideOnMobile",
2533
+ "hideOnDesktop",
2534
+ "label",
2535
+ "preference",
2536
+ "required"
2537
+ ],
2538
+ "additionalProperties": false
2539
+ }
2540
+ },
2541
+ "required": [
2542
+ "id",
2543
+ "type",
2544
+ "properties"
2545
+ ],
2546
+ "additionalProperties": false
2547
+ },
2548
+ {
2549
+ "type": "object",
2550
+ "properties": {
2551
+ "id": {
2552
+ "type": "string"
2553
+ },
2554
+ "type": {
2555
+ "type": "string",
2556
+ "const": "radio"
2557
+ },
2558
+ "properties": {
2559
+ "type": "object",
2560
+ "properties": {
2561
+ "hideOnMobile": {
2562
+ "type": "boolean"
2563
+ },
2564
+ "hideOnDesktop": {
2565
+ "type": "boolean"
2566
+ },
2567
+ "padding": {
2568
+ "type": "object",
2569
+ "properties": {
2570
+ "left": {
2571
+ "type": "number"
2572
+ },
2573
+ "right": {
2574
+ "type": "number"
2575
+ },
2576
+ "top": {
2577
+ "type": "number"
2578
+ },
2579
+ "bottom": {
2580
+ "type": "number"
2581
+ },
2582
+ "independent": {
2583
+ "type": "boolean"
2584
+ }
2585
+ },
2586
+ "required": [
2587
+ "left",
2588
+ "right",
2589
+ "top",
2590
+ "bottom",
2591
+ "independent"
2592
+ ],
2593
+ "additionalProperties": false
2594
+ },
2595
+ "border": {
2596
+ "type": "object",
2597
+ "properties": {
2598
+ "width": {
2599
+ "type": "number"
2600
+ },
2601
+ "color": {
2602
+ "type": "string",
2603
+ "pattern": "^#[\\s\\S]{0,}$"
2604
+ },
2605
+ "style": {
2606
+ "type": "string",
2607
+ "enum": [
2608
+ "none",
2609
+ "solid",
2610
+ "dashed",
2611
+ "dotted"
2612
+ ]
2613
+ },
2614
+ "sides": {
2615
+ "type": "string",
2616
+ "enum": [
2617
+ "all",
2618
+ "top",
2619
+ "right",
2620
+ "bottom",
2621
+ "left"
2622
+ ]
2623
+ },
2624
+ "useTheme": {
2625
+ "type": "boolean"
2626
+ }
2627
+ },
2628
+ "required": [
2629
+ "width",
2630
+ "color",
2631
+ "style"
2632
+ ],
2633
+ "additionalProperties": false
2634
+ },
2635
+ "backgroundColor": {
2636
+ "type": "string"
2637
+ },
2638
+ "margin": {
2639
+ "type": "object",
2640
+ "properties": {
2641
+ "left": {
2642
+ "type": "number"
2643
+ },
2644
+ "right": {
2645
+ "type": "number"
2646
+ },
2647
+ "top": {
2648
+ "type": "number"
2649
+ },
2650
+ "bottom": {
2651
+ "type": "number"
2652
+ },
2653
+ "independent": {
2654
+ "type": "boolean"
2655
+ }
2656
+ },
2657
+ "required": [
2658
+ "left",
2659
+ "right",
2660
+ "top",
2661
+ "bottom",
2662
+ "independent"
2663
+ ],
2664
+ "additionalProperties": false
2665
+ },
2666
+ "label": {
2667
+ "type": "string"
2668
+ },
2669
+ "preference": {
2670
+ "anyOf": [
2671
+ {
2672
+ "type": "object",
2673
+ "properties": {
2674
+ "id": {
2675
+ "anyOf": [
2676
+ {
2677
+ "type": "string"
2678
+ },
2679
+ {
2680
+ "type": "number"
2681
+ }
2682
+ ]
2683
+ },
2684
+ "name": {
2685
+ "type": "string"
2686
+ },
2687
+ "options": {
2688
+ "type": "array",
2689
+ "items": {
2690
+ "type": "object",
2691
+ "properties": {
2692
+ "value": {
2693
+ "type": "string"
2694
+ },
2695
+ "label": {
2696
+ "type": "string"
2697
+ }
2698
+ },
2699
+ "required": [
2700
+ "value",
2701
+ "label"
2702
+ ],
2703
+ "additionalProperties": false
2704
+ }
2705
+ },
2706
+ "type": {
2707
+ "type": "string",
2708
+ "enum": [
2709
+ "checkbox",
2710
+ "hidden",
2711
+ "radio",
2712
+ "select"
2713
+ ]
2714
+ }
2715
+ },
2716
+ "required": [
2717
+ "id",
2718
+ "name",
2719
+ "options"
2720
+ ],
2721
+ "additionalProperties": false
2722
+ },
2723
+ {
2724
+ "type": "null"
2725
+ }
2726
+ ]
2727
+ },
2728
+ "custom_options": {
2729
+ "type": "array",
2730
+ "items": {
2731
+ "type": "object",
2732
+ "properties": {
2733
+ "value": {
2734
+ "type": "string"
2735
+ },
2736
+ "label": {
2737
+ "type": "string"
2738
+ }
2739
+ },
2740
+ "required": [
2741
+ "value",
2742
+ "label"
2743
+ ],
2744
+ "additionalProperties": false
2745
+ }
2746
+ },
2747
+ "required": {
2748
+ "type": "boolean"
2749
+ }
2750
+ },
2751
+ "required": [
2752
+ "hideOnMobile",
2753
+ "hideOnDesktop",
2754
+ "label",
2755
+ "preference",
2756
+ "required"
2757
+ ],
2758
+ "additionalProperties": false
2759
+ }
2760
+ },
2761
+ "required": [
2762
+ "id",
2763
+ "type",
2764
+ "properties"
2765
+ ],
2766
+ "additionalProperties": false
2767
+ },
2768
+ {
2769
+ "type": "object",
2770
+ "properties": {
2771
+ "id": {
2772
+ "type": "string"
2773
+ },
2774
+ "type": {
2775
+ "type": "string",
2776
+ "const": "select"
2777
+ },
2778
+ "properties": {
2779
+ "type": "object",
2780
+ "properties": {
2781
+ "hideOnMobile": {
2782
+ "type": "boolean"
2783
+ },
2784
+ "hideOnDesktop": {
2785
+ "type": "boolean"
2786
+ },
2787
+ "padding": {
2788
+ "type": "object",
2789
+ "properties": {
2790
+ "left": {
2791
+ "type": "number"
2792
+ },
2793
+ "right": {
2794
+ "type": "number"
2795
+ },
2796
+ "top": {
2797
+ "type": "number"
2798
+ },
2799
+ "bottom": {
2800
+ "type": "number"
2801
+ },
2802
+ "independent": {
2803
+ "type": "boolean"
2804
+ }
2805
+ },
2806
+ "required": [
2807
+ "left",
2808
+ "right",
2809
+ "top",
2810
+ "bottom",
2811
+ "independent"
2812
+ ],
2813
+ "additionalProperties": false
2814
+ },
2815
+ "border": {
2816
+ "type": "object",
2817
+ "properties": {
2818
+ "width": {
2819
+ "type": "number"
2820
+ },
2821
+ "color": {
2822
+ "type": "string",
2823
+ "pattern": "^#[\\s\\S]{0,}$"
2824
+ },
2825
+ "style": {
2826
+ "type": "string",
2827
+ "enum": [
2828
+ "none",
2829
+ "solid",
2830
+ "dashed",
2831
+ "dotted"
2832
+ ]
2833
+ },
2834
+ "sides": {
2835
+ "type": "string",
2836
+ "enum": [
2837
+ "all",
2838
+ "top",
2839
+ "right",
2840
+ "bottom",
2841
+ "left"
2842
+ ]
2843
+ },
2844
+ "useTheme": {
2845
+ "type": "boolean"
2846
+ }
2847
+ },
2848
+ "required": [
2849
+ "width",
2850
+ "color",
2851
+ "style"
2852
+ ],
2853
+ "additionalProperties": false
2854
+ },
2855
+ "backgroundColor": {
2856
+ "type": "string"
2857
+ },
2858
+ "margin": {
2859
+ "type": "object",
2860
+ "properties": {
2861
+ "left": {
2862
+ "type": "number"
2863
+ },
2864
+ "right": {
2865
+ "type": "number"
2866
+ },
2867
+ "top": {
2868
+ "type": "number"
2869
+ },
2870
+ "bottom": {
2871
+ "type": "number"
2872
+ },
2873
+ "independent": {
2874
+ "type": "boolean"
2875
+ }
2876
+ },
2877
+ "required": [
2878
+ "left",
2879
+ "right",
2880
+ "top",
2881
+ "bottom",
2882
+ "independent"
2883
+ ],
2884
+ "additionalProperties": false
2885
+ },
2886
+ "label": {
2887
+ "type": "string"
2888
+ },
2889
+ "preference": {
2890
+ "anyOf": [
2891
+ {
2892
+ "type": "object",
2893
+ "properties": {
2894
+ "id": {
2895
+ "anyOf": [
2896
+ {
2897
+ "type": "string"
2898
+ },
2899
+ {
2900
+ "type": "number"
2901
+ }
2902
+ ]
2903
+ },
2904
+ "name": {
2905
+ "type": "string"
2906
+ },
2907
+ "options": {
2908
+ "type": "array",
2909
+ "items": {
2910
+ "type": "object",
2911
+ "properties": {
2912
+ "value": {
2913
+ "type": "string"
2914
+ },
2915
+ "label": {
2916
+ "type": "string"
2917
+ }
2918
+ },
2919
+ "required": [
2920
+ "value",
2921
+ "label"
2922
+ ],
2923
+ "additionalProperties": false
2924
+ }
2925
+ },
2926
+ "type": {
2927
+ "type": "string",
2928
+ "enum": [
2929
+ "checkbox",
2930
+ "hidden",
2931
+ "radio",
2932
+ "select"
2933
+ ]
2934
+ }
2935
+ },
2936
+ "required": [
2937
+ "id",
2938
+ "name",
2939
+ "options"
2940
+ ],
2941
+ "additionalProperties": false
2942
+ },
2943
+ {
2944
+ "type": "null"
2945
+ }
2946
+ ]
2947
+ },
2948
+ "custom_options": {
2949
+ "type": "array",
2950
+ "items": {
2951
+ "type": "object",
2952
+ "properties": {
2953
+ "value": {
2954
+ "type": "string"
2955
+ },
2956
+ "label": {
2957
+ "type": "string"
2958
+ }
2959
+ },
2960
+ "required": [
2961
+ "value",
2962
+ "label"
2963
+ ],
2964
+ "additionalProperties": false
2965
+ }
2966
+ },
2967
+ "required": {
2968
+ "type": "boolean"
2969
+ },
2970
+ "placeholder": {
2971
+ "type": "string"
2972
+ }
2973
+ },
2974
+ "required": [
2975
+ "hideOnMobile",
2976
+ "hideOnDesktop",
2977
+ "label",
2978
+ "preference",
2979
+ "required",
2980
+ "placeholder"
2981
+ ],
2982
+ "additionalProperties": false
2983
+ }
2984
+ },
2985
+ "required": [
2986
+ "id",
2987
+ "type",
2988
+ "properties"
2989
+ ],
2990
+ "additionalProperties": false
2991
+ },
2992
+ {
2993
+ "type": "object",
2994
+ "properties": {
2995
+ "id": {
2996
+ "type": "string"
2997
+ },
2998
+ "type": {
2999
+ "type": "string",
3000
+ "const": "block"
3001
+ },
3002
+ "properties": {
3003
+ "oneOf": [
3004
+ {
3005
+ "type": "object",
3006
+ "properties": {
3007
+ "hideOnMobile": {
3008
+ "type": "boolean"
3009
+ },
3010
+ "hideOnDesktop": {
3011
+ "type": "boolean"
3012
+ },
3013
+ "padding": {
3014
+ "type": "object",
3015
+ "properties": {
3016
+ "left": {
3017
+ "type": "number"
3018
+ },
3019
+ "right": {
3020
+ "type": "number"
3021
+ },
3022
+ "top": {
3023
+ "type": "number"
3024
+ },
3025
+ "bottom": {
3026
+ "type": "number"
3027
+ },
3028
+ "independent": {
3029
+ "type": "boolean"
3030
+ }
3031
+ },
3032
+ "required": [
3033
+ "left",
3034
+ "right",
3035
+ "top",
3036
+ "bottom",
3037
+ "independent"
3038
+ ],
3039
+ "additionalProperties": false
3040
+ },
3041
+ "border": {
3042
+ "type": "object",
3043
+ "properties": {
3044
+ "width": {
3045
+ "type": "number"
3046
+ },
3047
+ "color": {
3048
+ "type": "string",
3049
+ "pattern": "^#[\\s\\S]{0,}$"
3050
+ },
3051
+ "style": {
3052
+ "type": "string",
3053
+ "enum": [
3054
+ "none",
3055
+ "solid",
3056
+ "dashed",
3057
+ "dotted"
3058
+ ]
3059
+ },
3060
+ "sides": {
3061
+ "type": "string",
3062
+ "enum": [
3063
+ "all",
3064
+ "top",
3065
+ "right",
3066
+ "bottom",
3067
+ "left"
3068
+ ]
3069
+ },
3070
+ "useTheme": {
3071
+ "type": "boolean"
3072
+ }
3073
+ },
3074
+ "required": [
3075
+ "width",
3076
+ "color",
3077
+ "style"
3078
+ ],
3079
+ "additionalProperties": false
3080
+ },
3081
+ "backgroundColor": {
3082
+ "type": "string"
3083
+ },
3084
+ "margin": {
3085
+ "type": "object",
3086
+ "properties": {
3087
+ "left": {
3088
+ "type": "number"
3089
+ },
3090
+ "right": {
3091
+ "type": "number"
3092
+ },
3093
+ "top": {
3094
+ "type": "number"
3095
+ },
3096
+ "bottom": {
3097
+ "type": "number"
3098
+ },
3099
+ "independent": {
3100
+ "type": "boolean"
3101
+ }
3102
+ },
3103
+ "required": [
3104
+ "left",
3105
+ "right",
3106
+ "top",
3107
+ "bottom",
3108
+ "independent"
3109
+ ],
3110
+ "additionalProperties": false
3111
+ },
3112
+ "block_type": {
3113
+ "type": "string",
3114
+ "const": "single_column"
3115
+ },
3116
+ "columns": {
3117
+ "type": "array",
3118
+ "prefixItems": [
3119
+ {
3120
+ "type": "object",
3121
+ "properties": {
3122
+ "id": {
3123
+ "type": "string"
3124
+ },
3125
+ "type": {
3126
+ "type": "string",
3127
+ "const": "column"
3128
+ },
3129
+ "properties": {
3130
+ "type": "object",
3131
+ "properties": {
3132
+ "hideOnMobile": {
3133
+ "type": "boolean"
3134
+ },
3135
+ "hideOnDesktop": {
3136
+ "type": "boolean"
3137
+ },
3138
+ "padding": {
3139
+ "type": "object",
3140
+ "properties": {
3141
+ "left": {
3142
+ "type": "number"
3143
+ },
3144
+ "right": {
3145
+ "type": "number"
3146
+ },
3147
+ "top": {
3148
+ "type": "number"
3149
+ },
3150
+ "bottom": {
3151
+ "type": "number"
3152
+ },
3153
+ "independent": {
3154
+ "type": "boolean"
3155
+ }
3156
+ },
3157
+ "required": [
3158
+ "left",
3159
+ "right",
3160
+ "top",
3161
+ "bottom",
3162
+ "independent"
3163
+ ],
3164
+ "additionalProperties": false
3165
+ },
3166
+ "border": {
3167
+ "type": "object",
3168
+ "properties": {
3169
+ "width": {
3170
+ "type": "number"
3171
+ },
3172
+ "color": {
3173
+ "type": "string",
3174
+ "pattern": "^#[\\s\\S]{0,}$"
3175
+ },
3176
+ "style": {
3177
+ "type": "string",
3178
+ "enum": [
3179
+ "none",
3180
+ "solid",
3181
+ "dashed",
3182
+ "dotted"
3183
+ ]
3184
+ },
3185
+ "sides": {
3186
+ "type": "string",
3187
+ "enum": [
3188
+ "all",
3189
+ "top",
3190
+ "right",
3191
+ "bottom",
3192
+ "left"
3193
+ ]
3194
+ },
3195
+ "useTheme": {
3196
+ "type": "boolean"
3197
+ }
3198
+ },
3199
+ "required": [
3200
+ "width",
3201
+ "color",
3202
+ "style"
3203
+ ],
3204
+ "additionalProperties": false
3205
+ },
3206
+ "backgroundColor": {
3207
+ "type": "string"
3208
+ },
3209
+ "margin": {
3210
+ "type": "object",
3211
+ "properties": {
3212
+ "left": {
3213
+ "type": "number"
3214
+ },
3215
+ "right": {
3216
+ "type": "number"
3217
+ },
3218
+ "top": {
3219
+ "type": "number"
3220
+ },
3221
+ "bottom": {
3222
+ "type": "number"
3223
+ },
3224
+ "independent": {
3225
+ "type": "boolean"
3226
+ }
3227
+ },
3228
+ "required": [
3229
+ "left",
3230
+ "right",
3231
+ "top",
3232
+ "bottom",
3233
+ "independent"
3234
+ ],
3235
+ "additionalProperties": false
3236
+ },
3237
+ "width": {
3238
+ "type": "number"
3239
+ },
3240
+ "elements": {
3241
+ "type": "array",
3242
+ "items": {
3243
+ "$ref": "#/$defs/__schema0"
3244
+ }
3245
+ }
3246
+ },
3247
+ "required": [
3248
+ "hideOnMobile",
3249
+ "hideOnDesktop",
3250
+ "width",
3251
+ "elements"
3252
+ ],
3253
+ "additionalProperties": false
3254
+ }
3255
+ },
3256
+ "required": [
3257
+ "id",
3258
+ "type",
3259
+ "properties"
3260
+ ],
3261
+ "additionalProperties": false
3262
+ }
3263
+ ]
3264
+ }
3265
+ },
3266
+ "required": [
3267
+ "hideOnMobile",
3268
+ "hideOnDesktop",
3269
+ "block_type",
3270
+ "columns"
3271
+ ],
3272
+ "additionalProperties": false
3273
+ },
3274
+ {
3275
+ "type": "object",
3276
+ "properties": {
3277
+ "hideOnMobile": {
3278
+ "type": "boolean"
3279
+ },
3280
+ "hideOnDesktop": {
3281
+ "type": "boolean"
3282
+ },
3283
+ "padding": {
3284
+ "type": "object",
3285
+ "properties": {
3286
+ "left": {
3287
+ "type": "number"
3288
+ },
3289
+ "right": {
3290
+ "type": "number"
3291
+ },
3292
+ "top": {
3293
+ "type": "number"
3294
+ },
3295
+ "bottom": {
3296
+ "type": "number"
3297
+ },
3298
+ "independent": {
3299
+ "type": "boolean"
3300
+ }
3301
+ },
3302
+ "required": [
3303
+ "left",
3304
+ "right",
3305
+ "top",
3306
+ "bottom",
3307
+ "independent"
3308
+ ],
3309
+ "additionalProperties": false
3310
+ },
3311
+ "border": {
3312
+ "type": "object",
3313
+ "properties": {
3314
+ "width": {
3315
+ "type": "number"
3316
+ },
3317
+ "color": {
3318
+ "type": "string",
3319
+ "pattern": "^#[\\s\\S]{0,}$"
3320
+ },
3321
+ "style": {
3322
+ "type": "string",
3323
+ "enum": [
3324
+ "none",
3325
+ "solid",
3326
+ "dashed",
3327
+ "dotted"
3328
+ ]
3329
+ },
3330
+ "sides": {
3331
+ "type": "string",
3332
+ "enum": [
3333
+ "all",
3334
+ "top",
3335
+ "right",
3336
+ "bottom",
3337
+ "left"
3338
+ ]
3339
+ },
3340
+ "useTheme": {
3341
+ "type": "boolean"
3342
+ }
3343
+ },
3344
+ "required": [
3345
+ "width",
3346
+ "color",
3347
+ "style"
3348
+ ],
3349
+ "additionalProperties": false
3350
+ },
3351
+ "backgroundColor": {
3352
+ "type": "string"
3353
+ },
3354
+ "margin": {
3355
+ "type": "object",
3356
+ "properties": {
3357
+ "left": {
3358
+ "type": "number"
3359
+ },
3360
+ "right": {
3361
+ "type": "number"
3362
+ },
3363
+ "top": {
3364
+ "type": "number"
3365
+ },
3366
+ "bottom": {
3367
+ "type": "number"
3368
+ },
3369
+ "independent": {
3370
+ "type": "boolean"
3371
+ }
3372
+ },
3373
+ "required": [
3374
+ "left",
3375
+ "right",
3376
+ "top",
3377
+ "bottom",
3378
+ "independent"
3379
+ ],
3380
+ "additionalProperties": false
3381
+ },
3382
+ "block_type": {
3383
+ "type": "string",
3384
+ "const": "double_column"
3385
+ },
3386
+ "columns": {
3387
+ "type": "array",
3388
+ "prefixItems": [
3389
+ {
3390
+ "type": "object",
3391
+ "properties": {
3392
+ "id": {
3393
+ "type": "string"
3394
+ },
3395
+ "type": {
3396
+ "type": "string",
3397
+ "const": "column"
3398
+ },
3399
+ "properties": {
3400
+ "type": "object",
3401
+ "properties": {
3402
+ "hideOnMobile": {
3403
+ "type": "boolean"
3404
+ },
3405
+ "hideOnDesktop": {
3406
+ "type": "boolean"
3407
+ },
3408
+ "padding": {
3409
+ "type": "object",
3410
+ "properties": {
3411
+ "left": {
3412
+ "type": "number"
3413
+ },
3414
+ "right": {
3415
+ "type": "number"
3416
+ },
3417
+ "top": {
3418
+ "type": "number"
3419
+ },
3420
+ "bottom": {
3421
+ "type": "number"
3422
+ },
3423
+ "independent": {
3424
+ "type": "boolean"
3425
+ }
3426
+ },
3427
+ "required": [
3428
+ "left",
3429
+ "right",
3430
+ "top",
3431
+ "bottom",
3432
+ "independent"
3433
+ ],
3434
+ "additionalProperties": false
3435
+ },
3436
+ "border": {
3437
+ "type": "object",
3438
+ "properties": {
3439
+ "width": {
3440
+ "type": "number"
3441
+ },
3442
+ "color": {
3443
+ "type": "string",
3444
+ "pattern": "^#[\\s\\S]{0,}$"
3445
+ },
3446
+ "style": {
3447
+ "type": "string",
3448
+ "enum": [
3449
+ "none",
3450
+ "solid",
3451
+ "dashed",
3452
+ "dotted"
3453
+ ]
3454
+ },
3455
+ "sides": {
3456
+ "type": "string",
3457
+ "enum": [
3458
+ "all",
3459
+ "top",
3460
+ "right",
3461
+ "bottom",
3462
+ "left"
3463
+ ]
3464
+ },
3465
+ "useTheme": {
3466
+ "type": "boolean"
3467
+ }
3468
+ },
3469
+ "required": [
3470
+ "width",
3471
+ "color",
3472
+ "style"
3473
+ ],
3474
+ "additionalProperties": false
3475
+ },
3476
+ "backgroundColor": {
3477
+ "type": "string"
3478
+ },
3479
+ "margin": {
3480
+ "type": "object",
3481
+ "properties": {
3482
+ "left": {
3483
+ "type": "number"
3484
+ },
3485
+ "right": {
3486
+ "type": "number"
3487
+ },
3488
+ "top": {
3489
+ "type": "number"
3490
+ },
3491
+ "bottom": {
3492
+ "type": "number"
3493
+ },
3494
+ "independent": {
3495
+ "type": "boolean"
3496
+ }
3497
+ },
3498
+ "required": [
3499
+ "left",
3500
+ "right",
3501
+ "top",
3502
+ "bottom",
3503
+ "independent"
3504
+ ],
3505
+ "additionalProperties": false
3506
+ },
3507
+ "width": {
3508
+ "type": "number"
3509
+ },
3510
+ "elements": {
3511
+ "type": "array",
3512
+ "items": {
3513
+ "$ref": "#/$defs/__schema0"
3514
+ }
3515
+ }
3516
+ },
3517
+ "required": [
3518
+ "hideOnMobile",
3519
+ "hideOnDesktop",
3520
+ "width",
3521
+ "elements"
3522
+ ],
3523
+ "additionalProperties": false
3524
+ }
3525
+ },
3526
+ "required": [
3527
+ "id",
3528
+ "type",
3529
+ "properties"
3530
+ ],
3531
+ "additionalProperties": false
3532
+ },
3533
+ {
3534
+ "type": "object",
3535
+ "properties": {
3536
+ "id": {
3537
+ "type": "string"
3538
+ },
3539
+ "type": {
3540
+ "type": "string",
3541
+ "const": "column"
3542
+ },
3543
+ "properties": {
3544
+ "type": "object",
3545
+ "properties": {
3546
+ "hideOnMobile": {
3547
+ "type": "boolean"
3548
+ },
3549
+ "hideOnDesktop": {
3550
+ "type": "boolean"
3551
+ },
3552
+ "padding": {
3553
+ "type": "object",
3554
+ "properties": {
3555
+ "left": {
3556
+ "type": "number"
3557
+ },
3558
+ "right": {
3559
+ "type": "number"
3560
+ },
3561
+ "top": {
3562
+ "type": "number"
3563
+ },
3564
+ "bottom": {
3565
+ "type": "number"
3566
+ },
3567
+ "independent": {
3568
+ "type": "boolean"
3569
+ }
3570
+ },
3571
+ "required": [
3572
+ "left",
3573
+ "right",
3574
+ "top",
3575
+ "bottom",
3576
+ "independent"
3577
+ ],
3578
+ "additionalProperties": false
3579
+ },
3580
+ "border": {
3581
+ "type": "object",
3582
+ "properties": {
3583
+ "width": {
3584
+ "type": "number"
3585
+ },
3586
+ "color": {
3587
+ "type": "string",
3588
+ "pattern": "^#[\\s\\S]{0,}$"
3589
+ },
3590
+ "style": {
3591
+ "type": "string",
3592
+ "enum": [
3593
+ "none",
3594
+ "solid",
3595
+ "dashed",
3596
+ "dotted"
3597
+ ]
3598
+ },
3599
+ "sides": {
3600
+ "type": "string",
3601
+ "enum": [
3602
+ "all",
3603
+ "top",
3604
+ "right",
3605
+ "bottom",
3606
+ "left"
3607
+ ]
3608
+ },
3609
+ "useTheme": {
3610
+ "type": "boolean"
3611
+ }
3612
+ },
3613
+ "required": [
3614
+ "width",
3615
+ "color",
3616
+ "style"
3617
+ ],
3618
+ "additionalProperties": false
3619
+ },
3620
+ "backgroundColor": {
3621
+ "type": "string"
3622
+ },
3623
+ "margin": {
3624
+ "type": "object",
3625
+ "properties": {
3626
+ "left": {
3627
+ "type": "number"
3628
+ },
3629
+ "right": {
3630
+ "type": "number"
3631
+ },
3632
+ "top": {
3633
+ "type": "number"
3634
+ },
3635
+ "bottom": {
3636
+ "type": "number"
3637
+ },
3638
+ "independent": {
3639
+ "type": "boolean"
3640
+ }
3641
+ },
3642
+ "required": [
3643
+ "left",
3644
+ "right",
3645
+ "top",
3646
+ "bottom",
3647
+ "independent"
3648
+ ],
3649
+ "additionalProperties": false
3650
+ },
3651
+ "width": {
3652
+ "type": "number"
3653
+ },
3654
+ "elements": {
3655
+ "type": "array",
3656
+ "items": {
3657
+ "$ref": "#/$defs/__schema0"
3658
+ }
3659
+ }
3660
+ },
3661
+ "required": [
3662
+ "hideOnMobile",
3663
+ "hideOnDesktop",
3664
+ "width",
3665
+ "elements"
3666
+ ],
3667
+ "additionalProperties": false
3668
+ }
3669
+ },
3670
+ "required": [
3671
+ "id",
3672
+ "type",
3673
+ "properties"
3674
+ ],
3675
+ "additionalProperties": false
3676
+ }
3677
+ ]
3678
+ }
3679
+ },
3680
+ "required": [
3681
+ "hideOnMobile",
3682
+ "hideOnDesktop",
3683
+ "block_type",
3684
+ "columns"
3685
+ ],
3686
+ "additionalProperties": false
3687
+ },
3688
+ {
3689
+ "type": "object",
3690
+ "properties": {
3691
+ "hideOnMobile": {
3692
+ "type": "boolean"
3693
+ },
3694
+ "hideOnDesktop": {
3695
+ "type": "boolean"
3696
+ },
3697
+ "padding": {
3698
+ "type": "object",
3699
+ "properties": {
3700
+ "left": {
3701
+ "type": "number"
3702
+ },
3703
+ "right": {
3704
+ "type": "number"
3705
+ },
3706
+ "top": {
3707
+ "type": "number"
3708
+ },
3709
+ "bottom": {
3710
+ "type": "number"
3711
+ },
3712
+ "independent": {
3713
+ "type": "boolean"
3714
+ }
3715
+ },
3716
+ "required": [
3717
+ "left",
3718
+ "right",
3719
+ "top",
3720
+ "bottom",
3721
+ "independent"
3722
+ ],
3723
+ "additionalProperties": false
3724
+ },
3725
+ "border": {
3726
+ "type": "object",
3727
+ "properties": {
3728
+ "width": {
3729
+ "type": "number"
3730
+ },
3731
+ "color": {
3732
+ "type": "string",
3733
+ "pattern": "^#[\\s\\S]{0,}$"
3734
+ },
3735
+ "style": {
3736
+ "type": "string",
3737
+ "enum": [
3738
+ "none",
3739
+ "solid",
3740
+ "dashed",
3741
+ "dotted"
3742
+ ]
3743
+ },
3744
+ "sides": {
3745
+ "type": "string",
3746
+ "enum": [
3747
+ "all",
3748
+ "top",
3749
+ "right",
3750
+ "bottom",
3751
+ "left"
3752
+ ]
3753
+ },
3754
+ "useTheme": {
3755
+ "type": "boolean"
3756
+ }
3757
+ },
3758
+ "required": [
3759
+ "width",
3760
+ "color",
3761
+ "style"
3762
+ ],
3763
+ "additionalProperties": false
3764
+ },
3765
+ "backgroundColor": {
3766
+ "type": "string"
3767
+ },
3768
+ "margin": {
3769
+ "type": "object",
3770
+ "properties": {
3771
+ "left": {
3772
+ "type": "number"
3773
+ },
3774
+ "right": {
3775
+ "type": "number"
3776
+ },
3777
+ "top": {
3778
+ "type": "number"
3779
+ },
3780
+ "bottom": {
3781
+ "type": "number"
3782
+ },
3783
+ "independent": {
3784
+ "type": "boolean"
3785
+ }
3786
+ },
3787
+ "required": [
3788
+ "left",
3789
+ "right",
3790
+ "top",
3791
+ "bottom",
3792
+ "independent"
3793
+ ],
3794
+ "additionalProperties": false
3795
+ },
3796
+ "block_type": {
3797
+ "type": "string",
3798
+ "const": "triple_column"
3799
+ },
3800
+ "columns": {
3801
+ "type": "array",
3802
+ "prefixItems": [
3803
+ {
3804
+ "type": "object",
3805
+ "properties": {
3806
+ "id": {
3807
+ "type": "string"
3808
+ },
3809
+ "type": {
3810
+ "type": "string",
3811
+ "const": "column"
3812
+ },
3813
+ "properties": {
3814
+ "type": "object",
3815
+ "properties": {
3816
+ "hideOnMobile": {
3817
+ "type": "boolean"
3818
+ },
3819
+ "hideOnDesktop": {
3820
+ "type": "boolean"
3821
+ },
3822
+ "padding": {
3823
+ "type": "object",
3824
+ "properties": {
3825
+ "left": {
3826
+ "type": "number"
3827
+ },
3828
+ "right": {
3829
+ "type": "number"
3830
+ },
3831
+ "top": {
3832
+ "type": "number"
3833
+ },
3834
+ "bottom": {
3835
+ "type": "number"
3836
+ },
3837
+ "independent": {
3838
+ "type": "boolean"
3839
+ }
3840
+ },
3841
+ "required": [
3842
+ "left",
3843
+ "right",
3844
+ "top",
3845
+ "bottom",
3846
+ "independent"
3847
+ ],
3848
+ "additionalProperties": false
3849
+ },
3850
+ "border": {
3851
+ "type": "object",
3852
+ "properties": {
3853
+ "width": {
3854
+ "type": "number"
3855
+ },
3856
+ "color": {
3857
+ "type": "string",
3858
+ "pattern": "^#[\\s\\S]{0,}$"
3859
+ },
3860
+ "style": {
3861
+ "type": "string",
3862
+ "enum": [
3863
+ "none",
3864
+ "solid",
3865
+ "dashed",
3866
+ "dotted"
3867
+ ]
3868
+ },
3869
+ "sides": {
3870
+ "type": "string",
3871
+ "enum": [
3872
+ "all",
3873
+ "top",
3874
+ "right",
3875
+ "bottom",
3876
+ "left"
3877
+ ]
3878
+ },
3879
+ "useTheme": {
3880
+ "type": "boolean"
3881
+ }
3882
+ },
3883
+ "required": [
3884
+ "width",
3885
+ "color",
3886
+ "style"
3887
+ ],
3888
+ "additionalProperties": false
3889
+ },
3890
+ "backgroundColor": {
3891
+ "type": "string"
3892
+ },
3893
+ "margin": {
3894
+ "type": "object",
3895
+ "properties": {
3896
+ "left": {
3897
+ "type": "number"
3898
+ },
3899
+ "right": {
3900
+ "type": "number"
3901
+ },
3902
+ "top": {
3903
+ "type": "number"
3904
+ },
3905
+ "bottom": {
3906
+ "type": "number"
3907
+ },
3908
+ "independent": {
3909
+ "type": "boolean"
3910
+ }
3911
+ },
3912
+ "required": [
3913
+ "left",
3914
+ "right",
3915
+ "top",
3916
+ "bottom",
3917
+ "independent"
3918
+ ],
3919
+ "additionalProperties": false
3920
+ },
3921
+ "width": {
3922
+ "type": "number"
3923
+ },
3924
+ "elements": {
3925
+ "type": "array",
3926
+ "items": {
3927
+ "$ref": "#/$defs/__schema0"
3928
+ }
3929
+ }
3930
+ },
3931
+ "required": [
3932
+ "hideOnMobile",
3933
+ "hideOnDesktop",
3934
+ "width",
3935
+ "elements"
3936
+ ],
3937
+ "additionalProperties": false
3938
+ }
3939
+ },
3940
+ "required": [
3941
+ "id",
3942
+ "type",
3943
+ "properties"
3944
+ ],
3945
+ "additionalProperties": false
3946
+ },
3947
+ {
3948
+ "type": "object",
3949
+ "properties": {
3950
+ "id": {
3951
+ "type": "string"
3952
+ },
3953
+ "type": {
3954
+ "type": "string",
3955
+ "const": "column"
3956
+ },
3957
+ "properties": {
3958
+ "type": "object",
3959
+ "properties": {
3960
+ "hideOnMobile": {
3961
+ "type": "boolean"
3962
+ },
3963
+ "hideOnDesktop": {
3964
+ "type": "boolean"
3965
+ },
3966
+ "padding": {
3967
+ "type": "object",
3968
+ "properties": {
3969
+ "left": {
3970
+ "type": "number"
3971
+ },
3972
+ "right": {
3973
+ "type": "number"
3974
+ },
3975
+ "top": {
3976
+ "type": "number"
3977
+ },
3978
+ "bottom": {
3979
+ "type": "number"
3980
+ },
3981
+ "independent": {
3982
+ "type": "boolean"
3983
+ }
3984
+ },
3985
+ "required": [
3986
+ "left",
3987
+ "right",
3988
+ "top",
3989
+ "bottom",
3990
+ "independent"
3991
+ ],
3992
+ "additionalProperties": false
3993
+ },
3994
+ "border": {
3995
+ "type": "object",
3996
+ "properties": {
3997
+ "width": {
3998
+ "type": "number"
3999
+ },
4000
+ "color": {
4001
+ "type": "string",
4002
+ "pattern": "^#[\\s\\S]{0,}$"
4003
+ },
4004
+ "style": {
4005
+ "type": "string",
4006
+ "enum": [
4007
+ "none",
4008
+ "solid",
4009
+ "dashed",
4010
+ "dotted"
4011
+ ]
4012
+ },
4013
+ "sides": {
4014
+ "type": "string",
4015
+ "enum": [
4016
+ "all",
4017
+ "top",
4018
+ "right",
4019
+ "bottom",
4020
+ "left"
4021
+ ]
4022
+ },
4023
+ "useTheme": {
4024
+ "type": "boolean"
4025
+ }
4026
+ },
4027
+ "required": [
4028
+ "width",
4029
+ "color",
4030
+ "style"
4031
+ ],
4032
+ "additionalProperties": false
4033
+ },
4034
+ "backgroundColor": {
4035
+ "type": "string"
4036
+ },
4037
+ "margin": {
4038
+ "type": "object",
4039
+ "properties": {
4040
+ "left": {
4041
+ "type": "number"
4042
+ },
4043
+ "right": {
4044
+ "type": "number"
4045
+ },
4046
+ "top": {
4047
+ "type": "number"
4048
+ },
4049
+ "bottom": {
4050
+ "type": "number"
4051
+ },
4052
+ "independent": {
4053
+ "type": "boolean"
4054
+ }
4055
+ },
4056
+ "required": [
4057
+ "left",
4058
+ "right",
4059
+ "top",
4060
+ "bottom",
4061
+ "independent"
4062
+ ],
4063
+ "additionalProperties": false
4064
+ },
4065
+ "width": {
4066
+ "type": "number"
4067
+ },
4068
+ "elements": {
4069
+ "type": "array",
4070
+ "items": {
4071
+ "$ref": "#/$defs/__schema0"
4072
+ }
4073
+ }
4074
+ },
4075
+ "required": [
4076
+ "hideOnMobile",
4077
+ "hideOnDesktop",
4078
+ "width",
4079
+ "elements"
4080
+ ],
4081
+ "additionalProperties": false
4082
+ }
4083
+ },
4084
+ "required": [
4085
+ "id",
4086
+ "type",
4087
+ "properties"
4088
+ ],
4089
+ "additionalProperties": false
4090
+ },
4091
+ {
4092
+ "type": "object",
4093
+ "properties": {
4094
+ "id": {
4095
+ "type": "string"
4096
+ },
4097
+ "type": {
4098
+ "type": "string",
4099
+ "const": "column"
4100
+ },
4101
+ "properties": {
4102
+ "type": "object",
4103
+ "properties": {
4104
+ "hideOnMobile": {
4105
+ "type": "boolean"
4106
+ },
4107
+ "hideOnDesktop": {
4108
+ "type": "boolean"
4109
+ },
4110
+ "padding": {
4111
+ "type": "object",
4112
+ "properties": {
4113
+ "left": {
4114
+ "type": "number"
4115
+ },
4116
+ "right": {
4117
+ "type": "number"
4118
+ },
4119
+ "top": {
4120
+ "type": "number"
4121
+ },
4122
+ "bottom": {
4123
+ "type": "number"
4124
+ },
4125
+ "independent": {
4126
+ "type": "boolean"
4127
+ }
4128
+ },
4129
+ "required": [
4130
+ "left",
4131
+ "right",
4132
+ "top",
4133
+ "bottom",
4134
+ "independent"
4135
+ ],
4136
+ "additionalProperties": false
4137
+ },
4138
+ "border": {
4139
+ "type": "object",
4140
+ "properties": {
4141
+ "width": {
4142
+ "type": "number"
4143
+ },
4144
+ "color": {
4145
+ "type": "string",
4146
+ "pattern": "^#[\\s\\S]{0,}$"
4147
+ },
4148
+ "style": {
4149
+ "type": "string",
4150
+ "enum": [
4151
+ "none",
4152
+ "solid",
4153
+ "dashed",
4154
+ "dotted"
4155
+ ]
4156
+ },
4157
+ "sides": {
4158
+ "type": "string",
4159
+ "enum": [
4160
+ "all",
4161
+ "top",
4162
+ "right",
4163
+ "bottom",
4164
+ "left"
4165
+ ]
4166
+ },
4167
+ "useTheme": {
4168
+ "type": "boolean"
4169
+ }
4170
+ },
4171
+ "required": [
4172
+ "width",
4173
+ "color",
4174
+ "style"
4175
+ ],
4176
+ "additionalProperties": false
4177
+ },
4178
+ "backgroundColor": {
4179
+ "type": "string"
4180
+ },
4181
+ "margin": {
4182
+ "type": "object",
4183
+ "properties": {
4184
+ "left": {
4185
+ "type": "number"
4186
+ },
4187
+ "right": {
4188
+ "type": "number"
4189
+ },
4190
+ "top": {
4191
+ "type": "number"
4192
+ },
4193
+ "bottom": {
4194
+ "type": "number"
4195
+ },
4196
+ "independent": {
4197
+ "type": "boolean"
4198
+ }
4199
+ },
4200
+ "required": [
4201
+ "left",
4202
+ "right",
4203
+ "top",
4204
+ "bottom",
4205
+ "independent"
4206
+ ],
4207
+ "additionalProperties": false
4208
+ },
4209
+ "width": {
4210
+ "type": "number"
4211
+ },
4212
+ "elements": {
4213
+ "type": "array",
4214
+ "items": {
4215
+ "$ref": "#/$defs/__schema0"
4216
+ }
4217
+ }
4218
+ },
4219
+ "required": [
4220
+ "hideOnMobile",
4221
+ "hideOnDesktop",
4222
+ "width",
4223
+ "elements"
4224
+ ],
4225
+ "additionalProperties": false
4226
+ }
4227
+ },
4228
+ "required": [
4229
+ "id",
4230
+ "type",
4231
+ "properties"
4232
+ ],
4233
+ "additionalProperties": false
4234
+ }
4235
+ ]
4236
+ }
4237
+ },
4238
+ "required": [
4239
+ "hideOnMobile",
4240
+ "hideOnDesktop",
4241
+ "block_type",
4242
+ "columns"
4243
+ ],
4244
+ "additionalProperties": false
4245
+ }
4246
+ ]
4247
+ }
4248
+ },
4249
+ "required": [
4250
+ "id",
4251
+ "type",
4252
+ "properties"
4253
+ ],
4254
+ "additionalProperties": false
4255
+ },
4256
+ {
4257
+ "type": "object",
4258
+ "properties": {
4259
+ "id": {
4260
+ "type": "string"
4261
+ },
4262
+ "type": {
4263
+ "type": "string",
4264
+ "const": "column"
4265
+ },
4266
+ "properties": {
4267
+ "type": "object",
4268
+ "properties": {
4269
+ "hideOnMobile": {
4270
+ "type": "boolean"
4271
+ },
4272
+ "hideOnDesktop": {
4273
+ "type": "boolean"
4274
+ },
4275
+ "padding": {
4276
+ "type": "object",
4277
+ "properties": {
4278
+ "left": {
4279
+ "type": "number"
4280
+ },
4281
+ "right": {
4282
+ "type": "number"
4283
+ },
4284
+ "top": {
4285
+ "type": "number"
4286
+ },
4287
+ "bottom": {
4288
+ "type": "number"
4289
+ },
4290
+ "independent": {
4291
+ "type": "boolean"
4292
+ }
4293
+ },
4294
+ "required": [
4295
+ "left",
4296
+ "right",
4297
+ "top",
4298
+ "bottom",
4299
+ "independent"
4300
+ ],
4301
+ "additionalProperties": false
4302
+ },
4303
+ "border": {
4304
+ "type": "object",
4305
+ "properties": {
4306
+ "width": {
4307
+ "type": "number"
4308
+ },
4309
+ "color": {
4310
+ "type": "string",
4311
+ "pattern": "^#[\\s\\S]{0,}$"
4312
+ },
4313
+ "style": {
4314
+ "type": "string",
4315
+ "enum": [
4316
+ "none",
4317
+ "solid",
4318
+ "dashed",
4319
+ "dotted"
4320
+ ]
4321
+ },
4322
+ "sides": {
4323
+ "type": "string",
4324
+ "enum": [
4325
+ "all",
4326
+ "top",
4327
+ "right",
4328
+ "bottom",
4329
+ "left"
4330
+ ]
4331
+ },
4332
+ "useTheme": {
4333
+ "type": "boolean"
4334
+ }
4335
+ },
4336
+ "required": [
4337
+ "width",
4338
+ "color",
4339
+ "style"
4340
+ ],
4341
+ "additionalProperties": false
4342
+ },
4343
+ "backgroundColor": {
4344
+ "type": "string"
4345
+ },
4346
+ "margin": {
4347
+ "type": "object",
4348
+ "properties": {
4349
+ "left": {
4350
+ "type": "number"
4351
+ },
4352
+ "right": {
4353
+ "type": "number"
4354
+ },
4355
+ "top": {
4356
+ "type": "number"
4357
+ },
4358
+ "bottom": {
4359
+ "type": "number"
4360
+ },
4361
+ "independent": {
4362
+ "type": "boolean"
4363
+ }
4364
+ },
4365
+ "required": [
4366
+ "left",
4367
+ "right",
4368
+ "top",
4369
+ "bottom",
4370
+ "independent"
4371
+ ],
4372
+ "additionalProperties": false
4373
+ },
4374
+ "width": {
4375
+ "type": "number"
4376
+ },
4377
+ "elements": {
4378
+ "type": "array",
4379
+ "items": {
4380
+ "$ref": "#/$defs/__schema0"
4381
+ }
4382
+ }
4383
+ },
4384
+ "required": [
4385
+ "hideOnMobile",
4386
+ "hideOnDesktop",
4387
+ "width",
4388
+ "elements"
4389
+ ],
4390
+ "additionalProperties": false
4391
+ }
4392
+ },
4393
+ "required": [
4394
+ "id",
4395
+ "type",
4396
+ "properties"
4397
+ ],
4398
+ "additionalProperties": false
4399
+ },
4400
+ {
4401
+ "type": "object",
4402
+ "properties": {
4403
+ "id": {
4404
+ "type": "string"
4405
+ },
4406
+ "type": {
4407
+ "type": "string",
4408
+ "const": "html"
4409
+ },
4410
+ "properties": {
4411
+ "type": "object",
4412
+ "properties": {
4413
+ "hideOnMobile": {
4414
+ "type": "boolean"
4415
+ },
4416
+ "hideOnDesktop": {
4417
+ "type": "boolean"
4418
+ },
4419
+ "padding": {
4420
+ "type": "object",
4421
+ "properties": {
4422
+ "left": {
4423
+ "type": "number"
4424
+ },
4425
+ "right": {
4426
+ "type": "number"
4427
+ },
4428
+ "top": {
4429
+ "type": "number"
4430
+ },
4431
+ "bottom": {
4432
+ "type": "number"
4433
+ },
4434
+ "independent": {
4435
+ "type": "boolean"
4436
+ }
4437
+ },
4438
+ "required": [
4439
+ "left",
4440
+ "right",
4441
+ "top",
4442
+ "bottom",
4443
+ "independent"
4444
+ ],
4445
+ "additionalProperties": false
4446
+ },
4447
+ "border": {
4448
+ "type": "object",
4449
+ "properties": {
4450
+ "width": {
4451
+ "type": "number"
4452
+ },
4453
+ "color": {
4454
+ "type": "string",
4455
+ "pattern": "^#[\\s\\S]{0,}$"
4456
+ },
4457
+ "style": {
4458
+ "type": "string",
4459
+ "enum": [
4460
+ "none",
4461
+ "solid",
4462
+ "dashed",
4463
+ "dotted"
4464
+ ]
4465
+ },
4466
+ "sides": {
4467
+ "type": "string",
4468
+ "enum": [
4469
+ "all",
4470
+ "top",
4471
+ "right",
4472
+ "bottom",
4473
+ "left"
4474
+ ]
4475
+ },
4476
+ "useTheme": {
4477
+ "type": "boolean"
4478
+ }
4479
+ },
4480
+ "required": [
4481
+ "width",
4482
+ "color",
4483
+ "style"
4484
+ ],
4485
+ "additionalProperties": false
4486
+ },
4487
+ "backgroundColor": {
4488
+ "type": "string"
4489
+ },
4490
+ "margin": {
4491
+ "type": "object",
4492
+ "properties": {
4493
+ "left": {
4494
+ "type": "number"
4495
+ },
4496
+ "right": {
4497
+ "type": "number"
4498
+ },
4499
+ "top": {
4500
+ "type": "number"
4501
+ },
4502
+ "bottom": {
4503
+ "type": "number"
4504
+ },
4505
+ "independent": {
4506
+ "type": "boolean"
4507
+ }
4508
+ },
4509
+ "required": [
4510
+ "left",
4511
+ "right",
4512
+ "top",
4513
+ "bottom",
4514
+ "independent"
4515
+ ],
4516
+ "additionalProperties": false
4517
+ },
4518
+ "html": {
4519
+ "type": "string"
4520
+ }
4521
+ },
4522
+ "required": [
4523
+ "hideOnMobile",
4524
+ "hideOnDesktop",
4525
+ "html"
4526
+ ],
4527
+ "additionalProperties": false
4528
+ }
4529
+ },
4530
+ "required": [
4531
+ "id",
4532
+ "type",
4533
+ "properties"
4534
+ ],
4535
+ "additionalProperties": false
4536
+ },
4537
+ {
4538
+ "type": "object",
4539
+ "properties": {
4540
+ "id": {
4541
+ "type": "string"
4542
+ },
4543
+ "type": {
4544
+ "type": "string",
4545
+ "const": "spacer"
4546
+ },
4547
+ "properties": {
4548
+ "type": "object",
4549
+ "properties": {
4550
+ "hideOnMobile": {
4551
+ "type": "boolean"
4552
+ },
4553
+ "hideOnDesktop": {
4554
+ "type": "boolean"
4555
+ },
4556
+ "padding": {
4557
+ "type": "object",
4558
+ "properties": {
4559
+ "left": {
4560
+ "type": "number"
4561
+ },
4562
+ "right": {
4563
+ "type": "number"
4564
+ },
4565
+ "top": {
4566
+ "type": "number"
4567
+ },
4568
+ "bottom": {
4569
+ "type": "number"
4570
+ },
4571
+ "independent": {
4572
+ "type": "boolean"
4573
+ }
4574
+ },
4575
+ "required": [
4576
+ "left",
4577
+ "right",
4578
+ "top",
4579
+ "bottom",
4580
+ "independent"
4581
+ ],
4582
+ "additionalProperties": false
4583
+ },
4584
+ "border": {
4585
+ "type": "object",
4586
+ "properties": {
4587
+ "width": {
4588
+ "type": "number"
4589
+ },
4590
+ "color": {
4591
+ "type": "string",
4592
+ "pattern": "^#[\\s\\S]{0,}$"
4593
+ },
4594
+ "style": {
4595
+ "type": "string",
4596
+ "enum": [
4597
+ "none",
4598
+ "solid",
4599
+ "dashed",
4600
+ "dotted"
4601
+ ]
4602
+ },
4603
+ "sides": {
4604
+ "type": "string",
4605
+ "enum": [
4606
+ "all",
4607
+ "top",
4608
+ "right",
4609
+ "bottom",
4610
+ "left"
4611
+ ]
4612
+ },
4613
+ "useTheme": {
4614
+ "type": "boolean"
4615
+ }
4616
+ },
4617
+ "required": [
4618
+ "width",
4619
+ "color",
4620
+ "style"
4621
+ ],
4622
+ "additionalProperties": false
4623
+ },
4624
+ "backgroundColor": {
4625
+ "type": "string"
4626
+ },
4627
+ "margin": {
4628
+ "type": "object",
4629
+ "properties": {
4630
+ "left": {
4631
+ "type": "number"
4632
+ },
4633
+ "right": {
4634
+ "type": "number"
4635
+ },
4636
+ "top": {
4637
+ "type": "number"
4638
+ },
4639
+ "bottom": {
4640
+ "type": "number"
4641
+ },
4642
+ "independent": {
4643
+ "type": "boolean"
4644
+ }
4645
+ },
4646
+ "required": [
4647
+ "left",
4648
+ "right",
4649
+ "top",
4650
+ "bottom",
4651
+ "independent"
4652
+ ],
4653
+ "additionalProperties": false
4654
+ },
4655
+ "height": {
4656
+ "type": "number"
4657
+ },
4658
+ "showDivider": {
4659
+ "type": "boolean"
4660
+ },
4661
+ "dividerColor": {
4662
+ "type": "string"
4663
+ },
4664
+ "dividerThickness": {
4665
+ "type": "number"
4666
+ }
4667
+ },
4668
+ "required": [
4669
+ "hideOnMobile",
4670
+ "hideOnDesktop",
4671
+ "height"
4672
+ ],
4673
+ "additionalProperties": false
4674
+ }
4675
+ },
4676
+ "required": [
4677
+ "id",
4678
+ "type",
4679
+ "properties"
4680
+ ],
4681
+ "additionalProperties": false
4682
+ }
4683
+ ]
4684
+ }
4685
+ }
4686
+ }