5etools-utils 0.8.7 → 0.8.8
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/lib/ObjectWalker.js +12 -4
- package/package.json +1 -1
- package/schema/brew/entry.json +141 -1
- package/schema/brew/tables.json +101 -69
- package/schema/brew-fast/entry.json +141 -1
- package/schema/brew-fast/tables.json +101 -69
- package/schema/site/entry.json +127 -1
- package/schema/site/tables.json +98 -66
- package/schema/site-fast/entry.json +127 -1
- package/schema/site-fast/tables.json +98 -66
package/lib/ObjectWalker.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import MiscUtil from "./UtilMisc.js";
|
|
2
|
+
|
|
1
3
|
class ObjectWalker {
|
|
2
4
|
static _runHandlers (
|
|
3
5
|
{
|
|
@@ -7,14 +9,21 @@ class ObjectWalker {
|
|
|
7
9
|
filePath,
|
|
8
10
|
lastType,
|
|
9
11
|
lastKey,
|
|
12
|
+
isModify = false,
|
|
10
13
|
},
|
|
11
14
|
) {
|
|
12
|
-
if (!primitiveHandlers[to])
|
|
15
|
+
if (!primitiveHandlers[to]) {
|
|
16
|
+
if (!isModify || (to !== "array" && to !== "object")) return obj;
|
|
17
|
+
return MiscUtil.copyFast(obj);
|
|
18
|
+
}
|
|
13
19
|
|
|
14
20
|
if (!(primitiveHandlers[to] instanceof Array)) return primitiveHandlers[to](obj, {filePath, lastType, lastKey});
|
|
15
21
|
|
|
16
22
|
return primitiveHandlers[to]
|
|
17
|
-
.reduce((accum, ph) =>
|
|
23
|
+
.reduce((accum, ph) => {
|
|
24
|
+
const accumMod = ph(accum, {filePath, lastType, lastKey});
|
|
25
|
+
return isModify ? accumMod : accum;
|
|
26
|
+
}, obj);
|
|
18
27
|
}
|
|
19
28
|
|
|
20
29
|
static walk (
|
|
@@ -38,8 +47,7 @@ class ObjectWalker {
|
|
|
38
47
|
to: "null",
|
|
39
48
|
});
|
|
40
49
|
|
|
41
|
-
|
|
42
|
-
return obj;
|
|
50
|
+
return isModify ? objMod : obj;
|
|
43
51
|
}
|
|
44
52
|
|
|
45
53
|
switch (to) {
|
package/package.json
CHANGED
package/schema/brew/entry.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "entry.json",
|
|
4
4
|
"title": "Entry",
|
|
5
5
|
"description": "A recursively renderable object.",
|
|
6
|
-
"version": "1.8.
|
|
6
|
+
"version": "1.8.10",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -388,6 +388,115 @@
|
|
|
388
388
|
],
|
|
389
389
|
"additionalProperties": false
|
|
390
390
|
},
|
|
391
|
+
"entryTableBase": {
|
|
392
|
+
"properties": {
|
|
393
|
+
"caption": {
|
|
394
|
+
"type": "string"
|
|
395
|
+
},
|
|
396
|
+
"isStriped": {
|
|
397
|
+
"type": "boolean"
|
|
398
|
+
},
|
|
399
|
+
"isNameGenerator": {
|
|
400
|
+
"type": "boolean",
|
|
401
|
+
"description": "Uses the result rolled to construct a name from multiple columns, such as Prefix, Given, Family, Suffix names etc."
|
|
402
|
+
},
|
|
403
|
+
"style": {
|
|
404
|
+
"type": "string"
|
|
405
|
+
},
|
|
406
|
+
"colLabels": {
|
|
407
|
+
"type": "array",
|
|
408
|
+
"items": {
|
|
409
|
+
"type": "string"
|
|
410
|
+
}
|
|
411
|
+
},
|
|
412
|
+
"colLabelGroups": {
|
|
413
|
+
"type": "array",
|
|
414
|
+
"items": {
|
|
415
|
+
"type": "object",
|
|
416
|
+
"properties": {
|
|
417
|
+
"colLabels": {
|
|
418
|
+
"type": "array",
|
|
419
|
+
"items": {
|
|
420
|
+
"type": "string"
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
"additionalProperties": false
|
|
425
|
+
}
|
|
426
|
+
},
|
|
427
|
+
"colStyles": {
|
|
428
|
+
"type": "array",
|
|
429
|
+
"items": {
|
|
430
|
+
"type": "string"
|
|
431
|
+
}
|
|
432
|
+
},
|
|
433
|
+
"rowLabels": {
|
|
434
|
+
"type": "array",
|
|
435
|
+
"items": {
|
|
436
|
+
"type": "string"
|
|
437
|
+
}
|
|
438
|
+
},
|
|
439
|
+
"rowStyles": {
|
|
440
|
+
"type": "array",
|
|
441
|
+
"items": {
|
|
442
|
+
"type": "string"
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
"rows": {
|
|
446
|
+
"type": "array",
|
|
447
|
+
"items": {
|
|
448
|
+
"anyOf": [
|
|
449
|
+
{
|
|
450
|
+
"type": "array",
|
|
451
|
+
"items": {
|
|
452
|
+
"$ref": "#"
|
|
453
|
+
}
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"$ref": "#/$defs/entryTableRow"
|
|
457
|
+
}
|
|
458
|
+
]
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
"footnotes": {
|
|
462
|
+
"type": "array",
|
|
463
|
+
"items": {
|
|
464
|
+
"$ref": "#"
|
|
465
|
+
}
|
|
466
|
+
},
|
|
467
|
+
"intro": {
|
|
468
|
+
"description": "Primarily for homebrew use.",
|
|
469
|
+
"type": "array",
|
|
470
|
+
"items": {
|
|
471
|
+
"$ref": "#"
|
|
472
|
+
}
|
|
473
|
+
},
|
|
474
|
+
"outro": {
|
|
475
|
+
"description": "Primarily for homebrew use.",
|
|
476
|
+
"type": "array",
|
|
477
|
+
"items": {
|
|
478
|
+
"$ref": "#"
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
},
|
|
482
|
+
"dependencies": {
|
|
483
|
+
"colLabels": {
|
|
484
|
+
"not": {
|
|
485
|
+
"required": [
|
|
486
|
+
"colLabelGroups"
|
|
487
|
+
]
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
"colLabelGroups": {
|
|
491
|
+
"not": {
|
|
492
|
+
"required": [
|
|
493
|
+
"colLabels"
|
|
494
|
+
]
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
},
|
|
498
|
+
"additionalProperties": false
|
|
499
|
+
},
|
|
391
500
|
"entryTable": {
|
|
392
501
|
"type": "object",
|
|
393
502
|
"properties": {
|
|
@@ -436,6 +545,21 @@
|
|
|
436
545
|
"type": "string"
|
|
437
546
|
}
|
|
438
547
|
},
|
|
548
|
+
"colLabelGroups": {
|
|
549
|
+
"type": "array",
|
|
550
|
+
"items": {
|
|
551
|
+
"type": "object",
|
|
552
|
+
"properties": {
|
|
553
|
+
"colLabels": {
|
|
554
|
+
"type": "array",
|
|
555
|
+
"items": {
|
|
556
|
+
"type": "string"
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
},
|
|
560
|
+
"additionalProperties": false
|
|
561
|
+
}
|
|
562
|
+
},
|
|
439
563
|
"colStyles": {
|
|
440
564
|
"type": "array",
|
|
441
565
|
"items": {
|
|
@@ -495,6 +619,22 @@
|
|
|
495
619
|
"type",
|
|
496
620
|
"rows"
|
|
497
621
|
],
|
|
622
|
+
"dependencies": {
|
|
623
|
+
"colLabels": {
|
|
624
|
+
"not": {
|
|
625
|
+
"required": [
|
|
626
|
+
"colLabelGroups"
|
|
627
|
+
]
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
"colLabelGroups": {
|
|
631
|
+
"not": {
|
|
632
|
+
"required": [
|
|
633
|
+
"colLabels"
|
|
634
|
+
]
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
},
|
|
498
638
|
"additionalProperties": false
|
|
499
639
|
},
|
|
500
640
|
"entryTableGroup": {
|
package/schema/brew/tables.json
CHANGED
|
@@ -1,80 +1,47 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "tables.json",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.6",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"tableData": {
|
|
8
8
|
"type": "object",
|
|
9
9
|
"properties": {
|
|
10
|
+
"tables": {
|
|
11
|
+
"type": "array",
|
|
12
|
+
"items": {
|
|
13
|
+
"$ref": "#/$defs/tableData"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
10
16
|
"name": {
|
|
11
17
|
"type": "string"
|
|
12
18
|
},
|
|
13
|
-
"type": {
|
|
14
|
-
"type": "string",
|
|
15
|
-
"default": "table",
|
|
16
|
-
"enum": [
|
|
17
|
-
"table",
|
|
18
|
-
"tableGroup"
|
|
19
|
-
]
|
|
20
|
-
},
|
|
21
19
|
"source": {
|
|
22
20
|
"type": "string"
|
|
23
21
|
},
|
|
22
|
+
"page": {
|
|
23
|
+
"$ref": "util.json#/$defs/page"
|
|
24
|
+
},
|
|
24
25
|
"srd": {
|
|
25
26
|
"$ref": "util.json#/$defs/srd"
|
|
26
27
|
},
|
|
27
28
|
"basicRules": {
|
|
28
29
|
"$ref": "util.json#/$defs/basicRules"
|
|
29
30
|
},
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
"page": {
|
|
34
|
-
"$ref": "util.json#/$defs/page"
|
|
35
|
-
},
|
|
36
|
-
"otherSources": {
|
|
37
|
-
"$ref": "util.json#/$defs/otherSources"
|
|
38
|
-
},
|
|
39
|
-
"chapter": {
|
|
40
|
-
"type": "object",
|
|
41
|
-
"properties": {
|
|
42
|
-
"name": {
|
|
43
|
-
"type": "string"
|
|
44
|
-
},
|
|
45
|
-
"ordinal": {
|
|
46
|
-
"type": "object",
|
|
47
|
-
"properties": {
|
|
48
|
-
"type": {
|
|
49
|
-
"type": "string",
|
|
50
|
-
"enum": [
|
|
51
|
-
"chapter",
|
|
52
|
-
"appendix",
|
|
53
|
-
"part",
|
|
54
|
-
"episode"
|
|
55
|
-
]
|
|
56
|
-
},
|
|
57
|
-
"identifier": {
|
|
58
|
-
"type": [
|
|
59
|
-
"integer",
|
|
60
|
-
"string"
|
|
61
|
-
]
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
|
-
"additionalProperties": false,
|
|
65
|
-
"required": [
|
|
66
|
-
"type",
|
|
67
|
-
"identifier"
|
|
68
|
-
]
|
|
69
|
-
},
|
|
70
|
-
"index": {
|
|
71
|
-
"type": "integer"
|
|
72
|
-
}
|
|
73
|
-
}
|
|
31
|
+
"data": {
|
|
32
|
+
"description": "A generic object for storing special data for external use-cases. Keys prefixed with \"rd-\" should be added as \"data-\" HTML attributes when rendering to HTML.",
|
|
33
|
+
"type": "object"
|
|
74
34
|
},
|
|
75
35
|
"caption": {
|
|
76
36
|
"type": "string"
|
|
77
37
|
},
|
|
38
|
+
"isStriped": {
|
|
39
|
+
"type": "boolean"
|
|
40
|
+
},
|
|
41
|
+
"isNameGenerator": {
|
|
42
|
+
"type": "boolean",
|
|
43
|
+
"description": "Uses the result rolled to construct a name from multiple columns, such as Prefix, Given, Family, Suffix names etc."
|
|
44
|
+
},
|
|
78
45
|
"style": {
|
|
79
46
|
"type": "string"
|
|
80
47
|
},
|
|
@@ -84,6 +51,21 @@
|
|
|
84
51
|
"type": "string"
|
|
85
52
|
}
|
|
86
53
|
},
|
|
54
|
+
"colLabelGroups": {
|
|
55
|
+
"type": "array",
|
|
56
|
+
"items": {
|
|
57
|
+
"type": "object",
|
|
58
|
+
"properties": {
|
|
59
|
+
"colLabels": {
|
|
60
|
+
"type": "array",
|
|
61
|
+
"items": {
|
|
62
|
+
"type": "string"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"additionalProperties": false
|
|
67
|
+
}
|
|
68
|
+
},
|
|
87
69
|
"colStyles": {
|
|
88
70
|
"type": "array",
|
|
89
71
|
"items": {
|
|
@@ -118,28 +100,12 @@
|
|
|
118
100
|
]
|
|
119
101
|
}
|
|
120
102
|
},
|
|
121
|
-
"tables": {
|
|
122
|
-
"type": "array",
|
|
123
|
-
"items": {
|
|
124
|
-
"$ref": "#/$defs/tableData"
|
|
125
|
-
}
|
|
126
|
-
},
|
|
127
103
|
"footnotes": {
|
|
128
104
|
"type": "array",
|
|
129
105
|
"items": {
|
|
130
106
|
"$ref": "entry.json"
|
|
131
107
|
}
|
|
132
108
|
},
|
|
133
|
-
"data": {
|
|
134
|
-
"type": "object"
|
|
135
|
-
},
|
|
136
|
-
"isNameGenerator": {
|
|
137
|
-
"type": "boolean",
|
|
138
|
-
"description": "Uses the result rolled to construct a name from multiple columns, such as Prefix, Given, Family, Suffix names etc."
|
|
139
|
-
},
|
|
140
|
-
"isStriped": {
|
|
141
|
-
"type": "boolean"
|
|
142
|
-
},
|
|
143
109
|
"intro": {
|
|
144
110
|
"description": "Primarily for homebrew use.",
|
|
145
111
|
"type": "array",
|
|
@@ -154,10 +120,76 @@
|
|
|
154
120
|
"$ref": "entry.json"
|
|
155
121
|
}
|
|
156
122
|
},
|
|
123
|
+
"type": {
|
|
124
|
+
"type": "string",
|
|
125
|
+
"default": "table",
|
|
126
|
+
"enum": [
|
|
127
|
+
"table",
|
|
128
|
+
"tableGroup"
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
"legacy": {
|
|
132
|
+
"$ref": "util.json#/$defs/legacy"
|
|
133
|
+
},
|
|
134
|
+
"otherSources": {
|
|
135
|
+
"$ref": "util.json#/$defs/otherSources"
|
|
136
|
+
},
|
|
137
|
+
"chapter": {
|
|
138
|
+
"type": "object",
|
|
139
|
+
"properties": {
|
|
140
|
+
"name": {
|
|
141
|
+
"type": "string"
|
|
142
|
+
},
|
|
143
|
+
"ordinal": {
|
|
144
|
+
"type": "object",
|
|
145
|
+
"properties": {
|
|
146
|
+
"type": {
|
|
147
|
+
"type": "string",
|
|
148
|
+
"enum": [
|
|
149
|
+
"chapter",
|
|
150
|
+
"appendix",
|
|
151
|
+
"part",
|
|
152
|
+
"episode"
|
|
153
|
+
]
|
|
154
|
+
},
|
|
155
|
+
"identifier": {
|
|
156
|
+
"type": [
|
|
157
|
+
"integer",
|
|
158
|
+
"string"
|
|
159
|
+
]
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"additionalProperties": false,
|
|
163
|
+
"required": [
|
|
164
|
+
"type",
|
|
165
|
+
"identifier"
|
|
166
|
+
]
|
|
167
|
+
},
|
|
168
|
+
"index": {
|
|
169
|
+
"type": "integer"
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
},
|
|
157
173
|
"foundryImg": {
|
|
158
174
|
"$ref": "util.json#/$defs/foundryImg"
|
|
159
175
|
}
|
|
160
176
|
},
|
|
177
|
+
"dependencies": {
|
|
178
|
+
"colLabels": {
|
|
179
|
+
"not": {
|
|
180
|
+
"required": [
|
|
181
|
+
"colLabelGroups"
|
|
182
|
+
]
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
"colLabelGroups": {
|
|
186
|
+
"not": {
|
|
187
|
+
"required": [
|
|
188
|
+
"colLabels"
|
|
189
|
+
]
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
},
|
|
161
193
|
"additionalProperties": false,
|
|
162
194
|
"if": {
|
|
163
195
|
"properties": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "entry.json",
|
|
4
4
|
"title": "Entry",
|
|
5
5
|
"description": "A recursively renderable object.",
|
|
6
|
-
"version": "1.8.
|
|
6
|
+
"version": "1.8.10",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -388,6 +388,115 @@
|
|
|
388
388
|
],
|
|
389
389
|
"additionalProperties": false
|
|
390
390
|
},
|
|
391
|
+
"entryTableBase": {
|
|
392
|
+
"properties": {
|
|
393
|
+
"caption": {
|
|
394
|
+
"type": "string"
|
|
395
|
+
},
|
|
396
|
+
"isStriped": {
|
|
397
|
+
"type": "boolean"
|
|
398
|
+
},
|
|
399
|
+
"isNameGenerator": {
|
|
400
|
+
"type": "boolean",
|
|
401
|
+
"description": "Uses the result rolled to construct a name from multiple columns, such as Prefix, Given, Family, Suffix names etc."
|
|
402
|
+
},
|
|
403
|
+
"style": {
|
|
404
|
+
"type": "string"
|
|
405
|
+
},
|
|
406
|
+
"colLabels": {
|
|
407
|
+
"type": "array",
|
|
408
|
+
"items": {
|
|
409
|
+
"type": "string"
|
|
410
|
+
}
|
|
411
|
+
},
|
|
412
|
+
"colLabelGroups": {
|
|
413
|
+
"type": "array",
|
|
414
|
+
"items": {
|
|
415
|
+
"type": "object",
|
|
416
|
+
"properties": {
|
|
417
|
+
"colLabels": {
|
|
418
|
+
"type": "array",
|
|
419
|
+
"items": {
|
|
420
|
+
"type": "string"
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
"additionalProperties": false
|
|
425
|
+
}
|
|
426
|
+
},
|
|
427
|
+
"colStyles": {
|
|
428
|
+
"type": "array",
|
|
429
|
+
"items": {
|
|
430
|
+
"type": "string"
|
|
431
|
+
}
|
|
432
|
+
},
|
|
433
|
+
"rowLabels": {
|
|
434
|
+
"type": "array",
|
|
435
|
+
"items": {
|
|
436
|
+
"type": "string"
|
|
437
|
+
}
|
|
438
|
+
},
|
|
439
|
+
"rowStyles": {
|
|
440
|
+
"type": "array",
|
|
441
|
+
"items": {
|
|
442
|
+
"type": "string"
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
"rows": {
|
|
446
|
+
"type": "array",
|
|
447
|
+
"items": {
|
|
448
|
+
"anyOf": [
|
|
449
|
+
{
|
|
450
|
+
"type": "array",
|
|
451
|
+
"items": {
|
|
452
|
+
"$ref": "#"
|
|
453
|
+
}
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"$ref": "#/$defs/entryTableRow"
|
|
457
|
+
}
|
|
458
|
+
]
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
"footnotes": {
|
|
462
|
+
"type": "array",
|
|
463
|
+
"items": {
|
|
464
|
+
"$ref": "#"
|
|
465
|
+
}
|
|
466
|
+
},
|
|
467
|
+
"intro": {
|
|
468
|
+
"description": "Primarily for homebrew use.",
|
|
469
|
+
"type": "array",
|
|
470
|
+
"items": {
|
|
471
|
+
"$ref": "#"
|
|
472
|
+
}
|
|
473
|
+
},
|
|
474
|
+
"outro": {
|
|
475
|
+
"description": "Primarily for homebrew use.",
|
|
476
|
+
"type": "array",
|
|
477
|
+
"items": {
|
|
478
|
+
"$ref": "#"
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
},
|
|
482
|
+
"dependencies": {
|
|
483
|
+
"colLabels": {
|
|
484
|
+
"not": {
|
|
485
|
+
"required": [
|
|
486
|
+
"colLabelGroups"
|
|
487
|
+
]
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
"colLabelGroups": {
|
|
491
|
+
"not": {
|
|
492
|
+
"required": [
|
|
493
|
+
"colLabels"
|
|
494
|
+
]
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
},
|
|
498
|
+
"additionalProperties": false
|
|
499
|
+
},
|
|
391
500
|
"entryTable": {
|
|
392
501
|
"type": "object",
|
|
393
502
|
"properties": {
|
|
@@ -436,6 +545,21 @@
|
|
|
436
545
|
"type": "string"
|
|
437
546
|
}
|
|
438
547
|
},
|
|
548
|
+
"colLabelGroups": {
|
|
549
|
+
"type": "array",
|
|
550
|
+
"items": {
|
|
551
|
+
"type": "object",
|
|
552
|
+
"properties": {
|
|
553
|
+
"colLabels": {
|
|
554
|
+
"type": "array",
|
|
555
|
+
"items": {
|
|
556
|
+
"type": "string"
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
},
|
|
560
|
+
"additionalProperties": false
|
|
561
|
+
}
|
|
562
|
+
},
|
|
439
563
|
"colStyles": {
|
|
440
564
|
"type": "array",
|
|
441
565
|
"items": {
|
|
@@ -495,6 +619,22 @@
|
|
|
495
619
|
"type",
|
|
496
620
|
"rows"
|
|
497
621
|
],
|
|
622
|
+
"dependencies": {
|
|
623
|
+
"colLabels": {
|
|
624
|
+
"not": {
|
|
625
|
+
"required": [
|
|
626
|
+
"colLabelGroups"
|
|
627
|
+
]
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
"colLabelGroups": {
|
|
631
|
+
"not": {
|
|
632
|
+
"required": [
|
|
633
|
+
"colLabels"
|
|
634
|
+
]
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
},
|
|
498
638
|
"additionalProperties": false
|
|
499
639
|
},
|
|
500
640
|
"entryTableGroup": {
|