sovrium 0.0.2 → 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.
- package/README.md +3 -1
- package/package.json +23 -14
- package/schemas/0.0.2/app.openapi.json +4 -14
- package/schemas/0.0.2/app.schema.json +340 -1713
- package/schemas/{development → 0.1.0}/app.openapi.json +14 -4
- package/schemas/{development → 0.1.0}/app.schema.json +1715 -342
- package/CHANGELOG.md +0 -3497
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://sovrium.com/schemas/
|
|
2
|
+
"$id": "https://sovrium.com/schemas/0.1.0/app.schema.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"$defs": {
|
|
5
5
|
"TableId": {
|
|
@@ -37,7 +37,11 @@
|
|
|
37
37
|
"anyOf": [
|
|
38
38
|
{
|
|
39
39
|
"type": "object",
|
|
40
|
-
"required": [
|
|
40
|
+
"required": [
|
|
41
|
+
"field",
|
|
42
|
+
"operator",
|
|
43
|
+
"value"
|
|
44
|
+
],
|
|
41
45
|
"properties": {
|
|
42
46
|
"field": {
|
|
43
47
|
"type": "string"
|
|
@@ -56,7 +60,9 @@
|
|
|
56
60
|
},
|
|
57
61
|
{
|
|
58
62
|
"type": "object",
|
|
59
|
-
"required": [
|
|
63
|
+
"required": [
|
|
64
|
+
"and"
|
|
65
|
+
],
|
|
60
66
|
"properties": {
|
|
61
67
|
"and": {
|
|
62
68
|
"type": "array",
|
|
@@ -69,7 +75,9 @@
|
|
|
69
75
|
},
|
|
70
76
|
{
|
|
71
77
|
"type": "object",
|
|
72
|
-
"required": [
|
|
78
|
+
"required": [
|
|
79
|
+
"or"
|
|
80
|
+
],
|
|
73
81
|
"properties": {
|
|
74
82
|
"or": {
|
|
75
83
|
"type": "array",
|
|
@@ -90,13 +98,20 @@
|
|
|
90
98
|
"anyOf": [
|
|
91
99
|
{
|
|
92
100
|
"type": "object",
|
|
93
|
-
"required": [
|
|
101
|
+
"required": [
|
|
102
|
+
"type"
|
|
103
|
+
],
|
|
94
104
|
"properties": {
|
|
95
105
|
"type": {
|
|
96
106
|
"type": "string",
|
|
97
107
|
"description": "Component type identifier",
|
|
98
108
|
"title": "Component Type",
|
|
99
|
-
"examples": [
|
|
109
|
+
"examples": [
|
|
110
|
+
"icon",
|
|
111
|
+
"text",
|
|
112
|
+
"div",
|
|
113
|
+
"button"
|
|
114
|
+
]
|
|
100
115
|
},
|
|
101
116
|
"props": {
|
|
102
117
|
"type": "object",
|
|
@@ -157,7 +172,11 @@
|
|
|
157
172
|
"type": "string",
|
|
158
173
|
"description": "Text content (may contain $variable)",
|
|
159
174
|
"title": "Text Content",
|
|
160
|
-
"examples": [
|
|
175
|
+
"examples": [
|
|
176
|
+
"$label",
|
|
177
|
+
"$title",
|
|
178
|
+
"Static text"
|
|
179
|
+
]
|
|
161
180
|
}
|
|
162
181
|
},
|
|
163
182
|
"additionalProperties": false,
|
|
@@ -183,7 +202,11 @@
|
|
|
183
202
|
},
|
|
184
203
|
"Page": {
|
|
185
204
|
"type": "object",
|
|
186
|
-
"required": [
|
|
205
|
+
"required": [
|
|
206
|
+
"name",
|
|
207
|
+
"path",
|
|
208
|
+
"sections"
|
|
209
|
+
],
|
|
187
210
|
"properties": {
|
|
188
211
|
"id": {
|
|
189
212
|
"$ref": "#/$defs/PageId"
|
|
@@ -193,7 +216,13 @@
|
|
|
193
216
|
"description": "Human-readable name for the page",
|
|
194
217
|
"title": "Page Name",
|
|
195
218
|
"minLength": 1,
|
|
196
|
-
"examples": [
|
|
219
|
+
"examples": [
|
|
220
|
+
"Home",
|
|
221
|
+
"About Us",
|
|
222
|
+
"Home Page",
|
|
223
|
+
"Pricing",
|
|
224
|
+
"Contact"
|
|
225
|
+
],
|
|
197
226
|
"maxLength": 63
|
|
198
227
|
},
|
|
199
228
|
"path": {
|
|
@@ -214,12 +243,19 @@
|
|
|
214
243
|
},
|
|
215
244
|
"meta": {
|
|
216
245
|
"type": "object",
|
|
217
|
-
"required": [
|
|
246
|
+
"required": [
|
|
247
|
+
"title"
|
|
248
|
+
],
|
|
218
249
|
"properties": {
|
|
219
250
|
"lang": {
|
|
220
251
|
"type": "string",
|
|
221
252
|
"description": "Page language code (optional - uses auto-detection if not specified)",
|
|
222
|
-
"examples": [
|
|
253
|
+
"examples": [
|
|
254
|
+
"en-US",
|
|
255
|
+
"fr-FR",
|
|
256
|
+
"es-ES",
|
|
257
|
+
"de-DE"
|
|
258
|
+
],
|
|
223
259
|
"pattern": "^[a-z]{2}(-[A-Z]{2})?$"
|
|
224
260
|
},
|
|
225
261
|
"title": {
|
|
@@ -263,7 +299,15 @@
|
|
|
263
299
|
},
|
|
264
300
|
"changefreq": {
|
|
265
301
|
"type": "string",
|
|
266
|
-
"enum": [
|
|
302
|
+
"enum": [
|
|
303
|
+
"always",
|
|
304
|
+
"hourly",
|
|
305
|
+
"daily",
|
|
306
|
+
"weekly",
|
|
307
|
+
"monthly",
|
|
308
|
+
"yearly",
|
|
309
|
+
"never"
|
|
310
|
+
],
|
|
267
311
|
"description": "Sitemap change frequency hint for search engines"
|
|
268
312
|
},
|
|
269
313
|
"favicon": {
|
|
@@ -278,23 +322,40 @@
|
|
|
278
322
|
"type": "array",
|
|
279
323
|
"items": {
|
|
280
324
|
"type": "object",
|
|
281
|
-
"required": [
|
|
325
|
+
"required": [
|
|
326
|
+
"rel",
|
|
327
|
+
"href"
|
|
328
|
+
],
|
|
282
329
|
"properties": {
|
|
283
330
|
"rel": {
|
|
284
331
|
"type": "string",
|
|
285
|
-
"enum": [
|
|
332
|
+
"enum": [
|
|
333
|
+
"icon",
|
|
334
|
+
"apple-touch-icon",
|
|
335
|
+
"manifest",
|
|
336
|
+
"mask-icon"
|
|
337
|
+
],
|
|
286
338
|
"description": "Favicon relationship type"
|
|
287
339
|
},
|
|
288
340
|
"type": {
|
|
289
341
|
"type": "string",
|
|
290
342
|
"description": "MIME type",
|
|
291
|
-
"examples": [
|
|
343
|
+
"examples": [
|
|
344
|
+
"image/png",
|
|
345
|
+
"image/x-icon",
|
|
346
|
+
"image/svg+xml"
|
|
347
|
+
],
|
|
292
348
|
"pattern": "^image\\/"
|
|
293
349
|
},
|
|
294
350
|
"sizes": {
|
|
295
351
|
"type": "string",
|
|
296
352
|
"description": "Icon dimensions",
|
|
297
|
-
"examples": [
|
|
353
|
+
"examples": [
|
|
354
|
+
"16x16",
|
|
355
|
+
"32x32",
|
|
356
|
+
"180x180",
|
|
357
|
+
"192x192"
|
|
358
|
+
],
|
|
298
359
|
"pattern": "^[0-9]+x[0-9]+$"
|
|
299
360
|
},
|
|
300
361
|
"href": {
|
|
@@ -306,7 +367,12 @@
|
|
|
306
367
|
"type": "string",
|
|
307
368
|
"description": "Color for mask-icon (Safari pinned tab)",
|
|
308
369
|
"title": "Hex Color",
|
|
309
|
-
"examples": [
|
|
370
|
+
"examples": [
|
|
371
|
+
"#007BFF",
|
|
372
|
+
"#28A745",
|
|
373
|
+
"#DC3545",
|
|
374
|
+
"#5BBAD5"
|
|
375
|
+
],
|
|
310
376
|
"pattern": "^#[0-9A-Fa-f]{6}$"
|
|
311
377
|
}
|
|
312
378
|
},
|
|
@@ -332,7 +398,10 @@
|
|
|
332
398
|
"type": "array",
|
|
333
399
|
"items": {
|
|
334
400
|
"type": "object",
|
|
335
|
-
"required": [
|
|
401
|
+
"required": [
|
|
402
|
+
"size",
|
|
403
|
+
"href"
|
|
404
|
+
],
|
|
336
405
|
"properties": {
|
|
337
406
|
"size": {
|
|
338
407
|
"type": "string",
|
|
@@ -386,7 +455,14 @@
|
|
|
386
455
|
},
|
|
387
456
|
"type": {
|
|
388
457
|
"type": "string",
|
|
389
|
-
"enum": [
|
|
458
|
+
"enum": [
|
|
459
|
+
"website",
|
|
460
|
+
"article",
|
|
461
|
+
"book",
|
|
462
|
+
"profile",
|
|
463
|
+
"video",
|
|
464
|
+
"music"
|
|
465
|
+
],
|
|
390
466
|
"description": "Open Graph object type"
|
|
391
467
|
},
|
|
392
468
|
"url": {
|
|
@@ -410,12 +486,22 @@
|
|
|
410
486
|
"locale": {
|
|
411
487
|
"type": "string",
|
|
412
488
|
"description": "Locale in format language_TERRITORY",
|
|
413
|
-
"examples": [
|
|
489
|
+
"examples": [
|
|
490
|
+
"en_US",
|
|
491
|
+
"fr_FR",
|
|
492
|
+
"es_ES"
|
|
493
|
+
],
|
|
414
494
|
"pattern": "^[a-z]{2}_[A-Z]{2}$"
|
|
415
495
|
},
|
|
416
496
|
"determiner": {
|
|
417
497
|
"type": "string",
|
|
418
|
-
"enum": [
|
|
498
|
+
"enum": [
|
|
499
|
+
"a",
|
|
500
|
+
"an",
|
|
501
|
+
"the",
|
|
502
|
+
"auto",
|
|
503
|
+
""
|
|
504
|
+
],
|
|
419
505
|
"description": "Word that appears before the title"
|
|
420
506
|
},
|
|
421
507
|
"video": {
|
|
@@ -435,11 +521,18 @@
|
|
|
435
521
|
},
|
|
436
522
|
"twitter": {
|
|
437
523
|
"type": "object",
|
|
438
|
-
"required": [
|
|
524
|
+
"required": [
|
|
525
|
+
"card"
|
|
526
|
+
],
|
|
439
527
|
"properties": {
|
|
440
528
|
"card": {
|
|
441
529
|
"type": "string",
|
|
442
|
-
"enum": [
|
|
530
|
+
"enum": [
|
|
531
|
+
"summary",
|
|
532
|
+
"summary_large_image",
|
|
533
|
+
"app",
|
|
534
|
+
"player"
|
|
535
|
+
],
|
|
443
536
|
"description": "Type of Twitter Card"
|
|
444
537
|
},
|
|
445
538
|
"title": {
|
|
@@ -467,13 +560,19 @@
|
|
|
467
560
|
"site": {
|
|
468
561
|
"type": "string",
|
|
469
562
|
"description": "Twitter @username of website",
|
|
470
|
-
"examples": [
|
|
563
|
+
"examples": [
|
|
564
|
+
"@mysite",
|
|
565
|
+
"@johndoe"
|
|
566
|
+
],
|
|
471
567
|
"pattern": "^@[A-Za-z0-9_]+$"
|
|
472
568
|
},
|
|
473
569
|
"creator": {
|
|
474
570
|
"type": "string",
|
|
475
571
|
"description": "Twitter @username of content creator",
|
|
476
|
-
"examples": [
|
|
572
|
+
"examples": [
|
|
573
|
+
"@mysite",
|
|
574
|
+
"@johndoe"
|
|
575
|
+
],
|
|
477
576
|
"pattern": "^@[A-Za-z0-9_]+$"
|
|
478
577
|
},
|
|
479
578
|
"player": {
|
|
@@ -546,7 +645,10 @@
|
|
|
546
645
|
"type": "array",
|
|
547
646
|
"items": {
|
|
548
647
|
"type": "object",
|
|
549
|
-
"required": [
|
|
648
|
+
"required": [
|
|
649
|
+
"href",
|
|
650
|
+
"as"
|
|
651
|
+
],
|
|
550
652
|
"properties": {
|
|
551
653
|
"href": {
|
|
552
654
|
"type": "string",
|
|
@@ -577,7 +679,10 @@
|
|
|
577
679
|
},
|
|
578
680
|
{
|
|
579
681
|
"type": "string",
|
|
580
|
-
"enum": [
|
|
682
|
+
"enum": [
|
|
683
|
+
"anonymous",
|
|
684
|
+
"use-credentials"
|
|
685
|
+
]
|
|
581
686
|
}
|
|
582
687
|
],
|
|
583
688
|
"description": "CORS setting for the resource"
|
|
@@ -616,13 +721,17 @@
|
|
|
616
721
|
},
|
|
617
722
|
{
|
|
618
723
|
"type": "object",
|
|
619
|
-
"required": [
|
|
724
|
+
"required": [
|
|
725
|
+
"providers"
|
|
726
|
+
],
|
|
620
727
|
"properties": {
|
|
621
728
|
"providers": {
|
|
622
729
|
"type": "array",
|
|
623
730
|
"items": {
|
|
624
731
|
"type": "object",
|
|
625
|
-
"required": [
|
|
732
|
+
"required": [
|
|
733
|
+
"name"
|
|
734
|
+
],
|
|
626
735
|
"properties": {
|
|
627
736
|
"name": {
|
|
628
737
|
"type": "string",
|
|
@@ -645,7 +754,9 @@
|
|
|
645
754
|
"type": "array",
|
|
646
755
|
"items": {
|
|
647
756
|
"type": "object",
|
|
648
|
-
"required": [
|
|
757
|
+
"required": [
|
|
758
|
+
"src"
|
|
759
|
+
],
|
|
649
760
|
"properties": {
|
|
650
761
|
"src": {
|
|
651
762
|
"type": "string",
|
|
@@ -699,11 +810,19 @@
|
|
|
699
810
|
"type": "array",
|
|
700
811
|
"items": {
|
|
701
812
|
"type": "object",
|
|
702
|
-
"required": [
|
|
813
|
+
"required": [
|
|
814
|
+
"type"
|
|
815
|
+
],
|
|
703
816
|
"properties": {
|
|
704
817
|
"type": {
|
|
705
818
|
"type": "string",
|
|
706
|
-
"enum": [
|
|
819
|
+
"enum": [
|
|
820
|
+
"meta",
|
|
821
|
+
"link",
|
|
822
|
+
"script",
|
|
823
|
+
"style",
|
|
824
|
+
"base"
|
|
825
|
+
],
|
|
707
826
|
"description": "HTML element type"
|
|
708
827
|
},
|
|
709
828
|
"attrs": {
|
|
@@ -739,11 +858,18 @@
|
|
|
739
858
|
},
|
|
740
859
|
"twitterCard": {
|
|
741
860
|
"type": "object",
|
|
742
|
-
"required": [
|
|
861
|
+
"required": [
|
|
862
|
+
"card"
|
|
863
|
+
],
|
|
743
864
|
"properties": {
|
|
744
865
|
"card": {
|
|
745
866
|
"type": "string",
|
|
746
|
-
"enum": [
|
|
867
|
+
"enum": [
|
|
868
|
+
"summary",
|
|
869
|
+
"summary_large_image",
|
|
870
|
+
"app",
|
|
871
|
+
"player"
|
|
872
|
+
],
|
|
747
873
|
"description": "Type of Twitter Card"
|
|
748
874
|
},
|
|
749
875
|
"title": {
|
|
@@ -771,13 +897,19 @@
|
|
|
771
897
|
"site": {
|
|
772
898
|
"type": "string",
|
|
773
899
|
"description": "Twitter @username of website",
|
|
774
|
-
"examples": [
|
|
900
|
+
"examples": [
|
|
901
|
+
"@mysite",
|
|
902
|
+
"@johndoe"
|
|
903
|
+
],
|
|
775
904
|
"pattern": "^@[A-Za-z0-9_]+$"
|
|
776
905
|
},
|
|
777
906
|
"creator": {
|
|
778
907
|
"type": "string",
|
|
779
908
|
"description": "Twitter @username of content creator",
|
|
780
|
-
"examples": [
|
|
909
|
+
"examples": [
|
|
910
|
+
"@mysite",
|
|
911
|
+
"@johndoe"
|
|
912
|
+
],
|
|
781
913
|
"pattern": "^@[A-Za-z0-9_]+$"
|
|
782
914
|
},
|
|
783
915
|
"player": {
|
|
@@ -877,7 +1009,12 @@
|
|
|
877
1009
|
"propertyNames": {
|
|
878
1010
|
"type": "string",
|
|
879
1011
|
"description": "Page language code (ISO 639-1 with optional country)",
|
|
880
|
-
"examples": [
|
|
1012
|
+
"examples": [
|
|
1013
|
+
"en-US",
|
|
1014
|
+
"fr-FR",
|
|
1015
|
+
"es-ES",
|
|
1016
|
+
"de-DE"
|
|
1017
|
+
],
|
|
881
1018
|
"pattern": "^[a-z]{2}(-[A-Z]{2})?$"
|
|
882
1019
|
},
|
|
883
1020
|
"description": "Localized metadata translations per language"
|
|
@@ -893,7 +1030,9 @@
|
|
|
893
1030
|
"anyOf": [
|
|
894
1031
|
{
|
|
895
1032
|
"type": "object",
|
|
896
|
-
"required": [
|
|
1033
|
+
"required": [
|
|
1034
|
+
"type"
|
|
1035
|
+
],
|
|
897
1036
|
"properties": {
|
|
898
1037
|
"type": {
|
|
899
1038
|
"type": "string",
|
|
@@ -1046,12 +1185,20 @@
|
|
|
1046
1185
|
"scale": {
|
|
1047
1186
|
"type": "number",
|
|
1048
1187
|
"description": "Scale factor (e.g., 1.05 for 5% larger)",
|
|
1049
|
-
"examples": [
|
|
1188
|
+
"examples": [
|
|
1189
|
+
1.05,
|
|
1190
|
+
1.1,
|
|
1191
|
+
0.95
|
|
1192
|
+
]
|
|
1050
1193
|
},
|
|
1051
1194
|
"transform": {
|
|
1052
1195
|
"type": "string",
|
|
1053
1196
|
"description": "CSS transform (scale, rotate, translate)",
|
|
1054
|
-
"examples": [
|
|
1197
|
+
"examples": [
|
|
1198
|
+
"scale(1.05)",
|
|
1199
|
+
"translateY(-4px)",
|
|
1200
|
+
"rotate(5deg)"
|
|
1201
|
+
]
|
|
1055
1202
|
},
|
|
1056
1203
|
"opacity": {
|
|
1057
1204
|
"type": "number",
|
|
@@ -1075,7 +1222,9 @@
|
|
|
1075
1222
|
"shadow": {
|
|
1076
1223
|
"type": "string",
|
|
1077
1224
|
"description": "Box shadow on hover",
|
|
1078
|
-
"examples": [
|
|
1225
|
+
"examples": [
|
|
1226
|
+
"0 10px 25px rgba(0,0,0,0.1)"
|
|
1227
|
+
]
|
|
1079
1228
|
},
|
|
1080
1229
|
"duration": {
|
|
1081
1230
|
"type": "string",
|
|
@@ -1086,7 +1235,13 @@
|
|
|
1086
1235
|
"anyOf": [
|
|
1087
1236
|
{
|
|
1088
1237
|
"type": "string",
|
|
1089
|
-
"enum": [
|
|
1238
|
+
"enum": [
|
|
1239
|
+
"linear",
|
|
1240
|
+
"ease",
|
|
1241
|
+
"ease-in",
|
|
1242
|
+
"ease-out",
|
|
1243
|
+
"ease-in-out"
|
|
1244
|
+
]
|
|
1090
1245
|
},
|
|
1091
1246
|
{
|
|
1092
1247
|
"type": "string",
|
|
@@ -1112,13 +1267,24 @@
|
|
|
1112
1267
|
"properties": {
|
|
1113
1268
|
"animation": {
|
|
1114
1269
|
"type": "string",
|
|
1115
|
-
"enum": [
|
|
1270
|
+
"enum": [
|
|
1271
|
+
"pulse",
|
|
1272
|
+
"bounce",
|
|
1273
|
+
"shake",
|
|
1274
|
+
"flash",
|
|
1275
|
+
"ripple",
|
|
1276
|
+
"none"
|
|
1277
|
+
],
|
|
1116
1278
|
"description": "Animation to trigger on click"
|
|
1117
1279
|
},
|
|
1118
1280
|
"navigate": {
|
|
1119
1281
|
"type": "string",
|
|
1120
1282
|
"description": "Path to navigate to",
|
|
1121
|
-
"examples": [
|
|
1283
|
+
"examples": [
|
|
1284
|
+
"/contact",
|
|
1285
|
+
"/pricing",
|
|
1286
|
+
"#section-id"
|
|
1287
|
+
]
|
|
1122
1288
|
},
|
|
1123
1289
|
"openUrl": {
|
|
1124
1290
|
"type": "string",
|
|
@@ -1149,7 +1315,9 @@
|
|
|
1149
1315
|
},
|
|
1150
1316
|
"scroll": {
|
|
1151
1317
|
"type": "object",
|
|
1152
|
-
"required": [
|
|
1318
|
+
"required": [
|
|
1319
|
+
"animation"
|
|
1320
|
+
],
|
|
1153
1321
|
"properties": {
|
|
1154
1322
|
"animation": {
|
|
1155
1323
|
"type": "string",
|
|
@@ -1175,7 +1343,11 @@
|
|
|
1175
1343
|
"delay": {
|
|
1176
1344
|
"type": "string",
|
|
1177
1345
|
"description": "Delay before animation starts",
|
|
1178
|
-
"examples": [
|
|
1346
|
+
"examples": [
|
|
1347
|
+
"0ms",
|
|
1348
|
+
"100ms",
|
|
1349
|
+
"0.5s"
|
|
1350
|
+
],
|
|
1179
1351
|
"pattern": "^[0-9]+(\\.[0-9]+)?(ms|s)$"
|
|
1180
1352
|
},
|
|
1181
1353
|
"duration": {
|
|
@@ -1194,7 +1366,9 @@
|
|
|
1194
1366
|
},
|
|
1195
1367
|
"entrance": {
|
|
1196
1368
|
"type": "object",
|
|
1197
|
-
"required": [
|
|
1369
|
+
"required": [
|
|
1370
|
+
"animation"
|
|
1371
|
+
],
|
|
1198
1372
|
"properties": {
|
|
1199
1373
|
"animation": {
|
|
1200
1374
|
"type": "string",
|
|
@@ -1221,7 +1395,10 @@
|
|
|
1221
1395
|
"stagger": {
|
|
1222
1396
|
"type": "string",
|
|
1223
1397
|
"description": "Delay between sibling animations",
|
|
1224
|
-
"examples": [
|
|
1398
|
+
"examples": [
|
|
1399
|
+
"50ms",
|
|
1400
|
+
"100ms"
|
|
1401
|
+
],
|
|
1225
1402
|
"pattern": "^[0-9]+(\\.[0-9]+)?(ms|s)$"
|
|
1226
1403
|
}
|
|
1227
1404
|
},
|
|
@@ -1723,13 +1900,20 @@
|
|
|
1723
1900
|
"anyOf": [
|
|
1724
1901
|
{
|
|
1725
1902
|
"type": "object",
|
|
1726
|
-
"required": [
|
|
1903
|
+
"required": [
|
|
1904
|
+
"$ref",
|
|
1905
|
+
"vars"
|
|
1906
|
+
],
|
|
1727
1907
|
"properties": {
|
|
1728
1908
|
"$ref": {
|
|
1729
1909
|
"type": "string",
|
|
1730
1910
|
"description": "Name of the component to reference (kebab-case)",
|
|
1731
1911
|
"title": "Component Reference Name",
|
|
1732
|
-
"examples": [
|
|
1912
|
+
"examples": [
|
|
1913
|
+
"icon-badge",
|
|
1914
|
+
"section-header",
|
|
1915
|
+
"call-to-action"
|
|
1916
|
+
],
|
|
1733
1917
|
"pattern": "^[a-z][a-z0-9-]*$"
|
|
1734
1918
|
},
|
|
1735
1919
|
"vars": {
|
|
@@ -1755,7 +1939,12 @@
|
|
|
1755
1939
|
"type": "string",
|
|
1756
1940
|
"description": "Variable name (alphanumeric)",
|
|
1757
1941
|
"title": "Component Variable Key",
|
|
1758
|
-
"examples": [
|
|
1942
|
+
"examples": [
|
|
1943
|
+
"color",
|
|
1944
|
+
"icon",
|
|
1945
|
+
"text",
|
|
1946
|
+
"titleColor"
|
|
1947
|
+
],
|
|
1759
1948
|
"pattern": "^[a-zA-Z][a-zA-Z0-9]*$"
|
|
1760
1949
|
},
|
|
1761
1950
|
"description": "Variables to substitute in the component template",
|
|
@@ -1768,13 +1957,20 @@
|
|
|
1768
1957
|
},
|
|
1769
1958
|
{
|
|
1770
1959
|
"type": "object",
|
|
1771
|
-
"required": [
|
|
1960
|
+
"required": [
|
|
1961
|
+
"component",
|
|
1962
|
+
"vars"
|
|
1963
|
+
],
|
|
1772
1964
|
"properties": {
|
|
1773
1965
|
"component": {
|
|
1774
1966
|
"type": "string",
|
|
1775
1967
|
"description": "Name of the component to reference (kebab-case)",
|
|
1776
1968
|
"title": "Component Reference Name",
|
|
1777
|
-
"examples": [
|
|
1969
|
+
"examples": [
|
|
1970
|
+
"icon-badge",
|
|
1971
|
+
"section-header",
|
|
1972
|
+
"call-to-action"
|
|
1973
|
+
],
|
|
1778
1974
|
"pattern": "^[a-z][a-z0-9-]*$"
|
|
1779
1975
|
},
|
|
1780
1976
|
"vars": {
|
|
@@ -1800,7 +1996,12 @@
|
|
|
1800
1996
|
"type": "string",
|
|
1801
1997
|
"description": "Variable name (alphanumeric)",
|
|
1802
1998
|
"title": "Component Variable Key",
|
|
1803
|
-
"examples": [
|
|
1999
|
+
"examples": [
|
|
2000
|
+
"color",
|
|
2001
|
+
"icon",
|
|
2002
|
+
"text",
|
|
2003
|
+
"titleColor"
|
|
2004
|
+
],
|
|
1804
2005
|
"pattern": "^[a-zA-Z][a-zA-Z0-9]*$"
|
|
1805
2006
|
},
|
|
1806
2007
|
"description": "Variables to substitute in the component template",
|
|
@@ -1813,13 +2014,19 @@
|
|
|
1813
2014
|
},
|
|
1814
2015
|
{
|
|
1815
2016
|
"type": "object",
|
|
1816
|
-
"required": [
|
|
2017
|
+
"required": [
|
|
2018
|
+
"component"
|
|
2019
|
+
],
|
|
1817
2020
|
"properties": {
|
|
1818
2021
|
"component": {
|
|
1819
2022
|
"type": "string",
|
|
1820
2023
|
"description": "Name of the component to reference (kebab-case)",
|
|
1821
2024
|
"title": "Component Reference Name",
|
|
1822
|
-
"examples": [
|
|
2025
|
+
"examples": [
|
|
2026
|
+
"icon-badge",
|
|
2027
|
+
"section-header",
|
|
2028
|
+
"call-to-action"
|
|
2029
|
+
],
|
|
1823
2030
|
"pattern": "^[a-z][a-z0-9-]*$"
|
|
1824
2031
|
}
|
|
1825
2032
|
},
|
|
@@ -1890,7 +2097,9 @@
|
|
|
1890
2097
|
"type": "array",
|
|
1891
2098
|
"items": {
|
|
1892
2099
|
"type": "object",
|
|
1893
|
-
"required": [
|
|
2100
|
+
"required": [
|
|
2101
|
+
"src"
|
|
2102
|
+
],
|
|
1894
2103
|
"properties": {
|
|
1895
2104
|
"src": {
|
|
1896
2105
|
"type": "string",
|
|
@@ -1917,12 +2126,19 @@
|
|
|
1917
2126
|
},
|
|
1918
2127
|
"crossorigin": {
|
|
1919
2128
|
"type": "string",
|
|
1920
|
-
"enum": [
|
|
2129
|
+
"enum": [
|
|
2130
|
+
"anonymous",
|
|
2131
|
+
"use-credentials"
|
|
2132
|
+
],
|
|
1921
2133
|
"description": "CORS setting for cross-origin scripts"
|
|
1922
2134
|
},
|
|
1923
2135
|
"position": {
|
|
1924
2136
|
"type": "string",
|
|
1925
|
-
"enum": [
|
|
2137
|
+
"enum": [
|
|
2138
|
+
"head",
|
|
2139
|
+
"body-start",
|
|
2140
|
+
"body-end"
|
|
2141
|
+
],
|
|
1926
2142
|
"description": "Where to insert the script in the document"
|
|
1927
2143
|
}
|
|
1928
2144
|
},
|
|
@@ -1936,7 +2152,9 @@
|
|
|
1936
2152
|
"type": "array",
|
|
1937
2153
|
"items": {
|
|
1938
2154
|
"type": "object",
|
|
1939
|
-
"required": [
|
|
2155
|
+
"required": [
|
|
2156
|
+
"src"
|
|
2157
|
+
],
|
|
1940
2158
|
"properties": {
|
|
1941
2159
|
"src": {
|
|
1942
2160
|
"type": "string",
|
|
@@ -1963,12 +2181,19 @@
|
|
|
1963
2181
|
},
|
|
1964
2182
|
"crossorigin": {
|
|
1965
2183
|
"type": "string",
|
|
1966
|
-
"enum": [
|
|
2184
|
+
"enum": [
|
|
2185
|
+
"anonymous",
|
|
2186
|
+
"use-credentials"
|
|
2187
|
+
],
|
|
1967
2188
|
"description": "CORS setting for cross-origin scripts"
|
|
1968
2189
|
},
|
|
1969
2190
|
"position": {
|
|
1970
2191
|
"type": "string",
|
|
1971
|
-
"enum": [
|
|
2192
|
+
"enum": [
|
|
2193
|
+
"head",
|
|
2194
|
+
"body-start",
|
|
2195
|
+
"body-end"
|
|
2196
|
+
],
|
|
1972
2197
|
"description": "Where to insert the script in the document"
|
|
1973
2198
|
}
|
|
1974
2199
|
},
|
|
@@ -1982,7 +2207,9 @@
|
|
|
1982
2207
|
"type": "array",
|
|
1983
2208
|
"items": {
|
|
1984
2209
|
"type": "object",
|
|
1985
|
-
"required": [
|
|
2210
|
+
"required": [
|
|
2211
|
+
"code"
|
|
2212
|
+
],
|
|
1986
2213
|
"properties": {
|
|
1987
2214
|
"code": {
|
|
1988
2215
|
"type": "string",
|
|
@@ -1990,7 +2217,11 @@
|
|
|
1990
2217
|
},
|
|
1991
2218
|
"position": {
|
|
1992
2219
|
"type": "string",
|
|
1993
|
-
"enum": [
|
|
2220
|
+
"enum": [
|
|
2221
|
+
"head",
|
|
2222
|
+
"body-start",
|
|
2223
|
+
"body-end"
|
|
2224
|
+
],
|
|
1994
2225
|
"description": "Where to insert the script in the document"
|
|
1995
2226
|
},
|
|
1996
2227
|
"async": {
|
|
@@ -2073,7 +2304,9 @@
|
|
|
2073
2304
|
"anyOf": [
|
|
2074
2305
|
{
|
|
2075
2306
|
"type": "object",
|
|
2076
|
-
"required": [
|
|
2307
|
+
"required": [
|
|
2308
|
+
"type"
|
|
2309
|
+
],
|
|
2077
2310
|
"properties": {
|
|
2078
2311
|
"type": {
|
|
2079
2312
|
"type": "string",
|
|
@@ -2226,12 +2459,20 @@
|
|
|
2226
2459
|
"scale": {
|
|
2227
2460
|
"type": "number",
|
|
2228
2461
|
"description": "Scale factor (e.g., 1.05 for 5% larger)",
|
|
2229
|
-
"examples": [
|
|
2462
|
+
"examples": [
|
|
2463
|
+
1.05,
|
|
2464
|
+
1.1,
|
|
2465
|
+
0.95
|
|
2466
|
+
]
|
|
2230
2467
|
},
|
|
2231
2468
|
"transform": {
|
|
2232
2469
|
"type": "string",
|
|
2233
2470
|
"description": "CSS transform (scale, rotate, translate)",
|
|
2234
|
-
"examples": [
|
|
2471
|
+
"examples": [
|
|
2472
|
+
"scale(1.05)",
|
|
2473
|
+
"translateY(-4px)",
|
|
2474
|
+
"rotate(5deg)"
|
|
2475
|
+
]
|
|
2235
2476
|
},
|
|
2236
2477
|
"opacity": {
|
|
2237
2478
|
"type": "number",
|
|
@@ -2255,7 +2496,9 @@
|
|
|
2255
2496
|
"shadow": {
|
|
2256
2497
|
"type": "string",
|
|
2257
2498
|
"description": "Box shadow on hover",
|
|
2258
|
-
"examples": [
|
|
2499
|
+
"examples": [
|
|
2500
|
+
"0 10px 25px rgba(0,0,0,0.1)"
|
|
2501
|
+
]
|
|
2259
2502
|
},
|
|
2260
2503
|
"duration": {
|
|
2261
2504
|
"type": "string",
|
|
@@ -2266,7 +2509,13 @@
|
|
|
2266
2509
|
"anyOf": [
|
|
2267
2510
|
{
|
|
2268
2511
|
"type": "string",
|
|
2269
|
-
"enum": [
|
|
2512
|
+
"enum": [
|
|
2513
|
+
"linear",
|
|
2514
|
+
"ease",
|
|
2515
|
+
"ease-in",
|
|
2516
|
+
"ease-out",
|
|
2517
|
+
"ease-in-out"
|
|
2518
|
+
]
|
|
2270
2519
|
},
|
|
2271
2520
|
{
|
|
2272
2521
|
"type": "string",
|
|
@@ -2292,13 +2541,24 @@
|
|
|
2292
2541
|
"properties": {
|
|
2293
2542
|
"animation": {
|
|
2294
2543
|
"type": "string",
|
|
2295
|
-
"enum": [
|
|
2544
|
+
"enum": [
|
|
2545
|
+
"pulse",
|
|
2546
|
+
"bounce",
|
|
2547
|
+
"shake",
|
|
2548
|
+
"flash",
|
|
2549
|
+
"ripple",
|
|
2550
|
+
"none"
|
|
2551
|
+
],
|
|
2296
2552
|
"description": "Animation to trigger on click"
|
|
2297
2553
|
},
|
|
2298
2554
|
"navigate": {
|
|
2299
2555
|
"type": "string",
|
|
2300
2556
|
"description": "Path to navigate to",
|
|
2301
|
-
"examples": [
|
|
2557
|
+
"examples": [
|
|
2558
|
+
"/contact",
|
|
2559
|
+
"/pricing",
|
|
2560
|
+
"#section-id"
|
|
2561
|
+
]
|
|
2302
2562
|
},
|
|
2303
2563
|
"openUrl": {
|
|
2304
2564
|
"type": "string",
|
|
@@ -2329,7 +2589,9 @@
|
|
|
2329
2589
|
},
|
|
2330
2590
|
"scroll": {
|
|
2331
2591
|
"type": "object",
|
|
2332
|
-
"required": [
|
|
2592
|
+
"required": [
|
|
2593
|
+
"animation"
|
|
2594
|
+
],
|
|
2333
2595
|
"properties": {
|
|
2334
2596
|
"animation": {
|
|
2335
2597
|
"type": "string",
|
|
@@ -2355,7 +2617,11 @@
|
|
|
2355
2617
|
"delay": {
|
|
2356
2618
|
"type": "string",
|
|
2357
2619
|
"description": "Delay before animation starts",
|
|
2358
|
-
"examples": [
|
|
2620
|
+
"examples": [
|
|
2621
|
+
"0ms",
|
|
2622
|
+
"100ms",
|
|
2623
|
+
"0.5s"
|
|
2624
|
+
],
|
|
2359
2625
|
"pattern": "^[0-9]+(\\.[0-9]+)?(ms|s)$"
|
|
2360
2626
|
},
|
|
2361
2627
|
"duration": {
|
|
@@ -2374,7 +2640,9 @@
|
|
|
2374
2640
|
},
|
|
2375
2641
|
"entrance": {
|
|
2376
2642
|
"type": "object",
|
|
2377
|
-
"required": [
|
|
2643
|
+
"required": [
|
|
2644
|
+
"animation"
|
|
2645
|
+
],
|
|
2378
2646
|
"properties": {
|
|
2379
2647
|
"animation": {
|
|
2380
2648
|
"type": "string",
|
|
@@ -2401,7 +2669,10 @@
|
|
|
2401
2669
|
"stagger": {
|
|
2402
2670
|
"type": "string",
|
|
2403
2671
|
"description": "Delay between sibling animations",
|
|
2404
|
-
"examples": [
|
|
2672
|
+
"examples": [
|
|
2673
|
+
"50ms",
|
|
2674
|
+
"100ms"
|
|
2675
|
+
],
|
|
2405
2676
|
"pattern": "^[0-9]+(\\.[0-9]+)?(ms|s)$"
|
|
2406
2677
|
}
|
|
2407
2678
|
},
|
|
@@ -2903,13 +3174,20 @@
|
|
|
2903
3174
|
"anyOf": [
|
|
2904
3175
|
{
|
|
2905
3176
|
"type": "object",
|
|
2906
|
-
"required": [
|
|
3177
|
+
"required": [
|
|
3178
|
+
"$ref",
|
|
3179
|
+
"vars"
|
|
3180
|
+
],
|
|
2907
3181
|
"properties": {
|
|
2908
3182
|
"$ref": {
|
|
2909
3183
|
"type": "string",
|
|
2910
3184
|
"description": "Name of the component to reference (kebab-case)",
|
|
2911
3185
|
"title": "Component Reference Name",
|
|
2912
|
-
"examples": [
|
|
3186
|
+
"examples": [
|
|
3187
|
+
"icon-badge",
|
|
3188
|
+
"section-header",
|
|
3189
|
+
"call-to-action"
|
|
3190
|
+
],
|
|
2913
3191
|
"pattern": "^[a-z][a-z0-9-]*$"
|
|
2914
3192
|
},
|
|
2915
3193
|
"vars": {
|
|
@@ -2935,7 +3213,12 @@
|
|
|
2935
3213
|
"type": "string",
|
|
2936
3214
|
"description": "Variable name (alphanumeric)",
|
|
2937
3215
|
"title": "Component Variable Key",
|
|
2938
|
-
"examples": [
|
|
3216
|
+
"examples": [
|
|
3217
|
+
"color",
|
|
3218
|
+
"icon",
|
|
3219
|
+
"text",
|
|
3220
|
+
"titleColor"
|
|
3221
|
+
],
|
|
2939
3222
|
"pattern": "^[a-zA-Z][a-zA-Z0-9]*$"
|
|
2940
3223
|
},
|
|
2941
3224
|
"description": "Variables to substitute in the component template",
|
|
@@ -2948,13 +3231,20 @@
|
|
|
2948
3231
|
},
|
|
2949
3232
|
{
|
|
2950
3233
|
"type": "object",
|
|
2951
|
-
"required": [
|
|
3234
|
+
"required": [
|
|
3235
|
+
"component",
|
|
3236
|
+
"vars"
|
|
3237
|
+
],
|
|
2952
3238
|
"properties": {
|
|
2953
3239
|
"component": {
|
|
2954
3240
|
"type": "string",
|
|
2955
3241
|
"description": "Name of the component to reference (kebab-case)",
|
|
2956
3242
|
"title": "Component Reference Name",
|
|
2957
|
-
"examples": [
|
|
3243
|
+
"examples": [
|
|
3244
|
+
"icon-badge",
|
|
3245
|
+
"section-header",
|
|
3246
|
+
"call-to-action"
|
|
3247
|
+
],
|
|
2958
3248
|
"pattern": "^[a-z][a-z0-9-]*$"
|
|
2959
3249
|
},
|
|
2960
3250
|
"vars": {
|
|
@@ -2980,7 +3270,12 @@
|
|
|
2980
3270
|
"type": "string",
|
|
2981
3271
|
"description": "Variable name (alphanumeric)",
|
|
2982
3272
|
"title": "Component Variable Key",
|
|
2983
|
-
"examples": [
|
|
3273
|
+
"examples": [
|
|
3274
|
+
"color",
|
|
3275
|
+
"icon",
|
|
3276
|
+
"text",
|
|
3277
|
+
"titleColor"
|
|
3278
|
+
],
|
|
2984
3279
|
"pattern": "^[a-zA-Z][a-zA-Z0-9]*$"
|
|
2985
3280
|
},
|
|
2986
3281
|
"description": "Variables to substitute in the component template",
|
|
@@ -2993,13 +3288,19 @@
|
|
|
2993
3288
|
},
|
|
2994
3289
|
{
|
|
2995
3290
|
"type": "object",
|
|
2996
|
-
"required": [
|
|
3291
|
+
"required": [
|
|
3292
|
+
"component"
|
|
3293
|
+
],
|
|
2997
3294
|
"properties": {
|
|
2998
3295
|
"component": {
|
|
2999
3296
|
"type": "string",
|
|
3000
3297
|
"description": "Name of the component to reference (kebab-case)",
|
|
3001
3298
|
"title": "Component Reference Name",
|
|
3002
|
-
"examples": [
|
|
3299
|
+
"examples": [
|
|
3300
|
+
"icon-badge",
|
|
3301
|
+
"section-header",
|
|
3302
|
+
"call-to-action"
|
|
3303
|
+
],
|
|
3003
3304
|
"pattern": "^[a-z][a-z0-9-]*$"
|
|
3004
3305
|
}
|
|
3005
3306
|
},
|
|
@@ -3016,7 +3317,9 @@
|
|
|
3016
3317
|
}
|
|
3017
3318
|
},
|
|
3018
3319
|
"type": "object",
|
|
3019
|
-
"required": [
|
|
3320
|
+
"required": [
|
|
3321
|
+
"name"
|
|
3322
|
+
],
|
|
3020
3323
|
"properties": {
|
|
3021
3324
|
"name": {
|
|
3022
3325
|
"type": "string",
|
|
@@ -3024,7 +3327,13 @@
|
|
|
3024
3327
|
"title": "Application Name",
|
|
3025
3328
|
"minLength": 1,
|
|
3026
3329
|
"maxLength": 214,
|
|
3027
|
-
"examples": [
|
|
3330
|
+
"examples": [
|
|
3331
|
+
"my-app",
|
|
3332
|
+
"todo-app",
|
|
3333
|
+
"@myorg/my-app",
|
|
3334
|
+
"blog-system",
|
|
3335
|
+
"dashboard-admin"
|
|
3336
|
+
],
|
|
3028
3337
|
"pattern": "^(?:@[a-z0-9-~][a-z0-9-._~]*\\/)?[a-z0-9-~][a-z0-9-._~]*$"
|
|
3029
3338
|
},
|
|
3030
3339
|
"version": {
|
|
@@ -3061,7 +3370,10 @@
|
|
|
3061
3370
|
"type": "array",
|
|
3062
3371
|
"items": {
|
|
3063
3372
|
"type": "object",
|
|
3064
|
-
"required": [
|
|
3373
|
+
"required": [
|
|
3374
|
+
"name",
|
|
3375
|
+
"fields"
|
|
3376
|
+
],
|
|
3065
3377
|
"properties": {
|
|
3066
3378
|
"id": {
|
|
3067
3379
|
"$ref": "#/$defs/TableId"
|
|
@@ -3079,7 +3391,11 @@
|
|
|
3079
3391
|
"anyOf": [
|
|
3080
3392
|
{
|
|
3081
3393
|
"type": "object",
|
|
3082
|
-
"required": [
|
|
3394
|
+
"required": [
|
|
3395
|
+
"id",
|
|
3396
|
+
"name",
|
|
3397
|
+
"type"
|
|
3398
|
+
],
|
|
3083
3399
|
"properties": {
|
|
3084
3400
|
"id": {
|
|
3085
3401
|
"$ref": "#/$defs/FieldId"
|
|
@@ -3103,7 +3419,9 @@
|
|
|
3103
3419
|
},
|
|
3104
3420
|
"type": {
|
|
3105
3421
|
"type": "string",
|
|
3106
|
-
"enum": [
|
|
3422
|
+
"enum": [
|
|
3423
|
+
"single-line-text"
|
|
3424
|
+
],
|
|
3107
3425
|
"description": "Constant value 'single-line-text' for type discrimination in discriminated unions"
|
|
3108
3426
|
},
|
|
3109
3427
|
"default": {
|
|
@@ -3134,7 +3452,11 @@
|
|
|
3134
3452
|
},
|
|
3135
3453
|
{
|
|
3136
3454
|
"type": "object",
|
|
3137
|
-
"required": [
|
|
3455
|
+
"required": [
|
|
3456
|
+
"id",
|
|
3457
|
+
"name",
|
|
3458
|
+
"type"
|
|
3459
|
+
],
|
|
3138
3460
|
"properties": {
|
|
3139
3461
|
"id": {
|
|
3140
3462
|
"$ref": "#/$defs/FieldId"
|
|
@@ -3158,7 +3480,9 @@
|
|
|
3158
3480
|
},
|
|
3159
3481
|
"type": {
|
|
3160
3482
|
"type": "string",
|
|
3161
|
-
"enum": [
|
|
3483
|
+
"enum": [
|
|
3484
|
+
"long-text"
|
|
3485
|
+
],
|
|
3162
3486
|
"description": "Constant value 'long-text' for type discrimination in discriminated unions"
|
|
3163
3487
|
},
|
|
3164
3488
|
"default": {
|
|
@@ -3188,7 +3512,11 @@
|
|
|
3188
3512
|
},
|
|
3189
3513
|
{
|
|
3190
3514
|
"type": "object",
|
|
3191
|
-
"required": [
|
|
3515
|
+
"required": [
|
|
3516
|
+
"id",
|
|
3517
|
+
"name",
|
|
3518
|
+
"type"
|
|
3519
|
+
],
|
|
3192
3520
|
"properties": {
|
|
3193
3521
|
"id": {
|
|
3194
3522
|
"$ref": "#/$defs/FieldId"
|
|
@@ -3212,7 +3540,9 @@
|
|
|
3212
3540
|
},
|
|
3213
3541
|
"type": {
|
|
3214
3542
|
"type": "string",
|
|
3215
|
-
"enum": [
|
|
3543
|
+
"enum": [
|
|
3544
|
+
"phone-number"
|
|
3545
|
+
],
|
|
3216
3546
|
"description": "Constant value 'phone-number' for type discrimination in discriminated unions"
|
|
3217
3547
|
},
|
|
3218
3548
|
"default": {
|
|
@@ -3243,7 +3573,11 @@
|
|
|
3243
3573
|
},
|
|
3244
3574
|
{
|
|
3245
3575
|
"type": "object",
|
|
3246
|
-
"required": [
|
|
3576
|
+
"required": [
|
|
3577
|
+
"id",
|
|
3578
|
+
"name",
|
|
3579
|
+
"type"
|
|
3580
|
+
],
|
|
3247
3581
|
"properties": {
|
|
3248
3582
|
"id": {
|
|
3249
3583
|
"$ref": "#/$defs/FieldId"
|
|
@@ -3267,7 +3601,9 @@
|
|
|
3267
3601
|
},
|
|
3268
3602
|
"type": {
|
|
3269
3603
|
"type": "string",
|
|
3270
|
-
"enum": [
|
|
3604
|
+
"enum": [
|
|
3605
|
+
"email"
|
|
3606
|
+
],
|
|
3271
3607
|
"description": "Constant value 'email' for type discrimination in discriminated unions"
|
|
3272
3608
|
},
|
|
3273
3609
|
"default": {
|
|
@@ -3298,7 +3634,11 @@
|
|
|
3298
3634
|
},
|
|
3299
3635
|
{
|
|
3300
3636
|
"type": "object",
|
|
3301
|
-
"required": [
|
|
3637
|
+
"required": [
|
|
3638
|
+
"id",
|
|
3639
|
+
"name",
|
|
3640
|
+
"type"
|
|
3641
|
+
],
|
|
3302
3642
|
"properties": {
|
|
3303
3643
|
"id": {
|
|
3304
3644
|
"$ref": "#/$defs/FieldId"
|
|
@@ -3322,7 +3662,9 @@
|
|
|
3322
3662
|
},
|
|
3323
3663
|
"type": {
|
|
3324
3664
|
"type": "string",
|
|
3325
|
-
"enum": [
|
|
3665
|
+
"enum": [
|
|
3666
|
+
"url"
|
|
3667
|
+
],
|
|
3326
3668
|
"description": "Constant value 'url' for type discrimination in discriminated unions"
|
|
3327
3669
|
},
|
|
3328
3670
|
"default": {
|
|
@@ -3353,7 +3695,11 @@
|
|
|
3353
3695
|
},
|
|
3354
3696
|
{
|
|
3355
3697
|
"type": "object",
|
|
3356
|
-
"required": [
|
|
3698
|
+
"required": [
|
|
3699
|
+
"id",
|
|
3700
|
+
"name",
|
|
3701
|
+
"type"
|
|
3702
|
+
],
|
|
3357
3703
|
"properties": {
|
|
3358
3704
|
"id": {
|
|
3359
3705
|
"$ref": "#/$defs/FieldId"
|
|
@@ -3377,7 +3723,9 @@
|
|
|
3377
3723
|
},
|
|
3378
3724
|
"type": {
|
|
3379
3725
|
"type": "string",
|
|
3380
|
-
"enum": [
|
|
3726
|
+
"enum": [
|
|
3727
|
+
"integer"
|
|
3728
|
+
],
|
|
3381
3729
|
"description": "Constant value 'integer' for type discrimination in discriminated unions"
|
|
3382
3730
|
},
|
|
3383
3731
|
"min": {
|
|
@@ -3398,7 +3746,11 @@
|
|
|
3398
3746
|
},
|
|
3399
3747
|
{
|
|
3400
3748
|
"type": "object",
|
|
3401
|
-
"required": [
|
|
3749
|
+
"required": [
|
|
3750
|
+
"id",
|
|
3751
|
+
"name",
|
|
3752
|
+
"type"
|
|
3753
|
+
],
|
|
3402
3754
|
"properties": {
|
|
3403
3755
|
"id": {
|
|
3404
3756
|
"$ref": "#/$defs/FieldId"
|
|
@@ -3422,7 +3774,9 @@
|
|
|
3422
3774
|
},
|
|
3423
3775
|
"type": {
|
|
3424
3776
|
"type": "string",
|
|
3425
|
-
"enum": [
|
|
3777
|
+
"enum": [
|
|
3778
|
+
"decimal"
|
|
3779
|
+
],
|
|
3426
3780
|
"description": "Constant value 'decimal' for type discrimination in discriminated unions"
|
|
3427
3781
|
},
|
|
3428
3782
|
"precision": {
|
|
@@ -3449,7 +3803,12 @@
|
|
|
3449
3803
|
},
|
|
3450
3804
|
{
|
|
3451
3805
|
"type": "object",
|
|
3452
|
-
"required": [
|
|
3806
|
+
"required": [
|
|
3807
|
+
"id",
|
|
3808
|
+
"name",
|
|
3809
|
+
"type",
|
|
3810
|
+
"currency"
|
|
3811
|
+
],
|
|
3453
3812
|
"properties": {
|
|
3454
3813
|
"id": {
|
|
3455
3814
|
"$ref": "#/$defs/FieldId"
|
|
@@ -3473,7 +3832,9 @@
|
|
|
3473
3832
|
},
|
|
3474
3833
|
"type": {
|
|
3475
3834
|
"type": "string",
|
|
3476
|
-
"enum": [
|
|
3835
|
+
"enum": [
|
|
3836
|
+
"currency"
|
|
3837
|
+
],
|
|
3477
3838
|
"description": "Constant value 'currency' for type discrimination in discriminated unions"
|
|
3478
3839
|
},
|
|
3479
3840
|
"currency": {
|
|
@@ -3482,7 +3843,14 @@
|
|
|
3482
3843
|
"title": "length(3)",
|
|
3483
3844
|
"minLength": 3,
|
|
3484
3845
|
"maxLength": 3,
|
|
3485
|
-
"examples": [
|
|
3846
|
+
"examples": [
|
|
3847
|
+
"USD",
|
|
3848
|
+
"EUR",
|
|
3849
|
+
"GBP",
|
|
3850
|
+
"JPY",
|
|
3851
|
+
"CAD",
|
|
3852
|
+
"AUD"
|
|
3853
|
+
],
|
|
3486
3854
|
"pattern": "^[A-Z]{3}$"
|
|
3487
3855
|
},
|
|
3488
3856
|
"precision": {
|
|
@@ -3502,21 +3870,43 @@
|
|
|
3502
3870
|
},
|
|
3503
3871
|
"symbolPosition": {
|
|
3504
3872
|
"type": "string",
|
|
3505
|
-
"enum": [
|
|
3873
|
+
"enum": [
|
|
3874
|
+
"before",
|
|
3875
|
+
"after"
|
|
3876
|
+
],
|
|
3506
3877
|
"description": "Position of currency symbol relative to the amount",
|
|
3507
|
-
"examples": [
|
|
3878
|
+
"examples": [
|
|
3879
|
+
"before",
|
|
3880
|
+
"after"
|
|
3881
|
+
]
|
|
3508
3882
|
},
|
|
3509
3883
|
"negativeFormat": {
|
|
3510
3884
|
"type": "string",
|
|
3511
|
-
"enum": [
|
|
3885
|
+
"enum": [
|
|
3886
|
+
"minus",
|
|
3887
|
+
"parentheses"
|
|
3888
|
+
],
|
|
3512
3889
|
"description": "Format for displaying negative amounts",
|
|
3513
|
-
"examples": [
|
|
3890
|
+
"examples": [
|
|
3891
|
+
"minus",
|
|
3892
|
+
"parentheses"
|
|
3893
|
+
]
|
|
3514
3894
|
},
|
|
3515
3895
|
"thousandsSeparator": {
|
|
3516
3896
|
"type": "string",
|
|
3517
|
-
"enum": [
|
|
3897
|
+
"enum": [
|
|
3898
|
+
"comma",
|
|
3899
|
+
"period",
|
|
3900
|
+
"space",
|
|
3901
|
+
"none"
|
|
3902
|
+
],
|
|
3518
3903
|
"description": "Character used to separate thousands",
|
|
3519
|
-
"examples": [
|
|
3904
|
+
"examples": [
|
|
3905
|
+
"comma",
|
|
3906
|
+
"period",
|
|
3907
|
+
"space",
|
|
3908
|
+
"none"
|
|
3909
|
+
]
|
|
3520
3910
|
},
|
|
3521
3911
|
"default": {
|
|
3522
3912
|
"type": "number",
|
|
@@ -3527,7 +3917,11 @@
|
|
|
3527
3917
|
},
|
|
3528
3918
|
{
|
|
3529
3919
|
"type": "object",
|
|
3530
|
-
"required": [
|
|
3920
|
+
"required": [
|
|
3921
|
+
"id",
|
|
3922
|
+
"name",
|
|
3923
|
+
"type"
|
|
3924
|
+
],
|
|
3531
3925
|
"properties": {
|
|
3532
3926
|
"id": {
|
|
3533
3927
|
"$ref": "#/$defs/FieldId"
|
|
@@ -3551,7 +3945,9 @@
|
|
|
3551
3945
|
},
|
|
3552
3946
|
"type": {
|
|
3553
3947
|
"type": "string",
|
|
3554
|
-
"enum": [
|
|
3948
|
+
"enum": [
|
|
3949
|
+
"percentage"
|
|
3950
|
+
],
|
|
3555
3951
|
"description": "Constant value 'percentage' for type discrimination in discriminated unions"
|
|
3556
3952
|
},
|
|
3557
3953
|
"precision": {
|
|
@@ -3578,7 +3974,11 @@
|
|
|
3578
3974
|
},
|
|
3579
3975
|
{
|
|
3580
3976
|
"type": "object",
|
|
3581
|
-
"required": [
|
|
3977
|
+
"required": [
|
|
3978
|
+
"id",
|
|
3979
|
+
"name",
|
|
3980
|
+
"type"
|
|
3981
|
+
],
|
|
3582
3982
|
"properties": {
|
|
3583
3983
|
"id": {
|
|
3584
3984
|
"$ref": "#/$defs/FieldId"
|
|
@@ -3602,24 +4002,46 @@
|
|
|
3602
4002
|
},
|
|
3603
4003
|
"type": {
|
|
3604
4004
|
"type": "string",
|
|
3605
|
-
"enum": [
|
|
4005
|
+
"enum": [
|
|
4006
|
+
"date",
|
|
4007
|
+
"datetime",
|
|
4008
|
+
"time"
|
|
4009
|
+
]
|
|
3606
4010
|
},
|
|
3607
4011
|
"format": {
|
|
3608
4012
|
"type": "string",
|
|
3609
4013
|
"description": "Date format string",
|
|
3610
|
-
"examples": [
|
|
4014
|
+
"examples": [
|
|
4015
|
+
"YYYY-MM-DD",
|
|
4016
|
+
"MM/DD/YYYY",
|
|
4017
|
+
"DD-MM-YYYY"
|
|
4018
|
+
]
|
|
3611
4019
|
},
|
|
3612
4020
|
"dateFormat": {
|
|
3613
4021
|
"type": "string",
|
|
3614
|
-
"enum": [
|
|
4022
|
+
"enum": [
|
|
4023
|
+
"US",
|
|
4024
|
+
"European",
|
|
4025
|
+
"ISO"
|
|
4026
|
+
],
|
|
3615
4027
|
"description": "Date display format preset",
|
|
3616
|
-
"examples": [
|
|
4028
|
+
"examples": [
|
|
4029
|
+
"US",
|
|
4030
|
+
"European",
|
|
4031
|
+
"ISO"
|
|
4032
|
+
]
|
|
3617
4033
|
},
|
|
3618
4034
|
"timeFormat": {
|
|
3619
4035
|
"type": "string",
|
|
3620
|
-
"enum": [
|
|
4036
|
+
"enum": [
|
|
4037
|
+
"12-hour",
|
|
4038
|
+
"24-hour"
|
|
4039
|
+
],
|
|
3621
4040
|
"description": "Time display format (12-hour with AM/PM or 24-hour)",
|
|
3622
|
-
"examples": [
|
|
4041
|
+
"examples": [
|
|
4042
|
+
"12-hour",
|
|
4043
|
+
"24-hour"
|
|
4044
|
+
]
|
|
3623
4045
|
},
|
|
3624
4046
|
"includeTime": {
|
|
3625
4047
|
"type": "boolean"
|
|
@@ -3627,20 +4049,30 @@
|
|
|
3627
4049
|
"timezone": {
|
|
3628
4050
|
"type": "string",
|
|
3629
4051
|
"description": "Timezone for datetime fields",
|
|
3630
|
-
"examples": [
|
|
4052
|
+
"examples": [
|
|
4053
|
+
"UTC",
|
|
4054
|
+
"America/New_York",
|
|
4055
|
+
"Europe/London"
|
|
4056
|
+
]
|
|
3631
4057
|
},
|
|
3632
4058
|
"timeZone": {
|
|
3633
4059
|
"anyOf": [
|
|
3634
4060
|
{
|
|
3635
4061
|
"type": "string",
|
|
3636
|
-
"enum": [
|
|
4062
|
+
"enum": [
|
|
4063
|
+
"local"
|
|
4064
|
+
]
|
|
3637
4065
|
},
|
|
3638
4066
|
{
|
|
3639
4067
|
"type": "string"
|
|
3640
4068
|
}
|
|
3641
4069
|
],
|
|
3642
4070
|
"description": "Timezone setting (specific timezone or \"local\" for browser timezone)",
|
|
3643
|
-
"examples": [
|
|
4071
|
+
"examples": [
|
|
4072
|
+
"local",
|
|
4073
|
+
"America/New_York",
|
|
4074
|
+
"Europe/Paris"
|
|
4075
|
+
]
|
|
3644
4076
|
},
|
|
3645
4077
|
"default": {
|
|
3646
4078
|
"type": "string"
|
|
@@ -3662,7 +4094,11 @@
|
|
|
3662
4094
|
},
|
|
3663
4095
|
{
|
|
3664
4096
|
"type": "object",
|
|
3665
|
-
"required": [
|
|
4097
|
+
"required": [
|
|
4098
|
+
"id",
|
|
4099
|
+
"name",
|
|
4100
|
+
"type"
|
|
4101
|
+
],
|
|
3666
4102
|
"properties": {
|
|
3667
4103
|
"id": {
|
|
3668
4104
|
"$ref": "#/$defs/FieldId"
|
|
@@ -3686,7 +4122,9 @@
|
|
|
3686
4122
|
},
|
|
3687
4123
|
"type": {
|
|
3688
4124
|
"type": "string",
|
|
3689
|
-
"enum": [
|
|
4125
|
+
"enum": [
|
|
4126
|
+
"checkbox"
|
|
4127
|
+
]
|
|
3690
4128
|
},
|
|
3691
4129
|
"default": {
|
|
3692
4130
|
"type": "boolean"
|
|
@@ -3707,7 +4145,12 @@
|
|
|
3707
4145
|
},
|
|
3708
4146
|
{
|
|
3709
4147
|
"type": "object",
|
|
3710
|
-
"required": [
|
|
4148
|
+
"required": [
|
|
4149
|
+
"id",
|
|
4150
|
+
"name",
|
|
4151
|
+
"type",
|
|
4152
|
+
"options"
|
|
4153
|
+
],
|
|
3711
4154
|
"properties": {
|
|
3712
4155
|
"id": {
|
|
3713
4156
|
"$ref": "#/$defs/FieldId"
|
|
@@ -3731,7 +4174,9 @@
|
|
|
3731
4174
|
},
|
|
3732
4175
|
"type": {
|
|
3733
4176
|
"type": "string",
|
|
3734
|
-
"enum": [
|
|
4177
|
+
"enum": [
|
|
4178
|
+
"single-select"
|
|
4179
|
+
]
|
|
3735
4180
|
},
|
|
3736
4181
|
"options": {
|
|
3737
4182
|
"type": "array",
|
|
@@ -3754,14 +4199,23 @@
|
|
|
3754
4199
|
"id": 1,
|
|
3755
4200
|
"name": "category",
|
|
3756
4201
|
"type": "single-select",
|
|
3757
|
-
"options": [
|
|
4202
|
+
"options": [
|
|
4203
|
+
"Electronics",
|
|
4204
|
+
"Clothing",
|
|
4205
|
+
"Food"
|
|
4206
|
+
],
|
|
3758
4207
|
"default": "Electronics"
|
|
3759
4208
|
}
|
|
3760
4209
|
]
|
|
3761
4210
|
},
|
|
3762
4211
|
{
|
|
3763
4212
|
"type": "object",
|
|
3764
|
-
"required": [
|
|
4213
|
+
"required": [
|
|
4214
|
+
"id",
|
|
4215
|
+
"name",
|
|
4216
|
+
"type",
|
|
4217
|
+
"options"
|
|
4218
|
+
],
|
|
3765
4219
|
"properties": {
|
|
3766
4220
|
"id": {
|
|
3767
4221
|
"$ref": "#/$defs/FieldId"
|
|
@@ -3785,7 +4239,9 @@
|
|
|
3785
4239
|
},
|
|
3786
4240
|
"type": {
|
|
3787
4241
|
"type": "string",
|
|
3788
|
-
"enum": [
|
|
4242
|
+
"enum": [
|
|
4243
|
+
"multi-select"
|
|
4244
|
+
]
|
|
3789
4245
|
},
|
|
3790
4246
|
"options": {
|
|
3791
4247
|
"type": "array",
|
|
@@ -3813,11 +4269,18 @@
|
|
|
3813
4269
|
},
|
|
3814
4270
|
{
|
|
3815
4271
|
"type": "object",
|
|
3816
|
-
"required": [
|
|
4272
|
+
"required": [
|
|
4273
|
+
"type",
|
|
4274
|
+
"relatedTable",
|
|
4275
|
+
"id",
|
|
4276
|
+
"name"
|
|
4277
|
+
],
|
|
3817
4278
|
"properties": {
|
|
3818
4279
|
"type": {
|
|
3819
4280
|
"type": "string",
|
|
3820
|
-
"enum": [
|
|
4281
|
+
"enum": [
|
|
4282
|
+
"relationship"
|
|
4283
|
+
]
|
|
3821
4284
|
},
|
|
3822
4285
|
"relatedTable": {
|
|
3823
4286
|
"type": "string",
|
|
@@ -3909,7 +4372,11 @@
|
|
|
3909
4372
|
},
|
|
3910
4373
|
{
|
|
3911
4374
|
"type": "object",
|
|
3912
|
-
"required": [
|
|
4375
|
+
"required": [
|
|
4376
|
+
"id",
|
|
4377
|
+
"name",
|
|
4378
|
+
"type"
|
|
4379
|
+
],
|
|
3913
4380
|
"properties": {
|
|
3914
4381
|
"id": {
|
|
3915
4382
|
"$ref": "#/$defs/FieldId"
|
|
@@ -3933,7 +4400,9 @@
|
|
|
3933
4400
|
},
|
|
3934
4401
|
"type": {
|
|
3935
4402
|
"type": "string",
|
|
3936
|
-
"enum": [
|
|
4403
|
+
"enum": [
|
|
4404
|
+
"single-attachment"
|
|
4405
|
+
]
|
|
3937
4406
|
},
|
|
3938
4407
|
"allowedFileTypes": {
|
|
3939
4408
|
"type": "array",
|
|
@@ -3941,13 +4410,21 @@
|
|
|
3941
4410
|
"type": "string"
|
|
3942
4411
|
},
|
|
3943
4412
|
"description": "Allowed MIME types for file uploads",
|
|
3944
|
-
"examples": [
|
|
3945
|
-
|
|
4413
|
+
"examples": [
|
|
4414
|
+
[
|
|
4415
|
+
"image/png",
|
|
4416
|
+
"image/jpeg",
|
|
4417
|
+
"image/gif"
|
|
4418
|
+
]
|
|
4419
|
+
]
|
|
4420
|
+
},
|
|
3946
4421
|
"maxFileSize": {
|
|
3947
4422
|
"$ref": "#/$defs/Int",
|
|
3948
4423
|
"description": "Maximum file size in bytes",
|
|
3949
4424
|
"title": "greaterThanOrEqualTo(1)",
|
|
3950
|
-
"examples": [
|
|
4425
|
+
"examples": [
|
|
4426
|
+
5242880
|
|
4427
|
+
],
|
|
3951
4428
|
"minimum": 1
|
|
3952
4429
|
},
|
|
3953
4430
|
"generateThumbnail": {
|
|
@@ -4003,7 +4480,11 @@
|
|
|
4003
4480
|
},
|
|
4004
4481
|
{
|
|
4005
4482
|
"type": "object",
|
|
4006
|
-
"required": [
|
|
4483
|
+
"required": [
|
|
4484
|
+
"id",
|
|
4485
|
+
"name",
|
|
4486
|
+
"type"
|
|
4487
|
+
],
|
|
4007
4488
|
"properties": {
|
|
4008
4489
|
"id": {
|
|
4009
4490
|
"$ref": "#/$defs/FieldId"
|
|
@@ -4027,7 +4508,9 @@
|
|
|
4027
4508
|
},
|
|
4028
4509
|
"type": {
|
|
4029
4510
|
"type": "string",
|
|
4030
|
-
"enum": [
|
|
4511
|
+
"enum": [
|
|
4512
|
+
"multiple-attachments"
|
|
4513
|
+
]
|
|
4031
4514
|
},
|
|
4032
4515
|
"maxFiles": {
|
|
4033
4516
|
"$ref": "#/$defs/Int",
|
|
@@ -4041,13 +4524,20 @@
|
|
|
4041
4524
|
"type": "string"
|
|
4042
4525
|
},
|
|
4043
4526
|
"description": "Allowed MIME types for file uploads",
|
|
4044
|
-
"examples": [
|
|
4527
|
+
"examples": [
|
|
4528
|
+
[
|
|
4529
|
+
"application/pdf",
|
|
4530
|
+
"application/msword"
|
|
4531
|
+
]
|
|
4532
|
+
]
|
|
4045
4533
|
},
|
|
4046
4534
|
"maxFileSize": {
|
|
4047
4535
|
"$ref": "#/$defs/Int",
|
|
4048
4536
|
"description": "Maximum file size in bytes per attachment",
|
|
4049
4537
|
"title": "greaterThanOrEqualTo(1)",
|
|
4050
|
-
"examples": [
|
|
4538
|
+
"examples": [
|
|
4539
|
+
10485760
|
|
4540
|
+
],
|
|
4051
4541
|
"minimum": 1
|
|
4052
4542
|
},
|
|
4053
4543
|
"generateThumbnails": {
|
|
@@ -4100,7 +4590,12 @@
|
|
|
4100
4590
|
},
|
|
4101
4591
|
{
|
|
4102
4592
|
"type": "object",
|
|
4103
|
-
"required": [
|
|
4593
|
+
"required": [
|
|
4594
|
+
"id",
|
|
4595
|
+
"name",
|
|
4596
|
+
"type",
|
|
4597
|
+
"formula"
|
|
4598
|
+
],
|
|
4104
4599
|
"properties": {
|
|
4105
4600
|
"id": {
|
|
4106
4601
|
"$ref": "#/$defs/FieldId"
|
|
@@ -4124,7 +4619,9 @@
|
|
|
4124
4619
|
},
|
|
4125
4620
|
"type": {
|
|
4126
4621
|
"type": "string",
|
|
4127
|
-
"enum": [
|
|
4622
|
+
"enum": [
|
|
4623
|
+
"formula"
|
|
4624
|
+
]
|
|
4128
4625
|
},
|
|
4129
4626
|
"formula": {
|
|
4130
4627
|
"type": "string",
|
|
@@ -4145,7 +4642,12 @@
|
|
|
4145
4642
|
"format": {
|
|
4146
4643
|
"type": "string",
|
|
4147
4644
|
"description": "Display format for the result (e.g., currency, percentage)",
|
|
4148
|
-
"examples": [
|
|
4645
|
+
"examples": [
|
|
4646
|
+
"currency",
|
|
4647
|
+
"percentage",
|
|
4648
|
+
"decimal",
|
|
4649
|
+
"date"
|
|
4650
|
+
]
|
|
4149
4651
|
}
|
|
4150
4652
|
},
|
|
4151
4653
|
"additionalProperties": false,
|
|
@@ -4194,7 +4696,9 @@
|
|
|
4194
4696
|
},
|
|
4195
4697
|
"type": {
|
|
4196
4698
|
"type": "string",
|
|
4197
|
-
"enum": [
|
|
4699
|
+
"enum": [
|
|
4700
|
+
"rollup"
|
|
4701
|
+
]
|
|
4198
4702
|
},
|
|
4199
4703
|
"relationshipField": {
|
|
4200
4704
|
"type": "string",
|
|
@@ -4215,13 +4719,21 @@
|
|
|
4215
4719
|
"format": {
|
|
4216
4720
|
"type": "string",
|
|
4217
4721
|
"description": "Display format for the result",
|
|
4218
|
-
"examples": [
|
|
4722
|
+
"examples": [
|
|
4723
|
+
"currency",
|
|
4724
|
+
"number",
|
|
4725
|
+
"percentage"
|
|
4726
|
+
]
|
|
4219
4727
|
},
|
|
4220
4728
|
"filters": {
|
|
4221
4729
|
"anyOf": [
|
|
4222
4730
|
{
|
|
4223
4731
|
"type": "object",
|
|
4224
|
-
"required": [
|
|
4732
|
+
"required": [
|
|
4733
|
+
"field",
|
|
4734
|
+
"operator",
|
|
4735
|
+
"value"
|
|
4736
|
+
],
|
|
4225
4737
|
"properties": {
|
|
4226
4738
|
"field": {
|
|
4227
4739
|
"type": "string"
|
|
@@ -4240,7 +4752,9 @@
|
|
|
4240
4752
|
},
|
|
4241
4753
|
{
|
|
4242
4754
|
"type": "object",
|
|
4243
|
-
"required": [
|
|
4755
|
+
"required": [
|
|
4756
|
+
"and"
|
|
4757
|
+
],
|
|
4244
4758
|
"properties": {
|
|
4245
4759
|
"and": {
|
|
4246
4760
|
"type": "array",
|
|
@@ -4253,7 +4767,9 @@
|
|
|
4253
4767
|
},
|
|
4254
4768
|
{
|
|
4255
4769
|
"type": "object",
|
|
4256
|
-
"required": [
|
|
4770
|
+
"required": [
|
|
4771
|
+
"or"
|
|
4772
|
+
],
|
|
4257
4773
|
"properties": {
|
|
4258
4774
|
"or": {
|
|
4259
4775
|
"type": "array",
|
|
@@ -4285,7 +4801,13 @@
|
|
|
4285
4801
|
},
|
|
4286
4802
|
{
|
|
4287
4803
|
"type": "object",
|
|
4288
|
-
"required": [
|
|
4804
|
+
"required": [
|
|
4805
|
+
"id",
|
|
4806
|
+
"name",
|
|
4807
|
+
"type",
|
|
4808
|
+
"relationshipField",
|
|
4809
|
+
"relatedField"
|
|
4810
|
+
],
|
|
4289
4811
|
"properties": {
|
|
4290
4812
|
"id": {
|
|
4291
4813
|
"$ref": "#/$defs/FieldId"
|
|
@@ -4309,7 +4831,9 @@
|
|
|
4309
4831
|
},
|
|
4310
4832
|
"type": {
|
|
4311
4833
|
"type": "string",
|
|
4312
|
-
"enum": [
|
|
4834
|
+
"enum": [
|
|
4835
|
+
"lookup"
|
|
4836
|
+
]
|
|
4313
4837
|
},
|
|
4314
4838
|
"relationshipField": {
|
|
4315
4839
|
"type": "string",
|
|
@@ -4327,7 +4851,11 @@
|
|
|
4327
4851
|
"anyOf": [
|
|
4328
4852
|
{
|
|
4329
4853
|
"type": "object",
|
|
4330
|
-
"required": [
|
|
4854
|
+
"required": [
|
|
4855
|
+
"field",
|
|
4856
|
+
"operator",
|
|
4857
|
+
"value"
|
|
4858
|
+
],
|
|
4331
4859
|
"properties": {
|
|
4332
4860
|
"field": {
|
|
4333
4861
|
"type": "string"
|
|
@@ -4346,7 +4874,9 @@
|
|
|
4346
4874
|
},
|
|
4347
4875
|
{
|
|
4348
4876
|
"type": "object",
|
|
4349
|
-
"required": [
|
|
4877
|
+
"required": [
|
|
4878
|
+
"and"
|
|
4879
|
+
],
|
|
4350
4880
|
"properties": {
|
|
4351
4881
|
"and": {
|
|
4352
4882
|
"type": "array",
|
|
@@ -4359,7 +4889,9 @@
|
|
|
4359
4889
|
},
|
|
4360
4890
|
{
|
|
4361
4891
|
"type": "object",
|
|
4362
|
-
"required": [
|
|
4892
|
+
"required": [
|
|
4893
|
+
"or"
|
|
4894
|
+
],
|
|
4363
4895
|
"properties": {
|
|
4364
4896
|
"or": {
|
|
4365
4897
|
"type": "array",
|
|
@@ -4390,7 +4922,12 @@
|
|
|
4390
4922
|
},
|
|
4391
4923
|
{
|
|
4392
4924
|
"type": "object",
|
|
4393
|
-
"required": [
|
|
4925
|
+
"required": [
|
|
4926
|
+
"id",
|
|
4927
|
+
"name",
|
|
4928
|
+
"type",
|
|
4929
|
+
"relationshipField"
|
|
4930
|
+
],
|
|
4394
4931
|
"properties": {
|
|
4395
4932
|
"id": {
|
|
4396
4933
|
"$ref": "#/$defs/FieldId"
|
|
@@ -4414,7 +4951,9 @@
|
|
|
4414
4951
|
},
|
|
4415
4952
|
"type": {
|
|
4416
4953
|
"type": "string",
|
|
4417
|
-
"enum": [
|
|
4954
|
+
"enum": [
|
|
4955
|
+
"count"
|
|
4956
|
+
]
|
|
4418
4957
|
},
|
|
4419
4958
|
"relationshipField": {
|
|
4420
4959
|
"type": "string",
|
|
@@ -4426,7 +4965,11 @@
|
|
|
4426
4965
|
"type": "array",
|
|
4427
4966
|
"items": {
|
|
4428
4967
|
"type": "object",
|
|
4429
|
-
"required": [
|
|
4968
|
+
"required": [
|
|
4969
|
+
"field",
|
|
4970
|
+
"operator",
|
|
4971
|
+
"value"
|
|
4972
|
+
],
|
|
4430
4973
|
"properties": {
|
|
4431
4974
|
"field": {
|
|
4432
4975
|
"type": "string"
|
|
@@ -4473,7 +5016,11 @@
|
|
|
4473
5016
|
},
|
|
4474
5017
|
{
|
|
4475
5018
|
"type": "object",
|
|
4476
|
-
"required": [
|
|
5019
|
+
"required": [
|
|
5020
|
+
"id",
|
|
5021
|
+
"name",
|
|
5022
|
+
"type"
|
|
5023
|
+
],
|
|
4477
5024
|
"properties": {
|
|
4478
5025
|
"id": {
|
|
4479
5026
|
"$ref": "#/$defs/FieldId"
|
|
@@ -4497,7 +5044,9 @@
|
|
|
4497
5044
|
},
|
|
4498
5045
|
"type": {
|
|
4499
5046
|
"type": "string",
|
|
4500
|
-
"enum": [
|
|
5047
|
+
"enum": [
|
|
5048
|
+
"user"
|
|
5049
|
+
]
|
|
4501
5050
|
},
|
|
4502
5051
|
"allowMultiple": {
|
|
4503
5052
|
"type": "boolean"
|
|
@@ -4518,7 +5067,11 @@
|
|
|
4518
5067
|
},
|
|
4519
5068
|
{
|
|
4520
5069
|
"type": "object",
|
|
4521
|
-
"required": [
|
|
5070
|
+
"required": [
|
|
5071
|
+
"id",
|
|
5072
|
+
"name",
|
|
5073
|
+
"type"
|
|
5074
|
+
],
|
|
4522
5075
|
"properties": {
|
|
4523
5076
|
"id": {
|
|
4524
5077
|
"$ref": "#/$defs/FieldId"
|
|
@@ -4542,7 +5095,9 @@
|
|
|
4542
5095
|
},
|
|
4543
5096
|
"type": {
|
|
4544
5097
|
"type": "string",
|
|
4545
|
-
"enum": [
|
|
5098
|
+
"enum": [
|
|
5099
|
+
"created-at"
|
|
5100
|
+
]
|
|
4546
5101
|
}
|
|
4547
5102
|
},
|
|
4548
5103
|
"additionalProperties": false,
|
|
@@ -4559,7 +5114,11 @@
|
|
|
4559
5114
|
},
|
|
4560
5115
|
{
|
|
4561
5116
|
"type": "object",
|
|
4562
|
-
"required": [
|
|
5117
|
+
"required": [
|
|
5118
|
+
"id",
|
|
5119
|
+
"name",
|
|
5120
|
+
"type"
|
|
5121
|
+
],
|
|
4563
5122
|
"properties": {
|
|
4564
5123
|
"id": {
|
|
4565
5124
|
"$ref": "#/$defs/FieldId"
|
|
@@ -4583,7 +5142,9 @@
|
|
|
4583
5142
|
},
|
|
4584
5143
|
"type": {
|
|
4585
5144
|
"type": "string",
|
|
4586
|
-
"enum": [
|
|
5145
|
+
"enum": [
|
|
5146
|
+
"created-by"
|
|
5147
|
+
]
|
|
4587
5148
|
}
|
|
4588
5149
|
},
|
|
4589
5150
|
"additionalProperties": false,
|
|
@@ -4600,7 +5161,11 @@
|
|
|
4600
5161
|
},
|
|
4601
5162
|
{
|
|
4602
5163
|
"type": "object",
|
|
4603
|
-
"required": [
|
|
5164
|
+
"required": [
|
|
5165
|
+
"id",
|
|
5166
|
+
"name",
|
|
5167
|
+
"type"
|
|
5168
|
+
],
|
|
4604
5169
|
"properties": {
|
|
4605
5170
|
"id": {
|
|
4606
5171
|
"$ref": "#/$defs/FieldId"
|
|
@@ -4624,7 +5189,9 @@
|
|
|
4624
5189
|
},
|
|
4625
5190
|
"type": {
|
|
4626
5191
|
"type": "string",
|
|
4627
|
-
"enum": [
|
|
5192
|
+
"enum": [
|
|
5193
|
+
"updated-at"
|
|
5194
|
+
]
|
|
4628
5195
|
}
|
|
4629
5196
|
},
|
|
4630
5197
|
"additionalProperties": false,
|
|
@@ -4641,7 +5208,11 @@
|
|
|
4641
5208
|
},
|
|
4642
5209
|
{
|
|
4643
5210
|
"type": "object",
|
|
4644
|
-
"required": [
|
|
5211
|
+
"required": [
|
|
5212
|
+
"id",
|
|
5213
|
+
"name",
|
|
5214
|
+
"type"
|
|
5215
|
+
],
|
|
4645
5216
|
"properties": {
|
|
4646
5217
|
"id": {
|
|
4647
5218
|
"$ref": "#/$defs/FieldId"
|
|
@@ -4665,7 +5236,9 @@
|
|
|
4665
5236
|
},
|
|
4666
5237
|
"type": {
|
|
4667
5238
|
"type": "string",
|
|
4668
|
-
"enum": [
|
|
5239
|
+
"enum": [
|
|
5240
|
+
"updated-by"
|
|
5241
|
+
]
|
|
4669
5242
|
}
|
|
4670
5243
|
},
|
|
4671
5244
|
"additionalProperties": false,
|
|
@@ -4682,7 +5255,11 @@
|
|
|
4682
5255
|
},
|
|
4683
5256
|
{
|
|
4684
5257
|
"type": "object",
|
|
4685
|
-
"required": [
|
|
5258
|
+
"required": [
|
|
5259
|
+
"id",
|
|
5260
|
+
"name",
|
|
5261
|
+
"type"
|
|
5262
|
+
],
|
|
4686
5263
|
"properties": {
|
|
4687
5264
|
"id": {
|
|
4688
5265
|
"$ref": "#/$defs/FieldId"
|
|
@@ -4706,7 +5283,9 @@
|
|
|
4706
5283
|
},
|
|
4707
5284
|
"type": {
|
|
4708
5285
|
"type": "string",
|
|
4709
|
-
"enum": [
|
|
5286
|
+
"enum": [
|
|
5287
|
+
"deleted-at"
|
|
5288
|
+
]
|
|
4710
5289
|
}
|
|
4711
5290
|
},
|
|
4712
5291
|
"additionalProperties": false,
|
|
@@ -4723,7 +5302,11 @@
|
|
|
4723
5302
|
},
|
|
4724
5303
|
{
|
|
4725
5304
|
"type": "object",
|
|
4726
|
-
"required": [
|
|
5305
|
+
"required": [
|
|
5306
|
+
"id",
|
|
5307
|
+
"name",
|
|
5308
|
+
"type"
|
|
5309
|
+
],
|
|
4727
5310
|
"properties": {
|
|
4728
5311
|
"id": {
|
|
4729
5312
|
"$ref": "#/$defs/FieldId"
|
|
@@ -4747,7 +5330,9 @@
|
|
|
4747
5330
|
},
|
|
4748
5331
|
"type": {
|
|
4749
5332
|
"type": "string",
|
|
4750
|
-
"enum": [
|
|
5333
|
+
"enum": [
|
|
5334
|
+
"deleted-by"
|
|
5335
|
+
]
|
|
4751
5336
|
}
|
|
4752
5337
|
},
|
|
4753
5338
|
"additionalProperties": false,
|
|
@@ -4764,7 +5349,11 @@
|
|
|
4764
5349
|
},
|
|
4765
5350
|
{
|
|
4766
5351
|
"type": "object",
|
|
4767
|
-
"required": [
|
|
5352
|
+
"required": [
|
|
5353
|
+
"id",
|
|
5354
|
+
"name",
|
|
5355
|
+
"type"
|
|
5356
|
+
],
|
|
4768
5357
|
"properties": {
|
|
4769
5358
|
"id": {
|
|
4770
5359
|
"$ref": "#/$defs/FieldId"
|
|
@@ -4788,7 +5377,9 @@
|
|
|
4788
5377
|
},
|
|
4789
5378
|
"type": {
|
|
4790
5379
|
"type": "string",
|
|
4791
|
-
"enum": [
|
|
5380
|
+
"enum": [
|
|
5381
|
+
"rating"
|
|
5382
|
+
]
|
|
4792
5383
|
},
|
|
4793
5384
|
"max": {
|
|
4794
5385
|
"$ref": "#/$defs/Int",
|
|
@@ -4822,7 +5413,11 @@
|
|
|
4822
5413
|
},
|
|
4823
5414
|
{
|
|
4824
5415
|
"type": "object",
|
|
4825
|
-
"required": [
|
|
5416
|
+
"required": [
|
|
5417
|
+
"id",
|
|
5418
|
+
"name",
|
|
5419
|
+
"type"
|
|
5420
|
+
],
|
|
4826
5421
|
"properties": {
|
|
4827
5422
|
"id": {
|
|
4828
5423
|
"$ref": "#/$defs/FieldId"
|
|
@@ -4846,7 +5441,9 @@
|
|
|
4846
5441
|
},
|
|
4847
5442
|
"type": {
|
|
4848
5443
|
"type": "string",
|
|
4849
|
-
"enum": [
|
|
5444
|
+
"enum": [
|
|
5445
|
+
"duration"
|
|
5446
|
+
]
|
|
4850
5447
|
},
|
|
4851
5448
|
"format": {
|
|
4852
5449
|
"type": "string",
|
|
@@ -4854,9 +5451,17 @@
|
|
|
4854
5451
|
},
|
|
4855
5452
|
"displayFormat": {
|
|
4856
5453
|
"type": "string",
|
|
4857
|
-
"enum": [
|
|
5454
|
+
"enum": [
|
|
5455
|
+
"h:mm",
|
|
5456
|
+
"h:mm:ss",
|
|
5457
|
+
"decimal"
|
|
5458
|
+
],
|
|
4858
5459
|
"description": "Display format preset for duration values",
|
|
4859
|
-
"examples": [
|
|
5460
|
+
"examples": [
|
|
5461
|
+
"h:mm",
|
|
5462
|
+
"h:mm:ss",
|
|
5463
|
+
"decimal"
|
|
5464
|
+
]
|
|
4860
5465
|
},
|
|
4861
5466
|
"default": {
|
|
4862
5467
|
"type": "number",
|
|
@@ -4878,7 +5483,11 @@
|
|
|
4878
5483
|
},
|
|
4879
5484
|
{
|
|
4880
5485
|
"type": "object",
|
|
4881
|
-
"required": [
|
|
5486
|
+
"required": [
|
|
5487
|
+
"id",
|
|
5488
|
+
"name",
|
|
5489
|
+
"type"
|
|
5490
|
+
],
|
|
4882
5491
|
"properties": {
|
|
4883
5492
|
"id": {
|
|
4884
5493
|
"$ref": "#/$defs/FieldId"
|
|
@@ -4902,7 +5511,9 @@
|
|
|
4902
5511
|
},
|
|
4903
5512
|
"type": {
|
|
4904
5513
|
"type": "string",
|
|
4905
|
-
"enum": [
|
|
5514
|
+
"enum": [
|
|
5515
|
+
"rich-text"
|
|
5516
|
+
]
|
|
4906
5517
|
},
|
|
4907
5518
|
"maxLength": {
|
|
4908
5519
|
"$ref": "#/$defs/Int",
|
|
@@ -4930,7 +5541,12 @@
|
|
|
4930
5541
|
},
|
|
4931
5542
|
{
|
|
4932
5543
|
"type": "object",
|
|
4933
|
-
"required": [
|
|
5544
|
+
"required": [
|
|
5545
|
+
"id",
|
|
5546
|
+
"name",
|
|
5547
|
+
"type",
|
|
5548
|
+
"options"
|
|
5549
|
+
],
|
|
4934
5550
|
"properties": {
|
|
4935
5551
|
"id": {
|
|
4936
5552
|
"$ref": "#/$defs/FieldId"
|
|
@@ -4954,13 +5570,17 @@
|
|
|
4954
5570
|
},
|
|
4955
5571
|
"type": {
|
|
4956
5572
|
"type": "string",
|
|
4957
|
-
"enum": [
|
|
5573
|
+
"enum": [
|
|
5574
|
+
"status"
|
|
5575
|
+
]
|
|
4958
5576
|
},
|
|
4959
5577
|
"options": {
|
|
4960
5578
|
"type": "array",
|
|
4961
5579
|
"items": {
|
|
4962
5580
|
"type": "object",
|
|
4963
|
-
"required": [
|
|
5581
|
+
"required": [
|
|
5582
|
+
"value"
|
|
5583
|
+
],
|
|
4964
5584
|
"properties": {
|
|
4965
5585
|
"value": {
|
|
4966
5586
|
"type": "string",
|
|
@@ -5007,7 +5627,13 @@
|
|
|
5007
5627
|
},
|
|
5008
5628
|
{
|
|
5009
5629
|
"type": "object",
|
|
5010
|
-
"required": [
|
|
5630
|
+
"required": [
|
|
5631
|
+
"id",
|
|
5632
|
+
"name",
|
|
5633
|
+
"type",
|
|
5634
|
+
"label",
|
|
5635
|
+
"action"
|
|
5636
|
+
],
|
|
5011
5637
|
"properties": {
|
|
5012
5638
|
"id": {
|
|
5013
5639
|
"$ref": "#/$defs/FieldId"
|
|
@@ -5031,7 +5657,9 @@
|
|
|
5031
5657
|
},
|
|
5032
5658
|
"type": {
|
|
5033
5659
|
"type": "string",
|
|
5034
|
-
"enum": [
|
|
5660
|
+
"enum": [
|
|
5661
|
+
"button"
|
|
5662
|
+
]
|
|
5035
5663
|
},
|
|
5036
5664
|
"label": {
|
|
5037
5665
|
"type": "string",
|
|
@@ -5056,7 +5684,11 @@
|
|
|
5056
5684
|
},
|
|
5057
5685
|
{
|
|
5058
5686
|
"type": "object",
|
|
5059
|
-
"required": [
|
|
5687
|
+
"required": [
|
|
5688
|
+
"id",
|
|
5689
|
+
"name",
|
|
5690
|
+
"type"
|
|
5691
|
+
],
|
|
5060
5692
|
"properties": {
|
|
5061
5693
|
"id": {
|
|
5062
5694
|
"$ref": "#/$defs/FieldId"
|
|
@@ -5080,12 +5712,18 @@
|
|
|
5080
5712
|
},
|
|
5081
5713
|
"type": {
|
|
5082
5714
|
"type": "string",
|
|
5083
|
-
"enum": [
|
|
5715
|
+
"enum": [
|
|
5716
|
+
"autonumber"
|
|
5717
|
+
]
|
|
5084
5718
|
},
|
|
5085
5719
|
"prefix": {
|
|
5086
5720
|
"type": "string",
|
|
5087
5721
|
"description": "Optional prefix for the autonumber",
|
|
5088
|
-
"examples": [
|
|
5722
|
+
"examples": [
|
|
5723
|
+
"INV-",
|
|
5724
|
+
"ORD-",
|
|
5725
|
+
""
|
|
5726
|
+
]
|
|
5089
5727
|
},
|
|
5090
5728
|
"startFrom": {
|
|
5091
5729
|
"$ref": "#/$defs/Int",
|
|
@@ -5117,7 +5755,11 @@
|
|
|
5117
5755
|
},
|
|
5118
5756
|
{
|
|
5119
5757
|
"type": "object",
|
|
5120
|
-
"required": [
|
|
5758
|
+
"required": [
|
|
5759
|
+
"id",
|
|
5760
|
+
"name",
|
|
5761
|
+
"type"
|
|
5762
|
+
],
|
|
5121
5763
|
"properties": {
|
|
5122
5764
|
"id": {
|
|
5123
5765
|
"$ref": "#/$defs/FieldId"
|
|
@@ -5141,7 +5783,9 @@
|
|
|
5141
5783
|
},
|
|
5142
5784
|
"type": {
|
|
5143
5785
|
"type": "string",
|
|
5144
|
-
"enum": [
|
|
5786
|
+
"enum": [
|
|
5787
|
+
"barcode"
|
|
5788
|
+
]
|
|
5145
5789
|
},
|
|
5146
5790
|
"format": {
|
|
5147
5791
|
"type": "string",
|
|
@@ -5163,7 +5807,11 @@
|
|
|
5163
5807
|
},
|
|
5164
5808
|
{
|
|
5165
5809
|
"type": "object",
|
|
5166
|
-
"required": [
|
|
5810
|
+
"required": [
|
|
5811
|
+
"id",
|
|
5812
|
+
"name",
|
|
5813
|
+
"type"
|
|
5814
|
+
],
|
|
5167
5815
|
"properties": {
|
|
5168
5816
|
"id": {
|
|
5169
5817
|
"$ref": "#/$defs/FieldId"
|
|
@@ -5187,7 +5835,9 @@
|
|
|
5187
5835
|
},
|
|
5188
5836
|
"type": {
|
|
5189
5837
|
"type": "string",
|
|
5190
|
-
"enum": [
|
|
5838
|
+
"enum": [
|
|
5839
|
+
"color"
|
|
5840
|
+
]
|
|
5191
5841
|
},
|
|
5192
5842
|
"default": {
|
|
5193
5843
|
"type": "string",
|
|
@@ -5210,7 +5860,11 @@
|
|
|
5210
5860
|
},
|
|
5211
5861
|
{
|
|
5212
5862
|
"type": "object",
|
|
5213
|
-
"required": [
|
|
5863
|
+
"required": [
|
|
5864
|
+
"id",
|
|
5865
|
+
"name",
|
|
5866
|
+
"type"
|
|
5867
|
+
],
|
|
5214
5868
|
"properties": {
|
|
5215
5869
|
"id": {
|
|
5216
5870
|
"$ref": "#/$defs/FieldId"
|
|
@@ -5234,7 +5888,9 @@
|
|
|
5234
5888
|
},
|
|
5235
5889
|
"type": {
|
|
5236
5890
|
"type": "string",
|
|
5237
|
-
"enum": [
|
|
5891
|
+
"enum": [
|
|
5892
|
+
"progress"
|
|
5893
|
+
]
|
|
5238
5894
|
},
|
|
5239
5895
|
"color": {
|
|
5240
5896
|
"type": "string",
|
|
@@ -5264,7 +5920,11 @@
|
|
|
5264
5920
|
},
|
|
5265
5921
|
{
|
|
5266
5922
|
"type": "object",
|
|
5267
|
-
"required": [
|
|
5923
|
+
"required": [
|
|
5924
|
+
"id",
|
|
5925
|
+
"name",
|
|
5926
|
+
"type"
|
|
5927
|
+
],
|
|
5268
5928
|
"properties": {
|
|
5269
5929
|
"id": {
|
|
5270
5930
|
"$ref": "#/$defs/FieldId"
|
|
@@ -5288,7 +5948,9 @@
|
|
|
5288
5948
|
},
|
|
5289
5949
|
"type": {
|
|
5290
5950
|
"type": "string",
|
|
5291
|
-
"enum": [
|
|
5951
|
+
"enum": [
|
|
5952
|
+
"geolocation"
|
|
5953
|
+
]
|
|
5292
5954
|
}
|
|
5293
5955
|
},
|
|
5294
5956
|
"additionalProperties": false,
|
|
@@ -5305,7 +5967,11 @@
|
|
|
5305
5967
|
},
|
|
5306
5968
|
{
|
|
5307
5969
|
"type": "object",
|
|
5308
|
-
"required": [
|
|
5970
|
+
"required": [
|
|
5971
|
+
"id",
|
|
5972
|
+
"name",
|
|
5973
|
+
"type"
|
|
5974
|
+
],
|
|
5309
5975
|
"properties": {
|
|
5310
5976
|
"id": {
|
|
5311
5977
|
"$ref": "#/$defs/FieldId"
|
|
@@ -5329,7 +5995,9 @@
|
|
|
5329
5995
|
},
|
|
5330
5996
|
"type": {
|
|
5331
5997
|
"type": "string",
|
|
5332
|
-
"enum": [
|
|
5998
|
+
"enum": [
|
|
5999
|
+
"json"
|
|
6000
|
+
]
|
|
5333
6001
|
},
|
|
5334
6002
|
"schema": {
|
|
5335
6003
|
"$id": "/schemas/%7B%7D",
|
|
@@ -5357,7 +6025,11 @@
|
|
|
5357
6025
|
},
|
|
5358
6026
|
{
|
|
5359
6027
|
"type": "object",
|
|
5360
|
-
"required": [
|
|
6028
|
+
"required": [
|
|
6029
|
+
"id",
|
|
6030
|
+
"name",
|
|
6031
|
+
"type"
|
|
6032
|
+
],
|
|
5361
6033
|
"properties": {
|
|
5362
6034
|
"id": {
|
|
5363
6035
|
"$ref": "#/$defs/FieldId"
|
|
@@ -5381,7 +6053,9 @@
|
|
|
5381
6053
|
},
|
|
5382
6054
|
"type": {
|
|
5383
6055
|
"type": "string",
|
|
5384
|
-
"enum": [
|
|
6056
|
+
"enum": [
|
|
6057
|
+
"array"
|
|
6058
|
+
]
|
|
5385
6059
|
},
|
|
5386
6060
|
"itemType": {
|
|
5387
6061
|
"type": "string",
|
|
@@ -5409,7 +6083,11 @@
|
|
|
5409
6083
|
},
|
|
5410
6084
|
{
|
|
5411
6085
|
"type": "object",
|
|
5412
|
-
"required": [
|
|
6086
|
+
"required": [
|
|
6087
|
+
"id",
|
|
6088
|
+
"name",
|
|
6089
|
+
"type"
|
|
6090
|
+
],
|
|
5413
6091
|
"properties": {
|
|
5414
6092
|
"id": {
|
|
5415
6093
|
"$ref": "#/$defs/FieldId"
|
|
@@ -5445,7 +6123,9 @@
|
|
|
5445
6123
|
},
|
|
5446
6124
|
"primaryKey": {
|
|
5447
6125
|
"type": "object",
|
|
5448
|
-
"required": [
|
|
6126
|
+
"required": [
|
|
6127
|
+
"type"
|
|
6128
|
+
],
|
|
5449
6129
|
"properties": {
|
|
5450
6130
|
"type": {
|
|
5451
6131
|
"type": "string",
|
|
@@ -5456,7 +6136,11 @@
|
|
|
5456
6136
|
"field": {
|
|
5457
6137
|
"type": "string",
|
|
5458
6138
|
"description": "Field name for single-column primary key. Only used with 'auto-increment' or 'uuid' type.",
|
|
5459
|
-
"examples": [
|
|
6139
|
+
"examples": [
|
|
6140
|
+
"id",
|
|
6141
|
+
"user_id",
|
|
6142
|
+
"product_id"
|
|
6143
|
+
],
|
|
5460
6144
|
"pattern": "^[a-z][a-z0-9_]*$"
|
|
5461
6145
|
},
|
|
5462
6146
|
"fields": {
|
|
@@ -5483,7 +6167,10 @@
|
|
|
5483
6167
|
},
|
|
5484
6168
|
{
|
|
5485
6169
|
"type": "composite",
|
|
5486
|
-
"fields": [
|
|
6170
|
+
"fields": [
|
|
6171
|
+
"tenant_id",
|
|
6172
|
+
"user_id"
|
|
6173
|
+
]
|
|
5487
6174
|
}
|
|
5488
6175
|
]
|
|
5489
6176
|
},
|
|
@@ -5491,7 +6178,10 @@
|
|
|
5491
6178
|
"type": "array",
|
|
5492
6179
|
"items": {
|
|
5493
6180
|
"type": "object",
|
|
5494
|
-
"required": [
|
|
6181
|
+
"required": [
|
|
6182
|
+
"name",
|
|
6183
|
+
"fields"
|
|
6184
|
+
],
|
|
5495
6185
|
"properties": {
|
|
5496
6186
|
"name": {
|
|
5497
6187
|
"type": "string",
|
|
@@ -5525,14 +6215,21 @@
|
|
|
5525
6215
|
"type": "array",
|
|
5526
6216
|
"items": {
|
|
5527
6217
|
"type": "object",
|
|
5528
|
-
"required": [
|
|
6218
|
+
"required": [
|
|
6219
|
+
"name",
|
|
6220
|
+
"fields"
|
|
6221
|
+
],
|
|
5529
6222
|
"properties": {
|
|
5530
6223
|
"name": {
|
|
5531
6224
|
"type": "string",
|
|
5532
6225
|
"description": "Name of the index. Use descriptive names like 'idx_tablename_fieldname'",
|
|
5533
6226
|
"title": "minLength(1)",
|
|
5534
6227
|
"minLength": 1,
|
|
5535
|
-
"examples": [
|
|
6228
|
+
"examples": [
|
|
6229
|
+
"idx_users_email",
|
|
6230
|
+
"idx_products_sku",
|
|
6231
|
+
"idx_orders_status"
|
|
6232
|
+
],
|
|
5536
6233
|
"pattern": "^[a-z][a-z0-9_]*$"
|
|
5537
6234
|
},
|
|
5538
6235
|
"fields": {
|
|
@@ -5554,7 +6251,11 @@
|
|
|
5554
6251
|
"type": "string",
|
|
5555
6252
|
"description": "WHERE clause for partial indexes. Creates an index that includes only rows satisfying the condition. Useful for enforcing uniqueness only on non-NULL values.",
|
|
5556
6253
|
"title": "minLength(1)",
|
|
5557
|
-
"examples": [
|
|
6254
|
+
"examples": [
|
|
6255
|
+
"username IS NOT NULL",
|
|
6256
|
+
"status = 'active'",
|
|
6257
|
+
"deleted_at IS NULL"
|
|
6258
|
+
],
|
|
5558
6259
|
"minLength": 1
|
|
5559
6260
|
}
|
|
5560
6261
|
},
|
|
@@ -5565,7 +6266,10 @@
|
|
|
5565
6266
|
"type": "array",
|
|
5566
6267
|
"items": {
|
|
5567
6268
|
"type": "object",
|
|
5568
|
-
"required": [
|
|
6269
|
+
"required": [
|
|
6270
|
+
"id",
|
|
6271
|
+
"name"
|
|
6272
|
+
],
|
|
5569
6273
|
"properties": {
|
|
5570
6274
|
"id": {
|
|
5571
6275
|
"anyOf": [
|
|
@@ -5580,14 +6284,23 @@
|
|
|
5580
6284
|
],
|
|
5581
6285
|
"description": "Unique identifier for the view. Can be a number or string (lowercase, numbers, underscores, hyphens only).",
|
|
5582
6286
|
"title": "View ID",
|
|
5583
|
-
"examples": [
|
|
6287
|
+
"examples": [
|
|
6288
|
+
1,
|
|
6289
|
+
2,
|
|
6290
|
+
"default",
|
|
6291
|
+
"kanban_view"
|
|
6292
|
+
]
|
|
5584
6293
|
},
|
|
5585
6294
|
"name": {
|
|
5586
6295
|
"type": "string",
|
|
5587
6296
|
"description": "Human-readable name for the view. Must be non-empty.",
|
|
5588
6297
|
"title": "View Name",
|
|
5589
6298
|
"minLength": 1,
|
|
5590
|
-
"examples": [
|
|
6299
|
+
"examples": [
|
|
6300
|
+
"All Records",
|
|
6301
|
+
"Active Tasks",
|
|
6302
|
+
"Completed Orders"
|
|
6303
|
+
],
|
|
5591
6304
|
"maxLength": 100
|
|
5592
6305
|
},
|
|
5593
6306
|
"query": {
|
|
@@ -5606,7 +6319,11 @@
|
|
|
5606
6319
|
"anyOf": [
|
|
5607
6320
|
{
|
|
5608
6321
|
"type": "object",
|
|
5609
|
-
"required": [
|
|
6322
|
+
"required": [
|
|
6323
|
+
"field",
|
|
6324
|
+
"operator",
|
|
6325
|
+
"value"
|
|
6326
|
+
],
|
|
5610
6327
|
"properties": {
|
|
5611
6328
|
"field": {
|
|
5612
6329
|
"type": "string"
|
|
@@ -5625,7 +6342,9 @@
|
|
|
5625
6342
|
},
|
|
5626
6343
|
{
|
|
5627
6344
|
"type": "object",
|
|
5628
|
-
"required": [
|
|
6345
|
+
"required": [
|
|
6346
|
+
"and"
|
|
6347
|
+
],
|
|
5629
6348
|
"properties": {
|
|
5630
6349
|
"and": {
|
|
5631
6350
|
"type": "array",
|
|
@@ -5638,7 +6357,9 @@
|
|
|
5638
6357
|
},
|
|
5639
6358
|
{
|
|
5640
6359
|
"type": "object",
|
|
5641
|
-
"required": [
|
|
6360
|
+
"required": [
|
|
6361
|
+
"or"
|
|
6362
|
+
],
|
|
5642
6363
|
"properties": {
|
|
5643
6364
|
"or": {
|
|
5644
6365
|
"type": "array",
|
|
@@ -5657,14 +6378,20 @@
|
|
|
5657
6378
|
"type": "array",
|
|
5658
6379
|
"items": {
|
|
5659
6380
|
"type": "object",
|
|
5660
|
-
"required": [
|
|
6381
|
+
"required": [
|
|
6382
|
+
"field",
|
|
6383
|
+
"direction"
|
|
6384
|
+
],
|
|
5661
6385
|
"properties": {
|
|
5662
6386
|
"field": {
|
|
5663
6387
|
"type": "string"
|
|
5664
6388
|
},
|
|
5665
6389
|
"direction": {
|
|
5666
6390
|
"type": "string",
|
|
5667
|
-
"enum": [
|
|
6391
|
+
"enum": [
|
|
6392
|
+
"asc",
|
|
6393
|
+
"desc"
|
|
6394
|
+
]
|
|
5668
6395
|
}
|
|
5669
6396
|
},
|
|
5670
6397
|
"additionalProperties": false,
|
|
@@ -5682,14 +6409,19 @@
|
|
|
5682
6409
|
},
|
|
5683
6410
|
"groupBy": {
|
|
5684
6411
|
"type": "object",
|
|
5685
|
-
"required": [
|
|
6412
|
+
"required": [
|
|
6413
|
+
"field"
|
|
6414
|
+
],
|
|
5686
6415
|
"properties": {
|
|
5687
6416
|
"field": {
|
|
5688
6417
|
"type": "string"
|
|
5689
6418
|
},
|
|
5690
6419
|
"direction": {
|
|
5691
6420
|
"type": "string",
|
|
5692
|
-
"enum": [
|
|
6421
|
+
"enum": [
|
|
6422
|
+
"asc",
|
|
6423
|
+
"desc"
|
|
6424
|
+
]
|
|
5693
6425
|
}
|
|
5694
6426
|
},
|
|
5695
6427
|
"additionalProperties": false,
|
|
@@ -5710,9 +6442,18 @@
|
|
|
5710
6442
|
"description": "Array of role names (supports both standard and custom roles). At least one role required.",
|
|
5711
6443
|
"title": "Flexible Roles",
|
|
5712
6444
|
"examples": [
|
|
5713
|
-
[
|
|
5714
|
-
|
|
5715
|
-
|
|
6445
|
+
[
|
|
6446
|
+
"admin"
|
|
6447
|
+
],
|
|
6448
|
+
[
|
|
6449
|
+
"admin",
|
|
6450
|
+
"member"
|
|
6451
|
+
],
|
|
6452
|
+
[
|
|
6453
|
+
"admin",
|
|
6454
|
+
"editor",
|
|
6455
|
+
"custom-role"
|
|
6456
|
+
]
|
|
5716
6457
|
],
|
|
5717
6458
|
"minItems": 1
|
|
5718
6459
|
},
|
|
@@ -5724,9 +6465,18 @@
|
|
|
5724
6465
|
"description": "Array of role names (supports both standard and custom roles). At least one role required.",
|
|
5725
6466
|
"title": "Flexible Roles",
|
|
5726
6467
|
"examples": [
|
|
5727
|
-
[
|
|
5728
|
-
|
|
5729
|
-
|
|
6468
|
+
[
|
|
6469
|
+
"admin"
|
|
6470
|
+
],
|
|
6471
|
+
[
|
|
6472
|
+
"admin",
|
|
6473
|
+
"member"
|
|
6474
|
+
],
|
|
6475
|
+
[
|
|
6476
|
+
"admin",
|
|
6477
|
+
"editor",
|
|
6478
|
+
"custom-role"
|
|
6479
|
+
]
|
|
5730
6480
|
],
|
|
5731
6481
|
"minItems": 1
|
|
5732
6482
|
}
|
|
@@ -5736,21 +6486,34 @@
|
|
|
5736
6486
|
"title": "Role-Based View Permissions",
|
|
5737
6487
|
"examples": [
|
|
5738
6488
|
{
|
|
5739
|
-
"read": [
|
|
5740
|
-
|
|
6489
|
+
"read": [
|
|
6490
|
+
"admin",
|
|
6491
|
+
"member"
|
|
6492
|
+
],
|
|
6493
|
+
"write": [
|
|
6494
|
+
"admin"
|
|
6495
|
+
]
|
|
5741
6496
|
},
|
|
5742
6497
|
{
|
|
5743
|
-
"read": [
|
|
6498
|
+
"read": [
|
|
6499
|
+
"admin",
|
|
6500
|
+
"member",
|
|
6501
|
+
"viewer"
|
|
6502
|
+
]
|
|
5744
6503
|
}
|
|
5745
6504
|
]
|
|
5746
6505
|
},
|
|
5747
6506
|
{
|
|
5748
6507
|
"type": "object",
|
|
5749
|
-
"required": [
|
|
6508
|
+
"required": [
|
|
6509
|
+
"public"
|
|
6510
|
+
],
|
|
5750
6511
|
"properties": {
|
|
5751
6512
|
"public": {
|
|
5752
6513
|
"type": "boolean",
|
|
5753
|
-
"enum": [
|
|
6514
|
+
"enum": [
|
|
6515
|
+
true
|
|
6516
|
+
]
|
|
5754
6517
|
}
|
|
5755
6518
|
},
|
|
5756
6519
|
"additionalProperties": false,
|
|
@@ -5767,8 +6530,13 @@
|
|
|
5767
6530
|
"title": "View Permissions",
|
|
5768
6531
|
"examples": [
|
|
5769
6532
|
{
|
|
5770
|
-
"read": [
|
|
5771
|
-
|
|
6533
|
+
"read": [
|
|
6534
|
+
"admin",
|
|
6535
|
+
"member"
|
|
6536
|
+
],
|
|
6537
|
+
"write": [
|
|
6538
|
+
"admin"
|
|
6539
|
+
]
|
|
5772
6540
|
},
|
|
5773
6541
|
{
|
|
5774
6542
|
"public": true
|
|
@@ -5819,7 +6587,12 @@
|
|
|
5819
6587
|
"type": "array",
|
|
5820
6588
|
"items": {
|
|
5821
6589
|
"type": "object",
|
|
5822
|
-
"required": [
|
|
6590
|
+
"required": [
|
|
6591
|
+
"name",
|
|
6592
|
+
"fields",
|
|
6593
|
+
"referencedTable",
|
|
6594
|
+
"referencedFields"
|
|
6595
|
+
],
|
|
5823
6596
|
"properties": {
|
|
5824
6597
|
"name": {
|
|
5825
6598
|
"type": "string",
|
|
@@ -5855,13 +6628,23 @@
|
|
|
5855
6628
|
},
|
|
5856
6629
|
"onDelete": {
|
|
5857
6630
|
"type": "string",
|
|
5858
|
-
"enum": [
|
|
6631
|
+
"enum": [
|
|
6632
|
+
"cascade",
|
|
6633
|
+
"set-null",
|
|
6634
|
+
"restrict",
|
|
6635
|
+
"no-action"
|
|
6636
|
+
],
|
|
5859
6637
|
"description": "Referential action when parent row is deleted",
|
|
5860
6638
|
"title": "On Delete Action"
|
|
5861
6639
|
},
|
|
5862
6640
|
"onUpdate": {
|
|
5863
6641
|
"type": "string",
|
|
5864
|
-
"enum": [
|
|
6642
|
+
"enum": [
|
|
6643
|
+
"cascade",
|
|
6644
|
+
"set-null",
|
|
6645
|
+
"restrict",
|
|
6646
|
+
"no-action"
|
|
6647
|
+
],
|
|
5865
6648
|
"description": "Referential action when parent primary key is updated",
|
|
5866
6649
|
"title": "On Update Action"
|
|
5867
6650
|
}
|
|
@@ -5875,7 +6658,10 @@
|
|
|
5875
6658
|
"type": "array",
|
|
5876
6659
|
"items": {
|
|
5877
6660
|
"type": "object",
|
|
5878
|
-
"required": [
|
|
6661
|
+
"required": [
|
|
6662
|
+
"name",
|
|
6663
|
+
"check"
|
|
6664
|
+
],
|
|
5879
6665
|
"properties": {
|
|
5880
6666
|
"name": {
|
|
5881
6667
|
"type": "string",
|
|
@@ -5933,7 +6719,10 @@
|
|
|
5933
6719
|
"anyOf": [
|
|
5934
6720
|
{
|
|
5935
6721
|
"type": "string",
|
|
5936
|
-
"enum": [
|
|
6722
|
+
"enum": [
|
|
6723
|
+
"all",
|
|
6724
|
+
"authenticated"
|
|
6725
|
+
]
|
|
5937
6726
|
},
|
|
5938
6727
|
{
|
|
5939
6728
|
"type": "array",
|
|
@@ -5942,19 +6731,45 @@
|
|
|
5942
6731
|
},
|
|
5943
6732
|
"description": "Array of role names that have access (e.g., admin, editor). At least one role.",
|
|
5944
6733
|
"title": "minItems(1)",
|
|
5945
|
-
"examples": [
|
|
6734
|
+
"examples": [
|
|
6735
|
+
[
|
|
6736
|
+
"admin"
|
|
6737
|
+
],
|
|
6738
|
+
[
|
|
6739
|
+
"admin",
|
|
6740
|
+
"editor"
|
|
6741
|
+
],
|
|
6742
|
+
[
|
|
6743
|
+
"admin",
|
|
6744
|
+
"member",
|
|
6745
|
+
"viewer"
|
|
6746
|
+
]
|
|
6747
|
+
],
|
|
5946
6748
|
"minItems": 1
|
|
5947
6749
|
}
|
|
5948
6750
|
],
|
|
5949
6751
|
"description": "Permission value for a single operation. 'all' (everyone), 'authenticated' (logged-in users), or role array ['admin', 'editor'].",
|
|
5950
6752
|
"title": "Table Permission",
|
|
5951
|
-
"examples": [
|
|
6753
|
+
"examples": [
|
|
6754
|
+
"all",
|
|
6755
|
+
"authenticated",
|
|
6756
|
+
[
|
|
6757
|
+
"admin"
|
|
6758
|
+
],
|
|
6759
|
+
[
|
|
6760
|
+
"admin",
|
|
6761
|
+
"editor"
|
|
6762
|
+
]
|
|
6763
|
+
]
|
|
5952
6764
|
},
|
|
5953
6765
|
"comment": {
|
|
5954
6766
|
"anyOf": [
|
|
5955
6767
|
{
|
|
5956
6768
|
"type": "string",
|
|
5957
|
-
"enum": [
|
|
6769
|
+
"enum": [
|
|
6770
|
+
"all",
|
|
6771
|
+
"authenticated"
|
|
6772
|
+
]
|
|
5958
6773
|
},
|
|
5959
6774
|
{
|
|
5960
6775
|
"type": "array",
|
|
@@ -5963,19 +6778,45 @@
|
|
|
5963
6778
|
},
|
|
5964
6779
|
"description": "Array of role names that have access (e.g., admin, editor). At least one role.",
|
|
5965
6780
|
"title": "minItems(1)",
|
|
5966
|
-
"examples": [
|
|
6781
|
+
"examples": [
|
|
6782
|
+
[
|
|
6783
|
+
"admin"
|
|
6784
|
+
],
|
|
6785
|
+
[
|
|
6786
|
+
"admin",
|
|
6787
|
+
"editor"
|
|
6788
|
+
],
|
|
6789
|
+
[
|
|
6790
|
+
"admin",
|
|
6791
|
+
"member",
|
|
6792
|
+
"viewer"
|
|
6793
|
+
]
|
|
6794
|
+
],
|
|
5967
6795
|
"minItems": 1
|
|
5968
6796
|
}
|
|
5969
6797
|
],
|
|
5970
6798
|
"description": "Permission value for a single operation. 'all' (everyone), 'authenticated' (logged-in users), or role array ['admin', 'editor'].",
|
|
5971
6799
|
"title": "Table Permission",
|
|
5972
|
-
"examples": [
|
|
6800
|
+
"examples": [
|
|
6801
|
+
"all",
|
|
6802
|
+
"authenticated",
|
|
6803
|
+
[
|
|
6804
|
+
"admin"
|
|
6805
|
+
],
|
|
6806
|
+
[
|
|
6807
|
+
"admin",
|
|
6808
|
+
"editor"
|
|
6809
|
+
]
|
|
6810
|
+
]
|
|
5973
6811
|
},
|
|
5974
6812
|
"create": {
|
|
5975
6813
|
"anyOf": [
|
|
5976
6814
|
{
|
|
5977
6815
|
"type": "string",
|
|
5978
|
-
"enum": [
|
|
6816
|
+
"enum": [
|
|
6817
|
+
"all",
|
|
6818
|
+
"authenticated"
|
|
6819
|
+
]
|
|
5979
6820
|
},
|
|
5980
6821
|
{
|
|
5981
6822
|
"type": "array",
|
|
@@ -5984,19 +6825,45 @@
|
|
|
5984
6825
|
},
|
|
5985
6826
|
"description": "Array of role names that have access (e.g., admin, editor). At least one role.",
|
|
5986
6827
|
"title": "minItems(1)",
|
|
5987
|
-
"examples": [
|
|
6828
|
+
"examples": [
|
|
6829
|
+
[
|
|
6830
|
+
"admin"
|
|
6831
|
+
],
|
|
6832
|
+
[
|
|
6833
|
+
"admin",
|
|
6834
|
+
"editor"
|
|
6835
|
+
],
|
|
6836
|
+
[
|
|
6837
|
+
"admin",
|
|
6838
|
+
"member",
|
|
6839
|
+
"viewer"
|
|
6840
|
+
]
|
|
6841
|
+
],
|
|
5988
6842
|
"minItems": 1
|
|
5989
6843
|
}
|
|
5990
6844
|
],
|
|
5991
6845
|
"description": "Permission value for a single operation. 'all' (everyone), 'authenticated' (logged-in users), or role array ['admin', 'editor'].",
|
|
5992
6846
|
"title": "Table Permission",
|
|
5993
|
-
"examples": [
|
|
6847
|
+
"examples": [
|
|
6848
|
+
"all",
|
|
6849
|
+
"authenticated",
|
|
6850
|
+
[
|
|
6851
|
+
"admin"
|
|
6852
|
+
],
|
|
6853
|
+
[
|
|
6854
|
+
"admin",
|
|
6855
|
+
"editor"
|
|
6856
|
+
]
|
|
6857
|
+
]
|
|
5994
6858
|
},
|
|
5995
6859
|
"update": {
|
|
5996
6860
|
"anyOf": [
|
|
5997
6861
|
{
|
|
5998
6862
|
"type": "string",
|
|
5999
|
-
"enum": [
|
|
6863
|
+
"enum": [
|
|
6864
|
+
"all",
|
|
6865
|
+
"authenticated"
|
|
6866
|
+
]
|
|
6000
6867
|
},
|
|
6001
6868
|
{
|
|
6002
6869
|
"type": "array",
|
|
@@ -6005,19 +6872,45 @@
|
|
|
6005
6872
|
},
|
|
6006
6873
|
"description": "Array of role names that have access (e.g., admin, editor). At least one role.",
|
|
6007
6874
|
"title": "minItems(1)",
|
|
6008
|
-
"examples": [
|
|
6875
|
+
"examples": [
|
|
6876
|
+
[
|
|
6877
|
+
"admin"
|
|
6878
|
+
],
|
|
6879
|
+
[
|
|
6880
|
+
"admin",
|
|
6881
|
+
"editor"
|
|
6882
|
+
],
|
|
6883
|
+
[
|
|
6884
|
+
"admin",
|
|
6885
|
+
"member",
|
|
6886
|
+
"viewer"
|
|
6887
|
+
]
|
|
6888
|
+
],
|
|
6009
6889
|
"minItems": 1
|
|
6010
6890
|
}
|
|
6011
6891
|
],
|
|
6012
6892
|
"description": "Permission value for a single operation. 'all' (everyone), 'authenticated' (logged-in users), or role array ['admin', 'editor'].",
|
|
6013
6893
|
"title": "Table Permission",
|
|
6014
|
-
"examples": [
|
|
6894
|
+
"examples": [
|
|
6895
|
+
"all",
|
|
6896
|
+
"authenticated",
|
|
6897
|
+
[
|
|
6898
|
+
"admin"
|
|
6899
|
+
],
|
|
6900
|
+
[
|
|
6901
|
+
"admin",
|
|
6902
|
+
"editor"
|
|
6903
|
+
]
|
|
6904
|
+
]
|
|
6015
6905
|
},
|
|
6016
6906
|
"delete": {
|
|
6017
6907
|
"anyOf": [
|
|
6018
6908
|
{
|
|
6019
6909
|
"type": "string",
|
|
6020
|
-
"enum": [
|
|
6910
|
+
"enum": [
|
|
6911
|
+
"all",
|
|
6912
|
+
"authenticated"
|
|
6913
|
+
]
|
|
6021
6914
|
},
|
|
6022
6915
|
{
|
|
6023
6916
|
"type": "array",
|
|
@@ -6026,19 +6919,44 @@
|
|
|
6026
6919
|
},
|
|
6027
6920
|
"description": "Array of role names that have access (e.g., admin, editor). At least one role.",
|
|
6028
6921
|
"title": "minItems(1)",
|
|
6029
|
-
"examples": [
|
|
6922
|
+
"examples": [
|
|
6923
|
+
[
|
|
6924
|
+
"admin"
|
|
6925
|
+
],
|
|
6926
|
+
[
|
|
6927
|
+
"admin",
|
|
6928
|
+
"editor"
|
|
6929
|
+
],
|
|
6930
|
+
[
|
|
6931
|
+
"admin",
|
|
6932
|
+
"member",
|
|
6933
|
+
"viewer"
|
|
6934
|
+
]
|
|
6935
|
+
],
|
|
6030
6936
|
"minItems": 1
|
|
6031
6937
|
}
|
|
6032
6938
|
],
|
|
6033
6939
|
"description": "Permission value for a single operation. 'all' (everyone), 'authenticated' (logged-in users), or role array ['admin', 'editor'].",
|
|
6034
6940
|
"title": "Table Permission",
|
|
6035
|
-
"examples": [
|
|
6941
|
+
"examples": [
|
|
6942
|
+
"all",
|
|
6943
|
+
"authenticated",
|
|
6944
|
+
[
|
|
6945
|
+
"admin"
|
|
6946
|
+
],
|
|
6947
|
+
[
|
|
6948
|
+
"admin",
|
|
6949
|
+
"editor"
|
|
6950
|
+
]
|
|
6951
|
+
]
|
|
6036
6952
|
},
|
|
6037
6953
|
"fields": {
|
|
6038
6954
|
"type": "array",
|
|
6039
6955
|
"items": {
|
|
6040
6956
|
"type": "object",
|
|
6041
|
-
"required": [
|
|
6957
|
+
"required": [
|
|
6958
|
+
"field"
|
|
6959
|
+
],
|
|
6042
6960
|
"properties": {
|
|
6043
6961
|
"field": {
|
|
6044
6962
|
"type": "string"
|
|
@@ -6047,7 +6965,10 @@
|
|
|
6047
6965
|
"anyOf": [
|
|
6048
6966
|
{
|
|
6049
6967
|
"type": "string",
|
|
6050
|
-
"enum": [
|
|
6968
|
+
"enum": [
|
|
6969
|
+
"all",
|
|
6970
|
+
"authenticated"
|
|
6971
|
+
]
|
|
6051
6972
|
},
|
|
6052
6973
|
{
|
|
6053
6974
|
"type": "array",
|
|
@@ -6057,22 +6978,44 @@
|
|
|
6057
6978
|
"description": "Array of role names that have access (e.g., admin, editor). At least one role.",
|
|
6058
6979
|
"title": "minItems(1)",
|
|
6059
6980
|
"examples": [
|
|
6060
|
-
[
|
|
6061
|
-
|
|
6062
|
-
|
|
6981
|
+
[
|
|
6982
|
+
"admin"
|
|
6983
|
+
],
|
|
6984
|
+
[
|
|
6985
|
+
"admin",
|
|
6986
|
+
"editor"
|
|
6987
|
+
],
|
|
6988
|
+
[
|
|
6989
|
+
"admin",
|
|
6990
|
+
"member",
|
|
6991
|
+
"viewer"
|
|
6992
|
+
]
|
|
6063
6993
|
],
|
|
6064
6994
|
"minItems": 1
|
|
6065
6995
|
}
|
|
6066
6996
|
],
|
|
6067
6997
|
"description": "Permission value for a single operation. 'all' (everyone), 'authenticated' (logged-in users), or role array ['admin', 'editor'].",
|
|
6068
6998
|
"title": "Table Permission",
|
|
6069
|
-
"examples": [
|
|
6999
|
+
"examples": [
|
|
7000
|
+
"all",
|
|
7001
|
+
"authenticated",
|
|
7002
|
+
[
|
|
7003
|
+
"admin"
|
|
7004
|
+
],
|
|
7005
|
+
[
|
|
7006
|
+
"admin",
|
|
7007
|
+
"editor"
|
|
7008
|
+
]
|
|
7009
|
+
]
|
|
6070
7010
|
},
|
|
6071
7011
|
"write": {
|
|
6072
7012
|
"anyOf": [
|
|
6073
7013
|
{
|
|
6074
7014
|
"type": "string",
|
|
6075
|
-
"enum": [
|
|
7015
|
+
"enum": [
|
|
7016
|
+
"all",
|
|
7017
|
+
"authenticated"
|
|
7018
|
+
]
|
|
6076
7019
|
},
|
|
6077
7020
|
{
|
|
6078
7021
|
"type": "array",
|
|
@@ -6082,16 +7025,35 @@
|
|
|
6082
7025
|
"description": "Array of role names that have access (e.g., admin, editor). At least one role.",
|
|
6083
7026
|
"title": "minItems(1)",
|
|
6084
7027
|
"examples": [
|
|
6085
|
-
[
|
|
6086
|
-
|
|
6087
|
-
|
|
7028
|
+
[
|
|
7029
|
+
"admin"
|
|
7030
|
+
],
|
|
7031
|
+
[
|
|
7032
|
+
"admin",
|
|
7033
|
+
"editor"
|
|
7034
|
+
],
|
|
7035
|
+
[
|
|
7036
|
+
"admin",
|
|
7037
|
+
"member",
|
|
7038
|
+
"viewer"
|
|
7039
|
+
]
|
|
6088
7040
|
],
|
|
6089
7041
|
"minItems": 1
|
|
6090
7042
|
}
|
|
6091
7043
|
],
|
|
6092
7044
|
"description": "Permission value for a single operation. 'all' (everyone), 'authenticated' (logged-in users), or role array ['admin', 'editor'].",
|
|
6093
7045
|
"title": "Table Permission",
|
|
6094
|
-
"examples": [
|
|
7046
|
+
"examples": [
|
|
7047
|
+
"all",
|
|
7048
|
+
"authenticated",
|
|
7049
|
+
[
|
|
7050
|
+
"admin"
|
|
7051
|
+
],
|
|
7052
|
+
[
|
|
7053
|
+
"admin",
|
|
7054
|
+
"editor"
|
|
7055
|
+
]
|
|
7056
|
+
]
|
|
6095
7057
|
}
|
|
6096
7058
|
},
|
|
6097
7059
|
"additionalProperties": false,
|
|
@@ -6100,13 +7062,20 @@
|
|
|
6100
7062
|
"examples": [
|
|
6101
7063
|
{
|
|
6102
7064
|
"field": "salary",
|
|
6103
|
-
"read": [
|
|
6104
|
-
|
|
7065
|
+
"read": [
|
|
7066
|
+
"admin",
|
|
7067
|
+
"hr"
|
|
7068
|
+
],
|
|
7069
|
+
"write": [
|
|
7070
|
+
"admin"
|
|
7071
|
+
]
|
|
6105
7072
|
},
|
|
6106
7073
|
{
|
|
6107
7074
|
"field": "department",
|
|
6108
7075
|
"read": "all",
|
|
6109
|
-
"write": [
|
|
7076
|
+
"write": [
|
|
7077
|
+
"admin"
|
|
7078
|
+
]
|
|
6110
7079
|
}
|
|
6111
7080
|
]
|
|
6112
7081
|
},
|
|
@@ -6127,7 +7096,10 @@
|
|
|
6127
7096
|
"anyOf": [
|
|
6128
7097
|
{
|
|
6129
7098
|
"type": "string",
|
|
6130
|
-
"enum": [
|
|
7099
|
+
"enum": [
|
|
7100
|
+
"all",
|
|
7101
|
+
"authenticated"
|
|
7102
|
+
]
|
|
6131
7103
|
},
|
|
6132
7104
|
{
|
|
6133
7105
|
"type": "array",
|
|
@@ -6136,19 +7108,45 @@
|
|
|
6136
7108
|
},
|
|
6137
7109
|
"description": "Array of role names that have access (e.g., admin, editor). At least one role.",
|
|
6138
7110
|
"title": "minItems(1)",
|
|
6139
|
-
"examples": [
|
|
7111
|
+
"examples": [
|
|
7112
|
+
[
|
|
7113
|
+
"admin"
|
|
7114
|
+
],
|
|
7115
|
+
[
|
|
7116
|
+
"admin",
|
|
7117
|
+
"editor"
|
|
7118
|
+
],
|
|
7119
|
+
[
|
|
7120
|
+
"admin",
|
|
7121
|
+
"member",
|
|
7122
|
+
"viewer"
|
|
7123
|
+
]
|
|
7124
|
+
],
|
|
6140
7125
|
"minItems": 1
|
|
6141
7126
|
}
|
|
6142
7127
|
],
|
|
6143
7128
|
"description": "Permission value for a single operation. 'all' (everyone), 'authenticated' (logged-in users), or role array ['admin', 'editor'].",
|
|
6144
7129
|
"title": "Table Permission",
|
|
6145
|
-
"examples": [
|
|
7130
|
+
"examples": [
|
|
7131
|
+
"all",
|
|
7132
|
+
"authenticated",
|
|
7133
|
+
[
|
|
7134
|
+
"admin"
|
|
7135
|
+
],
|
|
7136
|
+
[
|
|
7137
|
+
"admin",
|
|
7138
|
+
"editor"
|
|
7139
|
+
]
|
|
7140
|
+
]
|
|
6146
7141
|
},
|
|
6147
7142
|
"comment": {
|
|
6148
7143
|
"anyOf": [
|
|
6149
7144
|
{
|
|
6150
7145
|
"type": "string",
|
|
6151
|
-
"enum": [
|
|
7146
|
+
"enum": [
|
|
7147
|
+
"all",
|
|
7148
|
+
"authenticated"
|
|
7149
|
+
]
|
|
6152
7150
|
},
|
|
6153
7151
|
{
|
|
6154
7152
|
"type": "array",
|
|
@@ -6157,19 +7155,45 @@
|
|
|
6157
7155
|
},
|
|
6158
7156
|
"description": "Array of role names that have access (e.g., admin, editor). At least one role.",
|
|
6159
7157
|
"title": "minItems(1)",
|
|
6160
|
-
"examples": [
|
|
7158
|
+
"examples": [
|
|
7159
|
+
[
|
|
7160
|
+
"admin"
|
|
7161
|
+
],
|
|
7162
|
+
[
|
|
7163
|
+
"admin",
|
|
7164
|
+
"editor"
|
|
7165
|
+
],
|
|
7166
|
+
[
|
|
7167
|
+
"admin",
|
|
7168
|
+
"member",
|
|
7169
|
+
"viewer"
|
|
7170
|
+
]
|
|
7171
|
+
],
|
|
6161
7172
|
"minItems": 1
|
|
6162
7173
|
}
|
|
6163
7174
|
],
|
|
6164
7175
|
"description": "Permission value for a single operation. 'all' (everyone), 'authenticated' (logged-in users), or role array ['admin', 'editor'].",
|
|
6165
7176
|
"title": "Table Permission",
|
|
6166
|
-
"examples": [
|
|
7177
|
+
"examples": [
|
|
7178
|
+
"all",
|
|
7179
|
+
"authenticated",
|
|
7180
|
+
[
|
|
7181
|
+
"admin"
|
|
7182
|
+
],
|
|
7183
|
+
[
|
|
7184
|
+
"admin",
|
|
7185
|
+
"editor"
|
|
7186
|
+
]
|
|
7187
|
+
]
|
|
6167
7188
|
},
|
|
6168
7189
|
"create": {
|
|
6169
7190
|
"anyOf": [
|
|
6170
7191
|
{
|
|
6171
7192
|
"type": "string",
|
|
6172
|
-
"enum": [
|
|
7193
|
+
"enum": [
|
|
7194
|
+
"all",
|
|
7195
|
+
"authenticated"
|
|
7196
|
+
]
|
|
6173
7197
|
},
|
|
6174
7198
|
{
|
|
6175
7199
|
"type": "array",
|
|
@@ -6178,19 +7202,45 @@
|
|
|
6178
7202
|
},
|
|
6179
7203
|
"description": "Array of role names that have access (e.g., admin, editor). At least one role.",
|
|
6180
7204
|
"title": "minItems(1)",
|
|
6181
|
-
"examples": [
|
|
7205
|
+
"examples": [
|
|
7206
|
+
[
|
|
7207
|
+
"admin"
|
|
7208
|
+
],
|
|
7209
|
+
[
|
|
7210
|
+
"admin",
|
|
7211
|
+
"editor"
|
|
7212
|
+
],
|
|
7213
|
+
[
|
|
7214
|
+
"admin",
|
|
7215
|
+
"member",
|
|
7216
|
+
"viewer"
|
|
7217
|
+
]
|
|
7218
|
+
],
|
|
6182
7219
|
"minItems": 1
|
|
6183
7220
|
}
|
|
6184
7221
|
],
|
|
6185
7222
|
"description": "Permission value for a single operation. 'all' (everyone), 'authenticated' (logged-in users), or role array ['admin', 'editor'].",
|
|
6186
7223
|
"title": "Table Permission",
|
|
6187
|
-
"examples": [
|
|
7224
|
+
"examples": [
|
|
7225
|
+
"all",
|
|
7226
|
+
"authenticated",
|
|
7227
|
+
[
|
|
7228
|
+
"admin"
|
|
7229
|
+
],
|
|
7230
|
+
[
|
|
7231
|
+
"admin",
|
|
7232
|
+
"editor"
|
|
7233
|
+
]
|
|
7234
|
+
]
|
|
6188
7235
|
},
|
|
6189
7236
|
"update": {
|
|
6190
7237
|
"anyOf": [
|
|
6191
7238
|
{
|
|
6192
7239
|
"type": "string",
|
|
6193
|
-
"enum": [
|
|
7240
|
+
"enum": [
|
|
7241
|
+
"all",
|
|
7242
|
+
"authenticated"
|
|
7243
|
+
]
|
|
6194
7244
|
},
|
|
6195
7245
|
{
|
|
6196
7246
|
"type": "array",
|
|
@@ -6199,19 +7249,45 @@
|
|
|
6199
7249
|
},
|
|
6200
7250
|
"description": "Array of role names that have access (e.g., admin, editor). At least one role.",
|
|
6201
7251
|
"title": "minItems(1)",
|
|
6202
|
-
"examples": [
|
|
7252
|
+
"examples": [
|
|
7253
|
+
[
|
|
7254
|
+
"admin"
|
|
7255
|
+
],
|
|
7256
|
+
[
|
|
7257
|
+
"admin",
|
|
7258
|
+
"editor"
|
|
7259
|
+
],
|
|
7260
|
+
[
|
|
7261
|
+
"admin",
|
|
7262
|
+
"member",
|
|
7263
|
+
"viewer"
|
|
7264
|
+
]
|
|
7265
|
+
],
|
|
6203
7266
|
"minItems": 1
|
|
6204
7267
|
}
|
|
6205
7268
|
],
|
|
6206
7269
|
"description": "Permission value for a single operation. 'all' (everyone), 'authenticated' (logged-in users), or role array ['admin', 'editor'].",
|
|
6207
7270
|
"title": "Table Permission",
|
|
6208
|
-
"examples": [
|
|
7271
|
+
"examples": [
|
|
7272
|
+
"all",
|
|
7273
|
+
"authenticated",
|
|
7274
|
+
[
|
|
7275
|
+
"admin"
|
|
7276
|
+
],
|
|
7277
|
+
[
|
|
7278
|
+
"admin",
|
|
7279
|
+
"editor"
|
|
7280
|
+
]
|
|
7281
|
+
]
|
|
6209
7282
|
},
|
|
6210
7283
|
"delete": {
|
|
6211
7284
|
"anyOf": [
|
|
6212
7285
|
{
|
|
6213
7286
|
"type": "string",
|
|
6214
|
-
"enum": [
|
|
7287
|
+
"enum": [
|
|
7288
|
+
"all",
|
|
7289
|
+
"authenticated"
|
|
7290
|
+
]
|
|
6215
7291
|
},
|
|
6216
7292
|
{
|
|
6217
7293
|
"type": "array",
|
|
@@ -6220,13 +7296,36 @@
|
|
|
6220
7296
|
},
|
|
6221
7297
|
"description": "Array of role names that have access (e.g., admin, editor). At least one role.",
|
|
6222
7298
|
"title": "minItems(1)",
|
|
6223
|
-
"examples": [
|
|
7299
|
+
"examples": [
|
|
7300
|
+
[
|
|
7301
|
+
"admin"
|
|
7302
|
+
],
|
|
7303
|
+
[
|
|
7304
|
+
"admin",
|
|
7305
|
+
"editor"
|
|
7306
|
+
],
|
|
7307
|
+
[
|
|
7308
|
+
"admin",
|
|
7309
|
+
"member",
|
|
7310
|
+
"viewer"
|
|
7311
|
+
]
|
|
7312
|
+
],
|
|
6224
7313
|
"minItems": 1
|
|
6225
7314
|
}
|
|
6226
7315
|
],
|
|
6227
7316
|
"description": "Permission value for a single operation. 'all' (everyone), 'authenticated' (logged-in users), or role array ['admin', 'editor'].",
|
|
6228
7317
|
"title": "Table Permission",
|
|
6229
|
-
"examples": [
|
|
7318
|
+
"examples": [
|
|
7319
|
+
"all",
|
|
7320
|
+
"authenticated",
|
|
7321
|
+
[
|
|
7322
|
+
"admin"
|
|
7323
|
+
],
|
|
7324
|
+
[
|
|
7325
|
+
"admin",
|
|
7326
|
+
"editor"
|
|
7327
|
+
]
|
|
7328
|
+
]
|
|
6230
7329
|
}
|
|
6231
7330
|
},
|
|
6232
7331
|
"additionalProperties": false
|
|
@@ -6239,15 +7338,29 @@
|
|
|
6239
7338
|
{
|
|
6240
7339
|
"read": "all",
|
|
6241
7340
|
"comment": "authenticated",
|
|
6242
|
-
"create": [
|
|
6243
|
-
|
|
6244
|
-
|
|
7341
|
+
"create": [
|
|
7342
|
+
"admin"
|
|
7343
|
+
],
|
|
7344
|
+
"update": [
|
|
7345
|
+
"admin"
|
|
7346
|
+
],
|
|
7347
|
+
"delete": [
|
|
7348
|
+
"admin"
|
|
7349
|
+
]
|
|
6245
7350
|
},
|
|
6246
7351
|
{
|
|
6247
7352
|
"read": "all",
|
|
6248
|
-
"create": [
|
|
6249
|
-
|
|
6250
|
-
|
|
7353
|
+
"create": [
|
|
7354
|
+
"admin",
|
|
7355
|
+
"editor"
|
|
7356
|
+
],
|
|
7357
|
+
"update": [
|
|
7358
|
+
"admin",
|
|
7359
|
+
"editor"
|
|
7360
|
+
],
|
|
7361
|
+
"delete": [
|
|
7362
|
+
"admin"
|
|
7363
|
+
]
|
|
6251
7364
|
}
|
|
6252
7365
|
]
|
|
6253
7366
|
},
|
|
@@ -6271,7 +7384,12 @@
|
|
|
6271
7384
|
"type": "string",
|
|
6272
7385
|
"description": "Color value in hex, rgb, rgba, hsl, or hsla format",
|
|
6273
7386
|
"title": "Color Value",
|
|
6274
|
-
"examples": [
|
|
7387
|
+
"examples": [
|
|
7388
|
+
"#007bff",
|
|
7389
|
+
"#007bff80",
|
|
7390
|
+
"rgb(0, 123, 255)",
|
|
7391
|
+
"hsl(210, 100%, 50%)"
|
|
7392
|
+
],
|
|
6275
7393
|
"pattern": "^#[0-9A-Fa-f]{6}$|^#[0-9A-Fa-f]{8}$|^rgb\\(|^rgba\\(|^hsl\\(|^hsla\\("
|
|
6276
7394
|
}
|
|
6277
7395
|
},
|
|
@@ -6279,7 +7397,12 @@
|
|
|
6279
7397
|
"type": "string",
|
|
6280
7398
|
"description": "Color name in kebab-case format",
|
|
6281
7399
|
"title": "Color Name",
|
|
6282
|
-
"examples": [
|
|
7400
|
+
"examples": [
|
|
7401
|
+
"primary",
|
|
7402
|
+
"primary-hover",
|
|
7403
|
+
"gray-500",
|
|
7404
|
+
"text-muted"
|
|
7405
|
+
],
|
|
6283
7406
|
"pattern": "^[a-z]+[a-z0-9]*(-[a-z0-9]+)*$"
|
|
6284
7407
|
},
|
|
6285
7408
|
"description": "Color design tokens with support for semantic naming and variants",
|
|
@@ -6292,7 +7415,9 @@
|
|
|
6292
7415
|
"patternProperties": {
|
|
6293
7416
|
"": {
|
|
6294
7417
|
"type": "object",
|
|
6295
|
-
"required": [
|
|
7418
|
+
"required": [
|
|
7419
|
+
"family"
|
|
7420
|
+
],
|
|
6296
7421
|
"properties": {
|
|
6297
7422
|
"family": {
|
|
6298
7423
|
"type": "string",
|
|
@@ -6303,26 +7428,53 @@
|
|
|
6303
7428
|
"type": "string",
|
|
6304
7429
|
"description": "Fallback font stack",
|
|
6305
7430
|
"title": "Fallback Font Stack",
|
|
6306
|
-
"examples": [
|
|
7431
|
+
"examples": [
|
|
7432
|
+
"system-ui, sans-serif",
|
|
7433
|
+
"Georgia, serif",
|
|
7434
|
+
"monospace"
|
|
7435
|
+
]
|
|
6307
7436
|
},
|
|
6308
7437
|
"weights": {
|
|
6309
7438
|
"type": "array",
|
|
6310
7439
|
"items": {
|
|
6311
7440
|
"type": "number",
|
|
6312
|
-
"enum": [
|
|
7441
|
+
"enum": [
|
|
7442
|
+
100,
|
|
7443
|
+
200,
|
|
7444
|
+
300,
|
|
7445
|
+
400,
|
|
7446
|
+
500,
|
|
7447
|
+
600,
|
|
7448
|
+
700,
|
|
7449
|
+
800,
|
|
7450
|
+
900
|
|
7451
|
+
],
|
|
6313
7452
|
"description": "Font weight value (100-900 in increments of 100)",
|
|
6314
7453
|
"title": "Font Weight"
|
|
6315
7454
|
},
|
|
6316
7455
|
"description": "Available font weights",
|
|
6317
7456
|
"title": "Font Weights",
|
|
6318
7457
|
"examples": [
|
|
6319
|
-
[
|
|
6320
|
-
|
|
7458
|
+
[
|
|
7459
|
+
400,
|
|
7460
|
+
700
|
|
7461
|
+
],
|
|
7462
|
+
[
|
|
7463
|
+
300,
|
|
7464
|
+
400,
|
|
7465
|
+
500,
|
|
7466
|
+
600,
|
|
7467
|
+
700
|
|
7468
|
+
]
|
|
6321
7469
|
]
|
|
6322
7470
|
},
|
|
6323
7471
|
"style": {
|
|
6324
7472
|
"type": "string",
|
|
6325
|
-
"enum": [
|
|
7473
|
+
"enum": [
|
|
7474
|
+
"normal",
|
|
7475
|
+
"italic",
|
|
7476
|
+
"oblique"
|
|
7477
|
+
],
|
|
6326
7478
|
"description": "Font style",
|
|
6327
7479
|
"title": "Font Style",
|
|
6328
7480
|
"default": "normal"
|
|
@@ -6331,23 +7483,40 @@
|
|
|
6331
7483
|
"type": "string",
|
|
6332
7484
|
"description": "Default font size",
|
|
6333
7485
|
"title": "Font Size",
|
|
6334
|
-
"examples": [
|
|
7486
|
+
"examples": [
|
|
7487
|
+
"16px",
|
|
7488
|
+
"1rem",
|
|
7489
|
+
"14px"
|
|
7490
|
+
]
|
|
6335
7491
|
},
|
|
6336
7492
|
"lineHeight": {
|
|
6337
7493
|
"type": "string",
|
|
6338
7494
|
"description": "Default line height",
|
|
6339
7495
|
"title": "Line Height",
|
|
6340
|
-
"examples": [
|
|
7496
|
+
"examples": [
|
|
7497
|
+
"1.5",
|
|
7498
|
+
"1.75",
|
|
7499
|
+
"24px"
|
|
7500
|
+
]
|
|
6341
7501
|
},
|
|
6342
7502
|
"letterSpacing": {
|
|
6343
7503
|
"type": "string",
|
|
6344
7504
|
"description": "Letter spacing",
|
|
6345
7505
|
"title": "Letter Spacing",
|
|
6346
|
-
"examples": [
|
|
7506
|
+
"examples": [
|
|
7507
|
+
"0",
|
|
7508
|
+
"0.05em",
|
|
7509
|
+
"-0.01em"
|
|
7510
|
+
]
|
|
6347
7511
|
},
|
|
6348
7512
|
"transform": {
|
|
6349
7513
|
"type": "string",
|
|
6350
|
-
"enum": [
|
|
7514
|
+
"enum": [
|
|
7515
|
+
"none",
|
|
7516
|
+
"uppercase",
|
|
7517
|
+
"lowercase",
|
|
7518
|
+
"capitalize"
|
|
7519
|
+
],
|
|
6351
7520
|
"description": "Text transformation",
|
|
6352
7521
|
"title": "Text Transform"
|
|
6353
7522
|
},
|
|
@@ -6370,7 +7539,13 @@
|
|
|
6370
7539
|
"type": "string",
|
|
6371
7540
|
"description": "Semantic font category name (alphabetic characters only)",
|
|
6372
7541
|
"title": "Font Category Key",
|
|
6373
|
-
"examples": [
|
|
7542
|
+
"examples": [
|
|
7543
|
+
"title",
|
|
7544
|
+
"body",
|
|
7545
|
+
"mono",
|
|
7546
|
+
"heading",
|
|
7547
|
+
"label"
|
|
7548
|
+
],
|
|
6374
7549
|
"pattern": "^[a-zA-Z]+$"
|
|
6375
7550
|
},
|
|
6376
7551
|
"description": "Typography design tokens for font families and styles",
|
|
@@ -6465,7 +7640,13 @@
|
|
|
6465
7640
|
"anyOf": [
|
|
6466
7641
|
{
|
|
6467
7642
|
"type": "string",
|
|
6468
|
-
"enum": [
|
|
7643
|
+
"enum": [
|
|
7644
|
+
"linear",
|
|
7645
|
+
"ease",
|
|
7646
|
+
"ease-in",
|
|
7647
|
+
"ease-out",
|
|
7648
|
+
"ease-in-out"
|
|
7649
|
+
]
|
|
6469
7650
|
},
|
|
6470
7651
|
{
|
|
6471
7652
|
"type": "string",
|
|
@@ -6529,7 +7710,13 @@
|
|
|
6529
7710
|
"anyOf": [
|
|
6530
7711
|
{
|
|
6531
7712
|
"type": "string",
|
|
6532
|
-
"enum": [
|
|
7713
|
+
"enum": [
|
|
7714
|
+
"linear",
|
|
7715
|
+
"ease",
|
|
7716
|
+
"ease-in",
|
|
7717
|
+
"ease-out",
|
|
7718
|
+
"ease-in-out"
|
|
7719
|
+
]
|
|
6533
7720
|
},
|
|
6534
7721
|
{
|
|
6535
7722
|
"type": "string",
|
|
@@ -6579,7 +7766,14 @@
|
|
|
6579
7766
|
"type": "string",
|
|
6580
7767
|
"description": "Animation name (alphanumeric)",
|
|
6581
7768
|
"title": "Animation Key",
|
|
6582
|
-
"examples": [
|
|
7769
|
+
"examples": [
|
|
7770
|
+
"fadeIn",
|
|
7771
|
+
"slideUp",
|
|
7772
|
+
"modalOpen",
|
|
7773
|
+
"duration",
|
|
7774
|
+
"easing",
|
|
7775
|
+
"keyframes"
|
|
7776
|
+
],
|
|
6583
7777
|
"pattern": "^[a-zA-Z][a-zA-Z0-9]*$"
|
|
6584
7778
|
},
|
|
6585
7779
|
"description": "Animation and transition design tokens",
|
|
@@ -6594,7 +7788,12 @@
|
|
|
6594
7788
|
"type": "string",
|
|
6595
7789
|
"description": "Breakpoint value in pixels",
|
|
6596
7790
|
"title": "Breakpoint Value",
|
|
6597
|
-
"examples": [
|
|
7791
|
+
"examples": [
|
|
7792
|
+
"640px",
|
|
7793
|
+
"768px",
|
|
7794
|
+
"1024px",
|
|
7795
|
+
"1280px"
|
|
7796
|
+
],
|
|
6598
7797
|
"pattern": "^[0-9]+px$"
|
|
6599
7798
|
}
|
|
6600
7799
|
},
|
|
@@ -6602,7 +7801,13 @@
|
|
|
6602
7801
|
"type": "string",
|
|
6603
7802
|
"description": "Breakpoint name (lowercase alphanumeric)",
|
|
6604
7803
|
"title": "Breakpoint Key",
|
|
6605
|
-
"examples": [
|
|
7804
|
+
"examples": [
|
|
7805
|
+
"sm",
|
|
7806
|
+
"md",
|
|
7807
|
+
"lg",
|
|
7808
|
+
"xl",
|
|
7809
|
+
"2xl"
|
|
7810
|
+
],
|
|
6606
7811
|
"pattern": "^[a-z0-9]+$"
|
|
6607
7812
|
},
|
|
6608
7813
|
"description": "Responsive design breakpoints",
|
|
@@ -6628,7 +7833,15 @@
|
|
|
6628
7833
|
"type": "string",
|
|
6629
7834
|
"description": "Semantic shadow name (kebab-case with numbers)",
|
|
6630
7835
|
"title": "Shadow Key",
|
|
6631
|
-
"examples": [
|
|
7836
|
+
"examples": [
|
|
7837
|
+
"sm",
|
|
7838
|
+
"md",
|
|
7839
|
+
"lg",
|
|
7840
|
+
"xl",
|
|
7841
|
+
"2xl",
|
|
7842
|
+
"inner",
|
|
7843
|
+
"none"
|
|
7844
|
+
],
|
|
6632
7845
|
"pattern": "^[a-z0-9]+(-[a-z0-9]+)*$"
|
|
6633
7846
|
},
|
|
6634
7847
|
"description": "Box shadow design tokens",
|
|
@@ -6643,14 +7856,28 @@
|
|
|
6643
7856
|
"type": "string",
|
|
6644
7857
|
"description": "CSS border-radius value",
|
|
6645
7858
|
"title": "Border Radius Value",
|
|
6646
|
-
"examples": [
|
|
7859
|
+
"examples": [
|
|
7860
|
+
"0",
|
|
7861
|
+
"0.125rem",
|
|
7862
|
+
"0.5rem",
|
|
7863
|
+
"9999px"
|
|
7864
|
+
]
|
|
6647
7865
|
}
|
|
6648
7866
|
},
|
|
6649
7867
|
"propertyNames": {
|
|
6650
7868
|
"type": "string",
|
|
6651
7869
|
"description": "Semantic radius name (kebab-case with numbers) or DEFAULT for base radius",
|
|
6652
7870
|
"title": "Border Radius Key",
|
|
6653
|
-
"examples": [
|
|
7871
|
+
"examples": [
|
|
7872
|
+
"DEFAULT",
|
|
7873
|
+
"none",
|
|
7874
|
+
"sm",
|
|
7875
|
+
"md",
|
|
7876
|
+
"lg",
|
|
7877
|
+
"2xl",
|
|
7878
|
+
"3xl",
|
|
7879
|
+
"full"
|
|
7880
|
+
],
|
|
6654
7881
|
"pattern": "^(DEFAULT|[a-z0-9]+(-[a-z0-9]+)*)$"
|
|
6655
7882
|
},
|
|
6656
7883
|
"description": "Border radius design tokens",
|
|
@@ -6663,44 +7890,79 @@
|
|
|
6663
7890
|
},
|
|
6664
7891
|
"languages": {
|
|
6665
7892
|
"type": "object",
|
|
6666
|
-
"required": [
|
|
7893
|
+
"required": [
|
|
7894
|
+
"default",
|
|
7895
|
+
"supported"
|
|
7896
|
+
],
|
|
6667
7897
|
"properties": {
|
|
6668
7898
|
"default": {
|
|
6669
7899
|
"type": "string",
|
|
6670
7900
|
"description": "Short language code (2 letters) for URLs and routing",
|
|
6671
7901
|
"title": "Language Code",
|
|
6672
|
-
"examples": [
|
|
7902
|
+
"examples": [
|
|
7903
|
+
"en",
|
|
7904
|
+
"fr",
|
|
7905
|
+
"es",
|
|
7906
|
+
"de",
|
|
7907
|
+
"ar",
|
|
7908
|
+
"he"
|
|
7909
|
+
],
|
|
6673
7910
|
"pattern": "^[a-z]{2}$"
|
|
6674
7911
|
},
|
|
6675
7912
|
"supported": {
|
|
6676
7913
|
"type": "array",
|
|
6677
7914
|
"items": {
|
|
6678
7915
|
"type": "object",
|
|
6679
|
-
"required": [
|
|
7916
|
+
"required": [
|
|
7917
|
+
"code",
|
|
7918
|
+
"label"
|
|
7919
|
+
],
|
|
6680
7920
|
"properties": {
|
|
6681
7921
|
"code": {
|
|
6682
7922
|
"type": "string",
|
|
6683
7923
|
"description": "Short language code used for URLs and routing (ISO 639-1, 2 letters)",
|
|
6684
7924
|
"title": "Language Code",
|
|
6685
|
-
"examples": [
|
|
7925
|
+
"examples": [
|
|
7926
|
+
"en",
|
|
7927
|
+
"fr",
|
|
7928
|
+
"es",
|
|
7929
|
+
"de",
|
|
7930
|
+
"ar",
|
|
7931
|
+
"he"
|
|
7932
|
+
],
|
|
6686
7933
|
"pattern": "^[a-z]{2}$"
|
|
6687
7934
|
},
|
|
6688
7935
|
"locale": {
|
|
6689
7936
|
"type": "string",
|
|
6690
7937
|
"description": "Full locale code (optional - defaults to short code if not specified). Used for HTML lang attribute and hreflang links.",
|
|
6691
7938
|
"title": "Language Locale",
|
|
6692
|
-
"examples": [
|
|
7939
|
+
"examples": [
|
|
7940
|
+
"en-US",
|
|
7941
|
+
"fr-FR",
|
|
7942
|
+
"es-ES",
|
|
7943
|
+
"de-DE",
|
|
7944
|
+
"ar-SA",
|
|
7945
|
+
"he-IL"
|
|
7946
|
+
],
|
|
6693
7947
|
"pattern": "^[a-z]{2}-[A-Z]{2}$"
|
|
6694
7948
|
},
|
|
6695
7949
|
"label": {
|
|
6696
7950
|
"type": "string",
|
|
6697
7951
|
"description": "Human-readable language name",
|
|
6698
7952
|
"title": "Language Label",
|
|
6699
|
-
"examples": [
|
|
7953
|
+
"examples": [
|
|
7954
|
+
"English",
|
|
7955
|
+
"Français",
|
|
7956
|
+
"Español",
|
|
7957
|
+
"العربية"
|
|
7958
|
+
]
|
|
6700
7959
|
},
|
|
6701
7960
|
"direction": {
|
|
6702
7961
|
"type": "string",
|
|
6703
|
-
"enum": [
|
|
7962
|
+
"enum": [
|
|
7963
|
+
"ltr",
|
|
7964
|
+
"rtl"
|
|
7965
|
+
],
|
|
6704
7966
|
"description": "Text direction (left-to-right or right-to-left)",
|
|
6705
7967
|
"title": "Text Direction"
|
|
6706
7968
|
},
|
|
@@ -6708,7 +7970,12 @@
|
|
|
6708
7970
|
"type": "string",
|
|
6709
7971
|
"description": "Flag emoji or icon path",
|
|
6710
7972
|
"title": "Language Flag",
|
|
6711
|
-
"examples": [
|
|
7973
|
+
"examples": [
|
|
7974
|
+
"🇺🇸",
|
|
7975
|
+
"🇫🇷",
|
|
7976
|
+
"🇪🇸",
|
|
7977
|
+
"/flags/us.svg"
|
|
7978
|
+
]
|
|
6712
7979
|
}
|
|
6713
7980
|
},
|
|
6714
7981
|
"additionalProperties": false,
|
|
@@ -6723,7 +7990,14 @@
|
|
|
6723
7990
|
"type": "string",
|
|
6724
7991
|
"description": "Short language code (2 letters) for URLs and routing",
|
|
6725
7992
|
"title": "Language Code",
|
|
6726
|
-
"examples": [
|
|
7993
|
+
"examples": [
|
|
7994
|
+
"en",
|
|
7995
|
+
"fr",
|
|
7996
|
+
"es",
|
|
7997
|
+
"de",
|
|
7998
|
+
"ar",
|
|
7999
|
+
"he"
|
|
8000
|
+
],
|
|
6727
8001
|
"pattern": "^[a-z]{2}$"
|
|
6728
8002
|
},
|
|
6729
8003
|
"detectBrowser": {
|
|
@@ -6750,7 +8024,12 @@
|
|
|
6750
8024
|
"type": "string",
|
|
6751
8025
|
"description": "Key for centralized translations dictionary",
|
|
6752
8026
|
"title": "Translation Key",
|
|
6753
|
-
"examples": [
|
|
8027
|
+
"examples": [
|
|
8028
|
+
"common.save",
|
|
8029
|
+
"nav.home",
|
|
8030
|
+
"homepage.hero.title",
|
|
8031
|
+
"errors.404"
|
|
8032
|
+
],
|
|
6754
8033
|
"pattern": "^[a-zA-Z0-9._-]+$"
|
|
6755
8034
|
},
|
|
6756
8035
|
"description": "Maps translation keys to localized strings for a single language",
|
|
@@ -6761,7 +8040,14 @@
|
|
|
6761
8040
|
"type": "string",
|
|
6762
8041
|
"description": "Short language code (2 letters) for URLs and routing",
|
|
6763
8042
|
"title": "Language Code",
|
|
6764
|
-
"examples": [
|
|
8043
|
+
"examples": [
|
|
8044
|
+
"en",
|
|
8045
|
+
"fr",
|
|
8046
|
+
"es",
|
|
8047
|
+
"de",
|
|
8048
|
+
"ar",
|
|
8049
|
+
"he"
|
|
8050
|
+
],
|
|
6765
8051
|
"pattern": "^[a-z]{2}$"
|
|
6766
8052
|
},
|
|
6767
8053
|
"description": "Translation dictionaries for all supported languages (keyed by short codes: en, fr, es). Use $t:key syntax to reference translations.",
|
|
@@ -6772,7 +8058,9 @@
|
|
|
6772
8058
|
},
|
|
6773
8059
|
"auth": {
|
|
6774
8060
|
"type": "object",
|
|
6775
|
-
"required": [
|
|
8061
|
+
"required": [
|
|
8062
|
+
"strategies"
|
|
8063
|
+
],
|
|
6776
8064
|
"properties": {
|
|
6777
8065
|
"strategies": {
|
|
6778
8066
|
"type": "array",
|
|
@@ -6781,11 +8069,15 @@
|
|
|
6781
8069
|
"anyOf": [
|
|
6782
8070
|
{
|
|
6783
8071
|
"type": "object",
|
|
6784
|
-
"required": [
|
|
8072
|
+
"required": [
|
|
8073
|
+
"type"
|
|
8074
|
+
],
|
|
6785
8075
|
"properties": {
|
|
6786
8076
|
"type": {
|
|
6787
8077
|
"type": "string",
|
|
6788
|
-
"enum": [
|
|
8078
|
+
"enum": [
|
|
8079
|
+
"emailAndPassword"
|
|
8080
|
+
]
|
|
6789
8081
|
},
|
|
6790
8082
|
"minPasswordLength": {
|
|
6791
8083
|
"type": "number",
|
|
@@ -6825,11 +8117,15 @@
|
|
|
6825
8117
|
},
|
|
6826
8118
|
{
|
|
6827
8119
|
"type": "object",
|
|
6828
|
-
"required": [
|
|
8120
|
+
"required": [
|
|
8121
|
+
"type"
|
|
8122
|
+
],
|
|
6829
8123
|
"properties": {
|
|
6830
8124
|
"type": {
|
|
6831
8125
|
"type": "string",
|
|
6832
|
-
"enum": [
|
|
8126
|
+
"enum": [
|
|
8127
|
+
"magicLink"
|
|
8128
|
+
]
|
|
6833
8129
|
},
|
|
6834
8130
|
"expirationMinutes": {
|
|
6835
8131
|
"type": "number",
|
|
@@ -6853,18 +8149,29 @@
|
|
|
6853
8149
|
},
|
|
6854
8150
|
{
|
|
6855
8151
|
"type": "object",
|
|
6856
|
-
"required": [
|
|
8152
|
+
"required": [
|
|
8153
|
+
"type",
|
|
8154
|
+
"providers"
|
|
8155
|
+
],
|
|
6857
8156
|
"properties": {
|
|
6858
8157
|
"type": {
|
|
6859
8158
|
"type": "string",
|
|
6860
|
-
"enum": [
|
|
8159
|
+
"enum": [
|
|
8160
|
+
"oauth"
|
|
8161
|
+
]
|
|
6861
8162
|
},
|
|
6862
8163
|
"providers": {
|
|
6863
8164
|
"type": "array",
|
|
6864
8165
|
"minItems": 1,
|
|
6865
8166
|
"items": {
|
|
6866
8167
|
"type": "string",
|
|
6867
|
-
"enum": [
|
|
8168
|
+
"enum": [
|
|
8169
|
+
"google",
|
|
8170
|
+
"github",
|
|
8171
|
+
"microsoft",
|
|
8172
|
+
"slack",
|
|
8173
|
+
"gitlab"
|
|
8174
|
+
],
|
|
6868
8175
|
"description": "Supported OAuth providers for social login",
|
|
6869
8176
|
"title": "OAuth Provider"
|
|
6870
8177
|
},
|
|
@@ -6877,7 +8184,10 @@
|
|
|
6877
8184
|
"examples": [
|
|
6878
8185
|
{
|
|
6879
8186
|
"type": "oauth",
|
|
6880
|
-
"providers": [
|
|
8187
|
+
"providers": [
|
|
8188
|
+
"google",
|
|
8189
|
+
"github"
|
|
8190
|
+
]
|
|
6881
8191
|
}
|
|
6882
8192
|
]
|
|
6883
8193
|
}
|
|
@@ -6893,7 +8203,10 @@
|
|
|
6893
8203
|
},
|
|
6894
8204
|
{
|
|
6895
8205
|
"type": "oauth",
|
|
6896
|
-
"providers": [
|
|
8206
|
+
"providers": [
|
|
8207
|
+
"google",
|
|
8208
|
+
"github"
|
|
8209
|
+
]
|
|
6897
8210
|
}
|
|
6898
8211
|
]
|
|
6899
8212
|
}
|
|
@@ -6902,13 +8215,19 @@
|
|
|
6902
8215
|
"type": "array",
|
|
6903
8216
|
"items": {
|
|
6904
8217
|
"type": "object",
|
|
6905
|
-
"required": [
|
|
8218
|
+
"required": [
|
|
8219
|
+
"name"
|
|
8220
|
+
],
|
|
6906
8221
|
"properties": {
|
|
6907
8222
|
"name": {
|
|
6908
8223
|
"type": "string",
|
|
6909
8224
|
"description": "Role name: lowercase, alphanumeric, hyphens. Must start with a letter.",
|
|
6910
8225
|
"title": "Role Name",
|
|
6911
|
-
"examples": [
|
|
8226
|
+
"examples": [
|
|
8227
|
+
"editor",
|
|
8228
|
+
"content-manager",
|
|
8229
|
+
"moderator"
|
|
8230
|
+
],
|
|
6912
8231
|
"pattern": "^[a-z][a-z0-9-]*$"
|
|
6913
8232
|
},
|
|
6914
8233
|
"description": {
|
|
@@ -6943,7 +8262,11 @@
|
|
|
6943
8262
|
"type": "string",
|
|
6944
8263
|
"description": "Role assigned to new users by default. Accepts built-in roles or custom role names. Defaults to member.",
|
|
6945
8264
|
"title": "Default Role",
|
|
6946
|
-
"examples": [
|
|
8265
|
+
"examples": [
|
|
8266
|
+
"member",
|
|
8267
|
+
"viewer",
|
|
8268
|
+
"editor"
|
|
8269
|
+
]
|
|
6947
8270
|
},
|
|
6948
8271
|
"twoFactor": {
|
|
6949
8272
|
"anyOf": [
|
|
@@ -6995,7 +8318,9 @@
|
|
|
6995
8318
|
"properties": {
|
|
6996
8319
|
"verification": {
|
|
6997
8320
|
"type": "object",
|
|
6998
|
-
"required": [
|
|
8321
|
+
"required": [
|
|
8322
|
+
"subject"
|
|
8323
|
+
],
|
|
6999
8324
|
"properties": {
|
|
7000
8325
|
"subject": {
|
|
7001
8326
|
"type": "string",
|
|
@@ -7027,7 +8352,9 @@
|
|
|
7027
8352
|
},
|
|
7028
8353
|
"resetPassword": {
|
|
7029
8354
|
"type": "object",
|
|
7030
|
-
"required": [
|
|
8355
|
+
"required": [
|
|
8356
|
+
"subject"
|
|
8357
|
+
],
|
|
7031
8358
|
"properties": {
|
|
7032
8359
|
"subject": {
|
|
7033
8360
|
"type": "string",
|
|
@@ -7059,7 +8386,9 @@
|
|
|
7059
8386
|
},
|
|
7060
8387
|
"magicLink": {
|
|
7061
8388
|
"type": "object",
|
|
7062
|
-
"required": [
|
|
8389
|
+
"required": [
|
|
8390
|
+
"subject"
|
|
8391
|
+
],
|
|
7063
8392
|
"properties": {
|
|
7064
8393
|
"subject": {
|
|
7065
8394
|
"type": "string",
|
|
@@ -7091,7 +8420,9 @@
|
|
|
7091
8420
|
},
|
|
7092
8421
|
"emailOtp": {
|
|
7093
8422
|
"type": "object",
|
|
7094
|
-
"required": [
|
|
8423
|
+
"required": [
|
|
8424
|
+
"subject"
|
|
8425
|
+
],
|
|
7095
8426
|
"properties": {
|
|
7096
8427
|
"subject": {
|
|
7097
8428
|
"type": "string",
|
|
@@ -7123,7 +8454,9 @@
|
|
|
7123
8454
|
},
|
|
7124
8455
|
"twoFactorBackupCodes": {
|
|
7125
8456
|
"type": "object",
|
|
7126
|
-
"required": [
|
|
8457
|
+
"required": [
|
|
8458
|
+
"subject"
|
|
8459
|
+
],
|
|
7127
8460
|
"properties": {
|
|
7128
8461
|
"subject": {
|
|
7129
8462
|
"type": "string",
|
|
@@ -7155,7 +8488,9 @@
|
|
|
7155
8488
|
},
|
|
7156
8489
|
"welcome": {
|
|
7157
8490
|
"type": "object",
|
|
7158
|
-
"required": [
|
|
8491
|
+
"required": [
|
|
8492
|
+
"subject"
|
|
8493
|
+
],
|
|
7159
8494
|
"properties": {
|
|
7160
8495
|
"subject": {
|
|
7161
8496
|
"type": "string",
|
|
@@ -7187,7 +8522,9 @@
|
|
|
7187
8522
|
},
|
|
7188
8523
|
"accountDeletion": {
|
|
7189
8524
|
"type": "object",
|
|
7190
|
-
"required": [
|
|
8525
|
+
"required": [
|
|
8526
|
+
"subject"
|
|
8527
|
+
],
|
|
7191
8528
|
"properties": {
|
|
7192
8529
|
"subject": {
|
|
7193
8530
|
"type": "string",
|
|
@@ -7281,7 +8618,10 @@
|
|
|
7281
8618
|
true,
|
|
7282
8619
|
{
|
|
7283
8620
|
"retentionDays": 90,
|
|
7284
|
-
"excludedPaths": [
|
|
8621
|
+
"excludedPaths": [
|
|
8622
|
+
"/admin/*",
|
|
8623
|
+
"/api/*"
|
|
8624
|
+
],
|
|
7285
8625
|
"sessionTimeout": 15
|
|
7286
8626
|
},
|
|
7287
8627
|
false
|
|
@@ -7291,19 +8631,34 @@
|
|
|
7291
8631
|
"type": "array",
|
|
7292
8632
|
"items": {
|
|
7293
8633
|
"type": "object",
|
|
7294
|
-
"required": [
|
|
8634
|
+
"required": [
|
|
8635
|
+
"name",
|
|
8636
|
+
"type"
|
|
8637
|
+
],
|
|
7295
8638
|
"properties": {
|
|
7296
8639
|
"name": {
|
|
7297
8640
|
"type": "string",
|
|
7298
8641
|
"description": "Unique component template identifier in kebab-case",
|
|
7299
8642
|
"title": "Component Template Name",
|
|
7300
|
-
"examples": [
|
|
8643
|
+
"examples": [
|
|
8644
|
+
"icon-badge",
|
|
8645
|
+
"section-header",
|
|
8646
|
+
"feature-card",
|
|
8647
|
+
"cta-button-2"
|
|
8648
|
+
],
|
|
7301
8649
|
"pattern": "^[a-z][a-z0-9-]*$"
|
|
7302
8650
|
},
|
|
7303
8651
|
"type": {
|
|
7304
8652
|
"type": "string",
|
|
7305
8653
|
"description": "Component type",
|
|
7306
|
-
"examples": [
|
|
8654
|
+
"examples": [
|
|
8655
|
+
"container",
|
|
8656
|
+
"flex",
|
|
8657
|
+
"grid",
|
|
8658
|
+
"card",
|
|
8659
|
+
"text",
|
|
8660
|
+
"button"
|
|
8661
|
+
]
|
|
7307
8662
|
},
|
|
7308
8663
|
"props": {
|
|
7309
8664
|
"type": "object",
|
|
@@ -7344,7 +8699,14 @@
|
|
|
7344
8699
|
"type": "string",
|
|
7345
8700
|
"description": "Valid JavaScript property name (camelCase) or HTML data-*/aria-* attribute (kebab-case)",
|
|
7346
8701
|
"title": "Component Prop Key",
|
|
7347
|
-
"examples": [
|
|
8702
|
+
"examples": [
|
|
8703
|
+
"className",
|
|
8704
|
+
"size",
|
|
8705
|
+
"enabled",
|
|
8706
|
+
"maxWidth",
|
|
8707
|
+
"data-testid",
|
|
8708
|
+
"aria-label"
|
|
8709
|
+
],
|
|
7348
8710
|
"pattern": "^([a-zA-Z][a-zA-Z0-9]*|data-[a-z]+(-[a-z]+)*|aria-[a-z]+(-[a-z]+)*)$"
|
|
7349
8711
|
},
|
|
7350
8712
|
"description": "Properties for component templates, supporting variable references",
|
|
@@ -7356,13 +8718,20 @@
|
|
|
7356
8718
|
"anyOf": [
|
|
7357
8719
|
{
|
|
7358
8720
|
"type": "object",
|
|
7359
|
-
"required": [
|
|
8721
|
+
"required": [
|
|
8722
|
+
"type"
|
|
8723
|
+
],
|
|
7360
8724
|
"properties": {
|
|
7361
8725
|
"type": {
|
|
7362
8726
|
"type": "string",
|
|
7363
8727
|
"description": "Component type identifier",
|
|
7364
8728
|
"title": "Component Type",
|
|
7365
|
-
"examples": [
|
|
8729
|
+
"examples": [
|
|
8730
|
+
"icon",
|
|
8731
|
+
"text",
|
|
8732
|
+
"div",
|
|
8733
|
+
"button"
|
|
8734
|
+
]
|
|
7366
8735
|
},
|
|
7367
8736
|
"props": {
|
|
7368
8737
|
"type": "object",
|
|
@@ -7423,7 +8792,11 @@
|
|
|
7423
8792
|
"type": "string",
|
|
7424
8793
|
"description": "Text content (may contain $variable)",
|
|
7425
8794
|
"title": "Text Content",
|
|
7426
|
-
"examples": [
|
|
8795
|
+
"examples": [
|
|
8796
|
+
"$label",
|
|
8797
|
+
"$title",
|
|
8798
|
+
"Static text"
|
|
8799
|
+
]
|
|
7427
8800
|
}
|
|
7428
8801
|
},
|
|
7429
8802
|
"additionalProperties": false,
|