@dmptool/types 2.0.0 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (144) hide show
  1. package/README.md +70 -1
  2. package/dist/answers/__tests__/defaults.spec.js +80 -21
  3. package/dist/answers/answer.d.ts +2 -0
  4. package/dist/answers/answer.js +4 -2
  5. package/dist/answers/dateAnswers.d.ts +4 -0
  6. package/dist/answers/graphQLAnswers.d.ts +8 -0
  7. package/dist/answers/index.d.ts +37 -0
  8. package/dist/answers/numberAnswers.d.ts +8 -0
  9. package/dist/answers/optionBasedAnswers.d.ts +10 -0
  10. package/dist/answers/tableAnswers.d.ts +94 -0
  11. package/dist/answers/textAnswers.d.ts +8 -0
  12. package/dist/dmp/__tests__/commonStandard.spec.d.ts +1 -0
  13. package/dist/dmp/__tests__/commonStandard.spec.js +210 -0
  14. package/dist/dmp/__tests__/extensions.spec.d.ts +1 -0
  15. package/dist/dmp/__tests__/extensions.spec.js +99 -0
  16. package/dist/dmp/extension.d.ts +1117 -0
  17. package/dist/dmp/extension.js +234 -0
  18. package/dist/dmp/index.d.ts +9 -0
  19. package/dist/dmp/index.js +69 -0
  20. package/dist/index.d.ts +1 -0
  21. package/dist/index.js +1 -0
  22. package/dist/questions/__tests__/defaults.spec.js +2 -2
  23. package/dist/questions/__tests__/optionBasedQuestions.spec.js +8 -4
  24. package/dist/questions/dateQuestions.d.ts +4 -0
  25. package/dist/questions/dateQuestions.js +2 -2
  26. package/dist/questions/index.d.ts +30 -22
  27. package/dist/questions/numberQuestions.d.ts +8 -0
  28. package/dist/questions/numberQuestions.js +4 -4
  29. package/dist/questions/optionBasedQuestions.d.ts +10 -0
  30. package/dist/questions/optionBasedQuestions.js +5 -5
  31. package/dist/questions/tableQuestions.d.ts +393 -25
  32. package/dist/questions/tableQuestions.js +3 -2
  33. package/dist/questions/textQuestions.d.ts +4 -0
  34. package/dist/questions/textQuestions.js +2 -2
  35. package/dist/schemas/affiliationSearchAnswer.schema.json +50 -0
  36. package/dist/schemas/affiliationSearchQuestion.schema.json +142 -0
  37. package/dist/schemas/anyAnswer.schema.json +1537 -0
  38. package/dist/schemas/anyQuestion.schema.json +4828 -0
  39. package/dist/schemas/anyTableColumnAnswer.schema.json +741 -0
  40. package/dist/schemas/anyTableColumnQuestion.schema.json +1560 -0
  41. package/dist/schemas/booleanAnswer.schema.json +36 -0
  42. package/dist/schemas/booleanQuestion.schema.json +55 -0
  43. package/dist/schemas/checkboxesAnswer.schema.json +41 -0
  44. package/dist/schemas/checkboxesQuestion.schema.json +80 -0
  45. package/dist/schemas/currencyAnswer.schema.json +36 -0
  46. package/dist/schemas/currencyQuestion.schema.json +73 -0
  47. package/dist/schemas/dateAnswer.schema.json +36 -0
  48. package/dist/schemas/datePickerAnswer.schema.json +37 -0
  49. package/dist/schemas/datePickerQuestion.schema.json +52 -0
  50. package/dist/schemas/dateQuestion.schema.json +66 -0
  51. package/dist/schemas/dateRangeAnswer.schema.json +50 -0
  52. package/dist/schemas/dateRangeQuestion.schema.json +124 -0
  53. package/dist/schemas/dmp.schema.json +2070 -0
  54. package/dist/schemas/dmpExtension.schema.json +1985 -0
  55. package/dist/schemas/emailAnswer.schema.json +36 -0
  56. package/dist/schemas/emailQuestion.schema.json +71 -0
  57. package/dist/schemas/filteredSearchAnswer.schema.json +40 -0
  58. package/dist/schemas/filteredSearchQuestion.schema.json +130 -0
  59. package/dist/schemas/licenseSearchAnswer.schema.json +54 -0
  60. package/dist/schemas/licenseSearchQuestion.schema.json +140 -0
  61. package/dist/schemas/metadataStandardSearchAnswer.schema.json +54 -0
  62. package/dist/schemas/metadataStandardSearchQuestion.schema.json +141 -0
  63. package/dist/schemas/multiselectBoxAnswer.schema.json +41 -0
  64. package/dist/schemas/multiselectBoxQuestion.schema.json +87 -0
  65. package/dist/schemas/numberAnswer.schema.json +36 -0
  66. package/dist/schemas/numberQuestion.schema.json +68 -0
  67. package/dist/schemas/numberRangeAnswer.schema.json +50 -0
  68. package/dist/schemas/numberRangeQuestion.schema.json +128 -0
  69. package/dist/schemas/numberWithContextAnswer.schema.json +50 -0
  70. package/dist/schemas/numberWithContextQuestion.schema.json +98 -0
  71. package/dist/schemas/radioButtonsAnswer.schema.json +36 -0
  72. package/dist/schemas/radioButtonsQuestion.schema.json +80 -0
  73. package/dist/schemas/repositorySearchAnswer.schema.json +54 -0
  74. package/dist/schemas/repositorySearchQuestion.schema.json +140 -0
  75. package/dist/schemas/researchOutputTableAnswer.schema.json +20065 -0
  76. package/dist/schemas/researchOutputTableQuestion.schema.json +140 -0
  77. package/dist/schemas/selectBoxAnswer.schema.json +36 -0
  78. package/dist/schemas/selectBoxQuestion.schema.json +87 -0
  79. package/dist/schemas/tableAnswer.schema.json +797 -0
  80. package/dist/schemas/tableQuestion.schema.json +1662 -0
  81. package/dist/schemas/textAnswer.schema.json +36 -0
  82. package/dist/schemas/textAreaAnswer.schema.json +36 -0
  83. package/dist/schemas/textAreaQuestion.schema.json +78 -0
  84. package/dist/schemas/textQuestion.schema.json +63 -0
  85. package/dist/schemas/typeaheadSearchAnswer.schema.json +37 -0
  86. package/dist/schemas/typeaheadSearchQuestion.schema.json +120 -0
  87. package/dist/schemas/urlAnswer.schema.json +36 -0
  88. package/dist/schemas/urlQuestion.schema.json +66 -0
  89. package/package.json +12 -4
  90. package/schemas/.placeholder +0 -0
  91. package/schemas/affiliationSearchAnswer.schema.json +50 -0
  92. package/schemas/affiliationSearchQuestion.schema.json +142 -0
  93. package/schemas/anyAnswer.schema.json +1537 -0
  94. package/schemas/anyQuestion.schema.json +4828 -0
  95. package/schemas/anyTableColumnAnswer.schema.json +741 -0
  96. package/schemas/anyTableColumnQuestion.schema.json +1560 -0
  97. package/schemas/booleanAnswer.schema.json +36 -0
  98. package/schemas/booleanQuestion.schema.json +55 -0
  99. package/schemas/checkboxesAnswer.schema.json +41 -0
  100. package/schemas/checkboxesQuestion.schema.json +80 -0
  101. package/schemas/currencyAnswer.schema.json +36 -0
  102. package/schemas/currencyQuestion.schema.json +73 -0
  103. package/schemas/dateAnswer.schema.json +36 -0
  104. package/schemas/datePickerAnswer.schema.json +37 -0
  105. package/schemas/datePickerQuestion.schema.json +52 -0
  106. package/schemas/dateQuestion.schema.json +66 -0
  107. package/schemas/dateRangeAnswer.schema.json +50 -0
  108. package/schemas/dateRangeQuestion.schema.json +124 -0
  109. package/schemas/dmp.schema.json +2070 -0
  110. package/schemas/dmpExtension.schema.json +1985 -0
  111. package/schemas/emailAnswer.schema.json +36 -0
  112. package/schemas/emailQuestion.schema.json +71 -0
  113. package/schemas/filteredSearchAnswer.schema.json +40 -0
  114. package/schemas/filteredSearchQuestion.schema.json +130 -0
  115. package/schemas/licenseSearchAnswer.schema.json +54 -0
  116. package/schemas/licenseSearchQuestion.schema.json +140 -0
  117. package/schemas/metadataStandardSearchAnswer.schema.json +54 -0
  118. package/schemas/metadataStandardSearchQuestion.schema.json +141 -0
  119. package/schemas/multiselectBoxAnswer.schema.json +41 -0
  120. package/schemas/multiselectBoxQuestion.schema.json +87 -0
  121. package/schemas/numberAnswer.schema.json +36 -0
  122. package/schemas/numberQuestion.schema.json +68 -0
  123. package/schemas/numberRangeAnswer.schema.json +50 -0
  124. package/schemas/numberRangeQuestion.schema.json +128 -0
  125. package/schemas/numberWithContextAnswer.schema.json +50 -0
  126. package/schemas/numberWithContextQuestion.schema.json +98 -0
  127. package/schemas/radioButtonsAnswer.schema.json +36 -0
  128. package/schemas/radioButtonsQuestion.schema.json +80 -0
  129. package/schemas/repositorySearchAnswer.schema.json +54 -0
  130. package/schemas/repositorySearchQuestion.schema.json +140 -0
  131. package/schemas/researchOutputTableAnswer.schema.json +20065 -0
  132. package/schemas/researchOutputTableQuestion.schema.json +140 -0
  133. package/schemas/selectBoxAnswer.schema.json +36 -0
  134. package/schemas/selectBoxQuestion.schema.json +87 -0
  135. package/schemas/tableAnswer.schema.json +797 -0
  136. package/schemas/tableQuestion.schema.json +1662 -0
  137. package/schemas/textAnswer.schema.json +36 -0
  138. package/schemas/textAreaAnswer.schema.json +36 -0
  139. package/schemas/textAreaQuestion.schema.json +78 -0
  140. package/schemas/textQuestion.schema.json +63 -0
  141. package/schemas/typeaheadSearchAnswer.schema.json +37 -0
  142. package/schemas/typeaheadSearchQuestion.schema.json +120 -0
  143. package/schemas/urlAnswer.schema.json +36 -0
  144. package/schemas/urlQuestion.schema.json +66 -0
@@ -0,0 +1,1662 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "object",
4
+ "properties": {
5
+ "type": {
6
+ "type": "string",
7
+ "const": "table"
8
+ },
9
+ "attributes": {
10
+ "type": "object",
11
+ "properties": {
12
+ "label": {
13
+ "type": "string"
14
+ },
15
+ "help": {
16
+ "type": "string"
17
+ },
18
+ "labelTranslationKey": {
19
+ "type": "string"
20
+ },
21
+ "canAddRows": {
22
+ "default": true,
23
+ "type": "boolean"
24
+ },
25
+ "canRemoveRows": {
26
+ "default": true,
27
+ "type": "boolean"
28
+ },
29
+ "initialRows": {
30
+ "default": 1,
31
+ "type": "number"
32
+ },
33
+ "maxRows": {
34
+ "type": "number"
35
+ },
36
+ "minRows": {
37
+ "type": "number"
38
+ }
39
+ },
40
+ "required": [
41
+ "canAddRows",
42
+ "canRemoveRows",
43
+ "initialRows"
44
+ ],
45
+ "additionalProperties": false
46
+ },
47
+ "meta": {
48
+ "type": "object",
49
+ "properties": {
50
+ "schemaVersion": {
51
+ "default": "1.0",
52
+ "type": "string"
53
+ },
54
+ "title": {
55
+ "type": "string"
56
+ },
57
+ "usageDescription": {
58
+ "type": "string"
59
+ }
60
+ },
61
+ "required": [
62
+ "schemaVersion"
63
+ ],
64
+ "additionalProperties": false
65
+ },
66
+ "columns": {
67
+ "type": "array",
68
+ "items": {
69
+ "type": "object",
70
+ "properties": {
71
+ "heading": {
72
+ "default": "Column A",
73
+ "type": "string"
74
+ },
75
+ "help": {
76
+ "type": "string"
77
+ },
78
+ "required": {
79
+ "default": false,
80
+ "type": "boolean"
81
+ },
82
+ "enabled": {
83
+ "default": true,
84
+ "type": "boolean"
85
+ },
86
+ "content": {
87
+ "oneOf": [
88
+ {
89
+ "type": "object",
90
+ "properties": {
91
+ "type": {
92
+ "type": "string",
93
+ "const": "affiliationSearch"
94
+ },
95
+ "attributes": {
96
+ "type": "object",
97
+ "properties": {
98
+ "label": {
99
+ "type": "string"
100
+ },
101
+ "help": {
102
+ "type": "string"
103
+ },
104
+ "labelTranslationKey": {
105
+ "type": "string"
106
+ }
107
+ },
108
+ "additionalProperties": false
109
+ },
110
+ "meta": {
111
+ "type": "object",
112
+ "properties": {
113
+ "schemaVersion": {
114
+ "default": "1.0",
115
+ "type": "string"
116
+ },
117
+ "title": {
118
+ "type": "string"
119
+ },
120
+ "usageDescription": {
121
+ "type": "string"
122
+ }
123
+ },
124
+ "required": [
125
+ "schemaVersion"
126
+ ],
127
+ "additionalProperties": false
128
+ },
129
+ "graphQL": {
130
+ "type": "object",
131
+ "properties": {
132
+ "displayFields": {
133
+ "type": "array",
134
+ "items": {
135
+ "type": "object",
136
+ "properties": {
137
+ "propertyName": {
138
+ "default": "id",
139
+ "type": "string"
140
+ },
141
+ "label": {
142
+ "default": "Id",
143
+ "type": "string"
144
+ },
145
+ "labelTranslationKey": {
146
+ "type": "string"
147
+ }
148
+ },
149
+ "required": [
150
+ "propertyName",
151
+ "label"
152
+ ],
153
+ "additionalProperties": false
154
+ }
155
+ },
156
+ "localQueryId": {
157
+ "type": "string"
158
+ },
159
+ "query": {
160
+ "type": "string",
161
+ "const": "query Affiliations($name: String!){ affiliations(name: $name) { totalCount nextCursor items { id displayName uri } } }"
162
+ },
163
+ "responseField": {
164
+ "default": "affiliations.items",
165
+ "type": "string",
166
+ "const": "affiliations.items"
167
+ },
168
+ "variables": {
169
+ "type": "array",
170
+ "items": {
171
+ "type": "object",
172
+ "properties": {
173
+ "minLength": {
174
+ "type": "number"
175
+ },
176
+ "label": {
177
+ "type": "string"
178
+ },
179
+ "labelTranslationKey": {
180
+ "type": "string"
181
+ },
182
+ "name": {
183
+ "default": "search",
184
+ "type": "string"
185
+ },
186
+ "type": {
187
+ "default": "string",
188
+ "type": "string"
189
+ },
190
+ "defaultValue": {
191
+ "type": "string"
192
+ }
193
+ },
194
+ "required": [
195
+ "name",
196
+ "type"
197
+ ],
198
+ "additionalProperties": false
199
+ }
200
+ },
201
+ "queryId": {
202
+ "default": "useAffiliationsQuery",
203
+ "type": "string"
204
+ },
205
+ "answerField": {
206
+ "default": "uri",
207
+ "type": "string",
208
+ "const": "uri"
209
+ }
210
+ },
211
+ "required": [
212
+ "displayFields",
213
+ "query",
214
+ "responseField",
215
+ "variables",
216
+ "answerField"
217
+ ],
218
+ "additionalProperties": false
219
+ }
220
+ },
221
+ "required": [
222
+ "type",
223
+ "attributes",
224
+ "meta",
225
+ "graphQL"
226
+ ],
227
+ "additionalProperties": false
228
+ },
229
+ {
230
+ "type": "object",
231
+ "properties": {
232
+ "type": {
233
+ "type": "string",
234
+ "const": "boolean"
235
+ },
236
+ "attributes": {
237
+ "type": "object",
238
+ "properties": {
239
+ "label": {
240
+ "type": "string"
241
+ },
242
+ "value": {
243
+ "default": false,
244
+ "type": "boolean"
245
+ }
246
+ },
247
+ "required": [
248
+ "label",
249
+ "value"
250
+ ],
251
+ "additionalProperties": false
252
+ },
253
+ "meta": {
254
+ "type": "object",
255
+ "properties": {
256
+ "schemaVersion": {
257
+ "default": "1.0",
258
+ "type": "string"
259
+ },
260
+ "title": {
261
+ "type": "string"
262
+ },
263
+ "usageDescription": {
264
+ "type": "string"
265
+ }
266
+ },
267
+ "required": [
268
+ "schemaVersion"
269
+ ],
270
+ "additionalProperties": false
271
+ },
272
+ "showCommentField": {
273
+ "type": "boolean"
274
+ }
275
+ },
276
+ "required": [
277
+ "type",
278
+ "attributes",
279
+ "meta"
280
+ ],
281
+ "additionalProperties": false
282
+ },
283
+ {
284
+ "type": "object",
285
+ "properties": {
286
+ "type": {
287
+ "type": "string",
288
+ "const": "checkBoxes"
289
+ },
290
+ "attributes": {
291
+ "type": "object",
292
+ "properties": {
293
+ "label": {
294
+ "type": "string"
295
+ },
296
+ "help": {
297
+ "type": "string"
298
+ },
299
+ "labelTranslationKey": {
300
+ "type": "string"
301
+ }
302
+ },
303
+ "additionalProperties": false
304
+ },
305
+ "meta": {
306
+ "type": "object",
307
+ "properties": {
308
+ "schemaVersion": {
309
+ "default": "1.0",
310
+ "type": "string"
311
+ },
312
+ "title": {
313
+ "type": "string"
314
+ },
315
+ "usageDescription": {
316
+ "type": "string"
317
+ }
318
+ },
319
+ "required": [
320
+ "schemaVersion"
321
+ ],
322
+ "additionalProperties": false
323
+ },
324
+ "options": {
325
+ "type": "array",
326
+ "items": {
327
+ "type": "object",
328
+ "properties": {
329
+ "label": {
330
+ "default": "Option A",
331
+ "type": "string"
332
+ },
333
+ "value": {
334
+ "default": "a",
335
+ "type": "string"
336
+ },
337
+ "checked": {
338
+ "default": false,
339
+ "type": "boolean"
340
+ }
341
+ },
342
+ "required": [
343
+ "label",
344
+ "value",
345
+ "checked"
346
+ ],
347
+ "additionalProperties": false
348
+ }
349
+ },
350
+ "showCommentField": {
351
+ "type": "boolean"
352
+ }
353
+ },
354
+ "required": [
355
+ "type",
356
+ "attributes",
357
+ "meta",
358
+ "options"
359
+ ],
360
+ "additionalProperties": false
361
+ },
362
+ {
363
+ "type": "object",
364
+ "properties": {
365
+ "type": {
366
+ "type": "string",
367
+ "const": "currency"
368
+ },
369
+ "attributes": {
370
+ "type": "object",
371
+ "properties": {
372
+ "label": {
373
+ "type": "string"
374
+ },
375
+ "help": {
376
+ "type": "string"
377
+ },
378
+ "labelTranslationKey": {
379
+ "type": "string"
380
+ },
381
+ "max": {
382
+ "type": "number"
383
+ },
384
+ "min": {
385
+ "default": 0,
386
+ "type": "number"
387
+ },
388
+ "step": {
389
+ "default": 1,
390
+ "type": "number"
391
+ },
392
+ "denomination": {
393
+ "default": "USD",
394
+ "type": "string"
395
+ }
396
+ },
397
+ "required": [
398
+ "min",
399
+ "step",
400
+ "denomination"
401
+ ],
402
+ "additionalProperties": false
403
+ },
404
+ "meta": {
405
+ "type": "object",
406
+ "properties": {
407
+ "schemaVersion": {
408
+ "default": "1.0",
409
+ "type": "string"
410
+ },
411
+ "title": {
412
+ "type": "string"
413
+ },
414
+ "usageDescription": {
415
+ "type": "string"
416
+ }
417
+ },
418
+ "required": [
419
+ "schemaVersion"
420
+ ],
421
+ "additionalProperties": false
422
+ },
423
+ "showCommentField": {
424
+ "type": "boolean"
425
+ }
426
+ },
427
+ "required": [
428
+ "type",
429
+ "attributes",
430
+ "meta"
431
+ ],
432
+ "additionalProperties": false
433
+ },
434
+ {
435
+ "type": "object",
436
+ "properties": {
437
+ "type": {
438
+ "type": "string",
439
+ "const": "date"
440
+ },
441
+ "attributes": {
442
+ "type": "object",
443
+ "properties": {
444
+ "label": {
445
+ "type": "string"
446
+ },
447
+ "help": {
448
+ "type": "string"
449
+ },
450
+ "labelTranslationKey": {
451
+ "type": "string"
452
+ },
453
+ "max": {
454
+ "type": "string"
455
+ },
456
+ "min": {
457
+ "type": "string"
458
+ },
459
+ "step": {
460
+ "default": 1,
461
+ "type": "number"
462
+ }
463
+ },
464
+ "required": [
465
+ "step"
466
+ ],
467
+ "additionalProperties": false
468
+ },
469
+ "meta": {
470
+ "type": "object",
471
+ "properties": {
472
+ "schemaVersion": {
473
+ "default": "1.0",
474
+ "type": "string"
475
+ },
476
+ "title": {
477
+ "type": "string"
478
+ },
479
+ "usageDescription": {
480
+ "type": "string"
481
+ }
482
+ },
483
+ "required": [
484
+ "schemaVersion"
485
+ ],
486
+ "additionalProperties": false
487
+ },
488
+ "showCommentField": {
489
+ "type": "boolean"
490
+ }
491
+ },
492
+ "required": [
493
+ "type",
494
+ "attributes",
495
+ "meta"
496
+ ],
497
+ "additionalProperties": false
498
+ },
499
+ {
500
+ "type": "object",
501
+ "properties": {
502
+ "type": {
503
+ "type": "string",
504
+ "const": "dateRange"
505
+ },
506
+ "attributes": {
507
+ "type": "object",
508
+ "properties": {
509
+ "label": {
510
+ "type": "string"
511
+ },
512
+ "help": {
513
+ "type": "string"
514
+ },
515
+ "labelTranslationKey": {
516
+ "type": "string"
517
+ }
518
+ },
519
+ "additionalProperties": false
520
+ },
521
+ "meta": {
522
+ "type": "object",
523
+ "properties": {
524
+ "schemaVersion": {
525
+ "default": "1.0",
526
+ "type": "string"
527
+ },
528
+ "title": {
529
+ "type": "string"
530
+ },
531
+ "usageDescription": {
532
+ "type": "string"
533
+ }
534
+ },
535
+ "required": [
536
+ "schemaVersion"
537
+ ],
538
+ "additionalProperties": false
539
+ },
540
+ "columns": {
541
+ "type": "object",
542
+ "properties": {
543
+ "start": {
544
+ "type": "object",
545
+ "properties": {
546
+ "label": {
547
+ "default": "From",
548
+ "type": "string"
549
+ },
550
+ "help": {
551
+ "type": "string"
552
+ },
553
+ "labelTranslationKey": {
554
+ "type": "string"
555
+ },
556
+ "max": {
557
+ "type": "string"
558
+ },
559
+ "min": {
560
+ "type": "string"
561
+ },
562
+ "step": {
563
+ "default": 1,
564
+ "type": "number"
565
+ }
566
+ },
567
+ "required": [
568
+ "label",
569
+ "step"
570
+ ],
571
+ "additionalProperties": false
572
+ },
573
+ "end": {
574
+ "type": "object",
575
+ "properties": {
576
+ "label": {
577
+ "default": "To",
578
+ "type": "string"
579
+ },
580
+ "help": {
581
+ "type": "string"
582
+ },
583
+ "labelTranslationKey": {
584
+ "type": "string"
585
+ },
586
+ "max": {
587
+ "type": "string"
588
+ },
589
+ "min": {
590
+ "type": "string"
591
+ },
592
+ "step": {
593
+ "default": 1,
594
+ "type": "number"
595
+ }
596
+ },
597
+ "required": [
598
+ "label",
599
+ "step"
600
+ ],
601
+ "additionalProperties": false
602
+ }
603
+ },
604
+ "required": [
605
+ "start",
606
+ "end"
607
+ ],
608
+ "additionalProperties": false
609
+ },
610
+ "showCommentField": {
611
+ "type": "boolean"
612
+ }
613
+ },
614
+ "required": [
615
+ "type",
616
+ "attributes",
617
+ "meta",
618
+ "columns"
619
+ ],
620
+ "additionalProperties": false
621
+ },
622
+ {
623
+ "type": "object",
624
+ "properties": {
625
+ "type": {
626
+ "type": "string",
627
+ "const": "email"
628
+ },
629
+ "attributes": {
630
+ "type": "object",
631
+ "properties": {
632
+ "label": {
633
+ "type": "string"
634
+ },
635
+ "help": {
636
+ "type": "string"
637
+ },
638
+ "labelTranslationKey": {
639
+ "type": "string"
640
+ },
641
+ "maxLength": {
642
+ "default": 255,
643
+ "type": "number"
644
+ },
645
+ "minLength": {
646
+ "type": "number"
647
+ },
648
+ "pattern": {
649
+ "type": "string"
650
+ },
651
+ "multiple": {
652
+ "default": false,
653
+ "type": "boolean"
654
+ }
655
+ },
656
+ "required": [
657
+ "maxLength",
658
+ "multiple"
659
+ ],
660
+ "additionalProperties": false
661
+ },
662
+ "meta": {
663
+ "type": "object",
664
+ "properties": {
665
+ "schemaVersion": {
666
+ "default": "1.0",
667
+ "type": "string"
668
+ },
669
+ "title": {
670
+ "type": "string"
671
+ },
672
+ "usageDescription": {
673
+ "type": "string"
674
+ }
675
+ },
676
+ "required": [
677
+ "schemaVersion"
678
+ ],
679
+ "additionalProperties": false
680
+ },
681
+ "showCommentField": {
682
+ "type": "boolean"
683
+ }
684
+ },
685
+ "required": [
686
+ "type",
687
+ "attributes",
688
+ "meta"
689
+ ],
690
+ "additionalProperties": false
691
+ },
692
+ {
693
+ "type": "object",
694
+ "properties": {
695
+ "type": {
696
+ "type": "string",
697
+ "const": "licenseSearch"
698
+ },
699
+ "attributes": {
700
+ "type": "object",
701
+ "properties": {
702
+ "label": {
703
+ "type": "string"
704
+ },
705
+ "help": {
706
+ "type": "string"
707
+ },
708
+ "labelTranslationKey": {
709
+ "type": "string"
710
+ }
711
+ },
712
+ "additionalProperties": false
713
+ },
714
+ "meta": {
715
+ "type": "object",
716
+ "properties": {
717
+ "schemaVersion": {
718
+ "default": "1.0",
719
+ "type": "string"
720
+ },
721
+ "title": {
722
+ "type": "string"
723
+ },
724
+ "usageDescription": {
725
+ "type": "string"
726
+ }
727
+ },
728
+ "required": [
729
+ "schemaVersion"
730
+ ],
731
+ "additionalProperties": false
732
+ },
733
+ "graphQL": {
734
+ "type": "object",
735
+ "properties": {
736
+ "displayFields": {
737
+ "type": "array",
738
+ "items": {
739
+ "type": "object",
740
+ "properties": {
741
+ "propertyName": {
742
+ "default": "id",
743
+ "type": "string"
744
+ },
745
+ "label": {
746
+ "default": "Id",
747
+ "type": "string"
748
+ },
749
+ "labelTranslationKey": {
750
+ "type": "string"
751
+ }
752
+ },
753
+ "required": [
754
+ "propertyName",
755
+ "label"
756
+ ],
757
+ "additionalProperties": false
758
+ }
759
+ },
760
+ "localQueryId": {
761
+ "type": "string"
762
+ },
763
+ "query": {
764
+ "type": "string",
765
+ "const": "query Licenses($term: String, $paginationOptions: PaginationOptions){ license(term: $term, paginationOptions: $paginationOptions) { totalCount currentOffset limit hasNextPage hasPreviousPage availableSortFields items { id name uri description } } }"
766
+ },
767
+ "responseField": {
768
+ "type": "string",
769
+ "const": "licenses.items"
770
+ },
771
+ "variables": {
772
+ "type": "array",
773
+ "items": {
774
+ "type": "object",
775
+ "properties": {
776
+ "minLength": {
777
+ "type": "number"
778
+ },
779
+ "label": {
780
+ "type": "string"
781
+ },
782
+ "labelTranslationKey": {
783
+ "type": "string"
784
+ },
785
+ "name": {
786
+ "default": "search",
787
+ "type": "string"
788
+ },
789
+ "type": {
790
+ "default": "string",
791
+ "type": "string"
792
+ },
793
+ "defaultValue": {
794
+ "type": "string"
795
+ }
796
+ },
797
+ "required": [
798
+ "name",
799
+ "type"
800
+ ],
801
+ "additionalProperties": false
802
+ }
803
+ },
804
+ "queryId": {
805
+ "default": "useLicensesQuery",
806
+ "type": "string"
807
+ },
808
+ "answerField": {
809
+ "type": "string",
810
+ "const": "uri"
811
+ }
812
+ },
813
+ "required": [
814
+ "displayFields",
815
+ "query",
816
+ "responseField",
817
+ "variables",
818
+ "answerField"
819
+ ],
820
+ "additionalProperties": false
821
+ }
822
+ },
823
+ "required": [
824
+ "type",
825
+ "attributes",
826
+ "meta",
827
+ "graphQL"
828
+ ],
829
+ "additionalProperties": false
830
+ },
831
+ {
832
+ "type": "object",
833
+ "properties": {
834
+ "type": {
835
+ "type": "string",
836
+ "const": "metadataStandardSearch"
837
+ },
838
+ "attributes": {
839
+ "type": "object",
840
+ "properties": {
841
+ "label": {
842
+ "type": "string"
843
+ },
844
+ "help": {
845
+ "type": "string"
846
+ },
847
+ "labelTranslationKey": {
848
+ "type": "string"
849
+ }
850
+ },
851
+ "additionalProperties": false
852
+ },
853
+ "meta": {
854
+ "type": "object",
855
+ "properties": {
856
+ "schemaVersion": {
857
+ "default": "1.0",
858
+ "type": "string"
859
+ },
860
+ "title": {
861
+ "type": "string"
862
+ },
863
+ "usageDescription": {
864
+ "type": "string"
865
+ }
866
+ },
867
+ "required": [
868
+ "schemaVersion"
869
+ ],
870
+ "additionalProperties": false
871
+ },
872
+ "graphQL": {
873
+ "type": "object",
874
+ "properties": {
875
+ "displayFields": {
876
+ "type": "array",
877
+ "items": {
878
+ "type": "object",
879
+ "properties": {
880
+ "propertyName": {
881
+ "default": "id",
882
+ "type": "string"
883
+ },
884
+ "label": {
885
+ "default": "Id",
886
+ "type": "string"
887
+ },
888
+ "labelTranslationKey": {
889
+ "type": "string"
890
+ }
891
+ },
892
+ "required": [
893
+ "propertyName",
894
+ "label"
895
+ ],
896
+ "additionalProperties": false
897
+ }
898
+ },
899
+ "localQueryId": {
900
+ "type": "string"
901
+ },
902
+ "query": {
903
+ "type": "string",
904
+ "const": "query MetadataStandards($term: String, $keywords: [String!], $paginationOptions: PaginationOptions){ metadataStandards(term: $term, keywords: $keywords, paginationOptions: $paginationOptions) { totalCount currentOffset limit hasNextPage hasPreviousPage availableSortFields items { id name uri description keywords } } }"
905
+ },
906
+ "responseField": {
907
+ "type": "string",
908
+ "const": "metadataStandards.items"
909
+ },
910
+ "variables": {
911
+ "type": "array",
912
+ "items": {
913
+ "type": "object",
914
+ "properties": {
915
+ "minLength": {
916
+ "type": "number"
917
+ },
918
+ "label": {
919
+ "type": "string"
920
+ },
921
+ "labelTranslationKey": {
922
+ "type": "string"
923
+ },
924
+ "name": {
925
+ "default": "search",
926
+ "type": "string"
927
+ },
928
+ "type": {
929
+ "default": "string",
930
+ "type": "string"
931
+ },
932
+ "defaultValue": {
933
+ "type": "string"
934
+ }
935
+ },
936
+ "required": [
937
+ "name",
938
+ "type"
939
+ ],
940
+ "additionalProperties": false
941
+ }
942
+ },
943
+ "queryId": {
944
+ "default": "useMetadataStandardsQuery",
945
+ "type": "string"
946
+ },
947
+ "answerField": {
948
+ "default": "uri",
949
+ "type": "string",
950
+ "const": "uri"
951
+ }
952
+ },
953
+ "required": [
954
+ "displayFields",
955
+ "query",
956
+ "responseField",
957
+ "variables",
958
+ "answerField"
959
+ ],
960
+ "additionalProperties": false
961
+ }
962
+ },
963
+ "required": [
964
+ "type",
965
+ "attributes",
966
+ "meta",
967
+ "graphQL"
968
+ ],
969
+ "additionalProperties": false
970
+ },
971
+ {
972
+ "type": "object",
973
+ "properties": {
974
+ "type": {
975
+ "type": "string",
976
+ "const": "number"
977
+ },
978
+ "attributes": {
979
+ "type": "object",
980
+ "properties": {
981
+ "label": {
982
+ "type": "string"
983
+ },
984
+ "help": {
985
+ "type": "string"
986
+ },
987
+ "labelTranslationKey": {
988
+ "type": "string"
989
+ },
990
+ "max": {
991
+ "type": "number"
992
+ },
993
+ "min": {
994
+ "default": 0,
995
+ "type": "number"
996
+ },
997
+ "step": {
998
+ "default": 1,
999
+ "type": "number"
1000
+ }
1001
+ },
1002
+ "required": [
1003
+ "min",
1004
+ "step"
1005
+ ],
1006
+ "additionalProperties": false
1007
+ },
1008
+ "meta": {
1009
+ "type": "object",
1010
+ "properties": {
1011
+ "schemaVersion": {
1012
+ "default": "1.0",
1013
+ "type": "string"
1014
+ },
1015
+ "title": {
1016
+ "type": "string"
1017
+ },
1018
+ "usageDescription": {
1019
+ "type": "string"
1020
+ }
1021
+ },
1022
+ "required": [
1023
+ "schemaVersion"
1024
+ ],
1025
+ "additionalProperties": false
1026
+ },
1027
+ "showCommentField": {
1028
+ "type": "boolean"
1029
+ }
1030
+ },
1031
+ "required": [
1032
+ "type",
1033
+ "attributes",
1034
+ "meta"
1035
+ ],
1036
+ "additionalProperties": false
1037
+ },
1038
+ {
1039
+ "type": "object",
1040
+ "properties": {
1041
+ "type": {
1042
+ "type": "string",
1043
+ "const": "numberWithContext"
1044
+ },
1045
+ "attributes": {
1046
+ "type": "object",
1047
+ "properties": {
1048
+ "label": {
1049
+ "type": "string"
1050
+ },
1051
+ "help": {
1052
+ "type": "string"
1053
+ },
1054
+ "labelTranslationKey": {
1055
+ "type": "string"
1056
+ },
1057
+ "max": {
1058
+ "type": "number"
1059
+ },
1060
+ "min": {
1061
+ "default": 0,
1062
+ "type": "number"
1063
+ },
1064
+ "step": {
1065
+ "default": 1,
1066
+ "type": "number"
1067
+ },
1068
+ "context": {
1069
+ "type": "array",
1070
+ "items": {
1071
+ "type": "object",
1072
+ "properties": {
1073
+ "label": {
1074
+ "default": "",
1075
+ "type": "string"
1076
+ },
1077
+ "labelTranslationKey": {
1078
+ "type": "string"
1079
+ },
1080
+ "value": {
1081
+ "default": "",
1082
+ "type": "string"
1083
+ },
1084
+ "selected": {
1085
+ "default": false,
1086
+ "type": "boolean"
1087
+ }
1088
+ },
1089
+ "required": [
1090
+ "label",
1091
+ "value",
1092
+ "selected"
1093
+ ],
1094
+ "additionalProperties": false
1095
+ }
1096
+ }
1097
+ },
1098
+ "required": [
1099
+ "min",
1100
+ "step",
1101
+ "context"
1102
+ ],
1103
+ "additionalProperties": false
1104
+ },
1105
+ "meta": {
1106
+ "type": "object",
1107
+ "properties": {
1108
+ "schemaVersion": {
1109
+ "default": "1.0",
1110
+ "type": "string"
1111
+ },
1112
+ "title": {
1113
+ "type": "string"
1114
+ },
1115
+ "usageDescription": {
1116
+ "type": "string"
1117
+ }
1118
+ },
1119
+ "required": [
1120
+ "schemaVersion"
1121
+ ],
1122
+ "additionalProperties": false
1123
+ },
1124
+ "showCommentField": {
1125
+ "type": "boolean"
1126
+ }
1127
+ },
1128
+ "required": [
1129
+ "type",
1130
+ "attributes",
1131
+ "meta"
1132
+ ],
1133
+ "additionalProperties": false
1134
+ },
1135
+ {
1136
+ "type": "object",
1137
+ "properties": {
1138
+ "type": {
1139
+ "type": "string",
1140
+ "const": "radioButtons"
1141
+ },
1142
+ "attributes": {
1143
+ "type": "object",
1144
+ "properties": {
1145
+ "label": {
1146
+ "type": "string"
1147
+ },
1148
+ "help": {
1149
+ "type": "string"
1150
+ },
1151
+ "labelTranslationKey": {
1152
+ "type": "string"
1153
+ }
1154
+ },
1155
+ "additionalProperties": false
1156
+ },
1157
+ "meta": {
1158
+ "type": "object",
1159
+ "properties": {
1160
+ "schemaVersion": {
1161
+ "default": "1.0",
1162
+ "type": "string"
1163
+ },
1164
+ "title": {
1165
+ "type": "string"
1166
+ },
1167
+ "usageDescription": {
1168
+ "type": "string"
1169
+ }
1170
+ },
1171
+ "required": [
1172
+ "schemaVersion"
1173
+ ],
1174
+ "additionalProperties": false
1175
+ },
1176
+ "options": {
1177
+ "type": "array",
1178
+ "items": {
1179
+ "type": "object",
1180
+ "properties": {
1181
+ "label": {
1182
+ "default": "Option A",
1183
+ "type": "string"
1184
+ },
1185
+ "value": {
1186
+ "default": "a",
1187
+ "type": "string"
1188
+ },
1189
+ "selected": {
1190
+ "default": false,
1191
+ "type": "boolean"
1192
+ }
1193
+ },
1194
+ "required": [
1195
+ "label",
1196
+ "value",
1197
+ "selected"
1198
+ ],
1199
+ "additionalProperties": false
1200
+ }
1201
+ },
1202
+ "showCommentField": {
1203
+ "type": "boolean"
1204
+ }
1205
+ },
1206
+ "required": [
1207
+ "type",
1208
+ "attributes",
1209
+ "meta",
1210
+ "options"
1211
+ ],
1212
+ "additionalProperties": false
1213
+ },
1214
+ {
1215
+ "type": "object",
1216
+ "properties": {
1217
+ "type": {
1218
+ "type": "string",
1219
+ "const": "repositorySearch"
1220
+ },
1221
+ "attributes": {
1222
+ "type": "object",
1223
+ "properties": {
1224
+ "label": {
1225
+ "type": "string"
1226
+ },
1227
+ "help": {
1228
+ "type": "string"
1229
+ },
1230
+ "labelTranslationKey": {
1231
+ "type": "string"
1232
+ }
1233
+ },
1234
+ "additionalProperties": false
1235
+ },
1236
+ "meta": {
1237
+ "type": "object",
1238
+ "properties": {
1239
+ "schemaVersion": {
1240
+ "default": "1.0",
1241
+ "type": "string"
1242
+ },
1243
+ "title": {
1244
+ "type": "string"
1245
+ },
1246
+ "usageDescription": {
1247
+ "type": "string"
1248
+ }
1249
+ },
1250
+ "required": [
1251
+ "schemaVersion"
1252
+ ],
1253
+ "additionalProperties": false
1254
+ },
1255
+ "graphQL": {
1256
+ "type": "object",
1257
+ "properties": {
1258
+ "displayFields": {
1259
+ "type": "array",
1260
+ "items": {
1261
+ "type": "object",
1262
+ "properties": {
1263
+ "propertyName": {
1264
+ "default": "id",
1265
+ "type": "string"
1266
+ },
1267
+ "label": {
1268
+ "default": "Id",
1269
+ "type": "string"
1270
+ },
1271
+ "labelTranslationKey": {
1272
+ "type": "string"
1273
+ }
1274
+ },
1275
+ "required": [
1276
+ "propertyName",
1277
+ "label"
1278
+ ],
1279
+ "additionalProperties": false
1280
+ }
1281
+ },
1282
+ "localQueryId": {
1283
+ "type": "string"
1284
+ },
1285
+ "query": {
1286
+ "type": "string",
1287
+ "const": "query Repositories($term: String, $keywords: [String!], $repositoryType: String, $paginationOptions: PaginationOptions){ repositories(term: $term, keywords: $keywords, repositoryType: $repositoryType, paginationOptions: $paginationOptions) { totalCount currentOffset limit hasNextPage hasPreviousPage availableSortFields items { id name uri description website keywords repositoryTypes } } }"
1288
+ },
1289
+ "responseField": {
1290
+ "type": "string",
1291
+ "const": "repositories.items"
1292
+ },
1293
+ "variables": {
1294
+ "type": "array",
1295
+ "items": {
1296
+ "type": "object",
1297
+ "properties": {
1298
+ "minLength": {
1299
+ "type": "number"
1300
+ },
1301
+ "label": {
1302
+ "type": "string"
1303
+ },
1304
+ "labelTranslationKey": {
1305
+ "type": "string"
1306
+ },
1307
+ "name": {
1308
+ "default": "search",
1309
+ "type": "string"
1310
+ },
1311
+ "type": {
1312
+ "default": "string",
1313
+ "type": "string"
1314
+ },
1315
+ "defaultValue": {
1316
+ "type": "string"
1317
+ }
1318
+ },
1319
+ "required": [
1320
+ "name",
1321
+ "type"
1322
+ ],
1323
+ "additionalProperties": false
1324
+ }
1325
+ },
1326
+ "queryId": {
1327
+ "default": "useRepositoriesQuery",
1328
+ "type": "string"
1329
+ },
1330
+ "answerField": {
1331
+ "type": "string",
1332
+ "const": "uri"
1333
+ }
1334
+ },
1335
+ "required": [
1336
+ "displayFields",
1337
+ "query",
1338
+ "responseField",
1339
+ "variables",
1340
+ "answerField"
1341
+ ],
1342
+ "additionalProperties": false
1343
+ }
1344
+ },
1345
+ "required": [
1346
+ "type",
1347
+ "attributes",
1348
+ "meta",
1349
+ "graphQL"
1350
+ ],
1351
+ "additionalProperties": false
1352
+ },
1353
+ {
1354
+ "type": "object",
1355
+ "properties": {
1356
+ "type": {
1357
+ "type": "string",
1358
+ "const": "selectBox"
1359
+ },
1360
+ "attributes": {
1361
+ "type": "object",
1362
+ "properties": {
1363
+ "label": {
1364
+ "type": "string"
1365
+ },
1366
+ "help": {
1367
+ "type": "string"
1368
+ },
1369
+ "labelTranslationKey": {
1370
+ "type": "string"
1371
+ },
1372
+ "multiple": {
1373
+ "type": "boolean",
1374
+ "const": false
1375
+ }
1376
+ },
1377
+ "required": [
1378
+ "multiple"
1379
+ ],
1380
+ "additionalProperties": false
1381
+ },
1382
+ "meta": {
1383
+ "type": "object",
1384
+ "properties": {
1385
+ "schemaVersion": {
1386
+ "default": "1.0",
1387
+ "type": "string"
1388
+ },
1389
+ "title": {
1390
+ "type": "string"
1391
+ },
1392
+ "usageDescription": {
1393
+ "type": "string"
1394
+ }
1395
+ },
1396
+ "required": [
1397
+ "schemaVersion"
1398
+ ],
1399
+ "additionalProperties": false
1400
+ },
1401
+ "options": {
1402
+ "type": "array",
1403
+ "items": {
1404
+ "type": "object",
1405
+ "properties": {
1406
+ "label": {
1407
+ "default": "Option A",
1408
+ "type": "string"
1409
+ },
1410
+ "value": {
1411
+ "default": "a",
1412
+ "type": "string"
1413
+ },
1414
+ "selected": {
1415
+ "default": false,
1416
+ "type": "boolean"
1417
+ }
1418
+ },
1419
+ "required": [
1420
+ "label",
1421
+ "value",
1422
+ "selected"
1423
+ ],
1424
+ "additionalProperties": false
1425
+ }
1426
+ },
1427
+ "showCommentField": {
1428
+ "type": "boolean"
1429
+ }
1430
+ },
1431
+ "required": [
1432
+ "type",
1433
+ "attributes",
1434
+ "meta",
1435
+ "options"
1436
+ ],
1437
+ "additionalProperties": false
1438
+ },
1439
+ {
1440
+ "type": "object",
1441
+ "properties": {
1442
+ "type": {
1443
+ "type": "string",
1444
+ "const": "textArea"
1445
+ },
1446
+ "attributes": {
1447
+ "type": "object",
1448
+ "properties": {
1449
+ "label": {
1450
+ "type": "string"
1451
+ },
1452
+ "help": {
1453
+ "type": "string"
1454
+ },
1455
+ "labelTranslationKey": {
1456
+ "type": "string"
1457
+ },
1458
+ "maxLength": {
1459
+ "default": 10000,
1460
+ "type": "number"
1461
+ },
1462
+ "minLength": {
1463
+ "type": "number"
1464
+ },
1465
+ "pattern": {
1466
+ "type": "string"
1467
+ },
1468
+ "cols": {
1469
+ "default": 20,
1470
+ "type": "number"
1471
+ },
1472
+ "rows": {
1473
+ "default": 2,
1474
+ "type": "number"
1475
+ },
1476
+ "asRichText": {
1477
+ "default": true,
1478
+ "type": "boolean"
1479
+ }
1480
+ },
1481
+ "required": [
1482
+ "maxLength",
1483
+ "cols",
1484
+ "rows",
1485
+ "asRichText"
1486
+ ],
1487
+ "additionalProperties": false
1488
+ },
1489
+ "meta": {
1490
+ "type": "object",
1491
+ "properties": {
1492
+ "schemaVersion": {
1493
+ "default": "1.0",
1494
+ "type": "string"
1495
+ },
1496
+ "title": {
1497
+ "type": "string"
1498
+ },
1499
+ "usageDescription": {
1500
+ "type": "string"
1501
+ }
1502
+ },
1503
+ "required": [
1504
+ "schemaVersion"
1505
+ ],
1506
+ "additionalProperties": false
1507
+ }
1508
+ },
1509
+ "required": [
1510
+ "type",
1511
+ "attributes",
1512
+ "meta"
1513
+ ],
1514
+ "additionalProperties": false
1515
+ },
1516
+ {
1517
+ "type": "object",
1518
+ "properties": {
1519
+ "type": {
1520
+ "type": "string",
1521
+ "const": "text"
1522
+ },
1523
+ "attributes": {
1524
+ "type": "object",
1525
+ "properties": {
1526
+ "label": {
1527
+ "type": "string"
1528
+ },
1529
+ "help": {
1530
+ "type": "string"
1531
+ },
1532
+ "labelTranslationKey": {
1533
+ "type": "string"
1534
+ },
1535
+ "maxLength": {
1536
+ "default": 255,
1537
+ "type": "number"
1538
+ },
1539
+ "minLength": {
1540
+ "type": "number"
1541
+ },
1542
+ "pattern": {
1543
+ "type": "string"
1544
+ }
1545
+ },
1546
+ "required": [
1547
+ "maxLength"
1548
+ ],
1549
+ "additionalProperties": false
1550
+ },
1551
+ "meta": {
1552
+ "type": "object",
1553
+ "properties": {
1554
+ "schemaVersion": {
1555
+ "default": "1.0",
1556
+ "type": "string"
1557
+ },
1558
+ "title": {
1559
+ "type": "string"
1560
+ },
1561
+ "usageDescription": {
1562
+ "type": "string"
1563
+ }
1564
+ },
1565
+ "required": [
1566
+ "schemaVersion"
1567
+ ],
1568
+ "additionalProperties": false
1569
+ }
1570
+ },
1571
+ "required": [
1572
+ "type",
1573
+ "attributes",
1574
+ "meta"
1575
+ ],
1576
+ "additionalProperties": false
1577
+ },
1578
+ {
1579
+ "type": "object",
1580
+ "properties": {
1581
+ "type": {
1582
+ "type": "string",
1583
+ "const": "url"
1584
+ },
1585
+ "attributes": {
1586
+ "type": "object",
1587
+ "properties": {
1588
+ "label": {
1589
+ "type": "string"
1590
+ },
1591
+ "help": {
1592
+ "type": "string"
1593
+ },
1594
+ "labelTranslationKey": {
1595
+ "type": "string"
1596
+ },
1597
+ "maxLength": {
1598
+ "default": 255,
1599
+ "type": "number"
1600
+ },
1601
+ "minLength": {
1602
+ "type": "number"
1603
+ },
1604
+ "pattern": {
1605
+ "type": "string"
1606
+ }
1607
+ },
1608
+ "required": [
1609
+ "maxLength"
1610
+ ],
1611
+ "additionalProperties": false
1612
+ },
1613
+ "meta": {
1614
+ "type": "object",
1615
+ "properties": {
1616
+ "schemaVersion": {
1617
+ "default": "1.0",
1618
+ "type": "string"
1619
+ },
1620
+ "title": {
1621
+ "type": "string"
1622
+ },
1623
+ "usageDescription": {
1624
+ "type": "string"
1625
+ }
1626
+ },
1627
+ "required": [
1628
+ "schemaVersion"
1629
+ ],
1630
+ "additionalProperties": false
1631
+ },
1632
+ "showCommentField": {
1633
+ "type": "boolean"
1634
+ }
1635
+ },
1636
+ "required": [
1637
+ "type",
1638
+ "attributes",
1639
+ "meta"
1640
+ ],
1641
+ "additionalProperties": false
1642
+ }
1643
+ ]
1644
+ }
1645
+ },
1646
+ "required": [
1647
+ "heading",
1648
+ "required",
1649
+ "enabled",
1650
+ "content"
1651
+ ],
1652
+ "additionalProperties": false
1653
+ }
1654
+ }
1655
+ },
1656
+ "required": [
1657
+ "type",
1658
+ "meta",
1659
+ "columns"
1660
+ ],
1661
+ "additionalProperties": false
1662
+ }