@pie-element/graphing 10.1.1 → 10.1.2-next.1
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/configure.js +2 -0
- package/controller.js +1 -0
- package/dist/author/configure.d.ts +26 -0
- package/dist/author/configure.js +208 -0
- package/dist/author/correct-response.d.ts +54 -0
- package/dist/author/correct-response.js +303 -0
- package/dist/author/defaults.d.ts +294 -0
- package/dist/author/defaults.js +415 -0
- package/dist/author/graphing-config.d.ts +34 -0
- package/dist/author/graphing-config.js +244 -0
- package/dist/author/index.d.ts +59 -0
- package/dist/author/index.js +96 -0
- package/dist/author/utils.d.ts +43 -0
- package/dist/author/utils.js +260 -0
- package/dist/browser/author/index.js +4480 -0
- package/dist/browser/author/index.js.map +1 -0
- package/dist/browser/container-DaIvr1Vu.js +57966 -0
- package/dist/browser/container-DaIvr1Vu.js.map +1 -0
- package/dist/browser/controller/index.js +353 -0
- package/dist/browser/controller/index.js.map +1 -0
- package/dist/browser/delivery/index.js +683 -0
- package/dist/browser/delivery/index.js.map +1 -0
- package/dist/browser/dist-BrN2xZtM.js +547 -0
- package/dist/browser/dist-BrN2xZtM.js.map +1 -0
- package/dist/browser/graphing.css +2 -0
- package/dist/controller/defaults.d.ts +59 -0
- package/dist/controller/defaults.js +61 -0
- package/dist/controller/index.d.ts +34 -0
- package/dist/controller/index.js +179 -0
- package/dist/controller/utils.d.ts +37 -0
- package/dist/controller/utils.js +111 -0
- package/dist/delivery/index.d.ts +21 -0
- package/dist/delivery/index.js +43 -0
- package/dist/delivery/main.d.ts +23 -0
- package/dist/delivery/main.js +107 -0
- package/dist/delivery/utils.d.ts +22 -0
- package/dist/graphing.css +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.iife.d.ts +8 -0
- package/dist/index.iife.js +406 -0
- package/dist/index.js +2 -0
- package/dist/runtime-support.d.ts +12 -0
- package/dist/runtime-support.js +12 -0
- package/package.json +88 -21
- package/CHANGELOG.json +0 -652
- package/CHANGELOG.md +0 -2043
- package/LICENSE.md +0 -5
- package/README.md +0 -1
- package/configure/CHANGELOG.json +0 -382
- package/configure/CHANGELOG.md +0 -1834
- package/configure/lib/configure.js +0 -328
- package/configure/lib/configure.js.map +0 -1
- package/configure/lib/correct-response.js +0 -484
- package/configure/lib/correct-response.js.map +0 -1
- package/configure/lib/defaults.js +0 -448
- package/configure/lib/defaults.js.map +0 -1
- package/configure/lib/graphing-config.js +0 -388
- package/configure/lib/graphing-config.js.map +0 -1
- package/configure/lib/index.js +0 -173
- package/configure/lib/index.js.map +0 -1
- package/configure/lib/utils.js +0 -122
- package/configure/lib/utils.js.map +0 -1
- package/configure/package.json +0 -30
- package/controller/CHANGELOG.json +0 -412
- package/controller/CHANGELOG.md +0 -1267
- package/controller/lib/defaults.js +0 -64
- package/controller/lib/defaults.js.map +0 -1
- package/controller/lib/index.js +0 -459
- package/controller/lib/index.js.map +0 -1
- package/controller/lib/utils.js +0 -451
- package/controller/lib/utils.js.map +0 -1
- package/controller/package.json +0 -24
- package/docs/config-schema.json +0 -3164
- package/docs/config-schema.json.md +0 -2293
- package/docs/demo/config.js +0 -8
- package/docs/demo/generate.js +0 -200
- package/docs/demo/index.html +0 -1
- package/docs/demo/session.js +0 -20
- package/docs/pie-schema.json +0 -3495
- package/docs/pie-schema.json.md +0 -1345
- package/lib/index.js +0 -69
- package/lib/index.js.map +0 -1
- package/lib/main.js +0 -161
- package/lib/main.js.map +0 -1
- package/lib/utils.js +0 -24
- package/lib/utils.js.map +0 -1
package/docs/pie-schema.json
DELETED
|
@@ -1,3495 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"description": "Model Object for @pie-elements/graphing",
|
|
3
|
-
"additionalProperties": false,
|
|
4
|
-
"type": "object",
|
|
5
|
-
"properties": {
|
|
6
|
-
"answers": {
|
|
7
|
-
"description": "Indicates marks that are set as answers; Note: alternates can be added having this form: alternateIndex",
|
|
8
|
-
"type": "object",
|
|
9
|
-
"properties": {
|
|
10
|
-
"correctAnswer": {
|
|
11
|
-
"title": "Answer",
|
|
12
|
-
"type": "object",
|
|
13
|
-
"properties": {
|
|
14
|
-
"name": {
|
|
15
|
-
"description": "Indicates name of answer",
|
|
16
|
-
"type": "string",
|
|
17
|
-
"title": "name"
|
|
18
|
-
},
|
|
19
|
-
"marks": {
|
|
20
|
-
"description": "Indicates marks for the answer",
|
|
21
|
-
"type": "array",
|
|
22
|
-
"items": [
|
|
23
|
-
{
|
|
24
|
-
"title": "Mark",
|
|
25
|
-
"type": "object",
|
|
26
|
-
"properties": {
|
|
27
|
-
"type": {
|
|
28
|
-
"description": "Indicates type of mark",
|
|
29
|
-
"enum": [
|
|
30
|
-
"circle",
|
|
31
|
-
"line",
|
|
32
|
-
"parabola",
|
|
33
|
-
"point",
|
|
34
|
-
"polygon",
|
|
35
|
-
"ray",
|
|
36
|
-
"segment",
|
|
37
|
-
"sine",
|
|
38
|
-
"vector"
|
|
39
|
-
],
|
|
40
|
-
"type": "string",
|
|
41
|
-
"title": "type"
|
|
42
|
-
},
|
|
43
|
-
"showLabel": {
|
|
44
|
-
"description": "Indicates if label should be visible",
|
|
45
|
-
"type": "boolean",
|
|
46
|
-
"title": "showLabel"
|
|
47
|
-
},
|
|
48
|
-
"label": {
|
|
49
|
-
"description": "Indicates label value for mark",
|
|
50
|
-
"type": "string",
|
|
51
|
-
"title": "label"
|
|
52
|
-
},
|
|
53
|
-
"building": {
|
|
54
|
-
"description": "Indicates if mark is in build process",
|
|
55
|
-
"type": "boolean",
|
|
56
|
-
"title": "building"
|
|
57
|
-
},
|
|
58
|
-
"x": {
|
|
59
|
-
"description": "Indicates x coordinate if type is point",
|
|
60
|
-
"type": "number",
|
|
61
|
-
"title": "x"
|
|
62
|
-
},
|
|
63
|
-
"y": {
|
|
64
|
-
"description": "Indicates y coordinate if type is point",
|
|
65
|
-
"type": "number",
|
|
66
|
-
"title": "y"
|
|
67
|
-
},
|
|
68
|
-
"from": {
|
|
69
|
-
"title": "Point",
|
|
70
|
-
"type": "object",
|
|
71
|
-
"properties": {
|
|
72
|
-
"x": {
|
|
73
|
-
"description": "Indicates x coordinate",
|
|
74
|
-
"type": "number",
|
|
75
|
-
"title": "x"
|
|
76
|
-
},
|
|
77
|
-
"y": {
|
|
78
|
-
"description": "Indicates y coordinate",
|
|
79
|
-
"type": "number",
|
|
80
|
-
"title": "y"
|
|
81
|
-
}
|
|
82
|
-
},
|
|
83
|
-
"required": [
|
|
84
|
-
"x",
|
|
85
|
-
"y"
|
|
86
|
-
]
|
|
87
|
-
},
|
|
88
|
-
"to": {
|
|
89
|
-
"title": "Point",
|
|
90
|
-
"type": "object",
|
|
91
|
-
"properties": {
|
|
92
|
-
"x": {
|
|
93
|
-
"description": "Indicates x coordinate",
|
|
94
|
-
"type": "number",
|
|
95
|
-
"title": "x"
|
|
96
|
-
},
|
|
97
|
-
"y": {
|
|
98
|
-
"description": "Indicates y coordinate",
|
|
99
|
-
"type": "number",
|
|
100
|
-
"title": "y"
|
|
101
|
-
}
|
|
102
|
-
},
|
|
103
|
-
"required": [
|
|
104
|
-
"x",
|
|
105
|
-
"y"
|
|
106
|
-
]
|
|
107
|
-
},
|
|
108
|
-
"closed": {
|
|
109
|
-
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
110
|
-
"type": "boolean",
|
|
111
|
-
"title": "closed"
|
|
112
|
-
},
|
|
113
|
-
"points": {
|
|
114
|
-
"description": "Indicates all mark's points if type is polygon",
|
|
115
|
-
"type": "array",
|
|
116
|
-
"items": [
|
|
117
|
-
{
|
|
118
|
-
"title": "Point",
|
|
119
|
-
"type": "object",
|
|
120
|
-
"properties": {
|
|
121
|
-
"x": {
|
|
122
|
-
"description": "Indicates x coordinate",
|
|
123
|
-
"type": "number",
|
|
124
|
-
"title": "x"
|
|
125
|
-
},
|
|
126
|
-
"y": {
|
|
127
|
-
"description": "Indicates y coordinate",
|
|
128
|
-
"type": "number",
|
|
129
|
-
"title": "y"
|
|
130
|
-
}
|
|
131
|
-
},
|
|
132
|
-
"required": [
|
|
133
|
-
"x",
|
|
134
|
-
"y"
|
|
135
|
-
]
|
|
136
|
-
}
|
|
137
|
-
],
|
|
138
|
-
"minItems": 1,
|
|
139
|
-
"additionalItems": {
|
|
140
|
-
"anyOf": [
|
|
141
|
-
{
|
|
142
|
-
"title": "Point",
|
|
143
|
-
"type": "object",
|
|
144
|
-
"properties": {
|
|
145
|
-
"x": {
|
|
146
|
-
"description": "Indicates x coordinate",
|
|
147
|
-
"type": "number",
|
|
148
|
-
"title": "x"
|
|
149
|
-
},
|
|
150
|
-
"y": {
|
|
151
|
-
"description": "Indicates y coordinate",
|
|
152
|
-
"type": "number",
|
|
153
|
-
"title": "y"
|
|
154
|
-
}
|
|
155
|
-
},
|
|
156
|
-
"required": [
|
|
157
|
-
"x",
|
|
158
|
-
"y"
|
|
159
|
-
]
|
|
160
|
-
}
|
|
161
|
-
]
|
|
162
|
-
},
|
|
163
|
-
"title": "points"
|
|
164
|
-
},
|
|
165
|
-
"root": {
|
|
166
|
-
"title": "Point",
|
|
167
|
-
"type": "object",
|
|
168
|
-
"properties": {
|
|
169
|
-
"x": {
|
|
170
|
-
"description": "Indicates x coordinate",
|
|
171
|
-
"type": "number",
|
|
172
|
-
"title": "x"
|
|
173
|
-
},
|
|
174
|
-
"y": {
|
|
175
|
-
"description": "Indicates y coordinate",
|
|
176
|
-
"type": "number",
|
|
177
|
-
"title": "y"
|
|
178
|
-
}
|
|
179
|
-
},
|
|
180
|
-
"required": [
|
|
181
|
-
"x",
|
|
182
|
-
"y"
|
|
183
|
-
]
|
|
184
|
-
},
|
|
185
|
-
"edge": {
|
|
186
|
-
"title": "Point",
|
|
187
|
-
"type": "object",
|
|
188
|
-
"properties": {
|
|
189
|
-
"x": {
|
|
190
|
-
"description": "Indicates x coordinate",
|
|
191
|
-
"type": "number",
|
|
192
|
-
"title": "x"
|
|
193
|
-
},
|
|
194
|
-
"y": {
|
|
195
|
-
"description": "Indicates y coordinate",
|
|
196
|
-
"type": "number",
|
|
197
|
-
"title": "y"
|
|
198
|
-
}
|
|
199
|
-
},
|
|
200
|
-
"required": [
|
|
201
|
-
"x",
|
|
202
|
-
"y"
|
|
203
|
-
]
|
|
204
|
-
}
|
|
205
|
-
},
|
|
206
|
-
"required": [
|
|
207
|
-
"building",
|
|
208
|
-
"type"
|
|
209
|
-
]
|
|
210
|
-
}
|
|
211
|
-
],
|
|
212
|
-
"minItems": 1,
|
|
213
|
-
"additionalItems": {
|
|
214
|
-
"anyOf": [
|
|
215
|
-
{
|
|
216
|
-
"title": "Mark",
|
|
217
|
-
"type": "object",
|
|
218
|
-
"properties": {
|
|
219
|
-
"type": {
|
|
220
|
-
"description": "Indicates type of mark",
|
|
221
|
-
"enum": [
|
|
222
|
-
"circle",
|
|
223
|
-
"line",
|
|
224
|
-
"parabola",
|
|
225
|
-
"point",
|
|
226
|
-
"polygon",
|
|
227
|
-
"ray",
|
|
228
|
-
"segment",
|
|
229
|
-
"sine",
|
|
230
|
-
"vector"
|
|
231
|
-
],
|
|
232
|
-
"type": "string",
|
|
233
|
-
"title": "type"
|
|
234
|
-
},
|
|
235
|
-
"showLabel": {
|
|
236
|
-
"description": "Indicates if label should be visible",
|
|
237
|
-
"type": "boolean",
|
|
238
|
-
"title": "showLabel"
|
|
239
|
-
},
|
|
240
|
-
"label": {
|
|
241
|
-
"description": "Indicates label value for mark",
|
|
242
|
-
"type": "string",
|
|
243
|
-
"title": "label"
|
|
244
|
-
},
|
|
245
|
-
"building": {
|
|
246
|
-
"description": "Indicates if mark is in build process",
|
|
247
|
-
"type": "boolean",
|
|
248
|
-
"title": "building"
|
|
249
|
-
},
|
|
250
|
-
"x": {
|
|
251
|
-
"description": "Indicates x coordinate if type is point",
|
|
252
|
-
"type": "number",
|
|
253
|
-
"title": "x"
|
|
254
|
-
},
|
|
255
|
-
"y": {
|
|
256
|
-
"description": "Indicates y coordinate if type is point",
|
|
257
|
-
"type": "number",
|
|
258
|
-
"title": "y"
|
|
259
|
-
},
|
|
260
|
-
"from": {
|
|
261
|
-
"title": "Point",
|
|
262
|
-
"type": "object",
|
|
263
|
-
"properties": {
|
|
264
|
-
"x": {
|
|
265
|
-
"description": "Indicates x coordinate",
|
|
266
|
-
"type": "number",
|
|
267
|
-
"title": "x"
|
|
268
|
-
},
|
|
269
|
-
"y": {
|
|
270
|
-
"description": "Indicates y coordinate",
|
|
271
|
-
"type": "number",
|
|
272
|
-
"title": "y"
|
|
273
|
-
}
|
|
274
|
-
},
|
|
275
|
-
"required": [
|
|
276
|
-
"x",
|
|
277
|
-
"y"
|
|
278
|
-
]
|
|
279
|
-
},
|
|
280
|
-
"to": {
|
|
281
|
-
"title": "Point",
|
|
282
|
-
"type": "object",
|
|
283
|
-
"properties": {
|
|
284
|
-
"x": {
|
|
285
|
-
"description": "Indicates x coordinate",
|
|
286
|
-
"type": "number",
|
|
287
|
-
"title": "x"
|
|
288
|
-
},
|
|
289
|
-
"y": {
|
|
290
|
-
"description": "Indicates y coordinate",
|
|
291
|
-
"type": "number",
|
|
292
|
-
"title": "y"
|
|
293
|
-
}
|
|
294
|
-
},
|
|
295
|
-
"required": [
|
|
296
|
-
"x",
|
|
297
|
-
"y"
|
|
298
|
-
]
|
|
299
|
-
},
|
|
300
|
-
"closed": {
|
|
301
|
-
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
302
|
-
"type": "boolean",
|
|
303
|
-
"title": "closed"
|
|
304
|
-
},
|
|
305
|
-
"points": {
|
|
306
|
-
"description": "Indicates all mark's points if type is polygon",
|
|
307
|
-
"type": "array",
|
|
308
|
-
"items": [
|
|
309
|
-
{
|
|
310
|
-
"title": "Point",
|
|
311
|
-
"type": "object",
|
|
312
|
-
"properties": {
|
|
313
|
-
"x": {
|
|
314
|
-
"description": "Indicates x coordinate",
|
|
315
|
-
"type": "number",
|
|
316
|
-
"title": "x"
|
|
317
|
-
},
|
|
318
|
-
"y": {
|
|
319
|
-
"description": "Indicates y coordinate",
|
|
320
|
-
"type": "number",
|
|
321
|
-
"title": "y"
|
|
322
|
-
}
|
|
323
|
-
},
|
|
324
|
-
"required": [
|
|
325
|
-
"x",
|
|
326
|
-
"y"
|
|
327
|
-
]
|
|
328
|
-
}
|
|
329
|
-
],
|
|
330
|
-
"minItems": 1,
|
|
331
|
-
"additionalItems": {
|
|
332
|
-
"anyOf": [
|
|
333
|
-
{
|
|
334
|
-
"title": "Point",
|
|
335
|
-
"type": "object",
|
|
336
|
-
"properties": {
|
|
337
|
-
"x": {
|
|
338
|
-
"description": "Indicates x coordinate",
|
|
339
|
-
"type": "number",
|
|
340
|
-
"title": "x"
|
|
341
|
-
},
|
|
342
|
-
"y": {
|
|
343
|
-
"description": "Indicates y coordinate",
|
|
344
|
-
"type": "number",
|
|
345
|
-
"title": "y"
|
|
346
|
-
}
|
|
347
|
-
},
|
|
348
|
-
"required": [
|
|
349
|
-
"x",
|
|
350
|
-
"y"
|
|
351
|
-
]
|
|
352
|
-
}
|
|
353
|
-
]
|
|
354
|
-
},
|
|
355
|
-
"title": "points"
|
|
356
|
-
},
|
|
357
|
-
"root": {
|
|
358
|
-
"title": "Point",
|
|
359
|
-
"type": "object",
|
|
360
|
-
"properties": {
|
|
361
|
-
"x": {
|
|
362
|
-
"description": "Indicates x coordinate",
|
|
363
|
-
"type": "number",
|
|
364
|
-
"title": "x"
|
|
365
|
-
},
|
|
366
|
-
"y": {
|
|
367
|
-
"description": "Indicates y coordinate",
|
|
368
|
-
"type": "number",
|
|
369
|
-
"title": "y"
|
|
370
|
-
}
|
|
371
|
-
},
|
|
372
|
-
"required": [
|
|
373
|
-
"x",
|
|
374
|
-
"y"
|
|
375
|
-
]
|
|
376
|
-
},
|
|
377
|
-
"edge": {
|
|
378
|
-
"title": "Point",
|
|
379
|
-
"type": "object",
|
|
380
|
-
"properties": {
|
|
381
|
-
"x": {
|
|
382
|
-
"description": "Indicates x coordinate",
|
|
383
|
-
"type": "number",
|
|
384
|
-
"title": "x"
|
|
385
|
-
},
|
|
386
|
-
"y": {
|
|
387
|
-
"description": "Indicates y coordinate",
|
|
388
|
-
"type": "number",
|
|
389
|
-
"title": "y"
|
|
390
|
-
}
|
|
391
|
-
},
|
|
392
|
-
"required": [
|
|
393
|
-
"x",
|
|
394
|
-
"y"
|
|
395
|
-
]
|
|
396
|
-
}
|
|
397
|
-
},
|
|
398
|
-
"required": [
|
|
399
|
-
"building",
|
|
400
|
-
"type"
|
|
401
|
-
]
|
|
402
|
-
}
|
|
403
|
-
]
|
|
404
|
-
},
|
|
405
|
-
"title": "marks"
|
|
406
|
-
}
|
|
407
|
-
},
|
|
408
|
-
"required": [
|
|
409
|
-
"marks",
|
|
410
|
-
"name"
|
|
411
|
-
]
|
|
412
|
-
},
|
|
413
|
-
"alternate1": {
|
|
414
|
-
"title": "Answer",
|
|
415
|
-
"type": "object",
|
|
416
|
-
"properties": {
|
|
417
|
-
"name": {
|
|
418
|
-
"description": "Indicates name of answer",
|
|
419
|
-
"type": "string",
|
|
420
|
-
"title": "name"
|
|
421
|
-
},
|
|
422
|
-
"marks": {
|
|
423
|
-
"description": "Indicates marks for the answer",
|
|
424
|
-
"type": "array",
|
|
425
|
-
"items": [
|
|
426
|
-
{
|
|
427
|
-
"title": "Mark",
|
|
428
|
-
"type": "object",
|
|
429
|
-
"properties": {
|
|
430
|
-
"type": {
|
|
431
|
-
"description": "Indicates type of mark",
|
|
432
|
-
"enum": [
|
|
433
|
-
"circle",
|
|
434
|
-
"line",
|
|
435
|
-
"parabola",
|
|
436
|
-
"point",
|
|
437
|
-
"polygon",
|
|
438
|
-
"ray",
|
|
439
|
-
"segment",
|
|
440
|
-
"sine",
|
|
441
|
-
"vector"
|
|
442
|
-
],
|
|
443
|
-
"type": "string",
|
|
444
|
-
"title": "type"
|
|
445
|
-
},
|
|
446
|
-
"showLabel": {
|
|
447
|
-
"description": "Indicates if label should be visible",
|
|
448
|
-
"type": "boolean",
|
|
449
|
-
"title": "showLabel"
|
|
450
|
-
},
|
|
451
|
-
"label": {
|
|
452
|
-
"description": "Indicates label value for mark",
|
|
453
|
-
"type": "string",
|
|
454
|
-
"title": "label"
|
|
455
|
-
},
|
|
456
|
-
"building": {
|
|
457
|
-
"description": "Indicates if mark is in build process",
|
|
458
|
-
"type": "boolean",
|
|
459
|
-
"title": "building"
|
|
460
|
-
},
|
|
461
|
-
"x": {
|
|
462
|
-
"description": "Indicates x coordinate if type is point",
|
|
463
|
-
"type": "number",
|
|
464
|
-
"title": "x"
|
|
465
|
-
},
|
|
466
|
-
"y": {
|
|
467
|
-
"description": "Indicates y coordinate if type is point",
|
|
468
|
-
"type": "number",
|
|
469
|
-
"title": "y"
|
|
470
|
-
},
|
|
471
|
-
"from": {
|
|
472
|
-
"title": "Point",
|
|
473
|
-
"type": "object",
|
|
474
|
-
"properties": {
|
|
475
|
-
"x": {
|
|
476
|
-
"description": "Indicates x coordinate",
|
|
477
|
-
"type": "number",
|
|
478
|
-
"title": "x"
|
|
479
|
-
},
|
|
480
|
-
"y": {
|
|
481
|
-
"description": "Indicates y coordinate",
|
|
482
|
-
"type": "number",
|
|
483
|
-
"title": "y"
|
|
484
|
-
}
|
|
485
|
-
},
|
|
486
|
-
"required": [
|
|
487
|
-
"x",
|
|
488
|
-
"y"
|
|
489
|
-
]
|
|
490
|
-
},
|
|
491
|
-
"to": {
|
|
492
|
-
"title": "Point",
|
|
493
|
-
"type": "object",
|
|
494
|
-
"properties": {
|
|
495
|
-
"x": {
|
|
496
|
-
"description": "Indicates x coordinate",
|
|
497
|
-
"type": "number",
|
|
498
|
-
"title": "x"
|
|
499
|
-
},
|
|
500
|
-
"y": {
|
|
501
|
-
"description": "Indicates y coordinate",
|
|
502
|
-
"type": "number",
|
|
503
|
-
"title": "y"
|
|
504
|
-
}
|
|
505
|
-
},
|
|
506
|
-
"required": [
|
|
507
|
-
"x",
|
|
508
|
-
"y"
|
|
509
|
-
]
|
|
510
|
-
},
|
|
511
|
-
"closed": {
|
|
512
|
-
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
513
|
-
"type": "boolean",
|
|
514
|
-
"title": "closed"
|
|
515
|
-
},
|
|
516
|
-
"points": {
|
|
517
|
-
"description": "Indicates all mark's points if type is polygon",
|
|
518
|
-
"type": "array",
|
|
519
|
-
"items": [
|
|
520
|
-
{
|
|
521
|
-
"title": "Point",
|
|
522
|
-
"type": "object",
|
|
523
|
-
"properties": {
|
|
524
|
-
"x": {
|
|
525
|
-
"description": "Indicates x coordinate",
|
|
526
|
-
"type": "number",
|
|
527
|
-
"title": "x"
|
|
528
|
-
},
|
|
529
|
-
"y": {
|
|
530
|
-
"description": "Indicates y coordinate",
|
|
531
|
-
"type": "number",
|
|
532
|
-
"title": "y"
|
|
533
|
-
}
|
|
534
|
-
},
|
|
535
|
-
"required": [
|
|
536
|
-
"x",
|
|
537
|
-
"y"
|
|
538
|
-
]
|
|
539
|
-
}
|
|
540
|
-
],
|
|
541
|
-
"minItems": 1,
|
|
542
|
-
"additionalItems": {
|
|
543
|
-
"anyOf": [
|
|
544
|
-
{
|
|
545
|
-
"title": "Point",
|
|
546
|
-
"type": "object",
|
|
547
|
-
"properties": {
|
|
548
|
-
"x": {
|
|
549
|
-
"description": "Indicates x coordinate",
|
|
550
|
-
"type": "number",
|
|
551
|
-
"title": "x"
|
|
552
|
-
},
|
|
553
|
-
"y": {
|
|
554
|
-
"description": "Indicates y coordinate",
|
|
555
|
-
"type": "number",
|
|
556
|
-
"title": "y"
|
|
557
|
-
}
|
|
558
|
-
},
|
|
559
|
-
"required": [
|
|
560
|
-
"x",
|
|
561
|
-
"y"
|
|
562
|
-
]
|
|
563
|
-
}
|
|
564
|
-
]
|
|
565
|
-
},
|
|
566
|
-
"title": "points"
|
|
567
|
-
},
|
|
568
|
-
"root": {
|
|
569
|
-
"title": "Point",
|
|
570
|
-
"type": "object",
|
|
571
|
-
"properties": {
|
|
572
|
-
"x": {
|
|
573
|
-
"description": "Indicates x coordinate",
|
|
574
|
-
"type": "number",
|
|
575
|
-
"title": "x"
|
|
576
|
-
},
|
|
577
|
-
"y": {
|
|
578
|
-
"description": "Indicates y coordinate",
|
|
579
|
-
"type": "number",
|
|
580
|
-
"title": "y"
|
|
581
|
-
}
|
|
582
|
-
},
|
|
583
|
-
"required": [
|
|
584
|
-
"x",
|
|
585
|
-
"y"
|
|
586
|
-
]
|
|
587
|
-
},
|
|
588
|
-
"edge": {
|
|
589
|
-
"title": "Point",
|
|
590
|
-
"type": "object",
|
|
591
|
-
"properties": {
|
|
592
|
-
"x": {
|
|
593
|
-
"description": "Indicates x coordinate",
|
|
594
|
-
"type": "number",
|
|
595
|
-
"title": "x"
|
|
596
|
-
},
|
|
597
|
-
"y": {
|
|
598
|
-
"description": "Indicates y coordinate",
|
|
599
|
-
"type": "number",
|
|
600
|
-
"title": "y"
|
|
601
|
-
}
|
|
602
|
-
},
|
|
603
|
-
"required": [
|
|
604
|
-
"x",
|
|
605
|
-
"y"
|
|
606
|
-
]
|
|
607
|
-
}
|
|
608
|
-
},
|
|
609
|
-
"required": [
|
|
610
|
-
"building",
|
|
611
|
-
"type"
|
|
612
|
-
]
|
|
613
|
-
}
|
|
614
|
-
],
|
|
615
|
-
"minItems": 1,
|
|
616
|
-
"additionalItems": {
|
|
617
|
-
"anyOf": [
|
|
618
|
-
{
|
|
619
|
-
"title": "Mark",
|
|
620
|
-
"type": "object",
|
|
621
|
-
"properties": {
|
|
622
|
-
"type": {
|
|
623
|
-
"description": "Indicates type of mark",
|
|
624
|
-
"enum": [
|
|
625
|
-
"circle",
|
|
626
|
-
"line",
|
|
627
|
-
"parabola",
|
|
628
|
-
"point",
|
|
629
|
-
"polygon",
|
|
630
|
-
"ray",
|
|
631
|
-
"segment",
|
|
632
|
-
"sine",
|
|
633
|
-
"vector"
|
|
634
|
-
],
|
|
635
|
-
"type": "string",
|
|
636
|
-
"title": "type"
|
|
637
|
-
},
|
|
638
|
-
"showLabel": {
|
|
639
|
-
"description": "Indicates if label should be visible",
|
|
640
|
-
"type": "boolean",
|
|
641
|
-
"title": "showLabel"
|
|
642
|
-
},
|
|
643
|
-
"label": {
|
|
644
|
-
"description": "Indicates label value for mark",
|
|
645
|
-
"type": "string",
|
|
646
|
-
"title": "label"
|
|
647
|
-
},
|
|
648
|
-
"building": {
|
|
649
|
-
"description": "Indicates if mark is in build process",
|
|
650
|
-
"type": "boolean",
|
|
651
|
-
"title": "building"
|
|
652
|
-
},
|
|
653
|
-
"x": {
|
|
654
|
-
"description": "Indicates x coordinate if type is point",
|
|
655
|
-
"type": "number",
|
|
656
|
-
"title": "x"
|
|
657
|
-
},
|
|
658
|
-
"y": {
|
|
659
|
-
"description": "Indicates y coordinate if type is point",
|
|
660
|
-
"type": "number",
|
|
661
|
-
"title": "y"
|
|
662
|
-
},
|
|
663
|
-
"from": {
|
|
664
|
-
"title": "Point",
|
|
665
|
-
"type": "object",
|
|
666
|
-
"properties": {
|
|
667
|
-
"x": {
|
|
668
|
-
"description": "Indicates x coordinate",
|
|
669
|
-
"type": "number",
|
|
670
|
-
"title": "x"
|
|
671
|
-
},
|
|
672
|
-
"y": {
|
|
673
|
-
"description": "Indicates y coordinate",
|
|
674
|
-
"type": "number",
|
|
675
|
-
"title": "y"
|
|
676
|
-
}
|
|
677
|
-
},
|
|
678
|
-
"required": [
|
|
679
|
-
"x",
|
|
680
|
-
"y"
|
|
681
|
-
]
|
|
682
|
-
},
|
|
683
|
-
"to": {
|
|
684
|
-
"title": "Point",
|
|
685
|
-
"type": "object",
|
|
686
|
-
"properties": {
|
|
687
|
-
"x": {
|
|
688
|
-
"description": "Indicates x coordinate",
|
|
689
|
-
"type": "number",
|
|
690
|
-
"title": "x"
|
|
691
|
-
},
|
|
692
|
-
"y": {
|
|
693
|
-
"description": "Indicates y coordinate",
|
|
694
|
-
"type": "number",
|
|
695
|
-
"title": "y"
|
|
696
|
-
}
|
|
697
|
-
},
|
|
698
|
-
"required": [
|
|
699
|
-
"x",
|
|
700
|
-
"y"
|
|
701
|
-
]
|
|
702
|
-
},
|
|
703
|
-
"closed": {
|
|
704
|
-
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
705
|
-
"type": "boolean",
|
|
706
|
-
"title": "closed"
|
|
707
|
-
},
|
|
708
|
-
"points": {
|
|
709
|
-
"description": "Indicates all mark's points if type is polygon",
|
|
710
|
-
"type": "array",
|
|
711
|
-
"items": [
|
|
712
|
-
{
|
|
713
|
-
"title": "Point",
|
|
714
|
-
"type": "object",
|
|
715
|
-
"properties": {
|
|
716
|
-
"x": {
|
|
717
|
-
"description": "Indicates x coordinate",
|
|
718
|
-
"type": "number",
|
|
719
|
-
"title": "x"
|
|
720
|
-
},
|
|
721
|
-
"y": {
|
|
722
|
-
"description": "Indicates y coordinate",
|
|
723
|
-
"type": "number",
|
|
724
|
-
"title": "y"
|
|
725
|
-
}
|
|
726
|
-
},
|
|
727
|
-
"required": [
|
|
728
|
-
"x",
|
|
729
|
-
"y"
|
|
730
|
-
]
|
|
731
|
-
}
|
|
732
|
-
],
|
|
733
|
-
"minItems": 1,
|
|
734
|
-
"additionalItems": {
|
|
735
|
-
"anyOf": [
|
|
736
|
-
{
|
|
737
|
-
"title": "Point",
|
|
738
|
-
"type": "object",
|
|
739
|
-
"properties": {
|
|
740
|
-
"x": {
|
|
741
|
-
"description": "Indicates x coordinate",
|
|
742
|
-
"type": "number",
|
|
743
|
-
"title": "x"
|
|
744
|
-
},
|
|
745
|
-
"y": {
|
|
746
|
-
"description": "Indicates y coordinate",
|
|
747
|
-
"type": "number",
|
|
748
|
-
"title": "y"
|
|
749
|
-
}
|
|
750
|
-
},
|
|
751
|
-
"required": [
|
|
752
|
-
"x",
|
|
753
|
-
"y"
|
|
754
|
-
]
|
|
755
|
-
}
|
|
756
|
-
]
|
|
757
|
-
},
|
|
758
|
-
"title": "points"
|
|
759
|
-
},
|
|
760
|
-
"root": {
|
|
761
|
-
"title": "Point",
|
|
762
|
-
"type": "object",
|
|
763
|
-
"properties": {
|
|
764
|
-
"x": {
|
|
765
|
-
"description": "Indicates x coordinate",
|
|
766
|
-
"type": "number",
|
|
767
|
-
"title": "x"
|
|
768
|
-
},
|
|
769
|
-
"y": {
|
|
770
|
-
"description": "Indicates y coordinate",
|
|
771
|
-
"type": "number",
|
|
772
|
-
"title": "y"
|
|
773
|
-
}
|
|
774
|
-
},
|
|
775
|
-
"required": [
|
|
776
|
-
"x",
|
|
777
|
-
"y"
|
|
778
|
-
]
|
|
779
|
-
},
|
|
780
|
-
"edge": {
|
|
781
|
-
"title": "Point",
|
|
782
|
-
"type": "object",
|
|
783
|
-
"properties": {
|
|
784
|
-
"x": {
|
|
785
|
-
"description": "Indicates x coordinate",
|
|
786
|
-
"type": "number",
|
|
787
|
-
"title": "x"
|
|
788
|
-
},
|
|
789
|
-
"y": {
|
|
790
|
-
"description": "Indicates y coordinate",
|
|
791
|
-
"type": "number",
|
|
792
|
-
"title": "y"
|
|
793
|
-
}
|
|
794
|
-
},
|
|
795
|
-
"required": [
|
|
796
|
-
"x",
|
|
797
|
-
"y"
|
|
798
|
-
]
|
|
799
|
-
}
|
|
800
|
-
},
|
|
801
|
-
"required": [
|
|
802
|
-
"building",
|
|
803
|
-
"type"
|
|
804
|
-
]
|
|
805
|
-
}
|
|
806
|
-
]
|
|
807
|
-
},
|
|
808
|
-
"title": "marks"
|
|
809
|
-
}
|
|
810
|
-
},
|
|
811
|
-
"required": [
|
|
812
|
-
"marks",
|
|
813
|
-
"name"
|
|
814
|
-
]
|
|
815
|
-
}
|
|
816
|
-
},
|
|
817
|
-
"required": [
|
|
818
|
-
"alternate1",
|
|
819
|
-
"correctAnswer"
|
|
820
|
-
],
|
|
821
|
-
"title": "answers"
|
|
822
|
-
},
|
|
823
|
-
"arrows": {
|
|
824
|
-
"title": "Arrows",
|
|
825
|
-
"type": "object",
|
|
826
|
-
"properties": {
|
|
827
|
-
"left": {
|
|
828
|
-
"description": "Indicates if left arrow is enabled",
|
|
829
|
-
"type": "boolean",
|
|
830
|
-
"title": "left"
|
|
831
|
-
},
|
|
832
|
-
"right": {
|
|
833
|
-
"description": "Indicates if right arrow is enabled",
|
|
834
|
-
"type": "boolean",
|
|
835
|
-
"title": "right"
|
|
836
|
-
},
|
|
837
|
-
"up": {
|
|
838
|
-
"description": "Indicates if up arrow is enabled",
|
|
839
|
-
"type": "boolean",
|
|
840
|
-
"title": "up"
|
|
841
|
-
},
|
|
842
|
-
"down": {
|
|
843
|
-
"description": "Indicates if down arrow is enabled",
|
|
844
|
-
"type": "boolean",
|
|
845
|
-
"title": "down"
|
|
846
|
-
}
|
|
847
|
-
},
|
|
848
|
-
"required": [
|
|
849
|
-
"down",
|
|
850
|
-
"left",
|
|
851
|
-
"right",
|
|
852
|
-
"up"
|
|
853
|
-
]
|
|
854
|
-
},
|
|
855
|
-
"backgroundMarks": {
|
|
856
|
-
"description": "Indicates marks that have to be displayed in background",
|
|
857
|
-
"type": "array",
|
|
858
|
-
"items": [
|
|
859
|
-
{
|
|
860
|
-
"title": "Mark",
|
|
861
|
-
"type": "object",
|
|
862
|
-
"properties": {
|
|
863
|
-
"type": {
|
|
864
|
-
"description": "Indicates type of mark",
|
|
865
|
-
"enum": [
|
|
866
|
-
"circle",
|
|
867
|
-
"line",
|
|
868
|
-
"parabola",
|
|
869
|
-
"point",
|
|
870
|
-
"polygon",
|
|
871
|
-
"ray",
|
|
872
|
-
"segment",
|
|
873
|
-
"sine",
|
|
874
|
-
"vector"
|
|
875
|
-
],
|
|
876
|
-
"type": "string",
|
|
877
|
-
"title": "type"
|
|
878
|
-
},
|
|
879
|
-
"showLabel": {
|
|
880
|
-
"description": "Indicates if label should be visible",
|
|
881
|
-
"type": "boolean",
|
|
882
|
-
"title": "showLabel"
|
|
883
|
-
},
|
|
884
|
-
"label": {
|
|
885
|
-
"description": "Indicates label value for mark",
|
|
886
|
-
"type": "string",
|
|
887
|
-
"title": "label"
|
|
888
|
-
},
|
|
889
|
-
"building": {
|
|
890
|
-
"description": "Indicates if mark is in build process",
|
|
891
|
-
"type": "boolean",
|
|
892
|
-
"title": "building"
|
|
893
|
-
},
|
|
894
|
-
"x": {
|
|
895
|
-
"description": "Indicates x coordinate if type is point",
|
|
896
|
-
"type": "number",
|
|
897
|
-
"title": "x"
|
|
898
|
-
},
|
|
899
|
-
"y": {
|
|
900
|
-
"description": "Indicates y coordinate if type is point",
|
|
901
|
-
"type": "number",
|
|
902
|
-
"title": "y"
|
|
903
|
-
},
|
|
904
|
-
"from": {
|
|
905
|
-
"title": "Point",
|
|
906
|
-
"type": "object",
|
|
907
|
-
"properties": {
|
|
908
|
-
"x": {
|
|
909
|
-
"description": "Indicates x coordinate",
|
|
910
|
-
"type": "number",
|
|
911
|
-
"title": "x"
|
|
912
|
-
},
|
|
913
|
-
"y": {
|
|
914
|
-
"description": "Indicates y coordinate",
|
|
915
|
-
"type": "number",
|
|
916
|
-
"title": "y"
|
|
917
|
-
}
|
|
918
|
-
},
|
|
919
|
-
"required": [
|
|
920
|
-
"x",
|
|
921
|
-
"y"
|
|
922
|
-
]
|
|
923
|
-
},
|
|
924
|
-
"to": {
|
|
925
|
-
"title": "Point",
|
|
926
|
-
"type": "object",
|
|
927
|
-
"properties": {
|
|
928
|
-
"x": {
|
|
929
|
-
"description": "Indicates x coordinate",
|
|
930
|
-
"type": "number",
|
|
931
|
-
"title": "x"
|
|
932
|
-
},
|
|
933
|
-
"y": {
|
|
934
|
-
"description": "Indicates y coordinate",
|
|
935
|
-
"type": "number",
|
|
936
|
-
"title": "y"
|
|
937
|
-
}
|
|
938
|
-
},
|
|
939
|
-
"required": [
|
|
940
|
-
"x",
|
|
941
|
-
"y"
|
|
942
|
-
]
|
|
943
|
-
},
|
|
944
|
-
"closed": {
|
|
945
|
-
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
946
|
-
"type": "boolean",
|
|
947
|
-
"title": "closed"
|
|
948
|
-
},
|
|
949
|
-
"points": {
|
|
950
|
-
"description": "Indicates all mark's points if type is polygon",
|
|
951
|
-
"type": "array",
|
|
952
|
-
"items": [
|
|
953
|
-
{
|
|
954
|
-
"title": "Point",
|
|
955
|
-
"type": "object",
|
|
956
|
-
"properties": {
|
|
957
|
-
"x": {
|
|
958
|
-
"description": "Indicates x coordinate",
|
|
959
|
-
"type": "number",
|
|
960
|
-
"title": "x"
|
|
961
|
-
},
|
|
962
|
-
"y": {
|
|
963
|
-
"description": "Indicates y coordinate",
|
|
964
|
-
"type": "number",
|
|
965
|
-
"title": "y"
|
|
966
|
-
}
|
|
967
|
-
},
|
|
968
|
-
"required": [
|
|
969
|
-
"x",
|
|
970
|
-
"y"
|
|
971
|
-
]
|
|
972
|
-
}
|
|
973
|
-
],
|
|
974
|
-
"minItems": 1,
|
|
975
|
-
"additionalItems": {
|
|
976
|
-
"anyOf": [
|
|
977
|
-
{
|
|
978
|
-
"title": "Point",
|
|
979
|
-
"type": "object",
|
|
980
|
-
"properties": {
|
|
981
|
-
"x": {
|
|
982
|
-
"description": "Indicates x coordinate",
|
|
983
|
-
"type": "number",
|
|
984
|
-
"title": "x"
|
|
985
|
-
},
|
|
986
|
-
"y": {
|
|
987
|
-
"description": "Indicates y coordinate",
|
|
988
|
-
"type": "number",
|
|
989
|
-
"title": "y"
|
|
990
|
-
}
|
|
991
|
-
},
|
|
992
|
-
"required": [
|
|
993
|
-
"x",
|
|
994
|
-
"y"
|
|
995
|
-
]
|
|
996
|
-
}
|
|
997
|
-
]
|
|
998
|
-
},
|
|
999
|
-
"title": "points"
|
|
1000
|
-
},
|
|
1001
|
-
"root": {
|
|
1002
|
-
"title": "Point",
|
|
1003
|
-
"type": "object",
|
|
1004
|
-
"properties": {
|
|
1005
|
-
"x": {
|
|
1006
|
-
"description": "Indicates x coordinate",
|
|
1007
|
-
"type": "number",
|
|
1008
|
-
"title": "x"
|
|
1009
|
-
},
|
|
1010
|
-
"y": {
|
|
1011
|
-
"description": "Indicates y coordinate",
|
|
1012
|
-
"type": "number",
|
|
1013
|
-
"title": "y"
|
|
1014
|
-
}
|
|
1015
|
-
},
|
|
1016
|
-
"required": [
|
|
1017
|
-
"x",
|
|
1018
|
-
"y"
|
|
1019
|
-
]
|
|
1020
|
-
},
|
|
1021
|
-
"edge": {
|
|
1022
|
-
"title": "Point",
|
|
1023
|
-
"type": "object",
|
|
1024
|
-
"properties": {
|
|
1025
|
-
"x": {
|
|
1026
|
-
"description": "Indicates x coordinate",
|
|
1027
|
-
"type": "number",
|
|
1028
|
-
"title": "x"
|
|
1029
|
-
},
|
|
1030
|
-
"y": {
|
|
1031
|
-
"description": "Indicates y coordinate",
|
|
1032
|
-
"type": "number",
|
|
1033
|
-
"title": "y"
|
|
1034
|
-
}
|
|
1035
|
-
},
|
|
1036
|
-
"required": [
|
|
1037
|
-
"x",
|
|
1038
|
-
"y"
|
|
1039
|
-
]
|
|
1040
|
-
}
|
|
1041
|
-
},
|
|
1042
|
-
"required": [
|
|
1043
|
-
"building",
|
|
1044
|
-
"type"
|
|
1045
|
-
]
|
|
1046
|
-
}
|
|
1047
|
-
],
|
|
1048
|
-
"minItems": 1,
|
|
1049
|
-
"additionalItems": {
|
|
1050
|
-
"anyOf": [
|
|
1051
|
-
{
|
|
1052
|
-
"title": "Mark",
|
|
1053
|
-
"type": "object",
|
|
1054
|
-
"properties": {
|
|
1055
|
-
"type": {
|
|
1056
|
-
"description": "Indicates type of mark",
|
|
1057
|
-
"enum": [
|
|
1058
|
-
"circle",
|
|
1059
|
-
"line",
|
|
1060
|
-
"parabola",
|
|
1061
|
-
"point",
|
|
1062
|
-
"polygon",
|
|
1063
|
-
"ray",
|
|
1064
|
-
"segment",
|
|
1065
|
-
"sine",
|
|
1066
|
-
"vector"
|
|
1067
|
-
],
|
|
1068
|
-
"type": "string",
|
|
1069
|
-
"title": "type"
|
|
1070
|
-
},
|
|
1071
|
-
"showLabel": {
|
|
1072
|
-
"description": "Indicates if label should be visible",
|
|
1073
|
-
"type": "boolean",
|
|
1074
|
-
"title": "showLabel"
|
|
1075
|
-
},
|
|
1076
|
-
"label": {
|
|
1077
|
-
"description": "Indicates label value for mark",
|
|
1078
|
-
"type": "string",
|
|
1079
|
-
"title": "label"
|
|
1080
|
-
},
|
|
1081
|
-
"building": {
|
|
1082
|
-
"description": "Indicates if mark is in build process",
|
|
1083
|
-
"type": "boolean",
|
|
1084
|
-
"title": "building"
|
|
1085
|
-
},
|
|
1086
|
-
"x": {
|
|
1087
|
-
"description": "Indicates x coordinate if type is point",
|
|
1088
|
-
"type": "number",
|
|
1089
|
-
"title": "x"
|
|
1090
|
-
},
|
|
1091
|
-
"y": {
|
|
1092
|
-
"description": "Indicates y coordinate if type is point",
|
|
1093
|
-
"type": "number",
|
|
1094
|
-
"title": "y"
|
|
1095
|
-
},
|
|
1096
|
-
"from": {
|
|
1097
|
-
"title": "Point",
|
|
1098
|
-
"type": "object",
|
|
1099
|
-
"properties": {
|
|
1100
|
-
"x": {
|
|
1101
|
-
"description": "Indicates x coordinate",
|
|
1102
|
-
"type": "number",
|
|
1103
|
-
"title": "x"
|
|
1104
|
-
},
|
|
1105
|
-
"y": {
|
|
1106
|
-
"description": "Indicates y coordinate",
|
|
1107
|
-
"type": "number",
|
|
1108
|
-
"title": "y"
|
|
1109
|
-
}
|
|
1110
|
-
},
|
|
1111
|
-
"required": [
|
|
1112
|
-
"x",
|
|
1113
|
-
"y"
|
|
1114
|
-
]
|
|
1115
|
-
},
|
|
1116
|
-
"to": {
|
|
1117
|
-
"title": "Point",
|
|
1118
|
-
"type": "object",
|
|
1119
|
-
"properties": {
|
|
1120
|
-
"x": {
|
|
1121
|
-
"description": "Indicates x coordinate",
|
|
1122
|
-
"type": "number",
|
|
1123
|
-
"title": "x"
|
|
1124
|
-
},
|
|
1125
|
-
"y": {
|
|
1126
|
-
"description": "Indicates y coordinate",
|
|
1127
|
-
"type": "number",
|
|
1128
|
-
"title": "y"
|
|
1129
|
-
}
|
|
1130
|
-
},
|
|
1131
|
-
"required": [
|
|
1132
|
-
"x",
|
|
1133
|
-
"y"
|
|
1134
|
-
]
|
|
1135
|
-
},
|
|
1136
|
-
"closed": {
|
|
1137
|
-
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
1138
|
-
"type": "boolean",
|
|
1139
|
-
"title": "closed"
|
|
1140
|
-
},
|
|
1141
|
-
"points": {
|
|
1142
|
-
"description": "Indicates all mark's points if type is polygon",
|
|
1143
|
-
"type": "array",
|
|
1144
|
-
"items": [
|
|
1145
|
-
{
|
|
1146
|
-
"title": "Point",
|
|
1147
|
-
"type": "object",
|
|
1148
|
-
"properties": {
|
|
1149
|
-
"x": {
|
|
1150
|
-
"description": "Indicates x coordinate",
|
|
1151
|
-
"type": "number",
|
|
1152
|
-
"title": "x"
|
|
1153
|
-
},
|
|
1154
|
-
"y": {
|
|
1155
|
-
"description": "Indicates y coordinate",
|
|
1156
|
-
"type": "number",
|
|
1157
|
-
"title": "y"
|
|
1158
|
-
}
|
|
1159
|
-
},
|
|
1160
|
-
"required": [
|
|
1161
|
-
"x",
|
|
1162
|
-
"y"
|
|
1163
|
-
]
|
|
1164
|
-
}
|
|
1165
|
-
],
|
|
1166
|
-
"minItems": 1,
|
|
1167
|
-
"additionalItems": {
|
|
1168
|
-
"anyOf": [
|
|
1169
|
-
{
|
|
1170
|
-
"title": "Point",
|
|
1171
|
-
"type": "object",
|
|
1172
|
-
"properties": {
|
|
1173
|
-
"x": {
|
|
1174
|
-
"description": "Indicates x coordinate",
|
|
1175
|
-
"type": "number",
|
|
1176
|
-
"title": "x"
|
|
1177
|
-
},
|
|
1178
|
-
"y": {
|
|
1179
|
-
"description": "Indicates y coordinate",
|
|
1180
|
-
"type": "number",
|
|
1181
|
-
"title": "y"
|
|
1182
|
-
}
|
|
1183
|
-
},
|
|
1184
|
-
"required": [
|
|
1185
|
-
"x",
|
|
1186
|
-
"y"
|
|
1187
|
-
]
|
|
1188
|
-
}
|
|
1189
|
-
]
|
|
1190
|
-
},
|
|
1191
|
-
"title": "points"
|
|
1192
|
-
},
|
|
1193
|
-
"root": {
|
|
1194
|
-
"title": "Point",
|
|
1195
|
-
"type": "object",
|
|
1196
|
-
"properties": {
|
|
1197
|
-
"x": {
|
|
1198
|
-
"description": "Indicates x coordinate",
|
|
1199
|
-
"type": "number",
|
|
1200
|
-
"title": "x"
|
|
1201
|
-
},
|
|
1202
|
-
"y": {
|
|
1203
|
-
"description": "Indicates y coordinate",
|
|
1204
|
-
"type": "number",
|
|
1205
|
-
"title": "y"
|
|
1206
|
-
}
|
|
1207
|
-
},
|
|
1208
|
-
"required": [
|
|
1209
|
-
"x",
|
|
1210
|
-
"y"
|
|
1211
|
-
]
|
|
1212
|
-
},
|
|
1213
|
-
"edge": {
|
|
1214
|
-
"title": "Point",
|
|
1215
|
-
"type": "object",
|
|
1216
|
-
"properties": {
|
|
1217
|
-
"x": {
|
|
1218
|
-
"description": "Indicates x coordinate",
|
|
1219
|
-
"type": "number",
|
|
1220
|
-
"title": "x"
|
|
1221
|
-
},
|
|
1222
|
-
"y": {
|
|
1223
|
-
"description": "Indicates y coordinate",
|
|
1224
|
-
"type": "number",
|
|
1225
|
-
"title": "y"
|
|
1226
|
-
}
|
|
1227
|
-
},
|
|
1228
|
-
"required": [
|
|
1229
|
-
"x",
|
|
1230
|
-
"y"
|
|
1231
|
-
]
|
|
1232
|
-
}
|
|
1233
|
-
},
|
|
1234
|
-
"required": [
|
|
1235
|
-
"building",
|
|
1236
|
-
"type"
|
|
1237
|
-
]
|
|
1238
|
-
}
|
|
1239
|
-
]
|
|
1240
|
-
},
|
|
1241
|
-
"title": "backgroundMarks"
|
|
1242
|
-
},
|
|
1243
|
-
"defaultGridConfiguration": {
|
|
1244
|
-
"description": "An object that represents a number of any kind. All JavaScript numbers are 64-bit floating-point numbers.",
|
|
1245
|
-
"title": "Number",
|
|
1246
|
-
"type": "object"
|
|
1247
|
-
},
|
|
1248
|
-
"coordinatesOnHover": {
|
|
1249
|
-
"description": "Indicates if coordinates of a point are displayed on hover",
|
|
1250
|
-
"type": "boolean",
|
|
1251
|
-
"title": "coordinatesOnHover"
|
|
1252
|
-
},
|
|
1253
|
-
"defaultTool": {
|
|
1254
|
-
"description": "Indicates the default selected tool for the graph",
|
|
1255
|
-
"enum": [
|
|
1256
|
-
"circle",
|
|
1257
|
-
"line",
|
|
1258
|
-
"parabola",
|
|
1259
|
-
"point",
|
|
1260
|
-
"polygon",
|
|
1261
|
-
"ray",
|
|
1262
|
-
"segment",
|
|
1263
|
-
"sine",
|
|
1264
|
-
"vector"
|
|
1265
|
-
],
|
|
1266
|
-
"type": "string",
|
|
1267
|
-
"title": "defaultTool"
|
|
1268
|
-
},
|
|
1269
|
-
"domain": {
|
|
1270
|
-
"title": "GraphSettings",
|
|
1271
|
-
"type": "object",
|
|
1272
|
-
"properties": {
|
|
1273
|
-
"min": {
|
|
1274
|
-
"description": "Min value",
|
|
1275
|
-
"type": "number",
|
|
1276
|
-
"title": "min"
|
|
1277
|
-
},
|
|
1278
|
-
"max": {
|
|
1279
|
-
"description": "Max value",
|
|
1280
|
-
"type": "number",
|
|
1281
|
-
"title": "max"
|
|
1282
|
-
},
|
|
1283
|
-
"padding": {
|
|
1284
|
-
"description": "Padding value",
|
|
1285
|
-
"type": "number",
|
|
1286
|
-
"title": "padding"
|
|
1287
|
-
},
|
|
1288
|
-
"step": {
|
|
1289
|
-
"description": "Step value",
|
|
1290
|
-
"type": "number",
|
|
1291
|
-
"title": "step"
|
|
1292
|
-
},
|
|
1293
|
-
"labelStep": {
|
|
1294
|
-
"description": "Label step value",
|
|
1295
|
-
"type": "number",
|
|
1296
|
-
"title": "labelStep"
|
|
1297
|
-
},
|
|
1298
|
-
"axisLabel": {
|
|
1299
|
-
"description": "Axis Label",
|
|
1300
|
-
"type": "string",
|
|
1301
|
-
"title": "axisLabel"
|
|
1302
|
-
}
|
|
1303
|
-
},
|
|
1304
|
-
"required": [
|
|
1305
|
-
"axisLabel",
|
|
1306
|
-
"labelStep",
|
|
1307
|
-
"max",
|
|
1308
|
-
"min",
|
|
1309
|
-
"padding",
|
|
1310
|
-
"step"
|
|
1311
|
-
]
|
|
1312
|
-
},
|
|
1313
|
-
"graph": {
|
|
1314
|
-
"title": "Graph",
|
|
1315
|
-
"type": "object",
|
|
1316
|
-
"properties": {
|
|
1317
|
-
"width": {
|
|
1318
|
-
"description": "Width for graph representation",
|
|
1319
|
-
"type": "number",
|
|
1320
|
-
"title": "width"
|
|
1321
|
-
},
|
|
1322
|
-
"height": {
|
|
1323
|
-
"description": "Height for graph representation",
|
|
1324
|
-
"type": "number",
|
|
1325
|
-
"title": "height"
|
|
1326
|
-
}
|
|
1327
|
-
},
|
|
1328
|
-
"required": [
|
|
1329
|
-
"height",
|
|
1330
|
-
"width"
|
|
1331
|
-
]
|
|
1332
|
-
},
|
|
1333
|
-
"includeAxes": {
|
|
1334
|
-
"description": "Indicates if the graph axes and labels are enabled",
|
|
1335
|
-
"type": "boolean",
|
|
1336
|
-
"title": "includeAxes"
|
|
1337
|
-
},
|
|
1338
|
-
"labels": {
|
|
1339
|
-
"title": "Labels",
|
|
1340
|
-
"type": "object",
|
|
1341
|
-
"properties": {
|
|
1342
|
-
"top": {
|
|
1343
|
-
"description": "Label for top side of the graph",
|
|
1344
|
-
"type": "string",
|
|
1345
|
-
"title": "top"
|
|
1346
|
-
},
|
|
1347
|
-
"bottom": {
|
|
1348
|
-
"description": "Label for bottom side of the graph",
|
|
1349
|
-
"type": "string",
|
|
1350
|
-
"title": "bottom"
|
|
1351
|
-
},
|
|
1352
|
-
"left": {
|
|
1353
|
-
"description": "Label for left side of the graph",
|
|
1354
|
-
"type": "string",
|
|
1355
|
-
"title": "left"
|
|
1356
|
-
},
|
|
1357
|
-
"right": {
|
|
1358
|
-
"description": "Label for right side of the graph",
|
|
1359
|
-
"type": "string",
|
|
1360
|
-
"title": "right"
|
|
1361
|
-
}
|
|
1362
|
-
},
|
|
1363
|
-
"required": [
|
|
1364
|
-
"bottom",
|
|
1365
|
-
"left",
|
|
1366
|
-
"right",
|
|
1367
|
-
"top"
|
|
1368
|
-
]
|
|
1369
|
-
},
|
|
1370
|
-
"language": {
|
|
1371
|
-
"description": "Indicates the language of the component\nSupported options: en, es, en_US, en-US, es_ES, es-ES, es_MX, es-MX",
|
|
1372
|
-
"type": "string",
|
|
1373
|
-
"title": "language"
|
|
1374
|
-
},
|
|
1375
|
-
"padding": {
|
|
1376
|
-
"description": "Indicates if padding is enabled",
|
|
1377
|
-
"type": "boolean",
|
|
1378
|
-
"title": "padding"
|
|
1379
|
-
},
|
|
1380
|
-
"prompt": {
|
|
1381
|
-
"description": "Indicates prompt value",
|
|
1382
|
-
"type": "string",
|
|
1383
|
-
"title": "prompt"
|
|
1384
|
-
},
|
|
1385
|
-
"promptEnabled": {
|
|
1386
|
-
"description": "Indicates if the prompt is enabled",
|
|
1387
|
-
"type": "boolean",
|
|
1388
|
-
"title": "promptEnabled"
|
|
1389
|
-
},
|
|
1390
|
-
"range": {
|
|
1391
|
-
"title": "GraphSettings",
|
|
1392
|
-
"type": "object",
|
|
1393
|
-
"properties": {
|
|
1394
|
-
"min": {
|
|
1395
|
-
"description": "Min value",
|
|
1396
|
-
"type": "number",
|
|
1397
|
-
"title": "min"
|
|
1398
|
-
},
|
|
1399
|
-
"max": {
|
|
1400
|
-
"description": "Max value",
|
|
1401
|
-
"type": "number",
|
|
1402
|
-
"title": "max"
|
|
1403
|
-
},
|
|
1404
|
-
"padding": {
|
|
1405
|
-
"description": "Padding value",
|
|
1406
|
-
"type": "number",
|
|
1407
|
-
"title": "padding"
|
|
1408
|
-
},
|
|
1409
|
-
"step": {
|
|
1410
|
-
"description": "Step value",
|
|
1411
|
-
"type": "number",
|
|
1412
|
-
"title": "step"
|
|
1413
|
-
},
|
|
1414
|
-
"labelStep": {
|
|
1415
|
-
"description": "Label step value",
|
|
1416
|
-
"type": "number",
|
|
1417
|
-
"title": "labelStep"
|
|
1418
|
-
},
|
|
1419
|
-
"axisLabel": {
|
|
1420
|
-
"description": "Axis Label",
|
|
1421
|
-
"type": "string",
|
|
1422
|
-
"title": "axisLabel"
|
|
1423
|
-
}
|
|
1424
|
-
},
|
|
1425
|
-
"required": [
|
|
1426
|
-
"axisLabel",
|
|
1427
|
-
"labelStep",
|
|
1428
|
-
"max",
|
|
1429
|
-
"min",
|
|
1430
|
-
"padding",
|
|
1431
|
-
"step"
|
|
1432
|
-
]
|
|
1433
|
-
},
|
|
1434
|
-
"rationale": {
|
|
1435
|
-
"description": "Indicates rationale for the answer",
|
|
1436
|
-
"type": "string",
|
|
1437
|
-
"title": "rationale"
|
|
1438
|
-
},
|
|
1439
|
-
"scoringType": {
|
|
1440
|
-
"description": "Indicates scoring type",
|
|
1441
|
-
"enum": [
|
|
1442
|
-
"dichotomous",
|
|
1443
|
-
"partial scoring"
|
|
1444
|
-
],
|
|
1445
|
-
"type": "string",
|
|
1446
|
-
"title": "scoringType"
|
|
1447
|
-
},
|
|
1448
|
-
"studentInstructions": {
|
|
1449
|
-
"description": "Indicates student instructions",
|
|
1450
|
-
"type": "string",
|
|
1451
|
-
"title": "studentInstructions"
|
|
1452
|
-
},
|
|
1453
|
-
"teacherInstructions": {
|
|
1454
|
-
"description": "Indicates teacher instructions",
|
|
1455
|
-
"type": "string",
|
|
1456
|
-
"title": "teacherInstructions"
|
|
1457
|
-
},
|
|
1458
|
-
"title": {
|
|
1459
|
-
"description": "Indicates graph title",
|
|
1460
|
-
"type": "string",
|
|
1461
|
-
"title": "title"
|
|
1462
|
-
},
|
|
1463
|
-
"labelsEnabled": {
|
|
1464
|
-
"description": "Indicates if the graph labels are displayed",
|
|
1465
|
-
"type": "boolean",
|
|
1466
|
-
"title": "labelsEnabled"
|
|
1467
|
-
},
|
|
1468
|
-
"dimensionsEnabled": {
|
|
1469
|
-
"description": "Indicates if the graph dimensions are displayed",
|
|
1470
|
-
"type": "boolean",
|
|
1471
|
-
"title": "dimensionsEnabled"
|
|
1472
|
-
},
|
|
1473
|
-
"titleEnabled": {
|
|
1474
|
-
"description": "Indicates if the graph title is displayed",
|
|
1475
|
-
"type": "boolean",
|
|
1476
|
-
"title": "titleEnabled"
|
|
1477
|
-
},
|
|
1478
|
-
"toolbarTools": {
|
|
1479
|
-
"description": "Indicates the tools that have to be displayed in toolbar",
|
|
1480
|
-
"type": "array",
|
|
1481
|
-
"items": [
|
|
1482
|
-
{
|
|
1483
|
-
"enum": [
|
|
1484
|
-
"circle",
|
|
1485
|
-
"label",
|
|
1486
|
-
"line",
|
|
1487
|
-
"parabola",
|
|
1488
|
-
"point",
|
|
1489
|
-
"polygon",
|
|
1490
|
-
"ray",
|
|
1491
|
-
"segment",
|
|
1492
|
-
"sine",
|
|
1493
|
-
"vector"
|
|
1494
|
-
],
|
|
1495
|
-
"type": "string"
|
|
1496
|
-
}
|
|
1497
|
-
],
|
|
1498
|
-
"minItems": 1,
|
|
1499
|
-
"additionalItems": {
|
|
1500
|
-
"anyOf": [
|
|
1501
|
-
{
|
|
1502
|
-
"enum": [
|
|
1503
|
-
"circle",
|
|
1504
|
-
"label",
|
|
1505
|
-
"line",
|
|
1506
|
-
"parabola",
|
|
1507
|
-
"point",
|
|
1508
|
-
"polygon",
|
|
1509
|
-
"ray",
|
|
1510
|
-
"segment",
|
|
1511
|
-
"sine",
|
|
1512
|
-
"vector"
|
|
1513
|
-
],
|
|
1514
|
-
"type": "string"
|
|
1515
|
-
}
|
|
1516
|
-
]
|
|
1517
|
-
},
|
|
1518
|
-
"title": "toolbarTools"
|
|
1519
|
-
},
|
|
1520
|
-
"rationaleEnabled": {
|
|
1521
|
-
"description": "Indicates if Rationale are enabled",
|
|
1522
|
-
"type": "boolean",
|
|
1523
|
-
"title": "rationaleEnabled"
|
|
1524
|
-
},
|
|
1525
|
-
"spellCheckEnabled": {
|
|
1526
|
-
"description": "Indicates if spellcheck is enabled for the author. Default value is true",
|
|
1527
|
-
"type": "boolean",
|
|
1528
|
-
"title": "spellCheckEnabled"
|
|
1529
|
-
},
|
|
1530
|
-
"standardGrid": {
|
|
1531
|
-
"description": "Indicates if some domain values will be synched to the range values",
|
|
1532
|
-
"type": "boolean",
|
|
1533
|
-
"title": "standardGrid"
|
|
1534
|
-
},
|
|
1535
|
-
"studentInstructionsEnabled": {
|
|
1536
|
-
"description": "Indicates if Student Instructions are enabled",
|
|
1537
|
-
"type": "boolean",
|
|
1538
|
-
"title": "studentInstructionsEnabled"
|
|
1539
|
-
},
|
|
1540
|
-
"teacherInstructionsEnabled": {
|
|
1541
|
-
"description": "Indicates if Teacher Instructions are enabled",
|
|
1542
|
-
"type": "boolean",
|
|
1543
|
-
"title": "teacherInstructionsEnabled"
|
|
1544
|
-
},
|
|
1545
|
-
"rubricEnabled": {
|
|
1546
|
-
"description": "Indicates if Rubric is enabled",
|
|
1547
|
-
"type": "boolean",
|
|
1548
|
-
"title": "rubricEnabled"
|
|
1549
|
-
},
|
|
1550
|
-
"id": {
|
|
1551
|
-
"description": "Identifier to identify the Pie Element in html markup, Must be unique within a pie item config.",
|
|
1552
|
-
"type": "string",
|
|
1553
|
-
"title": "id"
|
|
1554
|
-
},
|
|
1555
|
-
"element": {
|
|
1556
|
-
"description": "The html Element tag name",
|
|
1557
|
-
"type": "string",
|
|
1558
|
-
"title": "element"
|
|
1559
|
-
}
|
|
1560
|
-
},
|
|
1561
|
-
"required": [
|
|
1562
|
-
"answers",
|
|
1563
|
-
"backgroundMarks",
|
|
1564
|
-
"defaultGridConfiguration",
|
|
1565
|
-
"defaultTool",
|
|
1566
|
-
"domain",
|
|
1567
|
-
"element",
|
|
1568
|
-
"graph",
|
|
1569
|
-
"id",
|
|
1570
|
-
"range",
|
|
1571
|
-
"rationaleEnabled",
|
|
1572
|
-
"rubricEnabled",
|
|
1573
|
-
"spellCheckEnabled",
|
|
1574
|
-
"studentInstructionsEnabled",
|
|
1575
|
-
"teacherInstructionsEnabled"
|
|
1576
|
-
],
|
|
1577
|
-
"definitions": {
|
|
1578
|
-
"EditableHtmlConfigureProp": {
|
|
1579
|
-
"title": "EditableHtmlConfigureProp",
|
|
1580
|
-
"type": "object",
|
|
1581
|
-
"properties": {
|
|
1582
|
-
"math": {
|
|
1583
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1584
|
-
"type": "object",
|
|
1585
|
-
"properties": {
|
|
1586
|
-
"disabled": {
|
|
1587
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1588
|
-
"type": "boolean",
|
|
1589
|
-
"title": "disabled"
|
|
1590
|
-
}
|
|
1591
|
-
}
|
|
1592
|
-
},
|
|
1593
|
-
"audio": {
|
|
1594
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1595
|
-
"type": "object",
|
|
1596
|
-
"properties": {
|
|
1597
|
-
"disabled": {
|
|
1598
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1599
|
-
"type": "boolean",
|
|
1600
|
-
"title": "disabled"
|
|
1601
|
-
}
|
|
1602
|
-
}
|
|
1603
|
-
},
|
|
1604
|
-
"video": {
|
|
1605
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1606
|
-
"type": "object",
|
|
1607
|
-
"properties": {
|
|
1608
|
-
"disabled": {
|
|
1609
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1610
|
-
"type": "boolean",
|
|
1611
|
-
"title": "disabled"
|
|
1612
|
-
}
|
|
1613
|
-
}
|
|
1614
|
-
},
|
|
1615
|
-
"image": {
|
|
1616
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1617
|
-
"type": "object",
|
|
1618
|
-
"properties": {
|
|
1619
|
-
"disabled": {
|
|
1620
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1621
|
-
"type": "boolean",
|
|
1622
|
-
"title": "disabled"
|
|
1623
|
-
}
|
|
1624
|
-
}
|
|
1625
|
-
},
|
|
1626
|
-
"customPlugins": {
|
|
1627
|
-
"description": "An array of objects that determine custom plugins.\nA custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).\nExample can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.",
|
|
1628
|
-
"type": "array",
|
|
1629
|
-
"items": {
|
|
1630
|
-
"title": "CustomPlugin",
|
|
1631
|
-
"type": "object",
|
|
1632
|
-
"properties": {
|
|
1633
|
-
"event": {
|
|
1634
|
-
"description": "The name of the custom event. It needs to be valid (only letters, numbers and \"_\" can be used).\nPIE will emit the event prefixed with \"PIE-\".\nEg: event = 'client_custom_event_A' => the emitted event will be \"PIE-client_custom_event_A\"",
|
|
1635
|
-
"type": "string",
|
|
1636
|
-
"title": "event"
|
|
1637
|
-
},
|
|
1638
|
-
"iconAlt": {
|
|
1639
|
-
"description": "The alt for the custom button icon",
|
|
1640
|
-
"type": "string",
|
|
1641
|
-
"title": "iconAlt"
|
|
1642
|
-
},
|
|
1643
|
-
"iconType": {
|
|
1644
|
-
"description": "The icon type.\nCurrently, only \"SVG\" is supported.",
|
|
1645
|
-
"type": "string",
|
|
1646
|
-
"title": "iconType"
|
|
1647
|
-
},
|
|
1648
|
-
"icon": {
|
|
1649
|
-
"description": "The icon string. Currently, only \"SVG\" is supported, so it needs to be a valid svg.",
|
|
1650
|
-
"type": "string",
|
|
1651
|
-
"title": "icon"
|
|
1652
|
-
}
|
|
1653
|
-
},
|
|
1654
|
-
"required": [
|
|
1655
|
-
"event",
|
|
1656
|
-
"icon",
|
|
1657
|
-
"iconAlt",
|
|
1658
|
-
"iconType"
|
|
1659
|
-
]
|
|
1660
|
-
},
|
|
1661
|
-
"title": "customPlugins"
|
|
1662
|
-
},
|
|
1663
|
-
"blockquote": {
|
|
1664
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1665
|
-
"type": "object",
|
|
1666
|
-
"properties": {
|
|
1667
|
-
"disabled": {
|
|
1668
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1669
|
-
"type": "boolean",
|
|
1670
|
-
"title": "disabled"
|
|
1671
|
-
}
|
|
1672
|
-
}
|
|
1673
|
-
},
|
|
1674
|
-
"h3": {
|
|
1675
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1676
|
-
"type": "object",
|
|
1677
|
-
"properties": {
|
|
1678
|
-
"disabled": {
|
|
1679
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1680
|
-
"type": "boolean",
|
|
1681
|
-
"title": "disabled"
|
|
1682
|
-
}
|
|
1683
|
-
}
|
|
1684
|
-
},
|
|
1685
|
-
"characters": {
|
|
1686
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1687
|
-
"type": "object",
|
|
1688
|
-
"properties": {
|
|
1689
|
-
"disabled": {
|
|
1690
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1691
|
-
"type": "boolean",
|
|
1692
|
-
"title": "disabled"
|
|
1693
|
-
}
|
|
1694
|
-
}
|
|
1695
|
-
},
|
|
1696
|
-
"bold": {
|
|
1697
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1698
|
-
"type": "object",
|
|
1699
|
-
"properties": {
|
|
1700
|
-
"disabled": {
|
|
1701
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1702
|
-
"type": "boolean",
|
|
1703
|
-
"title": "disabled"
|
|
1704
|
-
}
|
|
1705
|
-
}
|
|
1706
|
-
},
|
|
1707
|
-
"html": {
|
|
1708
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1709
|
-
"type": "object",
|
|
1710
|
-
"properties": {
|
|
1711
|
-
"disabled": {
|
|
1712
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1713
|
-
"type": "boolean",
|
|
1714
|
-
"title": "disabled"
|
|
1715
|
-
}
|
|
1716
|
-
}
|
|
1717
|
-
},
|
|
1718
|
-
"italic": {
|
|
1719
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1720
|
-
"type": "object",
|
|
1721
|
-
"properties": {
|
|
1722
|
-
"disabled": {
|
|
1723
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1724
|
-
"type": "boolean",
|
|
1725
|
-
"title": "disabled"
|
|
1726
|
-
}
|
|
1727
|
-
}
|
|
1728
|
-
},
|
|
1729
|
-
"ol_list": {
|
|
1730
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1731
|
-
"type": "object",
|
|
1732
|
-
"properties": {
|
|
1733
|
-
"disabled": {
|
|
1734
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1735
|
-
"type": "boolean",
|
|
1736
|
-
"title": "disabled"
|
|
1737
|
-
}
|
|
1738
|
-
}
|
|
1739
|
-
},
|
|
1740
|
-
"redo": {
|
|
1741
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1742
|
-
"type": "object",
|
|
1743
|
-
"properties": {
|
|
1744
|
-
"disabled": {
|
|
1745
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1746
|
-
"type": "boolean",
|
|
1747
|
-
"title": "disabled"
|
|
1748
|
-
}
|
|
1749
|
-
}
|
|
1750
|
-
},
|
|
1751
|
-
"strikethrough": {
|
|
1752
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1753
|
-
"type": "object",
|
|
1754
|
-
"properties": {
|
|
1755
|
-
"disabled": {
|
|
1756
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1757
|
-
"type": "boolean",
|
|
1758
|
-
"title": "disabled"
|
|
1759
|
-
}
|
|
1760
|
-
}
|
|
1761
|
-
},
|
|
1762
|
-
"sub": {
|
|
1763
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1764
|
-
"type": "object",
|
|
1765
|
-
"properties": {
|
|
1766
|
-
"disabled": {
|
|
1767
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1768
|
-
"type": "boolean",
|
|
1769
|
-
"title": "disabled"
|
|
1770
|
-
}
|
|
1771
|
-
}
|
|
1772
|
-
},
|
|
1773
|
-
"sup": {
|
|
1774
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1775
|
-
"type": "object",
|
|
1776
|
-
"properties": {
|
|
1777
|
-
"disabled": {
|
|
1778
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1779
|
-
"type": "boolean",
|
|
1780
|
-
"title": "disabled"
|
|
1781
|
-
}
|
|
1782
|
-
}
|
|
1783
|
-
},
|
|
1784
|
-
"table": {
|
|
1785
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1786
|
-
"type": "object",
|
|
1787
|
-
"properties": {
|
|
1788
|
-
"disabled": {
|
|
1789
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1790
|
-
"type": "boolean",
|
|
1791
|
-
"title": "disabled"
|
|
1792
|
-
}
|
|
1793
|
-
}
|
|
1794
|
-
},
|
|
1795
|
-
"ul_list": {
|
|
1796
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1797
|
-
"type": "object",
|
|
1798
|
-
"properties": {
|
|
1799
|
-
"disabled": {
|
|
1800
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1801
|
-
"type": "boolean",
|
|
1802
|
-
"title": "disabled"
|
|
1803
|
-
}
|
|
1804
|
-
}
|
|
1805
|
-
},
|
|
1806
|
-
"underline": {
|
|
1807
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1808
|
-
"type": "object",
|
|
1809
|
-
"properties": {
|
|
1810
|
-
"disabled": {
|
|
1811
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1812
|
-
"type": "boolean",
|
|
1813
|
-
"title": "disabled"
|
|
1814
|
-
}
|
|
1815
|
-
}
|
|
1816
|
-
},
|
|
1817
|
-
"undo": {
|
|
1818
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1819
|
-
"type": "object",
|
|
1820
|
-
"properties": {
|
|
1821
|
-
"disabled": {
|
|
1822
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1823
|
-
"type": "boolean",
|
|
1824
|
-
"title": "disabled"
|
|
1825
|
-
}
|
|
1826
|
-
}
|
|
1827
|
-
}
|
|
1828
|
-
}
|
|
1829
|
-
},
|
|
1830
|
-
"EditableHtmlButtonConfigure": {
|
|
1831
|
-
"title": "EditableHtmlButtonConfigure",
|
|
1832
|
-
"type": "object",
|
|
1833
|
-
"properties": {
|
|
1834
|
-
"disabled": {
|
|
1835
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
1836
|
-
"type": "boolean",
|
|
1837
|
-
"title": "disabled"
|
|
1838
|
-
}
|
|
1839
|
-
}
|
|
1840
|
-
},
|
|
1841
|
-
"CustomPlugin": {
|
|
1842
|
-
"title": "CustomPlugin",
|
|
1843
|
-
"type": "object",
|
|
1844
|
-
"properties": {
|
|
1845
|
-
"event": {
|
|
1846
|
-
"description": "The name of the custom event. It needs to be valid (only letters, numbers and \"_\" can be used).\nPIE will emit the event prefixed with \"PIE-\".\nEg: event = 'client_custom_event_A' => the emitted event will be \"PIE-client_custom_event_A\"",
|
|
1847
|
-
"type": "string",
|
|
1848
|
-
"title": "event"
|
|
1849
|
-
},
|
|
1850
|
-
"iconAlt": {
|
|
1851
|
-
"description": "The alt for the custom button icon",
|
|
1852
|
-
"type": "string",
|
|
1853
|
-
"title": "iconAlt"
|
|
1854
|
-
},
|
|
1855
|
-
"iconType": {
|
|
1856
|
-
"description": "The icon type.\nCurrently, only \"SVG\" is supported.",
|
|
1857
|
-
"type": "string",
|
|
1858
|
-
"title": "iconType"
|
|
1859
|
-
},
|
|
1860
|
-
"icon": {
|
|
1861
|
-
"description": "The icon string. Currently, only \"SVG\" is supported, so it needs to be a valid svg.",
|
|
1862
|
-
"type": "string",
|
|
1863
|
-
"title": "icon"
|
|
1864
|
-
}
|
|
1865
|
-
},
|
|
1866
|
-
"required": [
|
|
1867
|
-
"event",
|
|
1868
|
-
"icon",
|
|
1869
|
-
"iconAlt",
|
|
1870
|
-
"iconType"
|
|
1871
|
-
]
|
|
1872
|
-
},
|
|
1873
|
-
"AuthoringConfigProp": {
|
|
1874
|
-
"title": "AuthoringConfigProp",
|
|
1875
|
-
"type": "object",
|
|
1876
|
-
"properties": {
|
|
1877
|
-
"settings": {
|
|
1878
|
-
"description": "Indicates if the item is displayed in the Settings Panel",
|
|
1879
|
-
"type": "boolean",
|
|
1880
|
-
"title": "settings"
|
|
1881
|
-
},
|
|
1882
|
-
"label": {
|
|
1883
|
-
"description": "Indicates the label for the item that is displayed in the Settings Panel",
|
|
1884
|
-
"type": "string",
|
|
1885
|
-
"title": "label"
|
|
1886
|
-
},
|
|
1887
|
-
"enabled": {
|
|
1888
|
-
"description": "Indicates if the Grid Setup Panel is displayed",
|
|
1889
|
-
"type": "boolean",
|
|
1890
|
-
"title": "enabled"
|
|
1891
|
-
},
|
|
1892
|
-
"includeAxesEnabled": {
|
|
1893
|
-
"description": "Indicates if the \"includeAxes\" toggle is displayed in the Grid Setup Panel",
|
|
1894
|
-
"type": "boolean",
|
|
1895
|
-
"title": "includeAxesEnabled"
|
|
1896
|
-
},
|
|
1897
|
-
"standardGridEnabled": {
|
|
1898
|
-
"description": "Indicates if the \"standardGrid\" toggle is displayed in the Grid Setup Panel",
|
|
1899
|
-
"type": "boolean",
|
|
1900
|
-
"title": "standardGridEnabled"
|
|
1901
|
-
},
|
|
1902
|
-
"min": {
|
|
1903
|
-
"title": "GridPanelConfigProp",
|
|
1904
|
-
"type": "object",
|
|
1905
|
-
"properties": {
|
|
1906
|
-
"label": {
|
|
1907
|
-
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1908
|
-
"type": "string",
|
|
1909
|
-
"title": "label"
|
|
1910
|
-
},
|
|
1911
|
-
"enabled": {
|
|
1912
|
-
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1913
|
-
"type": "boolean",
|
|
1914
|
-
"title": "enabled"
|
|
1915
|
-
}
|
|
1916
|
-
}
|
|
1917
|
-
},
|
|
1918
|
-
"max": {
|
|
1919
|
-
"title": "GridPanelConfigProp",
|
|
1920
|
-
"type": "object",
|
|
1921
|
-
"properties": {
|
|
1922
|
-
"label": {
|
|
1923
|
-
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1924
|
-
"type": "string",
|
|
1925
|
-
"title": "label"
|
|
1926
|
-
},
|
|
1927
|
-
"enabled": {
|
|
1928
|
-
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1929
|
-
"type": "boolean",
|
|
1930
|
-
"title": "enabled"
|
|
1931
|
-
}
|
|
1932
|
-
}
|
|
1933
|
-
},
|
|
1934
|
-
"axisLabel": {
|
|
1935
|
-
"title": "GridPanelConfigProp",
|
|
1936
|
-
"type": "object",
|
|
1937
|
-
"properties": {
|
|
1938
|
-
"label": {
|
|
1939
|
-
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1940
|
-
"type": "string",
|
|
1941
|
-
"title": "label"
|
|
1942
|
-
},
|
|
1943
|
-
"enabled": {
|
|
1944
|
-
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1945
|
-
"type": "boolean",
|
|
1946
|
-
"title": "enabled"
|
|
1947
|
-
}
|
|
1948
|
-
}
|
|
1949
|
-
},
|
|
1950
|
-
"step": {
|
|
1951
|
-
"title": "GridPanelConfigProp",
|
|
1952
|
-
"type": "object",
|
|
1953
|
-
"properties": {
|
|
1954
|
-
"label": {
|
|
1955
|
-
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1956
|
-
"type": "string",
|
|
1957
|
-
"title": "label"
|
|
1958
|
-
},
|
|
1959
|
-
"enabled": {
|
|
1960
|
-
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1961
|
-
"type": "boolean",
|
|
1962
|
-
"title": "enabled"
|
|
1963
|
-
}
|
|
1964
|
-
}
|
|
1965
|
-
},
|
|
1966
|
-
"labelStep": {
|
|
1967
|
-
"title": "GridPanelConfigProp",
|
|
1968
|
-
"type": "object",
|
|
1969
|
-
"properties": {
|
|
1970
|
-
"label": {
|
|
1971
|
-
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1972
|
-
"type": "string",
|
|
1973
|
-
"title": "label"
|
|
1974
|
-
},
|
|
1975
|
-
"enabled": {
|
|
1976
|
-
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1977
|
-
"type": "boolean",
|
|
1978
|
-
"title": "enabled"
|
|
1979
|
-
}
|
|
1980
|
-
}
|
|
1981
|
-
}
|
|
1982
|
-
}
|
|
1983
|
-
},
|
|
1984
|
-
"GridPanelConfigProp": {
|
|
1985
|
-
"title": "GridPanelConfigProp",
|
|
1986
|
-
"type": "object",
|
|
1987
|
-
"properties": {
|
|
1988
|
-
"label": {
|
|
1989
|
-
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1990
|
-
"type": "string",
|
|
1991
|
-
"title": "label"
|
|
1992
|
-
},
|
|
1993
|
-
"enabled": {
|
|
1994
|
-
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1995
|
-
"type": "boolean",
|
|
1996
|
-
"title": "enabled"
|
|
1997
|
-
}
|
|
1998
|
-
}
|
|
1999
|
-
},
|
|
2000
|
-
"ArrowsConfigProp": {
|
|
2001
|
-
"title": "ArrowsConfigProp",
|
|
2002
|
-
"type": "object",
|
|
2003
|
-
"properties": {
|
|
2004
|
-
"settings": {
|
|
2005
|
-
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
2006
|
-
"type": "boolean",
|
|
2007
|
-
"title": "settings"
|
|
2008
|
-
},
|
|
2009
|
-
"label": {
|
|
2010
|
-
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
2011
|
-
"type": "string",
|
|
2012
|
-
"title": "label"
|
|
2013
|
-
},
|
|
2014
|
-
"left": {
|
|
2015
|
-
"title": "ArrowsProp",
|
|
2016
|
-
"type": "object",
|
|
2017
|
-
"properties": {
|
|
2018
|
-
"label": {
|
|
2019
|
-
"description": "Indicates the label for the arrow that has to be displayed in the Settings Panel",
|
|
2020
|
-
"type": "string",
|
|
2021
|
-
"title": "label"
|
|
2022
|
-
}
|
|
2023
|
-
}
|
|
2024
|
-
},
|
|
2025
|
-
"right": {
|
|
2026
|
-
"title": "ArrowsProp",
|
|
2027
|
-
"type": "object",
|
|
2028
|
-
"properties": {
|
|
2029
|
-
"label": {
|
|
2030
|
-
"description": "Indicates the label for the arrow that has to be displayed in the Settings Panel",
|
|
2031
|
-
"type": "string",
|
|
2032
|
-
"title": "label"
|
|
2033
|
-
}
|
|
2034
|
-
}
|
|
2035
|
-
},
|
|
2036
|
-
"up": {
|
|
2037
|
-
"title": "ArrowsProp",
|
|
2038
|
-
"type": "object",
|
|
2039
|
-
"properties": {
|
|
2040
|
-
"label": {
|
|
2041
|
-
"description": "Indicates the label for the arrow that has to be displayed in the Settings Panel",
|
|
2042
|
-
"type": "string",
|
|
2043
|
-
"title": "label"
|
|
2044
|
-
}
|
|
2045
|
-
}
|
|
2046
|
-
},
|
|
2047
|
-
"down": {
|
|
2048
|
-
"title": "ArrowsProp",
|
|
2049
|
-
"type": "object",
|
|
2050
|
-
"properties": {
|
|
2051
|
-
"label": {
|
|
2052
|
-
"description": "Indicates the label for the arrow that has to be displayed in the Settings Panel",
|
|
2053
|
-
"type": "string",
|
|
2054
|
-
"title": "label"
|
|
2055
|
-
}
|
|
2056
|
-
}
|
|
2057
|
-
}
|
|
2058
|
-
}
|
|
2059
|
-
},
|
|
2060
|
-
"ArrowsProp": {
|
|
2061
|
-
"title": "ArrowsProp",
|
|
2062
|
-
"type": "object",
|
|
2063
|
-
"properties": {
|
|
2064
|
-
"label": {
|
|
2065
|
-
"description": "Indicates the label for the arrow that has to be displayed in the Settings Panel",
|
|
2066
|
-
"type": "string",
|
|
2067
|
-
"title": "label"
|
|
2068
|
-
}
|
|
2069
|
-
}
|
|
2070
|
-
},
|
|
2071
|
-
"ConfigureProp": {
|
|
2072
|
-
"title": "ConfigureProp",
|
|
2073
|
-
"type": "object",
|
|
2074
|
-
"properties": {
|
|
2075
|
-
"settings": {
|
|
2076
|
-
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
2077
|
-
"type": "boolean",
|
|
2078
|
-
"title": "settings"
|
|
2079
|
-
},
|
|
2080
|
-
"label": {
|
|
2081
|
-
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
2082
|
-
"type": "string",
|
|
2083
|
-
"title": "label"
|
|
2084
|
-
}
|
|
2085
|
-
}
|
|
2086
|
-
},
|
|
2087
|
-
"DimensionsConfigProp": {
|
|
2088
|
-
"title": "DimensionsConfigProp",
|
|
2089
|
-
"type": "object",
|
|
2090
|
-
"properties": {
|
|
2091
|
-
"settings": {
|
|
2092
|
-
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
2093
|
-
"type": "boolean",
|
|
2094
|
-
"title": "settings"
|
|
2095
|
-
},
|
|
2096
|
-
"label": {
|
|
2097
|
-
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
2098
|
-
"type": "string",
|
|
2099
|
-
"title": "label"
|
|
2100
|
-
},
|
|
2101
|
-
"enabled": {
|
|
2102
|
-
"description": "Indicates if the graph dimensions are included in the Grid Setup Panel",
|
|
2103
|
-
"type": "boolean",
|
|
2104
|
-
"title": "enabled"
|
|
2105
|
-
},
|
|
2106
|
-
"min": {
|
|
2107
|
-
"description": "Indicates the minimum value for the graph width and height",
|
|
2108
|
-
"type": "number",
|
|
2109
|
-
"title": "min"
|
|
2110
|
-
},
|
|
2111
|
-
"max": {
|
|
2112
|
-
"description": "Indicates the maximum value for the graph width and height",
|
|
2113
|
-
"type": "number",
|
|
2114
|
-
"title": "max"
|
|
2115
|
-
},
|
|
2116
|
-
"step": {
|
|
2117
|
-
"description": "Indicates the increase/decrease value for the graph width and height",
|
|
2118
|
-
"type": "number",
|
|
2119
|
-
"title": "step"
|
|
2120
|
-
}
|
|
2121
|
-
}
|
|
2122
|
-
},
|
|
2123
|
-
"GridConfigurationsProp": {
|
|
2124
|
-
"title": "GridConfigurationsProp",
|
|
2125
|
-
"type": "object",
|
|
2126
|
-
"properties": {
|
|
2127
|
-
"label": {
|
|
2128
|
-
"description": "Indicates the label for the configuration",
|
|
2129
|
-
"type": "string",
|
|
2130
|
-
"title": "label"
|
|
2131
|
-
},
|
|
2132
|
-
"arrows": {
|
|
2133
|
-
"title": "Arrows",
|
|
2134
|
-
"type": "object",
|
|
2135
|
-
"properties": {
|
|
2136
|
-
"left": {
|
|
2137
|
-
"description": "Indicates if left arrow is enabled",
|
|
2138
|
-
"type": "boolean",
|
|
2139
|
-
"title": "left"
|
|
2140
|
-
},
|
|
2141
|
-
"right": {
|
|
2142
|
-
"description": "Indicates if right arrow is enabled",
|
|
2143
|
-
"type": "boolean",
|
|
2144
|
-
"title": "right"
|
|
2145
|
-
},
|
|
2146
|
-
"up": {
|
|
2147
|
-
"description": "Indicates if up arrow is enabled",
|
|
2148
|
-
"type": "boolean",
|
|
2149
|
-
"title": "up"
|
|
2150
|
-
},
|
|
2151
|
-
"down": {
|
|
2152
|
-
"description": "Indicates if down arrow is enabled",
|
|
2153
|
-
"type": "boolean",
|
|
2154
|
-
"title": "down"
|
|
2155
|
-
}
|
|
2156
|
-
},
|
|
2157
|
-
"required": [
|
|
2158
|
-
"down",
|
|
2159
|
-
"left",
|
|
2160
|
-
"right",
|
|
2161
|
-
"up"
|
|
2162
|
-
]
|
|
2163
|
-
},
|
|
2164
|
-
"domain": {
|
|
2165
|
-
"title": "GraphSettings",
|
|
2166
|
-
"type": "object",
|
|
2167
|
-
"properties": {
|
|
2168
|
-
"min": {
|
|
2169
|
-
"description": "Min value",
|
|
2170
|
-
"type": "number",
|
|
2171
|
-
"title": "min"
|
|
2172
|
-
},
|
|
2173
|
-
"max": {
|
|
2174
|
-
"description": "Max value",
|
|
2175
|
-
"type": "number",
|
|
2176
|
-
"title": "max"
|
|
2177
|
-
},
|
|
2178
|
-
"padding": {
|
|
2179
|
-
"description": "Padding value",
|
|
2180
|
-
"type": "number",
|
|
2181
|
-
"title": "padding"
|
|
2182
|
-
},
|
|
2183
|
-
"step": {
|
|
2184
|
-
"description": "Step value",
|
|
2185
|
-
"type": "number",
|
|
2186
|
-
"title": "step"
|
|
2187
|
-
},
|
|
2188
|
-
"labelStep": {
|
|
2189
|
-
"description": "Label step value",
|
|
2190
|
-
"type": "number",
|
|
2191
|
-
"title": "labelStep"
|
|
2192
|
-
},
|
|
2193
|
-
"axisLabel": {
|
|
2194
|
-
"description": "Axis Label",
|
|
2195
|
-
"type": "string",
|
|
2196
|
-
"title": "axisLabel"
|
|
2197
|
-
}
|
|
2198
|
-
},
|
|
2199
|
-
"required": [
|
|
2200
|
-
"axisLabel",
|
|
2201
|
-
"labelStep",
|
|
2202
|
-
"max",
|
|
2203
|
-
"min",
|
|
2204
|
-
"padding",
|
|
2205
|
-
"step"
|
|
2206
|
-
]
|
|
2207
|
-
},
|
|
2208
|
-
"graph": {
|
|
2209
|
-
"title": "Graph",
|
|
2210
|
-
"type": "object",
|
|
2211
|
-
"properties": {
|
|
2212
|
-
"width": {
|
|
2213
|
-
"description": "Width for graph representation",
|
|
2214
|
-
"type": "number",
|
|
2215
|
-
"title": "width"
|
|
2216
|
-
},
|
|
2217
|
-
"height": {
|
|
2218
|
-
"description": "Height for graph representation",
|
|
2219
|
-
"type": "number",
|
|
2220
|
-
"title": "height"
|
|
2221
|
-
}
|
|
2222
|
-
},
|
|
2223
|
-
"required": [
|
|
2224
|
-
"height",
|
|
2225
|
-
"width"
|
|
2226
|
-
]
|
|
2227
|
-
},
|
|
2228
|
-
"includeAxes": {
|
|
2229
|
-
"description": "Indicates if the graph axes and labels are enabled",
|
|
2230
|
-
"type": "boolean",
|
|
2231
|
-
"title": "includeAxes"
|
|
2232
|
-
},
|
|
2233
|
-
"labels": {
|
|
2234
|
-
"title": "Labels",
|
|
2235
|
-
"type": "object",
|
|
2236
|
-
"properties": {
|
|
2237
|
-
"top": {
|
|
2238
|
-
"description": "Label for top side of the graph",
|
|
2239
|
-
"type": "string",
|
|
2240
|
-
"title": "top"
|
|
2241
|
-
},
|
|
2242
|
-
"bottom": {
|
|
2243
|
-
"description": "Label for bottom side of the graph",
|
|
2244
|
-
"type": "string",
|
|
2245
|
-
"title": "bottom"
|
|
2246
|
-
},
|
|
2247
|
-
"left": {
|
|
2248
|
-
"description": "Label for left side of the graph",
|
|
2249
|
-
"type": "string",
|
|
2250
|
-
"title": "left"
|
|
2251
|
-
},
|
|
2252
|
-
"right": {
|
|
2253
|
-
"description": "Label for right side of the graph",
|
|
2254
|
-
"type": "string",
|
|
2255
|
-
"title": "right"
|
|
2256
|
-
}
|
|
2257
|
-
},
|
|
2258
|
-
"required": [
|
|
2259
|
-
"bottom",
|
|
2260
|
-
"left",
|
|
2261
|
-
"right",
|
|
2262
|
-
"top"
|
|
2263
|
-
]
|
|
2264
|
-
},
|
|
2265
|
-
"padding": {
|
|
2266
|
-
"description": "Indicates if padding is enabled",
|
|
2267
|
-
"type": "boolean",
|
|
2268
|
-
"title": "padding"
|
|
2269
|
-
},
|
|
2270
|
-
"range": {
|
|
2271
|
-
"title": "GraphSettings",
|
|
2272
|
-
"type": "object",
|
|
2273
|
-
"properties": {
|
|
2274
|
-
"min": {
|
|
2275
|
-
"description": "Min value",
|
|
2276
|
-
"type": "number",
|
|
2277
|
-
"title": "min"
|
|
2278
|
-
},
|
|
2279
|
-
"max": {
|
|
2280
|
-
"description": "Max value",
|
|
2281
|
-
"type": "number",
|
|
2282
|
-
"title": "max"
|
|
2283
|
-
},
|
|
2284
|
-
"padding": {
|
|
2285
|
-
"description": "Padding value",
|
|
2286
|
-
"type": "number",
|
|
2287
|
-
"title": "padding"
|
|
2288
|
-
},
|
|
2289
|
-
"step": {
|
|
2290
|
-
"description": "Step value",
|
|
2291
|
-
"type": "number",
|
|
2292
|
-
"title": "step"
|
|
2293
|
-
},
|
|
2294
|
-
"labelStep": {
|
|
2295
|
-
"description": "Label step value",
|
|
2296
|
-
"type": "number",
|
|
2297
|
-
"title": "labelStep"
|
|
2298
|
-
},
|
|
2299
|
-
"axisLabel": {
|
|
2300
|
-
"description": "Axis Label",
|
|
2301
|
-
"type": "string",
|
|
2302
|
-
"title": "axisLabel"
|
|
2303
|
-
}
|
|
2304
|
-
},
|
|
2305
|
-
"required": [
|
|
2306
|
-
"axisLabel",
|
|
2307
|
-
"labelStep",
|
|
2308
|
-
"max",
|
|
2309
|
-
"min",
|
|
2310
|
-
"padding",
|
|
2311
|
-
"step"
|
|
2312
|
-
]
|
|
2313
|
-
},
|
|
2314
|
-
"standardGrid": {
|
|
2315
|
-
"description": "Indicates if some domain values will be synched to the range values",
|
|
2316
|
-
"type": "boolean",
|
|
2317
|
-
"title": "standardGrid"
|
|
2318
|
-
},
|
|
2319
|
-
"title": {
|
|
2320
|
-
"description": "Indicates graph title",
|
|
2321
|
-
"type": "string",
|
|
2322
|
-
"title": "title"
|
|
2323
|
-
}
|
|
2324
|
-
},
|
|
2325
|
-
"required": [
|
|
2326
|
-
"domain",
|
|
2327
|
-
"graph",
|
|
2328
|
-
"range"
|
|
2329
|
-
]
|
|
2330
|
-
},
|
|
2331
|
-
"Arrows": {
|
|
2332
|
-
"title": "Arrows",
|
|
2333
|
-
"type": "object",
|
|
2334
|
-
"properties": {
|
|
2335
|
-
"left": {
|
|
2336
|
-
"description": "Indicates if left arrow is enabled",
|
|
2337
|
-
"type": "boolean",
|
|
2338
|
-
"title": "left"
|
|
2339
|
-
},
|
|
2340
|
-
"right": {
|
|
2341
|
-
"description": "Indicates if right arrow is enabled",
|
|
2342
|
-
"type": "boolean",
|
|
2343
|
-
"title": "right"
|
|
2344
|
-
},
|
|
2345
|
-
"up": {
|
|
2346
|
-
"description": "Indicates if up arrow is enabled",
|
|
2347
|
-
"type": "boolean",
|
|
2348
|
-
"title": "up"
|
|
2349
|
-
},
|
|
2350
|
-
"down": {
|
|
2351
|
-
"description": "Indicates if down arrow is enabled",
|
|
2352
|
-
"type": "boolean",
|
|
2353
|
-
"title": "down"
|
|
2354
|
-
}
|
|
2355
|
-
},
|
|
2356
|
-
"required": [
|
|
2357
|
-
"down",
|
|
2358
|
-
"left",
|
|
2359
|
-
"right",
|
|
2360
|
-
"up"
|
|
2361
|
-
]
|
|
2362
|
-
},
|
|
2363
|
-
"GraphSettings": {
|
|
2364
|
-
"title": "GraphSettings",
|
|
2365
|
-
"type": "object",
|
|
2366
|
-
"properties": {
|
|
2367
|
-
"min": {
|
|
2368
|
-
"description": "Min value",
|
|
2369
|
-
"type": "number",
|
|
2370
|
-
"title": "min"
|
|
2371
|
-
},
|
|
2372
|
-
"max": {
|
|
2373
|
-
"description": "Max value",
|
|
2374
|
-
"type": "number",
|
|
2375
|
-
"title": "max"
|
|
2376
|
-
},
|
|
2377
|
-
"padding": {
|
|
2378
|
-
"description": "Padding value",
|
|
2379
|
-
"type": "number",
|
|
2380
|
-
"title": "padding"
|
|
2381
|
-
},
|
|
2382
|
-
"step": {
|
|
2383
|
-
"description": "Step value",
|
|
2384
|
-
"type": "number",
|
|
2385
|
-
"title": "step"
|
|
2386
|
-
},
|
|
2387
|
-
"labelStep": {
|
|
2388
|
-
"description": "Label step value",
|
|
2389
|
-
"type": "number",
|
|
2390
|
-
"title": "labelStep"
|
|
2391
|
-
},
|
|
2392
|
-
"axisLabel": {
|
|
2393
|
-
"description": "Axis Label",
|
|
2394
|
-
"type": "string",
|
|
2395
|
-
"title": "axisLabel"
|
|
2396
|
-
}
|
|
2397
|
-
},
|
|
2398
|
-
"required": [
|
|
2399
|
-
"axisLabel",
|
|
2400
|
-
"labelStep",
|
|
2401
|
-
"max",
|
|
2402
|
-
"min",
|
|
2403
|
-
"padding",
|
|
2404
|
-
"step"
|
|
2405
|
-
]
|
|
2406
|
-
},
|
|
2407
|
-
"Graph": {
|
|
2408
|
-
"title": "Graph",
|
|
2409
|
-
"type": "object",
|
|
2410
|
-
"properties": {
|
|
2411
|
-
"width": {
|
|
2412
|
-
"description": "Width for graph representation",
|
|
2413
|
-
"type": "number",
|
|
2414
|
-
"title": "width"
|
|
2415
|
-
},
|
|
2416
|
-
"height": {
|
|
2417
|
-
"description": "Height for graph representation",
|
|
2418
|
-
"type": "number",
|
|
2419
|
-
"title": "height"
|
|
2420
|
-
}
|
|
2421
|
-
},
|
|
2422
|
-
"required": [
|
|
2423
|
-
"height",
|
|
2424
|
-
"width"
|
|
2425
|
-
]
|
|
2426
|
-
},
|
|
2427
|
-
"Labels": {
|
|
2428
|
-
"title": "Labels",
|
|
2429
|
-
"type": "object",
|
|
2430
|
-
"properties": {
|
|
2431
|
-
"top": {
|
|
2432
|
-
"description": "Label for top side of the graph",
|
|
2433
|
-
"type": "string",
|
|
2434
|
-
"title": "top"
|
|
2435
|
-
},
|
|
2436
|
-
"bottom": {
|
|
2437
|
-
"description": "Label for bottom side of the graph",
|
|
2438
|
-
"type": "string",
|
|
2439
|
-
"title": "bottom"
|
|
2440
|
-
},
|
|
2441
|
-
"left": {
|
|
2442
|
-
"description": "Label for left side of the graph",
|
|
2443
|
-
"type": "string",
|
|
2444
|
-
"title": "left"
|
|
2445
|
-
},
|
|
2446
|
-
"right": {
|
|
2447
|
-
"description": "Label for right side of the graph",
|
|
2448
|
-
"type": "string",
|
|
2449
|
-
"title": "right"
|
|
2450
|
-
}
|
|
2451
|
-
},
|
|
2452
|
-
"required": [
|
|
2453
|
-
"bottom",
|
|
2454
|
-
"left",
|
|
2455
|
-
"right",
|
|
2456
|
-
"top"
|
|
2457
|
-
]
|
|
2458
|
-
},
|
|
2459
|
-
"LabelsConfigProp": {
|
|
2460
|
-
"title": "LabelsConfigProp",
|
|
2461
|
-
"type": "object",
|
|
2462
|
-
"properties": {
|
|
2463
|
-
"top": {
|
|
2464
|
-
"description": "Indicates the placeholder for the top label",
|
|
2465
|
-
"type": "string",
|
|
2466
|
-
"title": "top"
|
|
2467
|
-
},
|
|
2468
|
-
"right": {
|
|
2469
|
-
"description": "Indicates the placeholder for the right label",
|
|
2470
|
-
"type": "string",
|
|
2471
|
-
"title": "right"
|
|
2472
|
-
},
|
|
2473
|
-
"bottom": {
|
|
2474
|
-
"description": "Indicates the placeholder for the bottom label",
|
|
2475
|
-
"type": "string",
|
|
2476
|
-
"title": "bottom"
|
|
2477
|
-
},
|
|
2478
|
-
"left": {
|
|
2479
|
-
"description": "Indicates the placeholder for the left label",
|
|
2480
|
-
"type": "string",
|
|
2481
|
-
"title": "left"
|
|
2482
|
-
},
|
|
2483
|
-
"enabled": {
|
|
2484
|
-
"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)",
|
|
2485
|
-
"type": "boolean",
|
|
2486
|
-
"title": "enabled"
|
|
2487
|
-
},
|
|
2488
|
-
"settings": {
|
|
2489
|
-
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
2490
|
-
"type": "boolean",
|
|
2491
|
-
"title": "settings"
|
|
2492
|
-
},
|
|
2493
|
-
"label": {
|
|
2494
|
-
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
2495
|
-
"type": "string",
|
|
2496
|
-
"title": "label"
|
|
2497
|
-
}
|
|
2498
|
-
}
|
|
2499
|
-
},
|
|
2500
|
-
"ConfigurePropWithEnabled": {
|
|
2501
|
-
"title": "ConfigurePropWithEnabled",
|
|
2502
|
-
"type": "object",
|
|
2503
|
-
"properties": {
|
|
2504
|
-
"enabled": {
|
|
2505
|
-
"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)",
|
|
2506
|
-
"type": "boolean",
|
|
2507
|
-
"title": "enabled"
|
|
2508
|
-
},
|
|
2509
|
-
"settings": {
|
|
2510
|
-
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
2511
|
-
"type": "boolean",
|
|
2512
|
-
"title": "settings"
|
|
2513
|
-
},
|
|
2514
|
-
"label": {
|
|
2515
|
-
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
2516
|
-
"type": "string",
|
|
2517
|
-
"title": "label"
|
|
2518
|
-
}
|
|
2519
|
-
}
|
|
2520
|
-
},
|
|
2521
|
-
"ConfigureLanguageOptionsProp": {
|
|
2522
|
-
"title": "ConfigureLanguageOptionsProp",
|
|
2523
|
-
"type": "object",
|
|
2524
|
-
"properties": {
|
|
2525
|
-
"value": {
|
|
2526
|
-
"description": "Value of the language option",
|
|
2527
|
-
"type": "string",
|
|
2528
|
-
"title": "value"
|
|
2529
|
-
},
|
|
2530
|
-
"label": {
|
|
2531
|
-
"description": "Label of the language option",
|
|
2532
|
-
"type": "string",
|
|
2533
|
-
"title": "label"
|
|
2534
|
-
}
|
|
2535
|
-
},
|
|
2536
|
-
"required": [
|
|
2537
|
-
"label",
|
|
2538
|
-
"value"
|
|
2539
|
-
]
|
|
2540
|
-
},
|
|
2541
|
-
"EditableHtmlPluginConfigureRequired": {
|
|
2542
|
-
"title": "EditableHtmlPluginConfigureRequired",
|
|
2543
|
-
"type": "object",
|
|
2544
|
-
"properties": {
|
|
2545
|
-
"inputConfiguration": {
|
|
2546
|
-
"title": "EditableHtmlConfigureProp",
|
|
2547
|
-
"type": "object",
|
|
2548
|
-
"properties": {
|
|
2549
|
-
"math": {
|
|
2550
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2551
|
-
"type": "object",
|
|
2552
|
-
"properties": {
|
|
2553
|
-
"disabled": {
|
|
2554
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2555
|
-
"type": "boolean",
|
|
2556
|
-
"title": "disabled"
|
|
2557
|
-
}
|
|
2558
|
-
}
|
|
2559
|
-
},
|
|
2560
|
-
"audio": {
|
|
2561
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2562
|
-
"type": "object",
|
|
2563
|
-
"properties": {
|
|
2564
|
-
"disabled": {
|
|
2565
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2566
|
-
"type": "boolean",
|
|
2567
|
-
"title": "disabled"
|
|
2568
|
-
}
|
|
2569
|
-
}
|
|
2570
|
-
},
|
|
2571
|
-
"video": {
|
|
2572
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2573
|
-
"type": "object",
|
|
2574
|
-
"properties": {
|
|
2575
|
-
"disabled": {
|
|
2576
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2577
|
-
"type": "boolean",
|
|
2578
|
-
"title": "disabled"
|
|
2579
|
-
}
|
|
2580
|
-
}
|
|
2581
|
-
},
|
|
2582
|
-
"image": {
|
|
2583
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2584
|
-
"type": "object",
|
|
2585
|
-
"properties": {
|
|
2586
|
-
"disabled": {
|
|
2587
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2588
|
-
"type": "boolean",
|
|
2589
|
-
"title": "disabled"
|
|
2590
|
-
}
|
|
2591
|
-
}
|
|
2592
|
-
},
|
|
2593
|
-
"customPlugins": {
|
|
2594
|
-
"description": "An array of objects that determine custom plugins.\nA custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).\nExample can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.",
|
|
2595
|
-
"type": "array",
|
|
2596
|
-
"items": {
|
|
2597
|
-
"title": "CustomPlugin",
|
|
2598
|
-
"type": "object",
|
|
2599
|
-
"properties": {
|
|
2600
|
-
"event": {
|
|
2601
|
-
"description": "The name of the custom event. It needs to be valid (only letters, numbers and \"_\" can be used).\nPIE will emit the event prefixed with \"PIE-\".\nEg: event = 'client_custom_event_A' => the emitted event will be \"PIE-client_custom_event_A\"",
|
|
2602
|
-
"type": "string",
|
|
2603
|
-
"title": "event"
|
|
2604
|
-
},
|
|
2605
|
-
"iconAlt": {
|
|
2606
|
-
"description": "The alt for the custom button icon",
|
|
2607
|
-
"type": "string",
|
|
2608
|
-
"title": "iconAlt"
|
|
2609
|
-
},
|
|
2610
|
-
"iconType": {
|
|
2611
|
-
"description": "The icon type.\nCurrently, only \"SVG\" is supported.",
|
|
2612
|
-
"type": "string",
|
|
2613
|
-
"title": "iconType"
|
|
2614
|
-
},
|
|
2615
|
-
"icon": {
|
|
2616
|
-
"description": "The icon string. Currently, only \"SVG\" is supported, so it needs to be a valid svg.",
|
|
2617
|
-
"type": "string",
|
|
2618
|
-
"title": "icon"
|
|
2619
|
-
}
|
|
2620
|
-
},
|
|
2621
|
-
"required": [
|
|
2622
|
-
"event",
|
|
2623
|
-
"icon",
|
|
2624
|
-
"iconAlt",
|
|
2625
|
-
"iconType"
|
|
2626
|
-
]
|
|
2627
|
-
},
|
|
2628
|
-
"title": "customPlugins"
|
|
2629
|
-
},
|
|
2630
|
-
"blockquote": {
|
|
2631
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2632
|
-
"type": "object",
|
|
2633
|
-
"properties": {
|
|
2634
|
-
"disabled": {
|
|
2635
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2636
|
-
"type": "boolean",
|
|
2637
|
-
"title": "disabled"
|
|
2638
|
-
}
|
|
2639
|
-
}
|
|
2640
|
-
},
|
|
2641
|
-
"h3": {
|
|
2642
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2643
|
-
"type": "object",
|
|
2644
|
-
"properties": {
|
|
2645
|
-
"disabled": {
|
|
2646
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2647
|
-
"type": "boolean",
|
|
2648
|
-
"title": "disabled"
|
|
2649
|
-
}
|
|
2650
|
-
}
|
|
2651
|
-
},
|
|
2652
|
-
"characters": {
|
|
2653
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2654
|
-
"type": "object",
|
|
2655
|
-
"properties": {
|
|
2656
|
-
"disabled": {
|
|
2657
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2658
|
-
"type": "boolean",
|
|
2659
|
-
"title": "disabled"
|
|
2660
|
-
}
|
|
2661
|
-
}
|
|
2662
|
-
},
|
|
2663
|
-
"bold": {
|
|
2664
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2665
|
-
"type": "object",
|
|
2666
|
-
"properties": {
|
|
2667
|
-
"disabled": {
|
|
2668
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2669
|
-
"type": "boolean",
|
|
2670
|
-
"title": "disabled"
|
|
2671
|
-
}
|
|
2672
|
-
}
|
|
2673
|
-
},
|
|
2674
|
-
"html": {
|
|
2675
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2676
|
-
"type": "object",
|
|
2677
|
-
"properties": {
|
|
2678
|
-
"disabled": {
|
|
2679
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2680
|
-
"type": "boolean",
|
|
2681
|
-
"title": "disabled"
|
|
2682
|
-
}
|
|
2683
|
-
}
|
|
2684
|
-
},
|
|
2685
|
-
"italic": {
|
|
2686
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2687
|
-
"type": "object",
|
|
2688
|
-
"properties": {
|
|
2689
|
-
"disabled": {
|
|
2690
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2691
|
-
"type": "boolean",
|
|
2692
|
-
"title": "disabled"
|
|
2693
|
-
}
|
|
2694
|
-
}
|
|
2695
|
-
},
|
|
2696
|
-
"ol_list": {
|
|
2697
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2698
|
-
"type": "object",
|
|
2699
|
-
"properties": {
|
|
2700
|
-
"disabled": {
|
|
2701
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2702
|
-
"type": "boolean",
|
|
2703
|
-
"title": "disabled"
|
|
2704
|
-
}
|
|
2705
|
-
}
|
|
2706
|
-
},
|
|
2707
|
-
"redo": {
|
|
2708
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2709
|
-
"type": "object",
|
|
2710
|
-
"properties": {
|
|
2711
|
-
"disabled": {
|
|
2712
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2713
|
-
"type": "boolean",
|
|
2714
|
-
"title": "disabled"
|
|
2715
|
-
}
|
|
2716
|
-
}
|
|
2717
|
-
},
|
|
2718
|
-
"strikethrough": {
|
|
2719
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2720
|
-
"type": "object",
|
|
2721
|
-
"properties": {
|
|
2722
|
-
"disabled": {
|
|
2723
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2724
|
-
"type": "boolean",
|
|
2725
|
-
"title": "disabled"
|
|
2726
|
-
}
|
|
2727
|
-
}
|
|
2728
|
-
},
|
|
2729
|
-
"sub": {
|
|
2730
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2731
|
-
"type": "object",
|
|
2732
|
-
"properties": {
|
|
2733
|
-
"disabled": {
|
|
2734
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2735
|
-
"type": "boolean",
|
|
2736
|
-
"title": "disabled"
|
|
2737
|
-
}
|
|
2738
|
-
}
|
|
2739
|
-
},
|
|
2740
|
-
"sup": {
|
|
2741
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2742
|
-
"type": "object",
|
|
2743
|
-
"properties": {
|
|
2744
|
-
"disabled": {
|
|
2745
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2746
|
-
"type": "boolean",
|
|
2747
|
-
"title": "disabled"
|
|
2748
|
-
}
|
|
2749
|
-
}
|
|
2750
|
-
},
|
|
2751
|
-
"table": {
|
|
2752
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2753
|
-
"type": "object",
|
|
2754
|
-
"properties": {
|
|
2755
|
-
"disabled": {
|
|
2756
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2757
|
-
"type": "boolean",
|
|
2758
|
-
"title": "disabled"
|
|
2759
|
-
}
|
|
2760
|
-
}
|
|
2761
|
-
},
|
|
2762
|
-
"ul_list": {
|
|
2763
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2764
|
-
"type": "object",
|
|
2765
|
-
"properties": {
|
|
2766
|
-
"disabled": {
|
|
2767
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2768
|
-
"type": "boolean",
|
|
2769
|
-
"title": "disabled"
|
|
2770
|
-
}
|
|
2771
|
-
}
|
|
2772
|
-
},
|
|
2773
|
-
"underline": {
|
|
2774
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2775
|
-
"type": "object",
|
|
2776
|
-
"properties": {
|
|
2777
|
-
"disabled": {
|
|
2778
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2779
|
-
"type": "boolean",
|
|
2780
|
-
"title": "disabled"
|
|
2781
|
-
}
|
|
2782
|
-
}
|
|
2783
|
-
},
|
|
2784
|
-
"undo": {
|
|
2785
|
-
"title": "EditableHtmlButtonConfigure",
|
|
2786
|
-
"type": "object",
|
|
2787
|
-
"properties": {
|
|
2788
|
-
"disabled": {
|
|
2789
|
-
"description": "Indicates if the plugin is disabled or not",
|
|
2790
|
-
"type": "boolean",
|
|
2791
|
-
"title": "disabled"
|
|
2792
|
-
}
|
|
2793
|
-
}
|
|
2794
|
-
}
|
|
2795
|
-
}
|
|
2796
|
-
},
|
|
2797
|
-
"required": {
|
|
2798
|
-
"description": "Indicates if the item is required and the value cannot be empty",
|
|
2799
|
-
"type": "boolean",
|
|
2800
|
-
"title": "required"
|
|
2801
|
-
},
|
|
2802
|
-
"settings": {
|
|
2803
|
-
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
2804
|
-
"type": "boolean",
|
|
2805
|
-
"title": "settings"
|
|
2806
|
-
},
|
|
2807
|
-
"label": {
|
|
2808
|
-
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
2809
|
-
"type": "string",
|
|
2810
|
-
"title": "label"
|
|
2811
|
-
}
|
|
2812
|
-
}
|
|
2813
|
-
},
|
|
2814
|
-
"TitleConfigProp": {
|
|
2815
|
-
"title": "TitleConfigProp",
|
|
2816
|
-
"type": "object",
|
|
2817
|
-
"properties": {
|
|
2818
|
-
"placeholder": {
|
|
2819
|
-
"description": "Indicates the placeholder for the title label",
|
|
2820
|
-
"type": "string",
|
|
2821
|
-
"title": "placeholder"
|
|
2822
|
-
},
|
|
2823
|
-
"enabled": {
|
|
2824
|
-
"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)",
|
|
2825
|
-
"type": "boolean",
|
|
2826
|
-
"title": "enabled"
|
|
2827
|
-
},
|
|
2828
|
-
"settings": {
|
|
2829
|
-
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
2830
|
-
"type": "boolean",
|
|
2831
|
-
"title": "settings"
|
|
2832
|
-
},
|
|
2833
|
-
"label": {
|
|
2834
|
-
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
2835
|
-
"type": "string",
|
|
2836
|
-
"title": "label"
|
|
2837
|
-
}
|
|
2838
|
-
}
|
|
2839
|
-
},
|
|
2840
|
-
"ConfigureMaxImageDimensionsProp": {
|
|
2841
|
-
"title": "ConfigureMaxImageDimensionsProp",
|
|
2842
|
-
"type": "object",
|
|
2843
|
-
"properties": {
|
|
2844
|
-
"teacherInstructions": {
|
|
2845
|
-
"description": "Indicates the max dimension for images in teacher instructions",
|
|
2846
|
-
"type": "number",
|
|
2847
|
-
"title": "teacherInstructions"
|
|
2848
|
-
},
|
|
2849
|
-
"prompt": {
|
|
2850
|
-
"description": "Indicates the max dimension for images in prompt - this is also the default dimension for all other input fields if it's not specified",
|
|
2851
|
-
"type": "number",
|
|
2852
|
-
"title": "prompt"
|
|
2853
|
-
},
|
|
2854
|
-
"rationale": {
|
|
2855
|
-
"description": "Indicates the max dimension for images in rationale",
|
|
2856
|
-
"type": "number",
|
|
2857
|
-
"title": "rationale"
|
|
2858
|
-
}
|
|
2859
|
-
}
|
|
2860
|
-
},
|
|
2861
|
-
"ConfigureMathMLProp": {
|
|
2862
|
-
"title": "ConfigureMathMLProp",
|
|
2863
|
-
"type": "object",
|
|
2864
|
-
"properties": {
|
|
2865
|
-
"mmlOutput": {
|
|
2866
|
-
"description": "Indicates if model should have mathML output instead of latex",
|
|
2867
|
-
"type": "number",
|
|
2868
|
-
"title": "mmlOutput"
|
|
2869
|
-
},
|
|
2870
|
-
"mmlEditing": {
|
|
2871
|
-
"description": "Indicates if mathML that's already in model should be editable",
|
|
2872
|
-
"type": "number",
|
|
2873
|
-
"title": "mmlEditing"
|
|
2874
|
-
}
|
|
2875
|
-
}
|
|
2876
|
-
},
|
|
2877
|
-
"Answer": {
|
|
2878
|
-
"title": "Answer",
|
|
2879
|
-
"type": "object",
|
|
2880
|
-
"properties": {
|
|
2881
|
-
"name": {
|
|
2882
|
-
"description": "Indicates name of answer",
|
|
2883
|
-
"type": "string",
|
|
2884
|
-
"title": "name"
|
|
2885
|
-
},
|
|
2886
|
-
"marks": {
|
|
2887
|
-
"description": "Indicates marks for the answer",
|
|
2888
|
-
"type": "array",
|
|
2889
|
-
"items": [
|
|
2890
|
-
{
|
|
2891
|
-
"title": "Mark",
|
|
2892
|
-
"type": "object",
|
|
2893
|
-
"properties": {
|
|
2894
|
-
"type": {
|
|
2895
|
-
"description": "Indicates type of mark",
|
|
2896
|
-
"enum": [
|
|
2897
|
-
"circle",
|
|
2898
|
-
"line",
|
|
2899
|
-
"parabola",
|
|
2900
|
-
"point",
|
|
2901
|
-
"polygon",
|
|
2902
|
-
"ray",
|
|
2903
|
-
"segment",
|
|
2904
|
-
"sine",
|
|
2905
|
-
"vector"
|
|
2906
|
-
],
|
|
2907
|
-
"type": "string",
|
|
2908
|
-
"title": "type"
|
|
2909
|
-
},
|
|
2910
|
-
"showLabel": {
|
|
2911
|
-
"description": "Indicates if label should be visible",
|
|
2912
|
-
"type": "boolean",
|
|
2913
|
-
"title": "showLabel"
|
|
2914
|
-
},
|
|
2915
|
-
"label": {
|
|
2916
|
-
"description": "Indicates label value for mark",
|
|
2917
|
-
"type": "string",
|
|
2918
|
-
"title": "label"
|
|
2919
|
-
},
|
|
2920
|
-
"building": {
|
|
2921
|
-
"description": "Indicates if mark is in build process",
|
|
2922
|
-
"type": "boolean",
|
|
2923
|
-
"title": "building"
|
|
2924
|
-
},
|
|
2925
|
-
"x": {
|
|
2926
|
-
"description": "Indicates x coordinate if type is point",
|
|
2927
|
-
"type": "number",
|
|
2928
|
-
"title": "x"
|
|
2929
|
-
},
|
|
2930
|
-
"y": {
|
|
2931
|
-
"description": "Indicates y coordinate if type is point",
|
|
2932
|
-
"type": "number",
|
|
2933
|
-
"title": "y"
|
|
2934
|
-
},
|
|
2935
|
-
"from": {
|
|
2936
|
-
"title": "Point",
|
|
2937
|
-
"type": "object",
|
|
2938
|
-
"properties": {
|
|
2939
|
-
"x": {
|
|
2940
|
-
"description": "Indicates x coordinate",
|
|
2941
|
-
"type": "number",
|
|
2942
|
-
"title": "x"
|
|
2943
|
-
},
|
|
2944
|
-
"y": {
|
|
2945
|
-
"description": "Indicates y coordinate",
|
|
2946
|
-
"type": "number",
|
|
2947
|
-
"title": "y"
|
|
2948
|
-
}
|
|
2949
|
-
},
|
|
2950
|
-
"required": [
|
|
2951
|
-
"x",
|
|
2952
|
-
"y"
|
|
2953
|
-
]
|
|
2954
|
-
},
|
|
2955
|
-
"to": {
|
|
2956
|
-
"title": "Point",
|
|
2957
|
-
"type": "object",
|
|
2958
|
-
"properties": {
|
|
2959
|
-
"x": {
|
|
2960
|
-
"description": "Indicates x coordinate",
|
|
2961
|
-
"type": "number",
|
|
2962
|
-
"title": "x"
|
|
2963
|
-
},
|
|
2964
|
-
"y": {
|
|
2965
|
-
"description": "Indicates y coordinate",
|
|
2966
|
-
"type": "number",
|
|
2967
|
-
"title": "y"
|
|
2968
|
-
}
|
|
2969
|
-
},
|
|
2970
|
-
"required": [
|
|
2971
|
-
"x",
|
|
2972
|
-
"y"
|
|
2973
|
-
]
|
|
2974
|
-
},
|
|
2975
|
-
"closed": {
|
|
2976
|
-
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
2977
|
-
"type": "boolean",
|
|
2978
|
-
"title": "closed"
|
|
2979
|
-
},
|
|
2980
|
-
"points": {
|
|
2981
|
-
"description": "Indicates all mark's points if type is polygon",
|
|
2982
|
-
"type": "array",
|
|
2983
|
-
"items": [
|
|
2984
|
-
{
|
|
2985
|
-
"title": "Point",
|
|
2986
|
-
"type": "object",
|
|
2987
|
-
"properties": {
|
|
2988
|
-
"x": {
|
|
2989
|
-
"description": "Indicates x coordinate",
|
|
2990
|
-
"type": "number",
|
|
2991
|
-
"title": "x"
|
|
2992
|
-
},
|
|
2993
|
-
"y": {
|
|
2994
|
-
"description": "Indicates y coordinate",
|
|
2995
|
-
"type": "number",
|
|
2996
|
-
"title": "y"
|
|
2997
|
-
}
|
|
2998
|
-
},
|
|
2999
|
-
"required": [
|
|
3000
|
-
"x",
|
|
3001
|
-
"y"
|
|
3002
|
-
]
|
|
3003
|
-
}
|
|
3004
|
-
],
|
|
3005
|
-
"minItems": 1,
|
|
3006
|
-
"additionalItems": {
|
|
3007
|
-
"anyOf": [
|
|
3008
|
-
{
|
|
3009
|
-
"title": "Point",
|
|
3010
|
-
"type": "object",
|
|
3011
|
-
"properties": {
|
|
3012
|
-
"x": {
|
|
3013
|
-
"description": "Indicates x coordinate",
|
|
3014
|
-
"type": "number",
|
|
3015
|
-
"title": "x"
|
|
3016
|
-
},
|
|
3017
|
-
"y": {
|
|
3018
|
-
"description": "Indicates y coordinate",
|
|
3019
|
-
"type": "number",
|
|
3020
|
-
"title": "y"
|
|
3021
|
-
}
|
|
3022
|
-
},
|
|
3023
|
-
"required": [
|
|
3024
|
-
"x",
|
|
3025
|
-
"y"
|
|
3026
|
-
]
|
|
3027
|
-
}
|
|
3028
|
-
]
|
|
3029
|
-
},
|
|
3030
|
-
"title": "points"
|
|
3031
|
-
},
|
|
3032
|
-
"root": {
|
|
3033
|
-
"title": "Point",
|
|
3034
|
-
"type": "object",
|
|
3035
|
-
"properties": {
|
|
3036
|
-
"x": {
|
|
3037
|
-
"description": "Indicates x coordinate",
|
|
3038
|
-
"type": "number",
|
|
3039
|
-
"title": "x"
|
|
3040
|
-
},
|
|
3041
|
-
"y": {
|
|
3042
|
-
"description": "Indicates y coordinate",
|
|
3043
|
-
"type": "number",
|
|
3044
|
-
"title": "y"
|
|
3045
|
-
}
|
|
3046
|
-
},
|
|
3047
|
-
"required": [
|
|
3048
|
-
"x",
|
|
3049
|
-
"y"
|
|
3050
|
-
]
|
|
3051
|
-
},
|
|
3052
|
-
"edge": {
|
|
3053
|
-
"title": "Point",
|
|
3054
|
-
"type": "object",
|
|
3055
|
-
"properties": {
|
|
3056
|
-
"x": {
|
|
3057
|
-
"description": "Indicates x coordinate",
|
|
3058
|
-
"type": "number",
|
|
3059
|
-
"title": "x"
|
|
3060
|
-
},
|
|
3061
|
-
"y": {
|
|
3062
|
-
"description": "Indicates y coordinate",
|
|
3063
|
-
"type": "number",
|
|
3064
|
-
"title": "y"
|
|
3065
|
-
}
|
|
3066
|
-
},
|
|
3067
|
-
"required": [
|
|
3068
|
-
"x",
|
|
3069
|
-
"y"
|
|
3070
|
-
]
|
|
3071
|
-
}
|
|
3072
|
-
},
|
|
3073
|
-
"required": [
|
|
3074
|
-
"building",
|
|
3075
|
-
"type"
|
|
3076
|
-
]
|
|
3077
|
-
}
|
|
3078
|
-
],
|
|
3079
|
-
"minItems": 1,
|
|
3080
|
-
"additionalItems": {
|
|
3081
|
-
"anyOf": [
|
|
3082
|
-
{
|
|
3083
|
-
"title": "Mark",
|
|
3084
|
-
"type": "object",
|
|
3085
|
-
"properties": {
|
|
3086
|
-
"type": {
|
|
3087
|
-
"description": "Indicates type of mark",
|
|
3088
|
-
"enum": [
|
|
3089
|
-
"circle",
|
|
3090
|
-
"line",
|
|
3091
|
-
"parabola",
|
|
3092
|
-
"point",
|
|
3093
|
-
"polygon",
|
|
3094
|
-
"ray",
|
|
3095
|
-
"segment",
|
|
3096
|
-
"sine",
|
|
3097
|
-
"vector"
|
|
3098
|
-
],
|
|
3099
|
-
"type": "string",
|
|
3100
|
-
"title": "type"
|
|
3101
|
-
},
|
|
3102
|
-
"showLabel": {
|
|
3103
|
-
"description": "Indicates if label should be visible",
|
|
3104
|
-
"type": "boolean",
|
|
3105
|
-
"title": "showLabel"
|
|
3106
|
-
},
|
|
3107
|
-
"label": {
|
|
3108
|
-
"description": "Indicates label value for mark",
|
|
3109
|
-
"type": "string",
|
|
3110
|
-
"title": "label"
|
|
3111
|
-
},
|
|
3112
|
-
"building": {
|
|
3113
|
-
"description": "Indicates if mark is in build process",
|
|
3114
|
-
"type": "boolean",
|
|
3115
|
-
"title": "building"
|
|
3116
|
-
},
|
|
3117
|
-
"x": {
|
|
3118
|
-
"description": "Indicates x coordinate if type is point",
|
|
3119
|
-
"type": "number",
|
|
3120
|
-
"title": "x"
|
|
3121
|
-
},
|
|
3122
|
-
"y": {
|
|
3123
|
-
"description": "Indicates y coordinate if type is point",
|
|
3124
|
-
"type": "number",
|
|
3125
|
-
"title": "y"
|
|
3126
|
-
},
|
|
3127
|
-
"from": {
|
|
3128
|
-
"title": "Point",
|
|
3129
|
-
"type": "object",
|
|
3130
|
-
"properties": {
|
|
3131
|
-
"x": {
|
|
3132
|
-
"description": "Indicates x coordinate",
|
|
3133
|
-
"type": "number",
|
|
3134
|
-
"title": "x"
|
|
3135
|
-
},
|
|
3136
|
-
"y": {
|
|
3137
|
-
"description": "Indicates y coordinate",
|
|
3138
|
-
"type": "number",
|
|
3139
|
-
"title": "y"
|
|
3140
|
-
}
|
|
3141
|
-
},
|
|
3142
|
-
"required": [
|
|
3143
|
-
"x",
|
|
3144
|
-
"y"
|
|
3145
|
-
]
|
|
3146
|
-
},
|
|
3147
|
-
"to": {
|
|
3148
|
-
"title": "Point",
|
|
3149
|
-
"type": "object",
|
|
3150
|
-
"properties": {
|
|
3151
|
-
"x": {
|
|
3152
|
-
"description": "Indicates x coordinate",
|
|
3153
|
-
"type": "number",
|
|
3154
|
-
"title": "x"
|
|
3155
|
-
},
|
|
3156
|
-
"y": {
|
|
3157
|
-
"description": "Indicates y coordinate",
|
|
3158
|
-
"type": "number",
|
|
3159
|
-
"title": "y"
|
|
3160
|
-
}
|
|
3161
|
-
},
|
|
3162
|
-
"required": [
|
|
3163
|
-
"x",
|
|
3164
|
-
"y"
|
|
3165
|
-
]
|
|
3166
|
-
},
|
|
3167
|
-
"closed": {
|
|
3168
|
-
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
3169
|
-
"type": "boolean",
|
|
3170
|
-
"title": "closed"
|
|
3171
|
-
},
|
|
3172
|
-
"points": {
|
|
3173
|
-
"description": "Indicates all mark's points if type is polygon",
|
|
3174
|
-
"type": "array",
|
|
3175
|
-
"items": [
|
|
3176
|
-
{
|
|
3177
|
-
"title": "Point",
|
|
3178
|
-
"type": "object",
|
|
3179
|
-
"properties": {
|
|
3180
|
-
"x": {
|
|
3181
|
-
"description": "Indicates x coordinate",
|
|
3182
|
-
"type": "number",
|
|
3183
|
-
"title": "x"
|
|
3184
|
-
},
|
|
3185
|
-
"y": {
|
|
3186
|
-
"description": "Indicates y coordinate",
|
|
3187
|
-
"type": "number",
|
|
3188
|
-
"title": "y"
|
|
3189
|
-
}
|
|
3190
|
-
},
|
|
3191
|
-
"required": [
|
|
3192
|
-
"x",
|
|
3193
|
-
"y"
|
|
3194
|
-
]
|
|
3195
|
-
}
|
|
3196
|
-
],
|
|
3197
|
-
"minItems": 1,
|
|
3198
|
-
"additionalItems": {
|
|
3199
|
-
"anyOf": [
|
|
3200
|
-
{
|
|
3201
|
-
"title": "Point",
|
|
3202
|
-
"type": "object",
|
|
3203
|
-
"properties": {
|
|
3204
|
-
"x": {
|
|
3205
|
-
"description": "Indicates x coordinate",
|
|
3206
|
-
"type": "number",
|
|
3207
|
-
"title": "x"
|
|
3208
|
-
},
|
|
3209
|
-
"y": {
|
|
3210
|
-
"description": "Indicates y coordinate",
|
|
3211
|
-
"type": "number",
|
|
3212
|
-
"title": "y"
|
|
3213
|
-
}
|
|
3214
|
-
},
|
|
3215
|
-
"required": [
|
|
3216
|
-
"x",
|
|
3217
|
-
"y"
|
|
3218
|
-
]
|
|
3219
|
-
}
|
|
3220
|
-
]
|
|
3221
|
-
},
|
|
3222
|
-
"title": "points"
|
|
3223
|
-
},
|
|
3224
|
-
"root": {
|
|
3225
|
-
"title": "Point",
|
|
3226
|
-
"type": "object",
|
|
3227
|
-
"properties": {
|
|
3228
|
-
"x": {
|
|
3229
|
-
"description": "Indicates x coordinate",
|
|
3230
|
-
"type": "number",
|
|
3231
|
-
"title": "x"
|
|
3232
|
-
},
|
|
3233
|
-
"y": {
|
|
3234
|
-
"description": "Indicates y coordinate",
|
|
3235
|
-
"type": "number",
|
|
3236
|
-
"title": "y"
|
|
3237
|
-
}
|
|
3238
|
-
},
|
|
3239
|
-
"required": [
|
|
3240
|
-
"x",
|
|
3241
|
-
"y"
|
|
3242
|
-
]
|
|
3243
|
-
},
|
|
3244
|
-
"edge": {
|
|
3245
|
-
"title": "Point",
|
|
3246
|
-
"type": "object",
|
|
3247
|
-
"properties": {
|
|
3248
|
-
"x": {
|
|
3249
|
-
"description": "Indicates x coordinate",
|
|
3250
|
-
"type": "number",
|
|
3251
|
-
"title": "x"
|
|
3252
|
-
},
|
|
3253
|
-
"y": {
|
|
3254
|
-
"description": "Indicates y coordinate",
|
|
3255
|
-
"type": "number",
|
|
3256
|
-
"title": "y"
|
|
3257
|
-
}
|
|
3258
|
-
},
|
|
3259
|
-
"required": [
|
|
3260
|
-
"x",
|
|
3261
|
-
"y"
|
|
3262
|
-
]
|
|
3263
|
-
}
|
|
3264
|
-
},
|
|
3265
|
-
"required": [
|
|
3266
|
-
"building",
|
|
3267
|
-
"type"
|
|
3268
|
-
]
|
|
3269
|
-
}
|
|
3270
|
-
]
|
|
3271
|
-
},
|
|
3272
|
-
"title": "marks"
|
|
3273
|
-
}
|
|
3274
|
-
},
|
|
3275
|
-
"required": [
|
|
3276
|
-
"marks",
|
|
3277
|
-
"name"
|
|
3278
|
-
]
|
|
3279
|
-
},
|
|
3280
|
-
"Mark": {
|
|
3281
|
-
"title": "Mark",
|
|
3282
|
-
"type": "object",
|
|
3283
|
-
"properties": {
|
|
3284
|
-
"type": {
|
|
3285
|
-
"description": "Indicates type of mark",
|
|
3286
|
-
"enum": [
|
|
3287
|
-
"circle",
|
|
3288
|
-
"line",
|
|
3289
|
-
"parabola",
|
|
3290
|
-
"point",
|
|
3291
|
-
"polygon",
|
|
3292
|
-
"ray",
|
|
3293
|
-
"segment",
|
|
3294
|
-
"sine",
|
|
3295
|
-
"vector"
|
|
3296
|
-
],
|
|
3297
|
-
"type": "string",
|
|
3298
|
-
"title": "type"
|
|
3299
|
-
},
|
|
3300
|
-
"showLabel": {
|
|
3301
|
-
"description": "Indicates if label should be visible",
|
|
3302
|
-
"type": "boolean",
|
|
3303
|
-
"title": "showLabel"
|
|
3304
|
-
},
|
|
3305
|
-
"label": {
|
|
3306
|
-
"description": "Indicates label value for mark",
|
|
3307
|
-
"type": "string",
|
|
3308
|
-
"title": "label"
|
|
3309
|
-
},
|
|
3310
|
-
"building": {
|
|
3311
|
-
"description": "Indicates if mark is in build process",
|
|
3312
|
-
"type": "boolean",
|
|
3313
|
-
"title": "building"
|
|
3314
|
-
},
|
|
3315
|
-
"x": {
|
|
3316
|
-
"description": "Indicates x coordinate if type is point",
|
|
3317
|
-
"type": "number",
|
|
3318
|
-
"title": "x"
|
|
3319
|
-
},
|
|
3320
|
-
"y": {
|
|
3321
|
-
"description": "Indicates y coordinate if type is point",
|
|
3322
|
-
"type": "number",
|
|
3323
|
-
"title": "y"
|
|
3324
|
-
},
|
|
3325
|
-
"from": {
|
|
3326
|
-
"title": "Point",
|
|
3327
|
-
"type": "object",
|
|
3328
|
-
"properties": {
|
|
3329
|
-
"x": {
|
|
3330
|
-
"description": "Indicates x coordinate",
|
|
3331
|
-
"type": "number",
|
|
3332
|
-
"title": "x"
|
|
3333
|
-
},
|
|
3334
|
-
"y": {
|
|
3335
|
-
"description": "Indicates y coordinate",
|
|
3336
|
-
"type": "number",
|
|
3337
|
-
"title": "y"
|
|
3338
|
-
}
|
|
3339
|
-
},
|
|
3340
|
-
"required": [
|
|
3341
|
-
"x",
|
|
3342
|
-
"y"
|
|
3343
|
-
]
|
|
3344
|
-
},
|
|
3345
|
-
"to": {
|
|
3346
|
-
"title": "Point",
|
|
3347
|
-
"type": "object",
|
|
3348
|
-
"properties": {
|
|
3349
|
-
"x": {
|
|
3350
|
-
"description": "Indicates x coordinate",
|
|
3351
|
-
"type": "number",
|
|
3352
|
-
"title": "x"
|
|
3353
|
-
},
|
|
3354
|
-
"y": {
|
|
3355
|
-
"description": "Indicates y coordinate",
|
|
3356
|
-
"type": "number",
|
|
3357
|
-
"title": "y"
|
|
3358
|
-
}
|
|
3359
|
-
},
|
|
3360
|
-
"required": [
|
|
3361
|
-
"x",
|
|
3362
|
-
"y"
|
|
3363
|
-
]
|
|
3364
|
-
},
|
|
3365
|
-
"closed": {
|
|
3366
|
-
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
3367
|
-
"type": "boolean",
|
|
3368
|
-
"title": "closed"
|
|
3369
|
-
},
|
|
3370
|
-
"points": {
|
|
3371
|
-
"description": "Indicates all mark's points if type is polygon",
|
|
3372
|
-
"type": "array",
|
|
3373
|
-
"items": [
|
|
3374
|
-
{
|
|
3375
|
-
"title": "Point",
|
|
3376
|
-
"type": "object",
|
|
3377
|
-
"properties": {
|
|
3378
|
-
"x": {
|
|
3379
|
-
"description": "Indicates x coordinate",
|
|
3380
|
-
"type": "number",
|
|
3381
|
-
"title": "x"
|
|
3382
|
-
},
|
|
3383
|
-
"y": {
|
|
3384
|
-
"description": "Indicates y coordinate",
|
|
3385
|
-
"type": "number",
|
|
3386
|
-
"title": "y"
|
|
3387
|
-
}
|
|
3388
|
-
},
|
|
3389
|
-
"required": [
|
|
3390
|
-
"x",
|
|
3391
|
-
"y"
|
|
3392
|
-
]
|
|
3393
|
-
}
|
|
3394
|
-
],
|
|
3395
|
-
"minItems": 1,
|
|
3396
|
-
"additionalItems": {
|
|
3397
|
-
"anyOf": [
|
|
3398
|
-
{
|
|
3399
|
-
"title": "Point",
|
|
3400
|
-
"type": "object",
|
|
3401
|
-
"properties": {
|
|
3402
|
-
"x": {
|
|
3403
|
-
"description": "Indicates x coordinate",
|
|
3404
|
-
"type": "number",
|
|
3405
|
-
"title": "x"
|
|
3406
|
-
},
|
|
3407
|
-
"y": {
|
|
3408
|
-
"description": "Indicates y coordinate",
|
|
3409
|
-
"type": "number",
|
|
3410
|
-
"title": "y"
|
|
3411
|
-
}
|
|
3412
|
-
},
|
|
3413
|
-
"required": [
|
|
3414
|
-
"x",
|
|
3415
|
-
"y"
|
|
3416
|
-
]
|
|
3417
|
-
}
|
|
3418
|
-
]
|
|
3419
|
-
},
|
|
3420
|
-
"title": "points"
|
|
3421
|
-
},
|
|
3422
|
-
"root": {
|
|
3423
|
-
"title": "Point",
|
|
3424
|
-
"type": "object",
|
|
3425
|
-
"properties": {
|
|
3426
|
-
"x": {
|
|
3427
|
-
"description": "Indicates x coordinate",
|
|
3428
|
-
"type": "number",
|
|
3429
|
-
"title": "x"
|
|
3430
|
-
},
|
|
3431
|
-
"y": {
|
|
3432
|
-
"description": "Indicates y coordinate",
|
|
3433
|
-
"type": "number",
|
|
3434
|
-
"title": "y"
|
|
3435
|
-
}
|
|
3436
|
-
},
|
|
3437
|
-
"required": [
|
|
3438
|
-
"x",
|
|
3439
|
-
"y"
|
|
3440
|
-
]
|
|
3441
|
-
},
|
|
3442
|
-
"edge": {
|
|
3443
|
-
"title": "Point",
|
|
3444
|
-
"type": "object",
|
|
3445
|
-
"properties": {
|
|
3446
|
-
"x": {
|
|
3447
|
-
"description": "Indicates x coordinate",
|
|
3448
|
-
"type": "number",
|
|
3449
|
-
"title": "x"
|
|
3450
|
-
},
|
|
3451
|
-
"y": {
|
|
3452
|
-
"description": "Indicates y coordinate",
|
|
3453
|
-
"type": "number",
|
|
3454
|
-
"title": "y"
|
|
3455
|
-
}
|
|
3456
|
-
},
|
|
3457
|
-
"required": [
|
|
3458
|
-
"x",
|
|
3459
|
-
"y"
|
|
3460
|
-
]
|
|
3461
|
-
}
|
|
3462
|
-
},
|
|
3463
|
-
"required": [
|
|
3464
|
-
"building",
|
|
3465
|
-
"type"
|
|
3466
|
-
]
|
|
3467
|
-
},
|
|
3468
|
-
"Point": {
|
|
3469
|
-
"title": "Point",
|
|
3470
|
-
"type": "object",
|
|
3471
|
-
"properties": {
|
|
3472
|
-
"x": {
|
|
3473
|
-
"description": "Indicates x coordinate",
|
|
3474
|
-
"type": "number",
|
|
3475
|
-
"title": "x"
|
|
3476
|
-
},
|
|
3477
|
-
"y": {
|
|
3478
|
-
"description": "Indicates y coordinate",
|
|
3479
|
-
"type": "number",
|
|
3480
|
-
"title": "y"
|
|
3481
|
-
}
|
|
3482
|
-
},
|
|
3483
|
-
"required": [
|
|
3484
|
-
"x",
|
|
3485
|
-
"y"
|
|
3486
|
-
]
|
|
3487
|
-
},
|
|
3488
|
-
"Number": {
|
|
3489
|
-
"description": "An object that represents a number of any kind. All JavaScript numbers are 64-bit floating-point numbers.",
|
|
3490
|
-
"title": "Number",
|
|
3491
|
-
"type": "object"
|
|
3492
|
-
}
|
|
3493
|
-
},
|
|
3494
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
3495
|
-
}
|