@pie-element/graphing 4.1.3 → 4.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +31 -0
- package/configure/CHANGELOG.md +31 -0
- package/configure/lib/configure.js +19 -4
- package/configure/lib/configure.js.map +1 -1
- package/configure/lib/correct-response.js +6 -0
- package/configure/lib/correct-response.js.map +1 -1
- package/configure/lib/defaults.js +203 -5
- package/configure/lib/defaults.js.map +1 -1
- package/configure/lib/graphing-config.js +131 -35
- package/configure/lib/graphing-config.js.map +1 -1
- package/configure/package.json +4 -4
- package/controller/CHANGELOG.md +13 -0
- package/controller/lib/defaults.js +2 -0
- package/controller/lib/defaults.js.map +1 -1
- package/controller/package.json +1 -1
- package/docs/config-schema.json +632 -4
- package/docs/config-schema.json.md +412 -2
- package/docs/pie-schema.json +394 -130
- package/docs/pie-schema.json.md +259 -82
- package/lib/main.js +6 -0
- package/lib/main.js.map +1 -1
- package/package.json +5 -5
package/docs/pie-schema.json
CHANGED
|
@@ -1690,6 +1690,16 @@
|
|
|
1690
1690
|
"type": "string",
|
|
1691
1691
|
"title": "title"
|
|
1692
1692
|
},
|
|
1693
|
+
"labelsEnabled": {
|
|
1694
|
+
"description": "Indicates if the graph labels are displayed",
|
|
1695
|
+
"type": "boolean",
|
|
1696
|
+
"title": "labelsEnabled"
|
|
1697
|
+
},
|
|
1698
|
+
"titleEnabled": {
|
|
1699
|
+
"description": "Indicates if the graph title is displayed",
|
|
1700
|
+
"type": "boolean",
|
|
1701
|
+
"title": "titleEnabled"
|
|
1702
|
+
},
|
|
1693
1703
|
"toolbarTools": {
|
|
1694
1704
|
"description": "Indicates the tools that have to be displayed in toolbar",
|
|
1695
1705
|
"type": "array",
|
|
@@ -2033,10 +2043,392 @@
|
|
|
2033
2043
|
}
|
|
2034
2044
|
}
|
|
2035
2045
|
},
|
|
2036
|
-
"
|
|
2037
|
-
"title": "
|
|
2046
|
+
"GridConfigurationsProp": {
|
|
2047
|
+
"title": "GridConfigurationsProp",
|
|
2048
|
+
"type": "object",
|
|
2049
|
+
"properties": {
|
|
2050
|
+
"label": {
|
|
2051
|
+
"description": "Indicates the label for the configuration",
|
|
2052
|
+
"type": "string",
|
|
2053
|
+
"title": "label"
|
|
2054
|
+
},
|
|
2055
|
+
"arrows": {
|
|
2056
|
+
"title": "Arrows",
|
|
2057
|
+
"type": "object",
|
|
2058
|
+
"properties": {
|
|
2059
|
+
"left": {
|
|
2060
|
+
"description": "Indicates if left arrow is enabled",
|
|
2061
|
+
"type": "boolean",
|
|
2062
|
+
"title": "left"
|
|
2063
|
+
},
|
|
2064
|
+
"right": {
|
|
2065
|
+
"description": "Indicates if right arrow is enabled",
|
|
2066
|
+
"type": "boolean",
|
|
2067
|
+
"title": "right"
|
|
2068
|
+
},
|
|
2069
|
+
"up": {
|
|
2070
|
+
"description": "Indicates if up arrow is enabled",
|
|
2071
|
+
"type": "boolean",
|
|
2072
|
+
"title": "up"
|
|
2073
|
+
},
|
|
2074
|
+
"down": {
|
|
2075
|
+
"description": "Indicates if down arrow is enabled",
|
|
2076
|
+
"type": "boolean",
|
|
2077
|
+
"title": "down"
|
|
2078
|
+
}
|
|
2079
|
+
},
|
|
2080
|
+
"required": [
|
|
2081
|
+
"down",
|
|
2082
|
+
"left",
|
|
2083
|
+
"right",
|
|
2084
|
+
"up"
|
|
2085
|
+
]
|
|
2086
|
+
},
|
|
2087
|
+
"domain": {
|
|
2088
|
+
"title": "GraphSettings",
|
|
2089
|
+
"type": "object",
|
|
2090
|
+
"properties": {
|
|
2091
|
+
"min": {
|
|
2092
|
+
"description": "Min value",
|
|
2093
|
+
"type": "number",
|
|
2094
|
+
"title": "min"
|
|
2095
|
+
},
|
|
2096
|
+
"max": {
|
|
2097
|
+
"description": "Max value",
|
|
2098
|
+
"type": "number",
|
|
2099
|
+
"title": "max"
|
|
2100
|
+
},
|
|
2101
|
+
"padding": {
|
|
2102
|
+
"description": "Padding value",
|
|
2103
|
+
"type": "number",
|
|
2104
|
+
"title": "padding"
|
|
2105
|
+
},
|
|
2106
|
+
"step": {
|
|
2107
|
+
"description": "Step value",
|
|
2108
|
+
"type": "number",
|
|
2109
|
+
"title": "step"
|
|
2110
|
+
},
|
|
2111
|
+
"labelStep": {
|
|
2112
|
+
"description": "Label step value",
|
|
2113
|
+
"type": "number",
|
|
2114
|
+
"title": "labelStep"
|
|
2115
|
+
},
|
|
2116
|
+
"axisLabel": {
|
|
2117
|
+
"description": "Axis Label",
|
|
2118
|
+
"type": "string",
|
|
2119
|
+
"title": "axisLabel"
|
|
2120
|
+
}
|
|
2121
|
+
},
|
|
2122
|
+
"required": [
|
|
2123
|
+
"axisLabel",
|
|
2124
|
+
"labelStep",
|
|
2125
|
+
"max",
|
|
2126
|
+
"min",
|
|
2127
|
+
"padding",
|
|
2128
|
+
"step"
|
|
2129
|
+
]
|
|
2130
|
+
},
|
|
2131
|
+
"graph": {
|
|
2132
|
+
"title": "Graph",
|
|
2133
|
+
"type": "object",
|
|
2134
|
+
"properties": {
|
|
2135
|
+
"width": {
|
|
2136
|
+
"description": "Width for graph representation",
|
|
2137
|
+
"type": "number",
|
|
2138
|
+
"title": "width"
|
|
2139
|
+
},
|
|
2140
|
+
"height": {
|
|
2141
|
+
"description": "Height for graph representation",
|
|
2142
|
+
"type": "number",
|
|
2143
|
+
"title": "height"
|
|
2144
|
+
}
|
|
2145
|
+
},
|
|
2146
|
+
"required": [
|
|
2147
|
+
"height",
|
|
2148
|
+
"width"
|
|
2149
|
+
]
|
|
2150
|
+
},
|
|
2151
|
+
"includeAxes": {
|
|
2152
|
+
"description": "Indicates if the graph axes and labels are enabled",
|
|
2153
|
+
"type": "boolean",
|
|
2154
|
+
"title": "includeAxes"
|
|
2155
|
+
},
|
|
2156
|
+
"labels": {
|
|
2157
|
+
"title": "Labels",
|
|
2158
|
+
"type": "object",
|
|
2159
|
+
"properties": {
|
|
2160
|
+
"top": {
|
|
2161
|
+
"description": "Label for top side of the graph",
|
|
2162
|
+
"type": "string",
|
|
2163
|
+
"title": "top"
|
|
2164
|
+
},
|
|
2165
|
+
"bottom": {
|
|
2166
|
+
"description": "Label for bottom side of the graph",
|
|
2167
|
+
"type": "string",
|
|
2168
|
+
"title": "bottom"
|
|
2169
|
+
},
|
|
2170
|
+
"left": {
|
|
2171
|
+
"description": "Label for left side of the graph",
|
|
2172
|
+
"type": "string",
|
|
2173
|
+
"title": "left"
|
|
2174
|
+
},
|
|
2175
|
+
"right": {
|
|
2176
|
+
"description": "Label for right side of the graph",
|
|
2177
|
+
"type": "string",
|
|
2178
|
+
"title": "right"
|
|
2179
|
+
}
|
|
2180
|
+
},
|
|
2181
|
+
"required": [
|
|
2182
|
+
"bottom",
|
|
2183
|
+
"left",
|
|
2184
|
+
"right",
|
|
2185
|
+
"top"
|
|
2186
|
+
]
|
|
2187
|
+
},
|
|
2188
|
+
"padding": {
|
|
2189
|
+
"description": "Indicates if padding is enabled",
|
|
2190
|
+
"type": "boolean",
|
|
2191
|
+
"title": "padding"
|
|
2192
|
+
},
|
|
2193
|
+
"range": {
|
|
2194
|
+
"title": "GraphSettings",
|
|
2195
|
+
"type": "object",
|
|
2196
|
+
"properties": {
|
|
2197
|
+
"min": {
|
|
2198
|
+
"description": "Min value",
|
|
2199
|
+
"type": "number",
|
|
2200
|
+
"title": "min"
|
|
2201
|
+
},
|
|
2202
|
+
"max": {
|
|
2203
|
+
"description": "Max value",
|
|
2204
|
+
"type": "number",
|
|
2205
|
+
"title": "max"
|
|
2206
|
+
},
|
|
2207
|
+
"padding": {
|
|
2208
|
+
"description": "Padding value",
|
|
2209
|
+
"type": "number",
|
|
2210
|
+
"title": "padding"
|
|
2211
|
+
},
|
|
2212
|
+
"step": {
|
|
2213
|
+
"description": "Step value",
|
|
2214
|
+
"type": "number",
|
|
2215
|
+
"title": "step"
|
|
2216
|
+
},
|
|
2217
|
+
"labelStep": {
|
|
2218
|
+
"description": "Label step value",
|
|
2219
|
+
"type": "number",
|
|
2220
|
+
"title": "labelStep"
|
|
2221
|
+
},
|
|
2222
|
+
"axisLabel": {
|
|
2223
|
+
"description": "Axis Label",
|
|
2224
|
+
"type": "string",
|
|
2225
|
+
"title": "axisLabel"
|
|
2226
|
+
}
|
|
2227
|
+
},
|
|
2228
|
+
"required": [
|
|
2229
|
+
"axisLabel",
|
|
2230
|
+
"labelStep",
|
|
2231
|
+
"max",
|
|
2232
|
+
"min",
|
|
2233
|
+
"padding",
|
|
2234
|
+
"step"
|
|
2235
|
+
]
|
|
2236
|
+
},
|
|
2237
|
+
"standardGrid": {
|
|
2238
|
+
"description": "Indicates if some domain values will be synched to the range values",
|
|
2239
|
+
"type": "boolean",
|
|
2240
|
+
"title": "standardGrid"
|
|
2241
|
+
},
|
|
2242
|
+
"title": {
|
|
2243
|
+
"description": "Indicates graph title",
|
|
2244
|
+
"type": "string",
|
|
2245
|
+
"title": "title"
|
|
2246
|
+
}
|
|
2247
|
+
},
|
|
2248
|
+
"required": [
|
|
2249
|
+
"domain",
|
|
2250
|
+
"graph",
|
|
2251
|
+
"range"
|
|
2252
|
+
]
|
|
2253
|
+
},
|
|
2254
|
+
"Arrows": {
|
|
2255
|
+
"title": "Arrows",
|
|
2256
|
+
"type": "object",
|
|
2257
|
+
"properties": {
|
|
2258
|
+
"left": {
|
|
2259
|
+
"description": "Indicates if left arrow is enabled",
|
|
2260
|
+
"type": "boolean",
|
|
2261
|
+
"title": "left"
|
|
2262
|
+
},
|
|
2263
|
+
"right": {
|
|
2264
|
+
"description": "Indicates if right arrow is enabled",
|
|
2265
|
+
"type": "boolean",
|
|
2266
|
+
"title": "right"
|
|
2267
|
+
},
|
|
2268
|
+
"up": {
|
|
2269
|
+
"description": "Indicates if up arrow is enabled",
|
|
2270
|
+
"type": "boolean",
|
|
2271
|
+
"title": "up"
|
|
2272
|
+
},
|
|
2273
|
+
"down": {
|
|
2274
|
+
"description": "Indicates if down arrow is enabled",
|
|
2275
|
+
"type": "boolean",
|
|
2276
|
+
"title": "down"
|
|
2277
|
+
}
|
|
2278
|
+
},
|
|
2279
|
+
"required": [
|
|
2280
|
+
"down",
|
|
2281
|
+
"left",
|
|
2282
|
+
"right",
|
|
2283
|
+
"up"
|
|
2284
|
+
]
|
|
2285
|
+
},
|
|
2286
|
+
"GraphSettings": {
|
|
2287
|
+
"title": "GraphSettings",
|
|
2288
|
+
"type": "object",
|
|
2289
|
+
"properties": {
|
|
2290
|
+
"min": {
|
|
2291
|
+
"description": "Min value",
|
|
2292
|
+
"type": "number",
|
|
2293
|
+
"title": "min"
|
|
2294
|
+
},
|
|
2295
|
+
"max": {
|
|
2296
|
+
"description": "Max value",
|
|
2297
|
+
"type": "number",
|
|
2298
|
+
"title": "max"
|
|
2299
|
+
},
|
|
2300
|
+
"padding": {
|
|
2301
|
+
"description": "Padding value",
|
|
2302
|
+
"type": "number",
|
|
2303
|
+
"title": "padding"
|
|
2304
|
+
},
|
|
2305
|
+
"step": {
|
|
2306
|
+
"description": "Step value",
|
|
2307
|
+
"type": "number",
|
|
2308
|
+
"title": "step"
|
|
2309
|
+
},
|
|
2310
|
+
"labelStep": {
|
|
2311
|
+
"description": "Label step value",
|
|
2312
|
+
"type": "number",
|
|
2313
|
+
"title": "labelStep"
|
|
2314
|
+
},
|
|
2315
|
+
"axisLabel": {
|
|
2316
|
+
"description": "Axis Label",
|
|
2317
|
+
"type": "string",
|
|
2318
|
+
"title": "axisLabel"
|
|
2319
|
+
}
|
|
2320
|
+
},
|
|
2321
|
+
"required": [
|
|
2322
|
+
"axisLabel",
|
|
2323
|
+
"labelStep",
|
|
2324
|
+
"max",
|
|
2325
|
+
"min",
|
|
2326
|
+
"padding",
|
|
2327
|
+
"step"
|
|
2328
|
+
]
|
|
2329
|
+
},
|
|
2330
|
+
"Graph": {
|
|
2331
|
+
"title": "Graph",
|
|
2332
|
+
"type": "object",
|
|
2333
|
+
"properties": {
|
|
2334
|
+
"width": {
|
|
2335
|
+
"description": "Width for graph representation",
|
|
2336
|
+
"type": "number",
|
|
2337
|
+
"title": "width"
|
|
2338
|
+
},
|
|
2339
|
+
"height": {
|
|
2340
|
+
"description": "Height for graph representation",
|
|
2341
|
+
"type": "number",
|
|
2342
|
+
"title": "height"
|
|
2343
|
+
}
|
|
2344
|
+
},
|
|
2345
|
+
"required": [
|
|
2346
|
+
"height",
|
|
2347
|
+
"width"
|
|
2348
|
+
]
|
|
2349
|
+
},
|
|
2350
|
+
"Labels": {
|
|
2351
|
+
"title": "Labels",
|
|
2038
2352
|
"type": "object",
|
|
2039
2353
|
"properties": {
|
|
2354
|
+
"top": {
|
|
2355
|
+
"description": "Label for top side of the graph",
|
|
2356
|
+
"type": "string",
|
|
2357
|
+
"title": "top"
|
|
2358
|
+
},
|
|
2359
|
+
"bottom": {
|
|
2360
|
+
"description": "Label for bottom side of the graph",
|
|
2361
|
+
"type": "string",
|
|
2362
|
+
"title": "bottom"
|
|
2363
|
+
},
|
|
2364
|
+
"left": {
|
|
2365
|
+
"description": "Label for left side of the graph",
|
|
2366
|
+
"type": "string",
|
|
2367
|
+
"title": "left"
|
|
2368
|
+
},
|
|
2369
|
+
"right": {
|
|
2370
|
+
"description": "Label for right side of the graph",
|
|
2371
|
+
"type": "string",
|
|
2372
|
+
"title": "right"
|
|
2373
|
+
}
|
|
2374
|
+
},
|
|
2375
|
+
"required": [
|
|
2376
|
+
"bottom",
|
|
2377
|
+
"left",
|
|
2378
|
+
"right",
|
|
2379
|
+
"top"
|
|
2380
|
+
]
|
|
2381
|
+
},
|
|
2382
|
+
"LabelsConfigProp": {
|
|
2383
|
+
"title": "LabelsConfigProp",
|
|
2384
|
+
"type": "object",
|
|
2385
|
+
"properties": {
|
|
2386
|
+
"top": {
|
|
2387
|
+
"description": "Indicates the placeholder for the top label",
|
|
2388
|
+
"type": "string",
|
|
2389
|
+
"title": "top"
|
|
2390
|
+
},
|
|
2391
|
+
"right": {
|
|
2392
|
+
"description": "Indicates the placeholder for the right label",
|
|
2393
|
+
"type": "string",
|
|
2394
|
+
"title": "right"
|
|
2395
|
+
},
|
|
2396
|
+
"bottom": {
|
|
2397
|
+
"description": "Indicates the placeholder for the bottom label",
|
|
2398
|
+
"type": "string",
|
|
2399
|
+
"title": "bottom"
|
|
2400
|
+
},
|
|
2401
|
+
"left": {
|
|
2402
|
+
"description": "Indicates the placeholder for the left label",
|
|
2403
|
+
"type": "string",
|
|
2404
|
+
"title": "left"
|
|
2405
|
+
},
|
|
2406
|
+
"settings": {
|
|
2407
|
+
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
2408
|
+
"type": "boolean",
|
|
2409
|
+
"title": "settings"
|
|
2410
|
+
},
|
|
2411
|
+
"label": {
|
|
2412
|
+
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
2413
|
+
"type": "string",
|
|
2414
|
+
"title": "label"
|
|
2415
|
+
},
|
|
2416
|
+
"enabled": {
|
|
2417
|
+
"description": "Indicates the value of the item if it affects config-ui\n(eg.: if item is a switch and displaying an input on the config-ui depends on the switch value: on/off)",
|
|
2418
|
+
"type": "boolean",
|
|
2419
|
+
"title": "enabled"
|
|
2420
|
+
}
|
|
2421
|
+
}
|
|
2422
|
+
},
|
|
2423
|
+
"TitleConfigProp": {
|
|
2424
|
+
"title": "TitleConfigProp",
|
|
2425
|
+
"type": "object",
|
|
2426
|
+
"properties": {
|
|
2427
|
+
"placeholder": {
|
|
2428
|
+
"description": "Indicates the placeholder for the title label",
|
|
2429
|
+
"type": "string",
|
|
2430
|
+
"title": "placeholder"
|
|
2431
|
+
},
|
|
2040
2432
|
"settings": {
|
|
2041
2433
|
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
2042
2434
|
"type": "boolean",
|
|
@@ -2805,134 +3197,6 @@
|
|
|
2805
3197
|
"x",
|
|
2806
3198
|
"y"
|
|
2807
3199
|
]
|
|
2808
|
-
},
|
|
2809
|
-
"Arrows": {
|
|
2810
|
-
"title": "Arrows",
|
|
2811
|
-
"type": "object",
|
|
2812
|
-
"properties": {
|
|
2813
|
-
"left": {
|
|
2814
|
-
"description": "Indicates if left arrow is enabled",
|
|
2815
|
-
"type": "boolean",
|
|
2816
|
-
"title": "left"
|
|
2817
|
-
},
|
|
2818
|
-
"right": {
|
|
2819
|
-
"description": "Indicates if right arrow is enabled",
|
|
2820
|
-
"type": "boolean",
|
|
2821
|
-
"title": "right"
|
|
2822
|
-
},
|
|
2823
|
-
"up": {
|
|
2824
|
-
"description": "Indicates if up arrow is enabled",
|
|
2825
|
-
"type": "boolean",
|
|
2826
|
-
"title": "up"
|
|
2827
|
-
},
|
|
2828
|
-
"down": {
|
|
2829
|
-
"description": "Indicates if down arrow is enabled",
|
|
2830
|
-
"type": "boolean",
|
|
2831
|
-
"title": "down"
|
|
2832
|
-
}
|
|
2833
|
-
},
|
|
2834
|
-
"required": [
|
|
2835
|
-
"down",
|
|
2836
|
-
"left",
|
|
2837
|
-
"right",
|
|
2838
|
-
"up"
|
|
2839
|
-
]
|
|
2840
|
-
},
|
|
2841
|
-
"GraphSettings": {
|
|
2842
|
-
"title": "GraphSettings",
|
|
2843
|
-
"type": "object",
|
|
2844
|
-
"properties": {
|
|
2845
|
-
"min": {
|
|
2846
|
-
"description": "Min value",
|
|
2847
|
-
"type": "number",
|
|
2848
|
-
"title": "min"
|
|
2849
|
-
},
|
|
2850
|
-
"max": {
|
|
2851
|
-
"description": "Max value",
|
|
2852
|
-
"type": "number",
|
|
2853
|
-
"title": "max"
|
|
2854
|
-
},
|
|
2855
|
-
"padding": {
|
|
2856
|
-
"description": "Padding value",
|
|
2857
|
-
"type": "number",
|
|
2858
|
-
"title": "padding"
|
|
2859
|
-
},
|
|
2860
|
-
"step": {
|
|
2861
|
-
"description": "Step value",
|
|
2862
|
-
"type": "number",
|
|
2863
|
-
"title": "step"
|
|
2864
|
-
},
|
|
2865
|
-
"labelStep": {
|
|
2866
|
-
"description": "Label step value",
|
|
2867
|
-
"type": "number",
|
|
2868
|
-
"title": "labelStep"
|
|
2869
|
-
},
|
|
2870
|
-
"axisLabel": {
|
|
2871
|
-
"description": "Axis Label",
|
|
2872
|
-
"type": "string",
|
|
2873
|
-
"title": "axisLabel"
|
|
2874
|
-
}
|
|
2875
|
-
},
|
|
2876
|
-
"required": [
|
|
2877
|
-
"axisLabel",
|
|
2878
|
-
"labelStep",
|
|
2879
|
-
"max",
|
|
2880
|
-
"min",
|
|
2881
|
-
"padding",
|
|
2882
|
-
"step"
|
|
2883
|
-
]
|
|
2884
|
-
},
|
|
2885
|
-
"Graph": {
|
|
2886
|
-
"title": "Graph",
|
|
2887
|
-
"type": "object",
|
|
2888
|
-
"properties": {
|
|
2889
|
-
"width": {
|
|
2890
|
-
"description": "Width for graph representation",
|
|
2891
|
-
"type": "number",
|
|
2892
|
-
"title": "width"
|
|
2893
|
-
},
|
|
2894
|
-
"height": {
|
|
2895
|
-
"description": "Height for graph representation",
|
|
2896
|
-
"type": "number",
|
|
2897
|
-
"title": "height"
|
|
2898
|
-
}
|
|
2899
|
-
},
|
|
2900
|
-
"required": [
|
|
2901
|
-
"height",
|
|
2902
|
-
"width"
|
|
2903
|
-
]
|
|
2904
|
-
},
|
|
2905
|
-
"Labels": {
|
|
2906
|
-
"title": "Labels",
|
|
2907
|
-
"type": "object",
|
|
2908
|
-
"properties": {
|
|
2909
|
-
"top": {
|
|
2910
|
-
"description": "Label for top side of the graph",
|
|
2911
|
-
"type": "string",
|
|
2912
|
-
"title": "top"
|
|
2913
|
-
},
|
|
2914
|
-
"bottom": {
|
|
2915
|
-
"description": "Label for bottom side of the graph",
|
|
2916
|
-
"type": "string",
|
|
2917
|
-
"title": "bottom"
|
|
2918
|
-
},
|
|
2919
|
-
"left": {
|
|
2920
|
-
"description": "Label for left side of the graph",
|
|
2921
|
-
"type": "string",
|
|
2922
|
-
"title": "left"
|
|
2923
|
-
},
|
|
2924
|
-
"right": {
|
|
2925
|
-
"description": "Label for right side of the graph",
|
|
2926
|
-
"type": "string",
|
|
2927
|
-
"title": "right"
|
|
2928
|
-
}
|
|
2929
|
-
},
|
|
2930
|
-
"required": [
|
|
2931
|
-
"bottom",
|
|
2932
|
-
"left",
|
|
2933
|
-
"right",
|
|
2934
|
-
"top"
|
|
2935
|
-
]
|
|
2936
3200
|
}
|
|
2937
3201
|
},
|
|
2938
3202
|
"$schema": "http://json-schema.org/draft-07/schema#"
|