@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,4828 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "oneOf": [
4
+ {
5
+ "type": "object",
6
+ "properties": {
7
+ "type": {
8
+ "type": "string",
9
+ "const": "affiliationSearch"
10
+ },
11
+ "attributes": {
12
+ "type": "object",
13
+ "properties": {
14
+ "label": {
15
+ "type": "string"
16
+ },
17
+ "help": {
18
+ "type": "string"
19
+ },
20
+ "labelTranslationKey": {
21
+ "type": "string"
22
+ }
23
+ },
24
+ "additionalProperties": false
25
+ },
26
+ "meta": {
27
+ "type": "object",
28
+ "properties": {
29
+ "schemaVersion": {
30
+ "default": "1.0",
31
+ "type": "string"
32
+ },
33
+ "title": {
34
+ "type": "string"
35
+ },
36
+ "usageDescription": {
37
+ "type": "string"
38
+ }
39
+ },
40
+ "required": [
41
+ "schemaVersion"
42
+ ],
43
+ "additionalProperties": false
44
+ },
45
+ "graphQL": {
46
+ "type": "object",
47
+ "properties": {
48
+ "displayFields": {
49
+ "type": "array",
50
+ "items": {
51
+ "type": "object",
52
+ "properties": {
53
+ "propertyName": {
54
+ "default": "id",
55
+ "type": "string"
56
+ },
57
+ "label": {
58
+ "default": "Id",
59
+ "type": "string"
60
+ },
61
+ "labelTranslationKey": {
62
+ "type": "string"
63
+ }
64
+ },
65
+ "required": [
66
+ "propertyName",
67
+ "label"
68
+ ],
69
+ "additionalProperties": false
70
+ }
71
+ },
72
+ "localQueryId": {
73
+ "type": "string"
74
+ },
75
+ "query": {
76
+ "type": "string",
77
+ "const": "query Affiliations($name: String!){ affiliations(name: $name) { totalCount nextCursor items { id displayName uri } } }"
78
+ },
79
+ "responseField": {
80
+ "default": "affiliations.items",
81
+ "type": "string",
82
+ "const": "affiliations.items"
83
+ },
84
+ "variables": {
85
+ "type": "array",
86
+ "items": {
87
+ "type": "object",
88
+ "properties": {
89
+ "minLength": {
90
+ "type": "number"
91
+ },
92
+ "label": {
93
+ "type": "string"
94
+ },
95
+ "labelTranslationKey": {
96
+ "type": "string"
97
+ },
98
+ "name": {
99
+ "default": "search",
100
+ "type": "string"
101
+ },
102
+ "type": {
103
+ "default": "string",
104
+ "type": "string"
105
+ },
106
+ "defaultValue": {
107
+ "type": "string"
108
+ }
109
+ },
110
+ "required": [
111
+ "name",
112
+ "type"
113
+ ],
114
+ "additionalProperties": false
115
+ }
116
+ },
117
+ "queryId": {
118
+ "default": "useAffiliationsQuery",
119
+ "type": "string"
120
+ },
121
+ "answerField": {
122
+ "default": "uri",
123
+ "type": "string",
124
+ "const": "uri"
125
+ }
126
+ },
127
+ "required": [
128
+ "displayFields",
129
+ "query",
130
+ "responseField",
131
+ "variables",
132
+ "answerField"
133
+ ],
134
+ "additionalProperties": false
135
+ }
136
+ },
137
+ "required": [
138
+ "type",
139
+ "attributes",
140
+ "meta",
141
+ "graphQL"
142
+ ],
143
+ "additionalProperties": false
144
+ },
145
+ {
146
+ "type": "object",
147
+ "properties": {
148
+ "type": {
149
+ "type": "string",
150
+ "const": "boolean"
151
+ },
152
+ "attributes": {
153
+ "type": "object",
154
+ "properties": {
155
+ "label": {
156
+ "type": "string"
157
+ },
158
+ "value": {
159
+ "default": false,
160
+ "type": "boolean"
161
+ }
162
+ },
163
+ "required": [
164
+ "label",
165
+ "value"
166
+ ],
167
+ "additionalProperties": false
168
+ },
169
+ "meta": {
170
+ "type": "object",
171
+ "properties": {
172
+ "schemaVersion": {
173
+ "default": "1.0",
174
+ "type": "string"
175
+ },
176
+ "title": {
177
+ "type": "string"
178
+ },
179
+ "usageDescription": {
180
+ "type": "string"
181
+ }
182
+ },
183
+ "required": [
184
+ "schemaVersion"
185
+ ],
186
+ "additionalProperties": false
187
+ },
188
+ "showCommentField": {
189
+ "type": "boolean"
190
+ }
191
+ },
192
+ "required": [
193
+ "type",
194
+ "attributes",
195
+ "meta"
196
+ ],
197
+ "additionalProperties": false
198
+ },
199
+ {
200
+ "type": "object",
201
+ "properties": {
202
+ "type": {
203
+ "type": "string",
204
+ "const": "checkBoxes"
205
+ },
206
+ "attributes": {
207
+ "type": "object",
208
+ "properties": {
209
+ "label": {
210
+ "type": "string"
211
+ },
212
+ "help": {
213
+ "type": "string"
214
+ },
215
+ "labelTranslationKey": {
216
+ "type": "string"
217
+ }
218
+ },
219
+ "additionalProperties": false
220
+ },
221
+ "meta": {
222
+ "type": "object",
223
+ "properties": {
224
+ "schemaVersion": {
225
+ "default": "1.0",
226
+ "type": "string"
227
+ },
228
+ "title": {
229
+ "type": "string"
230
+ },
231
+ "usageDescription": {
232
+ "type": "string"
233
+ }
234
+ },
235
+ "required": [
236
+ "schemaVersion"
237
+ ],
238
+ "additionalProperties": false
239
+ },
240
+ "options": {
241
+ "type": "array",
242
+ "items": {
243
+ "type": "object",
244
+ "properties": {
245
+ "label": {
246
+ "default": "Option A",
247
+ "type": "string"
248
+ },
249
+ "value": {
250
+ "default": "a",
251
+ "type": "string"
252
+ },
253
+ "checked": {
254
+ "default": false,
255
+ "type": "boolean"
256
+ }
257
+ },
258
+ "required": [
259
+ "label",
260
+ "value",
261
+ "checked"
262
+ ],
263
+ "additionalProperties": false
264
+ }
265
+ },
266
+ "showCommentField": {
267
+ "type": "boolean"
268
+ }
269
+ },
270
+ "required": [
271
+ "type",
272
+ "attributes",
273
+ "meta",
274
+ "options"
275
+ ],
276
+ "additionalProperties": false
277
+ },
278
+ {
279
+ "type": "object",
280
+ "properties": {
281
+ "type": {
282
+ "type": "string",
283
+ "const": "currency"
284
+ },
285
+ "attributes": {
286
+ "type": "object",
287
+ "properties": {
288
+ "label": {
289
+ "type": "string"
290
+ },
291
+ "help": {
292
+ "type": "string"
293
+ },
294
+ "labelTranslationKey": {
295
+ "type": "string"
296
+ },
297
+ "max": {
298
+ "type": "number"
299
+ },
300
+ "min": {
301
+ "default": 0,
302
+ "type": "number"
303
+ },
304
+ "step": {
305
+ "default": 1,
306
+ "type": "number"
307
+ },
308
+ "denomination": {
309
+ "default": "USD",
310
+ "type": "string"
311
+ }
312
+ },
313
+ "required": [
314
+ "min",
315
+ "step",
316
+ "denomination"
317
+ ],
318
+ "additionalProperties": false
319
+ },
320
+ "meta": {
321
+ "type": "object",
322
+ "properties": {
323
+ "schemaVersion": {
324
+ "default": "1.0",
325
+ "type": "string"
326
+ },
327
+ "title": {
328
+ "type": "string"
329
+ },
330
+ "usageDescription": {
331
+ "type": "string"
332
+ }
333
+ },
334
+ "required": [
335
+ "schemaVersion"
336
+ ],
337
+ "additionalProperties": false
338
+ },
339
+ "showCommentField": {
340
+ "type": "boolean"
341
+ }
342
+ },
343
+ "required": [
344
+ "type",
345
+ "attributes",
346
+ "meta"
347
+ ],
348
+ "additionalProperties": false
349
+ },
350
+ {
351
+ "type": "object",
352
+ "properties": {
353
+ "type": {
354
+ "type": "string",
355
+ "const": "date"
356
+ },
357
+ "attributes": {
358
+ "type": "object",
359
+ "properties": {
360
+ "label": {
361
+ "type": "string"
362
+ },
363
+ "help": {
364
+ "type": "string"
365
+ },
366
+ "labelTranslationKey": {
367
+ "type": "string"
368
+ },
369
+ "max": {
370
+ "type": "string"
371
+ },
372
+ "min": {
373
+ "type": "string"
374
+ },
375
+ "step": {
376
+ "default": 1,
377
+ "type": "number"
378
+ }
379
+ },
380
+ "required": [
381
+ "step"
382
+ ],
383
+ "additionalProperties": false
384
+ },
385
+ "meta": {
386
+ "type": "object",
387
+ "properties": {
388
+ "schemaVersion": {
389
+ "default": "1.0",
390
+ "type": "string"
391
+ },
392
+ "title": {
393
+ "type": "string"
394
+ },
395
+ "usageDescription": {
396
+ "type": "string"
397
+ }
398
+ },
399
+ "required": [
400
+ "schemaVersion"
401
+ ],
402
+ "additionalProperties": false
403
+ },
404
+ "showCommentField": {
405
+ "type": "boolean"
406
+ }
407
+ },
408
+ "required": [
409
+ "type",
410
+ "attributes",
411
+ "meta"
412
+ ],
413
+ "additionalProperties": false
414
+ },
415
+ {
416
+ "type": "object",
417
+ "properties": {
418
+ "type": {
419
+ "type": "string",
420
+ "const": "dateRange"
421
+ },
422
+ "attributes": {
423
+ "type": "object",
424
+ "properties": {
425
+ "label": {
426
+ "type": "string"
427
+ },
428
+ "help": {
429
+ "type": "string"
430
+ },
431
+ "labelTranslationKey": {
432
+ "type": "string"
433
+ }
434
+ },
435
+ "additionalProperties": false
436
+ },
437
+ "meta": {
438
+ "type": "object",
439
+ "properties": {
440
+ "schemaVersion": {
441
+ "default": "1.0",
442
+ "type": "string"
443
+ },
444
+ "title": {
445
+ "type": "string"
446
+ },
447
+ "usageDescription": {
448
+ "type": "string"
449
+ }
450
+ },
451
+ "required": [
452
+ "schemaVersion"
453
+ ],
454
+ "additionalProperties": false
455
+ },
456
+ "columns": {
457
+ "type": "object",
458
+ "properties": {
459
+ "start": {
460
+ "type": "object",
461
+ "properties": {
462
+ "label": {
463
+ "default": "From",
464
+ "type": "string"
465
+ },
466
+ "help": {
467
+ "type": "string"
468
+ },
469
+ "labelTranslationKey": {
470
+ "type": "string"
471
+ },
472
+ "max": {
473
+ "type": "string"
474
+ },
475
+ "min": {
476
+ "type": "string"
477
+ },
478
+ "step": {
479
+ "default": 1,
480
+ "type": "number"
481
+ }
482
+ },
483
+ "required": [
484
+ "label",
485
+ "step"
486
+ ],
487
+ "additionalProperties": false
488
+ },
489
+ "end": {
490
+ "type": "object",
491
+ "properties": {
492
+ "label": {
493
+ "default": "To",
494
+ "type": "string"
495
+ },
496
+ "help": {
497
+ "type": "string"
498
+ },
499
+ "labelTranslationKey": {
500
+ "type": "string"
501
+ },
502
+ "max": {
503
+ "type": "string"
504
+ },
505
+ "min": {
506
+ "type": "string"
507
+ },
508
+ "step": {
509
+ "default": 1,
510
+ "type": "number"
511
+ }
512
+ },
513
+ "required": [
514
+ "label",
515
+ "step"
516
+ ],
517
+ "additionalProperties": false
518
+ }
519
+ },
520
+ "required": [
521
+ "start",
522
+ "end"
523
+ ],
524
+ "additionalProperties": false
525
+ },
526
+ "showCommentField": {
527
+ "type": "boolean"
528
+ }
529
+ },
530
+ "required": [
531
+ "type",
532
+ "attributes",
533
+ "meta",
534
+ "columns"
535
+ ],
536
+ "additionalProperties": false
537
+ },
538
+ {
539
+ "type": "object",
540
+ "properties": {
541
+ "type": {
542
+ "type": "string",
543
+ "const": "email"
544
+ },
545
+ "attributes": {
546
+ "type": "object",
547
+ "properties": {
548
+ "label": {
549
+ "type": "string"
550
+ },
551
+ "help": {
552
+ "type": "string"
553
+ },
554
+ "labelTranslationKey": {
555
+ "type": "string"
556
+ },
557
+ "maxLength": {
558
+ "default": 255,
559
+ "type": "number"
560
+ },
561
+ "minLength": {
562
+ "type": "number"
563
+ },
564
+ "pattern": {
565
+ "type": "string"
566
+ },
567
+ "multiple": {
568
+ "default": false,
569
+ "type": "boolean"
570
+ }
571
+ },
572
+ "required": [
573
+ "maxLength",
574
+ "multiple"
575
+ ],
576
+ "additionalProperties": false
577
+ },
578
+ "meta": {
579
+ "type": "object",
580
+ "properties": {
581
+ "schemaVersion": {
582
+ "default": "1.0",
583
+ "type": "string"
584
+ },
585
+ "title": {
586
+ "type": "string"
587
+ },
588
+ "usageDescription": {
589
+ "type": "string"
590
+ }
591
+ },
592
+ "required": [
593
+ "schemaVersion"
594
+ ],
595
+ "additionalProperties": false
596
+ },
597
+ "showCommentField": {
598
+ "type": "boolean"
599
+ }
600
+ },
601
+ "required": [
602
+ "type",
603
+ "attributes",
604
+ "meta"
605
+ ],
606
+ "additionalProperties": false
607
+ },
608
+ {
609
+ "type": "object",
610
+ "properties": {
611
+ "type": {
612
+ "type": "string",
613
+ "const": "licenseSearch"
614
+ },
615
+ "attributes": {
616
+ "type": "object",
617
+ "properties": {
618
+ "label": {
619
+ "type": "string"
620
+ },
621
+ "help": {
622
+ "type": "string"
623
+ },
624
+ "labelTranslationKey": {
625
+ "type": "string"
626
+ }
627
+ },
628
+ "additionalProperties": false
629
+ },
630
+ "meta": {
631
+ "type": "object",
632
+ "properties": {
633
+ "schemaVersion": {
634
+ "default": "1.0",
635
+ "type": "string"
636
+ },
637
+ "title": {
638
+ "type": "string"
639
+ },
640
+ "usageDescription": {
641
+ "type": "string"
642
+ }
643
+ },
644
+ "required": [
645
+ "schemaVersion"
646
+ ],
647
+ "additionalProperties": false
648
+ },
649
+ "graphQL": {
650
+ "type": "object",
651
+ "properties": {
652
+ "displayFields": {
653
+ "type": "array",
654
+ "items": {
655
+ "type": "object",
656
+ "properties": {
657
+ "propertyName": {
658
+ "default": "id",
659
+ "type": "string"
660
+ },
661
+ "label": {
662
+ "default": "Id",
663
+ "type": "string"
664
+ },
665
+ "labelTranslationKey": {
666
+ "type": "string"
667
+ }
668
+ },
669
+ "required": [
670
+ "propertyName",
671
+ "label"
672
+ ],
673
+ "additionalProperties": false
674
+ }
675
+ },
676
+ "localQueryId": {
677
+ "type": "string"
678
+ },
679
+ "query": {
680
+ "type": "string",
681
+ "const": "query Licenses($term: String, $paginationOptions: PaginationOptions){ license(term: $term, paginationOptions: $paginationOptions) { totalCount currentOffset limit hasNextPage hasPreviousPage availableSortFields items { id name uri description } } }"
682
+ },
683
+ "responseField": {
684
+ "type": "string",
685
+ "const": "licenses.items"
686
+ },
687
+ "variables": {
688
+ "type": "array",
689
+ "items": {
690
+ "type": "object",
691
+ "properties": {
692
+ "minLength": {
693
+ "type": "number"
694
+ },
695
+ "label": {
696
+ "type": "string"
697
+ },
698
+ "labelTranslationKey": {
699
+ "type": "string"
700
+ },
701
+ "name": {
702
+ "default": "search",
703
+ "type": "string"
704
+ },
705
+ "type": {
706
+ "default": "string",
707
+ "type": "string"
708
+ },
709
+ "defaultValue": {
710
+ "type": "string"
711
+ }
712
+ },
713
+ "required": [
714
+ "name",
715
+ "type"
716
+ ],
717
+ "additionalProperties": false
718
+ }
719
+ },
720
+ "queryId": {
721
+ "default": "useLicensesQuery",
722
+ "type": "string"
723
+ },
724
+ "answerField": {
725
+ "type": "string",
726
+ "const": "uri"
727
+ }
728
+ },
729
+ "required": [
730
+ "displayFields",
731
+ "query",
732
+ "responseField",
733
+ "variables",
734
+ "answerField"
735
+ ],
736
+ "additionalProperties": false
737
+ }
738
+ },
739
+ "required": [
740
+ "type",
741
+ "attributes",
742
+ "meta",
743
+ "graphQL"
744
+ ],
745
+ "additionalProperties": false
746
+ },
747
+ {
748
+ "type": "object",
749
+ "properties": {
750
+ "type": {
751
+ "type": "string",
752
+ "const": "metadataStandardSearch"
753
+ },
754
+ "attributes": {
755
+ "type": "object",
756
+ "properties": {
757
+ "label": {
758
+ "type": "string"
759
+ },
760
+ "help": {
761
+ "type": "string"
762
+ },
763
+ "labelTranslationKey": {
764
+ "type": "string"
765
+ }
766
+ },
767
+ "additionalProperties": false
768
+ },
769
+ "meta": {
770
+ "type": "object",
771
+ "properties": {
772
+ "schemaVersion": {
773
+ "default": "1.0",
774
+ "type": "string"
775
+ },
776
+ "title": {
777
+ "type": "string"
778
+ },
779
+ "usageDescription": {
780
+ "type": "string"
781
+ }
782
+ },
783
+ "required": [
784
+ "schemaVersion"
785
+ ],
786
+ "additionalProperties": false
787
+ },
788
+ "graphQL": {
789
+ "type": "object",
790
+ "properties": {
791
+ "displayFields": {
792
+ "type": "array",
793
+ "items": {
794
+ "type": "object",
795
+ "properties": {
796
+ "propertyName": {
797
+ "default": "id",
798
+ "type": "string"
799
+ },
800
+ "label": {
801
+ "default": "Id",
802
+ "type": "string"
803
+ },
804
+ "labelTranslationKey": {
805
+ "type": "string"
806
+ }
807
+ },
808
+ "required": [
809
+ "propertyName",
810
+ "label"
811
+ ],
812
+ "additionalProperties": false
813
+ }
814
+ },
815
+ "localQueryId": {
816
+ "type": "string"
817
+ },
818
+ "query": {
819
+ "type": "string",
820
+ "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 } } }"
821
+ },
822
+ "responseField": {
823
+ "type": "string",
824
+ "const": "metadataStandards.items"
825
+ },
826
+ "variables": {
827
+ "type": "array",
828
+ "items": {
829
+ "type": "object",
830
+ "properties": {
831
+ "minLength": {
832
+ "type": "number"
833
+ },
834
+ "label": {
835
+ "type": "string"
836
+ },
837
+ "labelTranslationKey": {
838
+ "type": "string"
839
+ },
840
+ "name": {
841
+ "default": "search",
842
+ "type": "string"
843
+ },
844
+ "type": {
845
+ "default": "string",
846
+ "type": "string"
847
+ },
848
+ "defaultValue": {
849
+ "type": "string"
850
+ }
851
+ },
852
+ "required": [
853
+ "name",
854
+ "type"
855
+ ],
856
+ "additionalProperties": false
857
+ }
858
+ },
859
+ "queryId": {
860
+ "default": "useMetadataStandardsQuery",
861
+ "type": "string"
862
+ },
863
+ "answerField": {
864
+ "default": "uri",
865
+ "type": "string",
866
+ "const": "uri"
867
+ }
868
+ },
869
+ "required": [
870
+ "displayFields",
871
+ "query",
872
+ "responseField",
873
+ "variables",
874
+ "answerField"
875
+ ],
876
+ "additionalProperties": false
877
+ }
878
+ },
879
+ "required": [
880
+ "type",
881
+ "attributes",
882
+ "meta",
883
+ "graphQL"
884
+ ],
885
+ "additionalProperties": false
886
+ },
887
+ {
888
+ "type": "object",
889
+ "properties": {
890
+ "type": {
891
+ "type": "string",
892
+ "const": "multiselectBox"
893
+ },
894
+ "attributes": {
895
+ "type": "object",
896
+ "properties": {
897
+ "label": {
898
+ "type": "string"
899
+ },
900
+ "help": {
901
+ "type": "string"
902
+ },
903
+ "labelTranslationKey": {
904
+ "type": "string"
905
+ },
906
+ "multiple": {
907
+ "type": "boolean",
908
+ "const": true
909
+ }
910
+ },
911
+ "required": [
912
+ "multiple"
913
+ ],
914
+ "additionalProperties": false
915
+ },
916
+ "meta": {
917
+ "type": "object",
918
+ "properties": {
919
+ "schemaVersion": {
920
+ "default": "1.0",
921
+ "type": "string"
922
+ },
923
+ "title": {
924
+ "type": "string"
925
+ },
926
+ "usageDescription": {
927
+ "type": "string"
928
+ }
929
+ },
930
+ "required": [
931
+ "schemaVersion"
932
+ ],
933
+ "additionalProperties": false
934
+ },
935
+ "options": {
936
+ "type": "array",
937
+ "items": {
938
+ "type": "object",
939
+ "properties": {
940
+ "label": {
941
+ "default": "Option A",
942
+ "type": "string"
943
+ },
944
+ "value": {
945
+ "default": "a",
946
+ "type": "string"
947
+ },
948
+ "selected": {
949
+ "default": false,
950
+ "type": "boolean"
951
+ }
952
+ },
953
+ "required": [
954
+ "label",
955
+ "value",
956
+ "selected"
957
+ ],
958
+ "additionalProperties": false
959
+ }
960
+ },
961
+ "showCommentField": {
962
+ "type": "boolean"
963
+ }
964
+ },
965
+ "required": [
966
+ "type",
967
+ "attributes",
968
+ "meta",
969
+ "options"
970
+ ],
971
+ "additionalProperties": false
972
+ },
973
+ {
974
+ "type": "object",
975
+ "properties": {
976
+ "type": {
977
+ "type": "string",
978
+ "const": "number"
979
+ },
980
+ "attributes": {
981
+ "type": "object",
982
+ "properties": {
983
+ "label": {
984
+ "type": "string"
985
+ },
986
+ "help": {
987
+ "type": "string"
988
+ },
989
+ "labelTranslationKey": {
990
+ "type": "string"
991
+ },
992
+ "max": {
993
+ "type": "number"
994
+ },
995
+ "min": {
996
+ "default": 0,
997
+ "type": "number"
998
+ },
999
+ "step": {
1000
+ "default": 1,
1001
+ "type": "number"
1002
+ }
1003
+ },
1004
+ "required": [
1005
+ "min",
1006
+ "step"
1007
+ ],
1008
+ "additionalProperties": false
1009
+ },
1010
+ "meta": {
1011
+ "type": "object",
1012
+ "properties": {
1013
+ "schemaVersion": {
1014
+ "default": "1.0",
1015
+ "type": "string"
1016
+ },
1017
+ "title": {
1018
+ "type": "string"
1019
+ },
1020
+ "usageDescription": {
1021
+ "type": "string"
1022
+ }
1023
+ },
1024
+ "required": [
1025
+ "schemaVersion"
1026
+ ],
1027
+ "additionalProperties": false
1028
+ },
1029
+ "showCommentField": {
1030
+ "type": "boolean"
1031
+ }
1032
+ },
1033
+ "required": [
1034
+ "type",
1035
+ "attributes",
1036
+ "meta"
1037
+ ],
1038
+ "additionalProperties": false
1039
+ },
1040
+ {
1041
+ "type": "object",
1042
+ "properties": {
1043
+ "type": {
1044
+ "type": "string",
1045
+ "const": "numberRange"
1046
+ },
1047
+ "attributes": {
1048
+ "type": "object",
1049
+ "properties": {
1050
+ "label": {
1051
+ "type": "string"
1052
+ },
1053
+ "help": {
1054
+ "type": "string"
1055
+ },
1056
+ "labelTranslationKey": {
1057
+ "type": "string"
1058
+ }
1059
+ },
1060
+ "additionalProperties": false
1061
+ },
1062
+ "meta": {
1063
+ "type": "object",
1064
+ "properties": {
1065
+ "schemaVersion": {
1066
+ "default": "1.0",
1067
+ "type": "string"
1068
+ },
1069
+ "title": {
1070
+ "type": "string"
1071
+ },
1072
+ "usageDescription": {
1073
+ "type": "string"
1074
+ }
1075
+ },
1076
+ "required": [
1077
+ "schemaVersion"
1078
+ ],
1079
+ "additionalProperties": false
1080
+ },
1081
+ "columns": {
1082
+ "type": "object",
1083
+ "properties": {
1084
+ "start": {
1085
+ "type": "object",
1086
+ "properties": {
1087
+ "label": {
1088
+ "default": "From",
1089
+ "type": "string"
1090
+ },
1091
+ "help": {
1092
+ "type": "string"
1093
+ },
1094
+ "labelTranslationKey": {
1095
+ "type": "string"
1096
+ },
1097
+ "max": {
1098
+ "type": "number"
1099
+ },
1100
+ "min": {
1101
+ "default": 0,
1102
+ "type": "number"
1103
+ },
1104
+ "step": {
1105
+ "default": 1,
1106
+ "type": "number"
1107
+ }
1108
+ },
1109
+ "required": [
1110
+ "label",
1111
+ "min",
1112
+ "step"
1113
+ ],
1114
+ "additionalProperties": false
1115
+ },
1116
+ "end": {
1117
+ "type": "object",
1118
+ "properties": {
1119
+ "label": {
1120
+ "default": "To",
1121
+ "type": "string"
1122
+ },
1123
+ "help": {
1124
+ "type": "string"
1125
+ },
1126
+ "labelTranslationKey": {
1127
+ "type": "string"
1128
+ },
1129
+ "max": {
1130
+ "type": "number"
1131
+ },
1132
+ "min": {
1133
+ "default": 0,
1134
+ "type": "number"
1135
+ },
1136
+ "step": {
1137
+ "default": 1,
1138
+ "type": "number"
1139
+ }
1140
+ },
1141
+ "required": [
1142
+ "label",
1143
+ "min",
1144
+ "step"
1145
+ ],
1146
+ "additionalProperties": false
1147
+ }
1148
+ },
1149
+ "required": [
1150
+ "start",
1151
+ "end"
1152
+ ],
1153
+ "additionalProperties": false
1154
+ },
1155
+ "showCommentField": {
1156
+ "type": "boolean"
1157
+ }
1158
+ },
1159
+ "required": [
1160
+ "type",
1161
+ "attributes",
1162
+ "meta",
1163
+ "columns"
1164
+ ],
1165
+ "additionalProperties": false
1166
+ },
1167
+ {
1168
+ "type": "object",
1169
+ "properties": {
1170
+ "type": {
1171
+ "type": "string",
1172
+ "const": "radioButtons"
1173
+ },
1174
+ "attributes": {
1175
+ "type": "object",
1176
+ "properties": {
1177
+ "label": {
1178
+ "type": "string"
1179
+ },
1180
+ "help": {
1181
+ "type": "string"
1182
+ },
1183
+ "labelTranslationKey": {
1184
+ "type": "string"
1185
+ }
1186
+ },
1187
+ "additionalProperties": false
1188
+ },
1189
+ "meta": {
1190
+ "type": "object",
1191
+ "properties": {
1192
+ "schemaVersion": {
1193
+ "default": "1.0",
1194
+ "type": "string"
1195
+ },
1196
+ "title": {
1197
+ "type": "string"
1198
+ },
1199
+ "usageDescription": {
1200
+ "type": "string"
1201
+ }
1202
+ },
1203
+ "required": [
1204
+ "schemaVersion"
1205
+ ],
1206
+ "additionalProperties": false
1207
+ },
1208
+ "options": {
1209
+ "type": "array",
1210
+ "items": {
1211
+ "type": "object",
1212
+ "properties": {
1213
+ "label": {
1214
+ "default": "Option A",
1215
+ "type": "string"
1216
+ },
1217
+ "value": {
1218
+ "default": "a",
1219
+ "type": "string"
1220
+ },
1221
+ "selected": {
1222
+ "default": false,
1223
+ "type": "boolean"
1224
+ }
1225
+ },
1226
+ "required": [
1227
+ "label",
1228
+ "value",
1229
+ "selected"
1230
+ ],
1231
+ "additionalProperties": false
1232
+ }
1233
+ },
1234
+ "showCommentField": {
1235
+ "type": "boolean"
1236
+ }
1237
+ },
1238
+ "required": [
1239
+ "type",
1240
+ "attributes",
1241
+ "meta",
1242
+ "options"
1243
+ ],
1244
+ "additionalProperties": false
1245
+ },
1246
+ {
1247
+ "type": "object",
1248
+ "properties": {
1249
+ "type": {
1250
+ "type": "string",
1251
+ "const": "repositorySearch"
1252
+ },
1253
+ "attributes": {
1254
+ "type": "object",
1255
+ "properties": {
1256
+ "label": {
1257
+ "type": "string"
1258
+ },
1259
+ "help": {
1260
+ "type": "string"
1261
+ },
1262
+ "labelTranslationKey": {
1263
+ "type": "string"
1264
+ }
1265
+ },
1266
+ "additionalProperties": false
1267
+ },
1268
+ "meta": {
1269
+ "type": "object",
1270
+ "properties": {
1271
+ "schemaVersion": {
1272
+ "default": "1.0",
1273
+ "type": "string"
1274
+ },
1275
+ "title": {
1276
+ "type": "string"
1277
+ },
1278
+ "usageDescription": {
1279
+ "type": "string"
1280
+ }
1281
+ },
1282
+ "required": [
1283
+ "schemaVersion"
1284
+ ],
1285
+ "additionalProperties": false
1286
+ },
1287
+ "graphQL": {
1288
+ "type": "object",
1289
+ "properties": {
1290
+ "displayFields": {
1291
+ "type": "array",
1292
+ "items": {
1293
+ "type": "object",
1294
+ "properties": {
1295
+ "propertyName": {
1296
+ "default": "id",
1297
+ "type": "string"
1298
+ },
1299
+ "label": {
1300
+ "default": "Id",
1301
+ "type": "string"
1302
+ },
1303
+ "labelTranslationKey": {
1304
+ "type": "string"
1305
+ }
1306
+ },
1307
+ "required": [
1308
+ "propertyName",
1309
+ "label"
1310
+ ],
1311
+ "additionalProperties": false
1312
+ }
1313
+ },
1314
+ "localQueryId": {
1315
+ "type": "string"
1316
+ },
1317
+ "query": {
1318
+ "type": "string",
1319
+ "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 } } }"
1320
+ },
1321
+ "responseField": {
1322
+ "type": "string",
1323
+ "const": "repositories.items"
1324
+ },
1325
+ "variables": {
1326
+ "type": "array",
1327
+ "items": {
1328
+ "type": "object",
1329
+ "properties": {
1330
+ "minLength": {
1331
+ "type": "number"
1332
+ },
1333
+ "label": {
1334
+ "type": "string"
1335
+ },
1336
+ "labelTranslationKey": {
1337
+ "type": "string"
1338
+ },
1339
+ "name": {
1340
+ "default": "search",
1341
+ "type": "string"
1342
+ },
1343
+ "type": {
1344
+ "default": "string",
1345
+ "type": "string"
1346
+ },
1347
+ "defaultValue": {
1348
+ "type": "string"
1349
+ }
1350
+ },
1351
+ "required": [
1352
+ "name",
1353
+ "type"
1354
+ ],
1355
+ "additionalProperties": false
1356
+ }
1357
+ },
1358
+ "queryId": {
1359
+ "default": "useRepositoriesQuery",
1360
+ "type": "string"
1361
+ },
1362
+ "answerField": {
1363
+ "type": "string",
1364
+ "const": "uri"
1365
+ }
1366
+ },
1367
+ "required": [
1368
+ "displayFields",
1369
+ "query",
1370
+ "responseField",
1371
+ "variables",
1372
+ "answerField"
1373
+ ],
1374
+ "additionalProperties": false
1375
+ }
1376
+ },
1377
+ "required": [
1378
+ "type",
1379
+ "attributes",
1380
+ "meta",
1381
+ "graphQL"
1382
+ ],
1383
+ "additionalProperties": false
1384
+ },
1385
+ {
1386
+ "type": "object",
1387
+ "properties": {
1388
+ "type": {
1389
+ "type": "string",
1390
+ "const": "researchOutputTable"
1391
+ },
1392
+ "attributes": {
1393
+ "type": "object",
1394
+ "properties": {
1395
+ "label": {
1396
+ "type": "string"
1397
+ },
1398
+ "help": {
1399
+ "type": "string"
1400
+ },
1401
+ "labelTranslationKey": {
1402
+ "type": "string"
1403
+ },
1404
+ "canAddRows": {
1405
+ "default": true,
1406
+ "type": "boolean"
1407
+ },
1408
+ "canRemoveRows": {
1409
+ "default": true,
1410
+ "type": "boolean"
1411
+ },
1412
+ "initialRows": {
1413
+ "default": 1,
1414
+ "type": "number"
1415
+ },
1416
+ "maxRows": {
1417
+ "type": "number"
1418
+ },
1419
+ "minRows": {
1420
+ "type": "number"
1421
+ }
1422
+ },
1423
+ "required": [
1424
+ "canAddRows",
1425
+ "canRemoveRows",
1426
+ "initialRows"
1427
+ ],
1428
+ "additionalProperties": false
1429
+ },
1430
+ "meta": {
1431
+ "type": "object",
1432
+ "properties": {
1433
+ "schemaVersion": {
1434
+ "default": "1.0",
1435
+ "type": "string"
1436
+ },
1437
+ "title": {
1438
+ "type": "string"
1439
+ },
1440
+ "usageDescription": {
1441
+ "type": "string"
1442
+ }
1443
+ },
1444
+ "required": [
1445
+ "schemaVersion"
1446
+ ],
1447
+ "additionalProperties": false
1448
+ },
1449
+ "columns": {
1450
+ "type": "array",
1451
+ "items": {
1452
+ "anyOf": [
1453
+ {
1454
+ "type": "object",
1455
+ "properties": {
1456
+ "heading": {
1457
+ "default": "Title",
1458
+ "type": "string"
1459
+ },
1460
+ "help": {
1461
+ "default": "Enter the title of this research output",
1462
+ "type": "string"
1463
+ },
1464
+ "required": {
1465
+ "default": true,
1466
+ "type": "boolean"
1467
+ },
1468
+ "enabled": {
1469
+ "default": true,
1470
+ "type": "boolean"
1471
+ },
1472
+ "content": {
1473
+ "type": "object",
1474
+ "properties": {
1475
+ "type": {
1476
+ "type": "string",
1477
+ "const": "text"
1478
+ },
1479
+ "attributes": {
1480
+ "type": "object",
1481
+ "properties": {
1482
+ "label": {
1483
+ "type": "string"
1484
+ },
1485
+ "help": {
1486
+ "type": "string"
1487
+ },
1488
+ "labelTranslationKey": {
1489
+ "type": "string"
1490
+ },
1491
+ "maxLength": {
1492
+ "default": 255,
1493
+ "type": "number"
1494
+ },
1495
+ "minLength": {
1496
+ "type": "number"
1497
+ },
1498
+ "pattern": {
1499
+ "type": "string"
1500
+ }
1501
+ },
1502
+ "required": [
1503
+ "maxLength"
1504
+ ],
1505
+ "additionalProperties": false
1506
+ },
1507
+ "meta": {
1508
+ "type": "object",
1509
+ "properties": {
1510
+ "schemaVersion": {
1511
+ "default": "1.0",
1512
+ "type": "string"
1513
+ },
1514
+ "title": {
1515
+ "type": "string"
1516
+ },
1517
+ "usageDescription": {
1518
+ "type": "string"
1519
+ }
1520
+ },
1521
+ "required": [
1522
+ "schemaVersion"
1523
+ ],
1524
+ "additionalProperties": false
1525
+ }
1526
+ },
1527
+ "required": [
1528
+ "type",
1529
+ "attributes",
1530
+ "meta"
1531
+ ],
1532
+ "additionalProperties": false
1533
+ }
1534
+ },
1535
+ "required": [
1536
+ "heading",
1537
+ "help",
1538
+ "required",
1539
+ "enabled",
1540
+ "content"
1541
+ ],
1542
+ "additionalProperties": false
1543
+ },
1544
+ {
1545
+ "type": "object",
1546
+ "properties": {
1547
+ "heading": {
1548
+ "default": "Description",
1549
+ "type": "string"
1550
+ },
1551
+ "help": {
1552
+ "default": "Enter a brief description of this research output",
1553
+ "type": "string"
1554
+ },
1555
+ "required": {
1556
+ "default": false,
1557
+ "type": "boolean"
1558
+ },
1559
+ "enabled": {
1560
+ "default": true,
1561
+ "type": "boolean"
1562
+ },
1563
+ "content": {
1564
+ "type": "object",
1565
+ "properties": {
1566
+ "type": {
1567
+ "type": "string",
1568
+ "const": "textArea"
1569
+ },
1570
+ "attributes": {
1571
+ "type": "object",
1572
+ "properties": {
1573
+ "label": {
1574
+ "type": "string"
1575
+ },
1576
+ "help": {
1577
+ "type": "string"
1578
+ },
1579
+ "labelTranslationKey": {
1580
+ "type": "string"
1581
+ },
1582
+ "maxLength": {
1583
+ "default": 10000,
1584
+ "type": "number"
1585
+ },
1586
+ "minLength": {
1587
+ "type": "number"
1588
+ },
1589
+ "pattern": {
1590
+ "type": "string"
1591
+ },
1592
+ "cols": {
1593
+ "default": 20,
1594
+ "type": "number"
1595
+ },
1596
+ "rows": {
1597
+ "default": 2,
1598
+ "type": "number"
1599
+ },
1600
+ "asRichText": {
1601
+ "default": true,
1602
+ "type": "boolean"
1603
+ }
1604
+ },
1605
+ "required": [
1606
+ "maxLength",
1607
+ "cols",
1608
+ "rows",
1609
+ "asRichText"
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
+ },
1633
+ "required": [
1634
+ "type",
1635
+ "attributes",
1636
+ "meta"
1637
+ ],
1638
+ "additionalProperties": false
1639
+ }
1640
+ },
1641
+ "required": [
1642
+ "heading",
1643
+ "help",
1644
+ "required",
1645
+ "enabled",
1646
+ "content"
1647
+ ],
1648
+ "additionalProperties": false
1649
+ },
1650
+ {
1651
+ "type": "object",
1652
+ "properties": {
1653
+ "heading": {
1654
+ "default": "Type",
1655
+ "type": "string"
1656
+ },
1657
+ "help": {
1658
+ "default": "Select the type of this research output",
1659
+ "type": "string"
1660
+ },
1661
+ "required": {
1662
+ "default": true,
1663
+ "type": "boolean"
1664
+ },
1665
+ "enabled": {
1666
+ "default": true,
1667
+ "type": "boolean"
1668
+ },
1669
+ "content": {
1670
+ "type": "object",
1671
+ "properties": {
1672
+ "type": {
1673
+ "type": "string",
1674
+ "const": "selectBox"
1675
+ },
1676
+ "attributes": {
1677
+ "type": "object",
1678
+ "properties": {
1679
+ "label": {
1680
+ "type": "string"
1681
+ },
1682
+ "help": {
1683
+ "type": "string"
1684
+ },
1685
+ "labelTranslationKey": {
1686
+ "type": "string"
1687
+ },
1688
+ "multiple": {
1689
+ "type": "boolean",
1690
+ "const": false
1691
+ }
1692
+ },
1693
+ "required": [
1694
+ "multiple"
1695
+ ],
1696
+ "additionalProperties": false
1697
+ },
1698
+ "meta": {
1699
+ "type": "object",
1700
+ "properties": {
1701
+ "schemaVersion": {
1702
+ "default": "1.0",
1703
+ "type": "string"
1704
+ },
1705
+ "title": {
1706
+ "type": "string"
1707
+ },
1708
+ "usageDescription": {
1709
+ "type": "string"
1710
+ }
1711
+ },
1712
+ "required": [
1713
+ "schemaVersion"
1714
+ ],
1715
+ "additionalProperties": false
1716
+ },
1717
+ "options": {
1718
+ "type": "array",
1719
+ "items": {
1720
+ "type": "object",
1721
+ "properties": {
1722
+ "label": {
1723
+ "default": "Option A",
1724
+ "type": "string"
1725
+ },
1726
+ "value": {
1727
+ "default": "a",
1728
+ "type": "string"
1729
+ },
1730
+ "selected": {
1731
+ "default": false,
1732
+ "type": "boolean"
1733
+ }
1734
+ },
1735
+ "required": [
1736
+ "label",
1737
+ "value",
1738
+ "selected"
1739
+ ],
1740
+ "additionalProperties": false
1741
+ }
1742
+ },
1743
+ "showCommentField": {
1744
+ "type": "boolean"
1745
+ }
1746
+ },
1747
+ "required": [
1748
+ "type",
1749
+ "attributes",
1750
+ "meta",
1751
+ "options"
1752
+ ],
1753
+ "additionalProperties": false
1754
+ }
1755
+ },
1756
+ "required": [
1757
+ "heading",
1758
+ "help",
1759
+ "required",
1760
+ "enabled",
1761
+ "content"
1762
+ ],
1763
+ "additionalProperties": false
1764
+ },
1765
+ {
1766
+ "type": "object",
1767
+ "properties": {
1768
+ "heading": {
1769
+ "default": "Data Flags",
1770
+ "type": "string"
1771
+ },
1772
+ "help": {
1773
+ "default": "Mark all of the statements that are true about the dataset",
1774
+ "type": "string"
1775
+ },
1776
+ "required": {
1777
+ "default": false,
1778
+ "type": "boolean"
1779
+ },
1780
+ "enabled": {
1781
+ "default": false,
1782
+ "type": "boolean"
1783
+ },
1784
+ "content": {
1785
+ "type": "object",
1786
+ "properties": {
1787
+ "type": {
1788
+ "type": "string",
1789
+ "const": "checkBoxes"
1790
+ },
1791
+ "attributes": {
1792
+ "type": "object",
1793
+ "properties": {
1794
+ "label": {
1795
+ "type": "string"
1796
+ },
1797
+ "help": {
1798
+ "type": "string"
1799
+ },
1800
+ "labelTranslationKey": {
1801
+ "type": "string"
1802
+ }
1803
+ },
1804
+ "additionalProperties": false
1805
+ },
1806
+ "meta": {
1807
+ "type": "object",
1808
+ "properties": {
1809
+ "schemaVersion": {
1810
+ "default": "1.0",
1811
+ "type": "string"
1812
+ },
1813
+ "title": {
1814
+ "type": "string"
1815
+ },
1816
+ "usageDescription": {
1817
+ "type": "string"
1818
+ }
1819
+ },
1820
+ "required": [
1821
+ "schemaVersion"
1822
+ ],
1823
+ "additionalProperties": false
1824
+ },
1825
+ "options": {
1826
+ "type": "array",
1827
+ "items": {
1828
+ "type": "object",
1829
+ "properties": {
1830
+ "label": {
1831
+ "default": "Option A",
1832
+ "type": "string"
1833
+ },
1834
+ "value": {
1835
+ "default": "a",
1836
+ "type": "string"
1837
+ },
1838
+ "checked": {
1839
+ "default": false,
1840
+ "type": "boolean"
1841
+ }
1842
+ },
1843
+ "required": [
1844
+ "label",
1845
+ "value",
1846
+ "checked"
1847
+ ],
1848
+ "additionalProperties": false
1849
+ }
1850
+ },
1851
+ "showCommentField": {
1852
+ "type": "boolean"
1853
+ }
1854
+ },
1855
+ "required": [
1856
+ "type",
1857
+ "attributes",
1858
+ "meta",
1859
+ "options"
1860
+ ],
1861
+ "additionalProperties": false
1862
+ }
1863
+ },
1864
+ "required": [
1865
+ "heading",
1866
+ "help",
1867
+ "required",
1868
+ "enabled",
1869
+ "content"
1870
+ ],
1871
+ "additionalProperties": false
1872
+ },
1873
+ {
1874
+ "type": "object",
1875
+ "properties": {
1876
+ "heading": {
1877
+ "default": "Access Level",
1878
+ "type": "string"
1879
+ },
1880
+ "help": {
1881
+ "default": "Select the access level for this research output",
1882
+ "type": "string"
1883
+ },
1884
+ "required": {
1885
+ "default": false,
1886
+ "type": "boolean"
1887
+ },
1888
+ "enabled": {
1889
+ "default": false,
1890
+ "type": "boolean"
1891
+ },
1892
+ "content": {
1893
+ "type": "object",
1894
+ "properties": {
1895
+ "type": {
1896
+ "type": "string",
1897
+ "const": "radioButtons"
1898
+ },
1899
+ "attributes": {
1900
+ "type": "object",
1901
+ "properties": {
1902
+ "label": {
1903
+ "type": "string"
1904
+ },
1905
+ "help": {
1906
+ "type": "string"
1907
+ },
1908
+ "labelTranslationKey": {
1909
+ "type": "string"
1910
+ }
1911
+ },
1912
+ "additionalProperties": false
1913
+ },
1914
+ "meta": {
1915
+ "type": "object",
1916
+ "properties": {
1917
+ "schemaVersion": {
1918
+ "default": "1.0",
1919
+ "type": "string"
1920
+ },
1921
+ "title": {
1922
+ "type": "string"
1923
+ },
1924
+ "usageDescription": {
1925
+ "type": "string"
1926
+ }
1927
+ },
1928
+ "required": [
1929
+ "schemaVersion"
1930
+ ],
1931
+ "additionalProperties": false
1932
+ },
1933
+ "options": {
1934
+ "type": "array",
1935
+ "items": {
1936
+ "type": "object",
1937
+ "properties": {
1938
+ "label": {
1939
+ "default": "Option A",
1940
+ "type": "string"
1941
+ },
1942
+ "value": {
1943
+ "default": "a",
1944
+ "type": "string"
1945
+ },
1946
+ "selected": {
1947
+ "default": false,
1948
+ "type": "boolean"
1949
+ }
1950
+ },
1951
+ "required": [
1952
+ "label",
1953
+ "value",
1954
+ "selected"
1955
+ ],
1956
+ "additionalProperties": false
1957
+ }
1958
+ },
1959
+ "showCommentField": {
1960
+ "type": "boolean"
1961
+ }
1962
+ },
1963
+ "required": [
1964
+ "type",
1965
+ "attributes",
1966
+ "meta",
1967
+ "options"
1968
+ ],
1969
+ "additionalProperties": false
1970
+ }
1971
+ },
1972
+ "required": [
1973
+ "heading",
1974
+ "help",
1975
+ "required",
1976
+ "enabled",
1977
+ "content"
1978
+ ],
1979
+ "additionalProperties": false
1980
+ },
1981
+ {
1982
+ "type": "object",
1983
+ "properties": {
1984
+ "heading": {
1985
+ "default": "Anticipated Release Date",
1986
+ "type": "string"
1987
+ },
1988
+ "help": {
1989
+ "default": "The anticipated release date for the research output",
1990
+ "type": "string"
1991
+ },
1992
+ "required": {
1993
+ "default": false,
1994
+ "type": "boolean"
1995
+ },
1996
+ "enabled": {
1997
+ "default": false,
1998
+ "type": "boolean"
1999
+ },
2000
+ "content": {
2001
+ "type": "object",
2002
+ "properties": {
2003
+ "type": {
2004
+ "type": "string",
2005
+ "const": "date"
2006
+ },
2007
+ "attributes": {
2008
+ "type": "object",
2009
+ "properties": {
2010
+ "label": {
2011
+ "type": "string"
2012
+ },
2013
+ "help": {
2014
+ "type": "string"
2015
+ },
2016
+ "labelTranslationKey": {
2017
+ "type": "string"
2018
+ },
2019
+ "max": {
2020
+ "type": "string"
2021
+ },
2022
+ "min": {
2023
+ "type": "string"
2024
+ },
2025
+ "step": {
2026
+ "default": 1,
2027
+ "type": "number"
2028
+ }
2029
+ },
2030
+ "required": [
2031
+ "step"
2032
+ ],
2033
+ "additionalProperties": false
2034
+ },
2035
+ "meta": {
2036
+ "type": "object",
2037
+ "properties": {
2038
+ "schemaVersion": {
2039
+ "default": "1.0",
2040
+ "type": "string"
2041
+ },
2042
+ "title": {
2043
+ "type": "string"
2044
+ },
2045
+ "usageDescription": {
2046
+ "type": "string"
2047
+ }
2048
+ },
2049
+ "required": [
2050
+ "schemaVersion"
2051
+ ],
2052
+ "additionalProperties": false
2053
+ },
2054
+ "showCommentField": {
2055
+ "type": "boolean"
2056
+ }
2057
+ },
2058
+ "required": [
2059
+ "type",
2060
+ "attributes",
2061
+ "meta"
2062
+ ],
2063
+ "additionalProperties": false
2064
+ }
2065
+ },
2066
+ "required": [
2067
+ "heading",
2068
+ "help",
2069
+ "required",
2070
+ "enabled",
2071
+ "content"
2072
+ ],
2073
+ "additionalProperties": false
2074
+ },
2075
+ {
2076
+ "type": "object",
2077
+ "properties": {
2078
+ "heading": {
2079
+ "default": "Byte Size",
2080
+ "type": "string"
2081
+ },
2082
+ "help": {
2083
+ "default": "The size of the research output in bytes",
2084
+ "type": "string"
2085
+ },
2086
+ "required": {
2087
+ "default": false,
2088
+ "type": "boolean"
2089
+ },
2090
+ "enabled": {
2091
+ "default": false,
2092
+ "type": "boolean"
2093
+ },
2094
+ "content": {
2095
+ "type": "object",
2096
+ "properties": {
2097
+ "type": {
2098
+ "type": "string",
2099
+ "const": "numberWithContext"
2100
+ },
2101
+ "attributes": {
2102
+ "type": "object",
2103
+ "properties": {
2104
+ "label": {
2105
+ "type": "string"
2106
+ },
2107
+ "help": {
2108
+ "type": "string"
2109
+ },
2110
+ "labelTranslationKey": {
2111
+ "type": "string"
2112
+ },
2113
+ "max": {
2114
+ "type": "number"
2115
+ },
2116
+ "min": {
2117
+ "default": 0,
2118
+ "type": "number"
2119
+ },
2120
+ "step": {
2121
+ "default": 1,
2122
+ "type": "number"
2123
+ },
2124
+ "context": {
2125
+ "type": "array",
2126
+ "items": {
2127
+ "type": "object",
2128
+ "properties": {
2129
+ "label": {
2130
+ "default": "",
2131
+ "type": "string"
2132
+ },
2133
+ "labelTranslationKey": {
2134
+ "type": "string"
2135
+ },
2136
+ "value": {
2137
+ "default": "",
2138
+ "type": "string"
2139
+ },
2140
+ "selected": {
2141
+ "default": false,
2142
+ "type": "boolean"
2143
+ }
2144
+ },
2145
+ "required": [
2146
+ "label",
2147
+ "value",
2148
+ "selected"
2149
+ ],
2150
+ "additionalProperties": false
2151
+ }
2152
+ }
2153
+ },
2154
+ "required": [
2155
+ "min",
2156
+ "step",
2157
+ "context"
2158
+ ],
2159
+ "additionalProperties": false
2160
+ },
2161
+ "meta": {
2162
+ "type": "object",
2163
+ "properties": {
2164
+ "schemaVersion": {
2165
+ "default": "1.0",
2166
+ "type": "string"
2167
+ },
2168
+ "title": {
2169
+ "type": "string"
2170
+ },
2171
+ "usageDescription": {
2172
+ "type": "string"
2173
+ }
2174
+ },
2175
+ "required": [
2176
+ "schemaVersion"
2177
+ ],
2178
+ "additionalProperties": false
2179
+ },
2180
+ "showCommentField": {
2181
+ "type": "boolean"
2182
+ }
2183
+ },
2184
+ "required": [
2185
+ "type",
2186
+ "attributes",
2187
+ "meta"
2188
+ ],
2189
+ "additionalProperties": false
2190
+ }
2191
+ },
2192
+ "required": [
2193
+ "heading",
2194
+ "help",
2195
+ "required",
2196
+ "enabled",
2197
+ "content"
2198
+ ],
2199
+ "additionalProperties": false
2200
+ },
2201
+ {
2202
+ "type": "object",
2203
+ "properties": {
2204
+ "heading": {
2205
+ "default": "Repository",
2206
+ "type": "string"
2207
+ },
2208
+ "help": {
2209
+ "default": "Select repository(ies) you would prefer users to deposit in",
2210
+ "type": "string"
2211
+ },
2212
+ "required": {
2213
+ "default": false,
2214
+ "type": "boolean"
2215
+ },
2216
+ "enabled": {
2217
+ "default": false,
2218
+ "type": "boolean"
2219
+ },
2220
+ "content": {
2221
+ "type": "object",
2222
+ "properties": {
2223
+ "type": {
2224
+ "type": "string",
2225
+ "const": "repositorySearch"
2226
+ },
2227
+ "attributes": {
2228
+ "type": "object",
2229
+ "properties": {
2230
+ "label": {
2231
+ "type": "string"
2232
+ },
2233
+ "help": {
2234
+ "type": "string"
2235
+ },
2236
+ "labelTranslationKey": {
2237
+ "type": "string"
2238
+ }
2239
+ },
2240
+ "additionalProperties": false
2241
+ },
2242
+ "meta": {
2243
+ "type": "object",
2244
+ "properties": {
2245
+ "schemaVersion": {
2246
+ "default": "1.0",
2247
+ "type": "string"
2248
+ },
2249
+ "title": {
2250
+ "type": "string"
2251
+ },
2252
+ "usageDescription": {
2253
+ "type": "string"
2254
+ }
2255
+ },
2256
+ "required": [
2257
+ "schemaVersion"
2258
+ ],
2259
+ "additionalProperties": false
2260
+ },
2261
+ "graphQL": {
2262
+ "type": "object",
2263
+ "properties": {
2264
+ "displayFields": {
2265
+ "type": "array",
2266
+ "items": {
2267
+ "type": "object",
2268
+ "properties": {
2269
+ "propertyName": {
2270
+ "default": "id",
2271
+ "type": "string"
2272
+ },
2273
+ "label": {
2274
+ "default": "Id",
2275
+ "type": "string"
2276
+ },
2277
+ "labelTranslationKey": {
2278
+ "type": "string"
2279
+ }
2280
+ },
2281
+ "required": [
2282
+ "propertyName",
2283
+ "label"
2284
+ ],
2285
+ "additionalProperties": false
2286
+ }
2287
+ },
2288
+ "localQueryId": {
2289
+ "type": "string"
2290
+ },
2291
+ "query": {
2292
+ "type": "string",
2293
+ "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 } } }"
2294
+ },
2295
+ "responseField": {
2296
+ "type": "string",
2297
+ "const": "repositories.items"
2298
+ },
2299
+ "variables": {
2300
+ "type": "array",
2301
+ "items": {
2302
+ "type": "object",
2303
+ "properties": {
2304
+ "minLength": {
2305
+ "type": "number"
2306
+ },
2307
+ "label": {
2308
+ "type": "string"
2309
+ },
2310
+ "labelTranslationKey": {
2311
+ "type": "string"
2312
+ },
2313
+ "name": {
2314
+ "default": "search",
2315
+ "type": "string"
2316
+ },
2317
+ "type": {
2318
+ "default": "string",
2319
+ "type": "string"
2320
+ },
2321
+ "defaultValue": {
2322
+ "type": "string"
2323
+ }
2324
+ },
2325
+ "required": [
2326
+ "name",
2327
+ "type"
2328
+ ],
2329
+ "additionalProperties": false
2330
+ }
2331
+ },
2332
+ "queryId": {
2333
+ "default": "useRepositoriesQuery",
2334
+ "type": "string"
2335
+ },
2336
+ "answerField": {
2337
+ "type": "string",
2338
+ "const": "uri"
2339
+ }
2340
+ },
2341
+ "required": [
2342
+ "displayFields",
2343
+ "query",
2344
+ "responseField",
2345
+ "variables",
2346
+ "answerField"
2347
+ ],
2348
+ "additionalProperties": false
2349
+ }
2350
+ },
2351
+ "required": [
2352
+ "type",
2353
+ "attributes",
2354
+ "meta",
2355
+ "graphQL"
2356
+ ],
2357
+ "additionalProperties": false
2358
+ },
2359
+ "preferences": {
2360
+ "default": [],
2361
+ "type": "array",
2362
+ "items": {
2363
+ "type": "object",
2364
+ "properties": {
2365
+ "label": {
2366
+ "default": "",
2367
+ "type": "string"
2368
+ },
2369
+ "value": {
2370
+ "default": "",
2371
+ "type": "string"
2372
+ }
2373
+ },
2374
+ "required": [
2375
+ "label",
2376
+ "value"
2377
+ ],
2378
+ "additionalProperties": false
2379
+ }
2380
+ }
2381
+ },
2382
+ "required": [
2383
+ "heading",
2384
+ "help",
2385
+ "required",
2386
+ "enabled",
2387
+ "content",
2388
+ "preferences"
2389
+ ],
2390
+ "additionalProperties": false
2391
+ },
2392
+ {
2393
+ "type": "object",
2394
+ "properties": {
2395
+ "heading": {
2396
+ "default": "Metadata Standard",
2397
+ "type": "string"
2398
+ },
2399
+ "help": {
2400
+ "default": "Select metadata standard(s) you would prefer users to use",
2401
+ "type": "string"
2402
+ },
2403
+ "required": {
2404
+ "default": false,
2405
+ "type": "boolean"
2406
+ },
2407
+ "enabled": {
2408
+ "default": false,
2409
+ "type": "boolean"
2410
+ },
2411
+ "content": {
2412
+ "type": "object",
2413
+ "properties": {
2414
+ "type": {
2415
+ "type": "string",
2416
+ "const": "metadataStandardSearch"
2417
+ },
2418
+ "attributes": {
2419
+ "type": "object",
2420
+ "properties": {
2421
+ "label": {
2422
+ "type": "string"
2423
+ },
2424
+ "help": {
2425
+ "type": "string"
2426
+ },
2427
+ "labelTranslationKey": {
2428
+ "type": "string"
2429
+ }
2430
+ },
2431
+ "additionalProperties": false
2432
+ },
2433
+ "meta": {
2434
+ "type": "object",
2435
+ "properties": {
2436
+ "schemaVersion": {
2437
+ "default": "1.0",
2438
+ "type": "string"
2439
+ },
2440
+ "title": {
2441
+ "type": "string"
2442
+ },
2443
+ "usageDescription": {
2444
+ "type": "string"
2445
+ }
2446
+ },
2447
+ "required": [
2448
+ "schemaVersion"
2449
+ ],
2450
+ "additionalProperties": false
2451
+ },
2452
+ "graphQL": {
2453
+ "type": "object",
2454
+ "properties": {
2455
+ "displayFields": {
2456
+ "type": "array",
2457
+ "items": {
2458
+ "type": "object",
2459
+ "properties": {
2460
+ "propertyName": {
2461
+ "default": "id",
2462
+ "type": "string"
2463
+ },
2464
+ "label": {
2465
+ "default": "Id",
2466
+ "type": "string"
2467
+ },
2468
+ "labelTranslationKey": {
2469
+ "type": "string"
2470
+ }
2471
+ },
2472
+ "required": [
2473
+ "propertyName",
2474
+ "label"
2475
+ ],
2476
+ "additionalProperties": false
2477
+ }
2478
+ },
2479
+ "localQueryId": {
2480
+ "type": "string"
2481
+ },
2482
+ "query": {
2483
+ "type": "string",
2484
+ "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 } } }"
2485
+ },
2486
+ "responseField": {
2487
+ "type": "string",
2488
+ "const": "metadataStandards.items"
2489
+ },
2490
+ "variables": {
2491
+ "type": "array",
2492
+ "items": {
2493
+ "type": "object",
2494
+ "properties": {
2495
+ "minLength": {
2496
+ "type": "number"
2497
+ },
2498
+ "label": {
2499
+ "type": "string"
2500
+ },
2501
+ "labelTranslationKey": {
2502
+ "type": "string"
2503
+ },
2504
+ "name": {
2505
+ "default": "search",
2506
+ "type": "string"
2507
+ },
2508
+ "type": {
2509
+ "default": "string",
2510
+ "type": "string"
2511
+ },
2512
+ "defaultValue": {
2513
+ "type": "string"
2514
+ }
2515
+ },
2516
+ "required": [
2517
+ "name",
2518
+ "type"
2519
+ ],
2520
+ "additionalProperties": false
2521
+ }
2522
+ },
2523
+ "queryId": {
2524
+ "default": "useMetadataStandardsQuery",
2525
+ "type": "string"
2526
+ },
2527
+ "answerField": {
2528
+ "default": "uri",
2529
+ "type": "string",
2530
+ "const": "uri"
2531
+ }
2532
+ },
2533
+ "required": [
2534
+ "displayFields",
2535
+ "query",
2536
+ "responseField",
2537
+ "variables",
2538
+ "answerField"
2539
+ ],
2540
+ "additionalProperties": false
2541
+ }
2542
+ },
2543
+ "required": [
2544
+ "type",
2545
+ "attributes",
2546
+ "meta",
2547
+ "graphQL"
2548
+ ],
2549
+ "additionalProperties": false
2550
+ },
2551
+ "preferences": {
2552
+ "default": [],
2553
+ "type": "array",
2554
+ "items": {
2555
+ "type": "object",
2556
+ "properties": {
2557
+ "label": {
2558
+ "default": "",
2559
+ "type": "string"
2560
+ },
2561
+ "value": {
2562
+ "default": "",
2563
+ "type": "string"
2564
+ }
2565
+ },
2566
+ "required": [
2567
+ "label",
2568
+ "value"
2569
+ ],
2570
+ "additionalProperties": false
2571
+ }
2572
+ }
2573
+ },
2574
+ "required": [
2575
+ "heading",
2576
+ "help",
2577
+ "required",
2578
+ "enabled",
2579
+ "content",
2580
+ "preferences"
2581
+ ],
2582
+ "additionalProperties": false
2583
+ },
2584
+ {
2585
+ "type": "object",
2586
+ "properties": {
2587
+ "heading": {
2588
+ "default": "License",
2589
+ "type": "string"
2590
+ },
2591
+ "help": {
2592
+ "default": "Select the license you will apply to the research output",
2593
+ "type": "string"
2594
+ },
2595
+ "required": {
2596
+ "default": false,
2597
+ "type": "boolean"
2598
+ },
2599
+ "enabled": {
2600
+ "default": false,
2601
+ "type": "boolean"
2602
+ },
2603
+ "content": {
2604
+ "type": "object",
2605
+ "properties": {
2606
+ "type": {
2607
+ "type": "string",
2608
+ "const": "licenseSearch"
2609
+ },
2610
+ "attributes": {
2611
+ "type": "object",
2612
+ "properties": {
2613
+ "label": {
2614
+ "type": "string"
2615
+ },
2616
+ "help": {
2617
+ "type": "string"
2618
+ },
2619
+ "labelTranslationKey": {
2620
+ "type": "string"
2621
+ }
2622
+ },
2623
+ "additionalProperties": false
2624
+ },
2625
+ "meta": {
2626
+ "type": "object",
2627
+ "properties": {
2628
+ "schemaVersion": {
2629
+ "default": "1.0",
2630
+ "type": "string"
2631
+ },
2632
+ "title": {
2633
+ "type": "string"
2634
+ },
2635
+ "usageDescription": {
2636
+ "type": "string"
2637
+ }
2638
+ },
2639
+ "required": [
2640
+ "schemaVersion"
2641
+ ],
2642
+ "additionalProperties": false
2643
+ },
2644
+ "graphQL": {
2645
+ "type": "object",
2646
+ "properties": {
2647
+ "displayFields": {
2648
+ "type": "array",
2649
+ "items": {
2650
+ "type": "object",
2651
+ "properties": {
2652
+ "propertyName": {
2653
+ "default": "id",
2654
+ "type": "string"
2655
+ },
2656
+ "label": {
2657
+ "default": "Id",
2658
+ "type": "string"
2659
+ },
2660
+ "labelTranslationKey": {
2661
+ "type": "string"
2662
+ }
2663
+ },
2664
+ "required": [
2665
+ "propertyName",
2666
+ "label"
2667
+ ],
2668
+ "additionalProperties": false
2669
+ }
2670
+ },
2671
+ "localQueryId": {
2672
+ "type": "string"
2673
+ },
2674
+ "query": {
2675
+ "type": "string",
2676
+ "const": "query Licenses($term: String, $paginationOptions: PaginationOptions){ license(term: $term, paginationOptions: $paginationOptions) { totalCount currentOffset limit hasNextPage hasPreviousPage availableSortFields items { id name uri description } } }"
2677
+ },
2678
+ "responseField": {
2679
+ "type": "string",
2680
+ "const": "licenses.items"
2681
+ },
2682
+ "variables": {
2683
+ "type": "array",
2684
+ "items": {
2685
+ "type": "object",
2686
+ "properties": {
2687
+ "minLength": {
2688
+ "type": "number"
2689
+ },
2690
+ "label": {
2691
+ "type": "string"
2692
+ },
2693
+ "labelTranslationKey": {
2694
+ "type": "string"
2695
+ },
2696
+ "name": {
2697
+ "default": "search",
2698
+ "type": "string"
2699
+ },
2700
+ "type": {
2701
+ "default": "string",
2702
+ "type": "string"
2703
+ },
2704
+ "defaultValue": {
2705
+ "type": "string"
2706
+ }
2707
+ },
2708
+ "required": [
2709
+ "name",
2710
+ "type"
2711
+ ],
2712
+ "additionalProperties": false
2713
+ }
2714
+ },
2715
+ "queryId": {
2716
+ "default": "useLicensesQuery",
2717
+ "type": "string"
2718
+ },
2719
+ "answerField": {
2720
+ "type": "string",
2721
+ "const": "uri"
2722
+ }
2723
+ },
2724
+ "required": [
2725
+ "displayFields",
2726
+ "query",
2727
+ "responseField",
2728
+ "variables",
2729
+ "answerField"
2730
+ ],
2731
+ "additionalProperties": false
2732
+ }
2733
+ },
2734
+ "required": [
2735
+ "type",
2736
+ "attributes",
2737
+ "meta",
2738
+ "graphQL"
2739
+ ],
2740
+ "additionalProperties": false
2741
+ },
2742
+ "preferences": {
2743
+ "default": [],
2744
+ "type": "array",
2745
+ "items": {
2746
+ "type": "object",
2747
+ "properties": {
2748
+ "label": {
2749
+ "default": "",
2750
+ "type": "string"
2751
+ },
2752
+ "value": {
2753
+ "default": "",
2754
+ "type": "string"
2755
+ }
2756
+ },
2757
+ "required": [
2758
+ "label",
2759
+ "value"
2760
+ ],
2761
+ "additionalProperties": false
2762
+ }
2763
+ }
2764
+ },
2765
+ "required": [
2766
+ "heading",
2767
+ "help",
2768
+ "required",
2769
+ "enabled",
2770
+ "content",
2771
+ "preferences"
2772
+ ],
2773
+ "additionalProperties": false
2774
+ },
2775
+ {
2776
+ "type": "object",
2777
+ "properties": {
2778
+ "heading": {
2779
+ "default": "Custom Column",
2780
+ "type": "string"
2781
+ },
2782
+ "help": {
2783
+ "default": "Explanation of what we expect the user to enter.",
2784
+ "type": "string"
2785
+ },
2786
+ "required": {
2787
+ "default": false,
2788
+ "type": "boolean"
2789
+ },
2790
+ "enabled": {
2791
+ "default": false,
2792
+ "type": "boolean"
2793
+ },
2794
+ "content": {
2795
+ "type": "object",
2796
+ "properties": {
2797
+ "type": {
2798
+ "type": "string",
2799
+ "const": "text"
2800
+ },
2801
+ "attributes": {
2802
+ "type": "object",
2803
+ "properties": {
2804
+ "label": {
2805
+ "type": "string"
2806
+ },
2807
+ "help": {
2808
+ "type": "string"
2809
+ },
2810
+ "labelTranslationKey": {
2811
+ "type": "string"
2812
+ },
2813
+ "maxLength": {
2814
+ "type": "number"
2815
+ },
2816
+ "minLength": {
2817
+ "type": "number"
2818
+ },
2819
+ "pattern": {
2820
+ "type": "string"
2821
+ },
2822
+ "defaultValue": {
2823
+ "type": "string"
2824
+ }
2825
+ },
2826
+ "additionalProperties": false
2827
+ },
2828
+ "meta": {
2829
+ "type": "object",
2830
+ "properties": {
2831
+ "schemaVersion": {
2832
+ "default": "1.0",
2833
+ "type": "string"
2834
+ },
2835
+ "title": {
2836
+ "type": "string"
2837
+ },
2838
+ "usageDescription": {
2839
+ "type": "string"
2840
+ }
2841
+ },
2842
+ "required": [
2843
+ "schemaVersion"
2844
+ ],
2845
+ "additionalProperties": false
2846
+ }
2847
+ },
2848
+ "required": [
2849
+ "type",
2850
+ "attributes",
2851
+ "meta"
2852
+ ],
2853
+ "additionalProperties": false
2854
+ }
2855
+ },
2856
+ "required": [
2857
+ "heading",
2858
+ "help",
2859
+ "required",
2860
+ "enabled",
2861
+ "content"
2862
+ ],
2863
+ "additionalProperties": false
2864
+ }
2865
+ ]
2866
+ }
2867
+ }
2868
+ },
2869
+ "required": [
2870
+ "type",
2871
+ "meta",
2872
+ "columns"
2873
+ ],
2874
+ "additionalProperties": false
2875
+ },
2876
+ {
2877
+ "type": "object",
2878
+ "properties": {
2879
+ "type": {
2880
+ "type": "string",
2881
+ "const": "selectBox"
2882
+ },
2883
+ "attributes": {
2884
+ "type": "object",
2885
+ "properties": {
2886
+ "label": {
2887
+ "type": "string"
2888
+ },
2889
+ "help": {
2890
+ "type": "string"
2891
+ },
2892
+ "labelTranslationKey": {
2893
+ "type": "string"
2894
+ },
2895
+ "multiple": {
2896
+ "type": "boolean",
2897
+ "const": false
2898
+ }
2899
+ },
2900
+ "required": [
2901
+ "multiple"
2902
+ ],
2903
+ "additionalProperties": false
2904
+ },
2905
+ "meta": {
2906
+ "type": "object",
2907
+ "properties": {
2908
+ "schemaVersion": {
2909
+ "default": "1.0",
2910
+ "type": "string"
2911
+ },
2912
+ "title": {
2913
+ "type": "string"
2914
+ },
2915
+ "usageDescription": {
2916
+ "type": "string"
2917
+ }
2918
+ },
2919
+ "required": [
2920
+ "schemaVersion"
2921
+ ],
2922
+ "additionalProperties": false
2923
+ },
2924
+ "options": {
2925
+ "type": "array",
2926
+ "items": {
2927
+ "type": "object",
2928
+ "properties": {
2929
+ "label": {
2930
+ "default": "Option A",
2931
+ "type": "string"
2932
+ },
2933
+ "value": {
2934
+ "default": "a",
2935
+ "type": "string"
2936
+ },
2937
+ "selected": {
2938
+ "default": false,
2939
+ "type": "boolean"
2940
+ }
2941
+ },
2942
+ "required": [
2943
+ "label",
2944
+ "value",
2945
+ "selected"
2946
+ ],
2947
+ "additionalProperties": false
2948
+ }
2949
+ },
2950
+ "showCommentField": {
2951
+ "type": "boolean"
2952
+ }
2953
+ },
2954
+ "required": [
2955
+ "type",
2956
+ "attributes",
2957
+ "meta",
2958
+ "options"
2959
+ ],
2960
+ "additionalProperties": false
2961
+ },
2962
+ {
2963
+ "type": "object",
2964
+ "properties": {
2965
+ "type": {
2966
+ "type": "string",
2967
+ "const": "table"
2968
+ },
2969
+ "attributes": {
2970
+ "type": "object",
2971
+ "properties": {
2972
+ "label": {
2973
+ "type": "string"
2974
+ },
2975
+ "help": {
2976
+ "type": "string"
2977
+ },
2978
+ "labelTranslationKey": {
2979
+ "type": "string"
2980
+ },
2981
+ "canAddRows": {
2982
+ "default": true,
2983
+ "type": "boolean"
2984
+ },
2985
+ "canRemoveRows": {
2986
+ "default": true,
2987
+ "type": "boolean"
2988
+ },
2989
+ "initialRows": {
2990
+ "default": 1,
2991
+ "type": "number"
2992
+ },
2993
+ "maxRows": {
2994
+ "type": "number"
2995
+ },
2996
+ "minRows": {
2997
+ "type": "number"
2998
+ }
2999
+ },
3000
+ "required": [
3001
+ "canAddRows",
3002
+ "canRemoveRows",
3003
+ "initialRows"
3004
+ ],
3005
+ "additionalProperties": false
3006
+ },
3007
+ "meta": {
3008
+ "type": "object",
3009
+ "properties": {
3010
+ "schemaVersion": {
3011
+ "default": "1.0",
3012
+ "type": "string"
3013
+ },
3014
+ "title": {
3015
+ "type": "string"
3016
+ },
3017
+ "usageDescription": {
3018
+ "type": "string"
3019
+ }
3020
+ },
3021
+ "required": [
3022
+ "schemaVersion"
3023
+ ],
3024
+ "additionalProperties": false
3025
+ },
3026
+ "columns": {
3027
+ "type": "array",
3028
+ "items": {
3029
+ "type": "object",
3030
+ "properties": {
3031
+ "heading": {
3032
+ "default": "Column A",
3033
+ "type": "string"
3034
+ },
3035
+ "help": {
3036
+ "type": "string"
3037
+ },
3038
+ "required": {
3039
+ "default": false,
3040
+ "type": "boolean"
3041
+ },
3042
+ "enabled": {
3043
+ "default": true,
3044
+ "type": "boolean"
3045
+ },
3046
+ "content": {
3047
+ "oneOf": [
3048
+ {
3049
+ "type": "object",
3050
+ "properties": {
3051
+ "type": {
3052
+ "type": "string",
3053
+ "const": "affiliationSearch"
3054
+ },
3055
+ "attributes": {
3056
+ "type": "object",
3057
+ "properties": {
3058
+ "label": {
3059
+ "type": "string"
3060
+ },
3061
+ "help": {
3062
+ "type": "string"
3063
+ },
3064
+ "labelTranslationKey": {
3065
+ "type": "string"
3066
+ }
3067
+ },
3068
+ "additionalProperties": false
3069
+ },
3070
+ "meta": {
3071
+ "type": "object",
3072
+ "properties": {
3073
+ "schemaVersion": {
3074
+ "default": "1.0",
3075
+ "type": "string"
3076
+ },
3077
+ "title": {
3078
+ "type": "string"
3079
+ },
3080
+ "usageDescription": {
3081
+ "type": "string"
3082
+ }
3083
+ },
3084
+ "required": [
3085
+ "schemaVersion"
3086
+ ],
3087
+ "additionalProperties": false
3088
+ },
3089
+ "graphQL": {
3090
+ "type": "object",
3091
+ "properties": {
3092
+ "displayFields": {
3093
+ "type": "array",
3094
+ "items": {
3095
+ "type": "object",
3096
+ "properties": {
3097
+ "propertyName": {
3098
+ "default": "id",
3099
+ "type": "string"
3100
+ },
3101
+ "label": {
3102
+ "default": "Id",
3103
+ "type": "string"
3104
+ },
3105
+ "labelTranslationKey": {
3106
+ "type": "string"
3107
+ }
3108
+ },
3109
+ "required": [
3110
+ "propertyName",
3111
+ "label"
3112
+ ],
3113
+ "additionalProperties": false
3114
+ }
3115
+ },
3116
+ "localQueryId": {
3117
+ "type": "string"
3118
+ },
3119
+ "query": {
3120
+ "type": "string",
3121
+ "const": "query Affiliations($name: String!){ affiliations(name: $name) { totalCount nextCursor items { id displayName uri } } }"
3122
+ },
3123
+ "responseField": {
3124
+ "default": "affiliations.items",
3125
+ "type": "string",
3126
+ "const": "affiliations.items"
3127
+ },
3128
+ "variables": {
3129
+ "type": "array",
3130
+ "items": {
3131
+ "type": "object",
3132
+ "properties": {
3133
+ "minLength": {
3134
+ "type": "number"
3135
+ },
3136
+ "label": {
3137
+ "type": "string"
3138
+ },
3139
+ "labelTranslationKey": {
3140
+ "type": "string"
3141
+ },
3142
+ "name": {
3143
+ "default": "search",
3144
+ "type": "string"
3145
+ },
3146
+ "type": {
3147
+ "default": "string",
3148
+ "type": "string"
3149
+ },
3150
+ "defaultValue": {
3151
+ "type": "string"
3152
+ }
3153
+ },
3154
+ "required": [
3155
+ "name",
3156
+ "type"
3157
+ ],
3158
+ "additionalProperties": false
3159
+ }
3160
+ },
3161
+ "queryId": {
3162
+ "default": "useAffiliationsQuery",
3163
+ "type": "string"
3164
+ },
3165
+ "answerField": {
3166
+ "default": "uri",
3167
+ "type": "string",
3168
+ "const": "uri"
3169
+ }
3170
+ },
3171
+ "required": [
3172
+ "displayFields",
3173
+ "query",
3174
+ "responseField",
3175
+ "variables",
3176
+ "answerField"
3177
+ ],
3178
+ "additionalProperties": false
3179
+ }
3180
+ },
3181
+ "required": [
3182
+ "type",
3183
+ "attributes",
3184
+ "meta",
3185
+ "graphQL"
3186
+ ],
3187
+ "additionalProperties": false
3188
+ },
3189
+ {
3190
+ "type": "object",
3191
+ "properties": {
3192
+ "type": {
3193
+ "type": "string",
3194
+ "const": "boolean"
3195
+ },
3196
+ "attributes": {
3197
+ "type": "object",
3198
+ "properties": {
3199
+ "label": {
3200
+ "type": "string"
3201
+ },
3202
+ "value": {
3203
+ "default": false,
3204
+ "type": "boolean"
3205
+ }
3206
+ },
3207
+ "required": [
3208
+ "label",
3209
+ "value"
3210
+ ],
3211
+ "additionalProperties": false
3212
+ },
3213
+ "meta": {
3214
+ "type": "object",
3215
+ "properties": {
3216
+ "schemaVersion": {
3217
+ "default": "1.0",
3218
+ "type": "string"
3219
+ },
3220
+ "title": {
3221
+ "type": "string"
3222
+ },
3223
+ "usageDescription": {
3224
+ "type": "string"
3225
+ }
3226
+ },
3227
+ "required": [
3228
+ "schemaVersion"
3229
+ ],
3230
+ "additionalProperties": false
3231
+ },
3232
+ "showCommentField": {
3233
+ "type": "boolean"
3234
+ }
3235
+ },
3236
+ "required": [
3237
+ "type",
3238
+ "attributes",
3239
+ "meta"
3240
+ ],
3241
+ "additionalProperties": false
3242
+ },
3243
+ {
3244
+ "type": "object",
3245
+ "properties": {
3246
+ "type": {
3247
+ "type": "string",
3248
+ "const": "checkBoxes"
3249
+ },
3250
+ "attributes": {
3251
+ "type": "object",
3252
+ "properties": {
3253
+ "label": {
3254
+ "type": "string"
3255
+ },
3256
+ "help": {
3257
+ "type": "string"
3258
+ },
3259
+ "labelTranslationKey": {
3260
+ "type": "string"
3261
+ }
3262
+ },
3263
+ "additionalProperties": false
3264
+ },
3265
+ "meta": {
3266
+ "type": "object",
3267
+ "properties": {
3268
+ "schemaVersion": {
3269
+ "default": "1.0",
3270
+ "type": "string"
3271
+ },
3272
+ "title": {
3273
+ "type": "string"
3274
+ },
3275
+ "usageDescription": {
3276
+ "type": "string"
3277
+ }
3278
+ },
3279
+ "required": [
3280
+ "schemaVersion"
3281
+ ],
3282
+ "additionalProperties": false
3283
+ },
3284
+ "options": {
3285
+ "type": "array",
3286
+ "items": {
3287
+ "type": "object",
3288
+ "properties": {
3289
+ "label": {
3290
+ "default": "Option A",
3291
+ "type": "string"
3292
+ },
3293
+ "value": {
3294
+ "default": "a",
3295
+ "type": "string"
3296
+ },
3297
+ "checked": {
3298
+ "default": false,
3299
+ "type": "boolean"
3300
+ }
3301
+ },
3302
+ "required": [
3303
+ "label",
3304
+ "value",
3305
+ "checked"
3306
+ ],
3307
+ "additionalProperties": false
3308
+ }
3309
+ },
3310
+ "showCommentField": {
3311
+ "type": "boolean"
3312
+ }
3313
+ },
3314
+ "required": [
3315
+ "type",
3316
+ "attributes",
3317
+ "meta",
3318
+ "options"
3319
+ ],
3320
+ "additionalProperties": false
3321
+ },
3322
+ {
3323
+ "type": "object",
3324
+ "properties": {
3325
+ "type": {
3326
+ "type": "string",
3327
+ "const": "currency"
3328
+ },
3329
+ "attributes": {
3330
+ "type": "object",
3331
+ "properties": {
3332
+ "label": {
3333
+ "type": "string"
3334
+ },
3335
+ "help": {
3336
+ "type": "string"
3337
+ },
3338
+ "labelTranslationKey": {
3339
+ "type": "string"
3340
+ },
3341
+ "max": {
3342
+ "type": "number"
3343
+ },
3344
+ "min": {
3345
+ "default": 0,
3346
+ "type": "number"
3347
+ },
3348
+ "step": {
3349
+ "default": 1,
3350
+ "type": "number"
3351
+ },
3352
+ "denomination": {
3353
+ "default": "USD",
3354
+ "type": "string"
3355
+ }
3356
+ },
3357
+ "required": [
3358
+ "min",
3359
+ "step",
3360
+ "denomination"
3361
+ ],
3362
+ "additionalProperties": false
3363
+ },
3364
+ "meta": {
3365
+ "type": "object",
3366
+ "properties": {
3367
+ "schemaVersion": {
3368
+ "default": "1.0",
3369
+ "type": "string"
3370
+ },
3371
+ "title": {
3372
+ "type": "string"
3373
+ },
3374
+ "usageDescription": {
3375
+ "type": "string"
3376
+ }
3377
+ },
3378
+ "required": [
3379
+ "schemaVersion"
3380
+ ],
3381
+ "additionalProperties": false
3382
+ },
3383
+ "showCommentField": {
3384
+ "type": "boolean"
3385
+ }
3386
+ },
3387
+ "required": [
3388
+ "type",
3389
+ "attributes",
3390
+ "meta"
3391
+ ],
3392
+ "additionalProperties": false
3393
+ },
3394
+ {
3395
+ "type": "object",
3396
+ "properties": {
3397
+ "type": {
3398
+ "type": "string",
3399
+ "const": "date"
3400
+ },
3401
+ "attributes": {
3402
+ "type": "object",
3403
+ "properties": {
3404
+ "label": {
3405
+ "type": "string"
3406
+ },
3407
+ "help": {
3408
+ "type": "string"
3409
+ },
3410
+ "labelTranslationKey": {
3411
+ "type": "string"
3412
+ },
3413
+ "max": {
3414
+ "type": "string"
3415
+ },
3416
+ "min": {
3417
+ "type": "string"
3418
+ },
3419
+ "step": {
3420
+ "default": 1,
3421
+ "type": "number"
3422
+ }
3423
+ },
3424
+ "required": [
3425
+ "step"
3426
+ ],
3427
+ "additionalProperties": false
3428
+ },
3429
+ "meta": {
3430
+ "type": "object",
3431
+ "properties": {
3432
+ "schemaVersion": {
3433
+ "default": "1.0",
3434
+ "type": "string"
3435
+ },
3436
+ "title": {
3437
+ "type": "string"
3438
+ },
3439
+ "usageDescription": {
3440
+ "type": "string"
3441
+ }
3442
+ },
3443
+ "required": [
3444
+ "schemaVersion"
3445
+ ],
3446
+ "additionalProperties": false
3447
+ },
3448
+ "showCommentField": {
3449
+ "type": "boolean"
3450
+ }
3451
+ },
3452
+ "required": [
3453
+ "type",
3454
+ "attributes",
3455
+ "meta"
3456
+ ],
3457
+ "additionalProperties": false
3458
+ },
3459
+ {
3460
+ "type": "object",
3461
+ "properties": {
3462
+ "type": {
3463
+ "type": "string",
3464
+ "const": "dateRange"
3465
+ },
3466
+ "attributes": {
3467
+ "type": "object",
3468
+ "properties": {
3469
+ "label": {
3470
+ "type": "string"
3471
+ },
3472
+ "help": {
3473
+ "type": "string"
3474
+ },
3475
+ "labelTranslationKey": {
3476
+ "type": "string"
3477
+ }
3478
+ },
3479
+ "additionalProperties": false
3480
+ },
3481
+ "meta": {
3482
+ "type": "object",
3483
+ "properties": {
3484
+ "schemaVersion": {
3485
+ "default": "1.0",
3486
+ "type": "string"
3487
+ },
3488
+ "title": {
3489
+ "type": "string"
3490
+ },
3491
+ "usageDescription": {
3492
+ "type": "string"
3493
+ }
3494
+ },
3495
+ "required": [
3496
+ "schemaVersion"
3497
+ ],
3498
+ "additionalProperties": false
3499
+ },
3500
+ "columns": {
3501
+ "type": "object",
3502
+ "properties": {
3503
+ "start": {
3504
+ "type": "object",
3505
+ "properties": {
3506
+ "label": {
3507
+ "default": "From",
3508
+ "type": "string"
3509
+ },
3510
+ "help": {
3511
+ "type": "string"
3512
+ },
3513
+ "labelTranslationKey": {
3514
+ "type": "string"
3515
+ },
3516
+ "max": {
3517
+ "type": "string"
3518
+ },
3519
+ "min": {
3520
+ "type": "string"
3521
+ },
3522
+ "step": {
3523
+ "default": 1,
3524
+ "type": "number"
3525
+ }
3526
+ },
3527
+ "required": [
3528
+ "label",
3529
+ "step"
3530
+ ],
3531
+ "additionalProperties": false
3532
+ },
3533
+ "end": {
3534
+ "type": "object",
3535
+ "properties": {
3536
+ "label": {
3537
+ "default": "To",
3538
+ "type": "string"
3539
+ },
3540
+ "help": {
3541
+ "type": "string"
3542
+ },
3543
+ "labelTranslationKey": {
3544
+ "type": "string"
3545
+ },
3546
+ "max": {
3547
+ "type": "string"
3548
+ },
3549
+ "min": {
3550
+ "type": "string"
3551
+ },
3552
+ "step": {
3553
+ "default": 1,
3554
+ "type": "number"
3555
+ }
3556
+ },
3557
+ "required": [
3558
+ "label",
3559
+ "step"
3560
+ ],
3561
+ "additionalProperties": false
3562
+ }
3563
+ },
3564
+ "required": [
3565
+ "start",
3566
+ "end"
3567
+ ],
3568
+ "additionalProperties": false
3569
+ },
3570
+ "showCommentField": {
3571
+ "type": "boolean"
3572
+ }
3573
+ },
3574
+ "required": [
3575
+ "type",
3576
+ "attributes",
3577
+ "meta",
3578
+ "columns"
3579
+ ],
3580
+ "additionalProperties": false
3581
+ },
3582
+ {
3583
+ "type": "object",
3584
+ "properties": {
3585
+ "type": {
3586
+ "type": "string",
3587
+ "const": "email"
3588
+ },
3589
+ "attributes": {
3590
+ "type": "object",
3591
+ "properties": {
3592
+ "label": {
3593
+ "type": "string"
3594
+ },
3595
+ "help": {
3596
+ "type": "string"
3597
+ },
3598
+ "labelTranslationKey": {
3599
+ "type": "string"
3600
+ },
3601
+ "maxLength": {
3602
+ "default": 255,
3603
+ "type": "number"
3604
+ },
3605
+ "minLength": {
3606
+ "type": "number"
3607
+ },
3608
+ "pattern": {
3609
+ "type": "string"
3610
+ },
3611
+ "multiple": {
3612
+ "default": false,
3613
+ "type": "boolean"
3614
+ }
3615
+ },
3616
+ "required": [
3617
+ "maxLength",
3618
+ "multiple"
3619
+ ],
3620
+ "additionalProperties": false
3621
+ },
3622
+ "meta": {
3623
+ "type": "object",
3624
+ "properties": {
3625
+ "schemaVersion": {
3626
+ "default": "1.0",
3627
+ "type": "string"
3628
+ },
3629
+ "title": {
3630
+ "type": "string"
3631
+ },
3632
+ "usageDescription": {
3633
+ "type": "string"
3634
+ }
3635
+ },
3636
+ "required": [
3637
+ "schemaVersion"
3638
+ ],
3639
+ "additionalProperties": false
3640
+ },
3641
+ "showCommentField": {
3642
+ "type": "boolean"
3643
+ }
3644
+ },
3645
+ "required": [
3646
+ "type",
3647
+ "attributes",
3648
+ "meta"
3649
+ ],
3650
+ "additionalProperties": false
3651
+ },
3652
+ {
3653
+ "type": "object",
3654
+ "properties": {
3655
+ "type": {
3656
+ "type": "string",
3657
+ "const": "licenseSearch"
3658
+ },
3659
+ "attributes": {
3660
+ "type": "object",
3661
+ "properties": {
3662
+ "label": {
3663
+ "type": "string"
3664
+ },
3665
+ "help": {
3666
+ "type": "string"
3667
+ },
3668
+ "labelTranslationKey": {
3669
+ "type": "string"
3670
+ }
3671
+ },
3672
+ "additionalProperties": false
3673
+ },
3674
+ "meta": {
3675
+ "type": "object",
3676
+ "properties": {
3677
+ "schemaVersion": {
3678
+ "default": "1.0",
3679
+ "type": "string"
3680
+ },
3681
+ "title": {
3682
+ "type": "string"
3683
+ },
3684
+ "usageDescription": {
3685
+ "type": "string"
3686
+ }
3687
+ },
3688
+ "required": [
3689
+ "schemaVersion"
3690
+ ],
3691
+ "additionalProperties": false
3692
+ },
3693
+ "graphQL": {
3694
+ "type": "object",
3695
+ "properties": {
3696
+ "displayFields": {
3697
+ "type": "array",
3698
+ "items": {
3699
+ "type": "object",
3700
+ "properties": {
3701
+ "propertyName": {
3702
+ "default": "id",
3703
+ "type": "string"
3704
+ },
3705
+ "label": {
3706
+ "default": "Id",
3707
+ "type": "string"
3708
+ },
3709
+ "labelTranslationKey": {
3710
+ "type": "string"
3711
+ }
3712
+ },
3713
+ "required": [
3714
+ "propertyName",
3715
+ "label"
3716
+ ],
3717
+ "additionalProperties": false
3718
+ }
3719
+ },
3720
+ "localQueryId": {
3721
+ "type": "string"
3722
+ },
3723
+ "query": {
3724
+ "type": "string",
3725
+ "const": "query Licenses($term: String, $paginationOptions: PaginationOptions){ license(term: $term, paginationOptions: $paginationOptions) { totalCount currentOffset limit hasNextPage hasPreviousPage availableSortFields items { id name uri description } } }"
3726
+ },
3727
+ "responseField": {
3728
+ "type": "string",
3729
+ "const": "licenses.items"
3730
+ },
3731
+ "variables": {
3732
+ "type": "array",
3733
+ "items": {
3734
+ "type": "object",
3735
+ "properties": {
3736
+ "minLength": {
3737
+ "type": "number"
3738
+ },
3739
+ "label": {
3740
+ "type": "string"
3741
+ },
3742
+ "labelTranslationKey": {
3743
+ "type": "string"
3744
+ },
3745
+ "name": {
3746
+ "default": "search",
3747
+ "type": "string"
3748
+ },
3749
+ "type": {
3750
+ "default": "string",
3751
+ "type": "string"
3752
+ },
3753
+ "defaultValue": {
3754
+ "type": "string"
3755
+ }
3756
+ },
3757
+ "required": [
3758
+ "name",
3759
+ "type"
3760
+ ],
3761
+ "additionalProperties": false
3762
+ }
3763
+ },
3764
+ "queryId": {
3765
+ "default": "useLicensesQuery",
3766
+ "type": "string"
3767
+ },
3768
+ "answerField": {
3769
+ "type": "string",
3770
+ "const": "uri"
3771
+ }
3772
+ },
3773
+ "required": [
3774
+ "displayFields",
3775
+ "query",
3776
+ "responseField",
3777
+ "variables",
3778
+ "answerField"
3779
+ ],
3780
+ "additionalProperties": false
3781
+ }
3782
+ },
3783
+ "required": [
3784
+ "type",
3785
+ "attributes",
3786
+ "meta",
3787
+ "graphQL"
3788
+ ],
3789
+ "additionalProperties": false
3790
+ },
3791
+ {
3792
+ "type": "object",
3793
+ "properties": {
3794
+ "type": {
3795
+ "type": "string",
3796
+ "const": "metadataStandardSearch"
3797
+ },
3798
+ "attributes": {
3799
+ "type": "object",
3800
+ "properties": {
3801
+ "label": {
3802
+ "type": "string"
3803
+ },
3804
+ "help": {
3805
+ "type": "string"
3806
+ },
3807
+ "labelTranslationKey": {
3808
+ "type": "string"
3809
+ }
3810
+ },
3811
+ "additionalProperties": false
3812
+ },
3813
+ "meta": {
3814
+ "type": "object",
3815
+ "properties": {
3816
+ "schemaVersion": {
3817
+ "default": "1.0",
3818
+ "type": "string"
3819
+ },
3820
+ "title": {
3821
+ "type": "string"
3822
+ },
3823
+ "usageDescription": {
3824
+ "type": "string"
3825
+ }
3826
+ },
3827
+ "required": [
3828
+ "schemaVersion"
3829
+ ],
3830
+ "additionalProperties": false
3831
+ },
3832
+ "graphQL": {
3833
+ "type": "object",
3834
+ "properties": {
3835
+ "displayFields": {
3836
+ "type": "array",
3837
+ "items": {
3838
+ "type": "object",
3839
+ "properties": {
3840
+ "propertyName": {
3841
+ "default": "id",
3842
+ "type": "string"
3843
+ },
3844
+ "label": {
3845
+ "default": "Id",
3846
+ "type": "string"
3847
+ },
3848
+ "labelTranslationKey": {
3849
+ "type": "string"
3850
+ }
3851
+ },
3852
+ "required": [
3853
+ "propertyName",
3854
+ "label"
3855
+ ],
3856
+ "additionalProperties": false
3857
+ }
3858
+ },
3859
+ "localQueryId": {
3860
+ "type": "string"
3861
+ },
3862
+ "query": {
3863
+ "type": "string",
3864
+ "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 } } }"
3865
+ },
3866
+ "responseField": {
3867
+ "type": "string",
3868
+ "const": "metadataStandards.items"
3869
+ },
3870
+ "variables": {
3871
+ "type": "array",
3872
+ "items": {
3873
+ "type": "object",
3874
+ "properties": {
3875
+ "minLength": {
3876
+ "type": "number"
3877
+ },
3878
+ "label": {
3879
+ "type": "string"
3880
+ },
3881
+ "labelTranslationKey": {
3882
+ "type": "string"
3883
+ },
3884
+ "name": {
3885
+ "default": "search",
3886
+ "type": "string"
3887
+ },
3888
+ "type": {
3889
+ "default": "string",
3890
+ "type": "string"
3891
+ },
3892
+ "defaultValue": {
3893
+ "type": "string"
3894
+ }
3895
+ },
3896
+ "required": [
3897
+ "name",
3898
+ "type"
3899
+ ],
3900
+ "additionalProperties": false
3901
+ }
3902
+ },
3903
+ "queryId": {
3904
+ "default": "useMetadataStandardsQuery",
3905
+ "type": "string"
3906
+ },
3907
+ "answerField": {
3908
+ "default": "uri",
3909
+ "type": "string",
3910
+ "const": "uri"
3911
+ }
3912
+ },
3913
+ "required": [
3914
+ "displayFields",
3915
+ "query",
3916
+ "responseField",
3917
+ "variables",
3918
+ "answerField"
3919
+ ],
3920
+ "additionalProperties": false
3921
+ }
3922
+ },
3923
+ "required": [
3924
+ "type",
3925
+ "attributes",
3926
+ "meta",
3927
+ "graphQL"
3928
+ ],
3929
+ "additionalProperties": false
3930
+ },
3931
+ {
3932
+ "type": "object",
3933
+ "properties": {
3934
+ "type": {
3935
+ "type": "string",
3936
+ "const": "number"
3937
+ },
3938
+ "attributes": {
3939
+ "type": "object",
3940
+ "properties": {
3941
+ "label": {
3942
+ "type": "string"
3943
+ },
3944
+ "help": {
3945
+ "type": "string"
3946
+ },
3947
+ "labelTranslationKey": {
3948
+ "type": "string"
3949
+ },
3950
+ "max": {
3951
+ "type": "number"
3952
+ },
3953
+ "min": {
3954
+ "default": 0,
3955
+ "type": "number"
3956
+ },
3957
+ "step": {
3958
+ "default": 1,
3959
+ "type": "number"
3960
+ }
3961
+ },
3962
+ "required": [
3963
+ "min",
3964
+ "step"
3965
+ ],
3966
+ "additionalProperties": false
3967
+ },
3968
+ "meta": {
3969
+ "type": "object",
3970
+ "properties": {
3971
+ "schemaVersion": {
3972
+ "default": "1.0",
3973
+ "type": "string"
3974
+ },
3975
+ "title": {
3976
+ "type": "string"
3977
+ },
3978
+ "usageDescription": {
3979
+ "type": "string"
3980
+ }
3981
+ },
3982
+ "required": [
3983
+ "schemaVersion"
3984
+ ],
3985
+ "additionalProperties": false
3986
+ },
3987
+ "showCommentField": {
3988
+ "type": "boolean"
3989
+ }
3990
+ },
3991
+ "required": [
3992
+ "type",
3993
+ "attributes",
3994
+ "meta"
3995
+ ],
3996
+ "additionalProperties": false
3997
+ },
3998
+ {
3999
+ "type": "object",
4000
+ "properties": {
4001
+ "type": {
4002
+ "type": "string",
4003
+ "const": "numberWithContext"
4004
+ },
4005
+ "attributes": {
4006
+ "type": "object",
4007
+ "properties": {
4008
+ "label": {
4009
+ "type": "string"
4010
+ },
4011
+ "help": {
4012
+ "type": "string"
4013
+ },
4014
+ "labelTranslationKey": {
4015
+ "type": "string"
4016
+ },
4017
+ "max": {
4018
+ "type": "number"
4019
+ },
4020
+ "min": {
4021
+ "default": 0,
4022
+ "type": "number"
4023
+ },
4024
+ "step": {
4025
+ "default": 1,
4026
+ "type": "number"
4027
+ },
4028
+ "context": {
4029
+ "type": "array",
4030
+ "items": {
4031
+ "type": "object",
4032
+ "properties": {
4033
+ "label": {
4034
+ "default": "",
4035
+ "type": "string"
4036
+ },
4037
+ "labelTranslationKey": {
4038
+ "type": "string"
4039
+ },
4040
+ "value": {
4041
+ "default": "",
4042
+ "type": "string"
4043
+ },
4044
+ "selected": {
4045
+ "default": false,
4046
+ "type": "boolean"
4047
+ }
4048
+ },
4049
+ "required": [
4050
+ "label",
4051
+ "value",
4052
+ "selected"
4053
+ ],
4054
+ "additionalProperties": false
4055
+ }
4056
+ }
4057
+ },
4058
+ "required": [
4059
+ "min",
4060
+ "step",
4061
+ "context"
4062
+ ],
4063
+ "additionalProperties": false
4064
+ },
4065
+ "meta": {
4066
+ "type": "object",
4067
+ "properties": {
4068
+ "schemaVersion": {
4069
+ "default": "1.0",
4070
+ "type": "string"
4071
+ },
4072
+ "title": {
4073
+ "type": "string"
4074
+ },
4075
+ "usageDescription": {
4076
+ "type": "string"
4077
+ }
4078
+ },
4079
+ "required": [
4080
+ "schemaVersion"
4081
+ ],
4082
+ "additionalProperties": false
4083
+ },
4084
+ "showCommentField": {
4085
+ "type": "boolean"
4086
+ }
4087
+ },
4088
+ "required": [
4089
+ "type",
4090
+ "attributes",
4091
+ "meta"
4092
+ ],
4093
+ "additionalProperties": false
4094
+ },
4095
+ {
4096
+ "type": "object",
4097
+ "properties": {
4098
+ "type": {
4099
+ "type": "string",
4100
+ "const": "radioButtons"
4101
+ },
4102
+ "attributes": {
4103
+ "type": "object",
4104
+ "properties": {
4105
+ "label": {
4106
+ "type": "string"
4107
+ },
4108
+ "help": {
4109
+ "type": "string"
4110
+ },
4111
+ "labelTranslationKey": {
4112
+ "type": "string"
4113
+ }
4114
+ },
4115
+ "additionalProperties": false
4116
+ },
4117
+ "meta": {
4118
+ "type": "object",
4119
+ "properties": {
4120
+ "schemaVersion": {
4121
+ "default": "1.0",
4122
+ "type": "string"
4123
+ },
4124
+ "title": {
4125
+ "type": "string"
4126
+ },
4127
+ "usageDescription": {
4128
+ "type": "string"
4129
+ }
4130
+ },
4131
+ "required": [
4132
+ "schemaVersion"
4133
+ ],
4134
+ "additionalProperties": false
4135
+ },
4136
+ "options": {
4137
+ "type": "array",
4138
+ "items": {
4139
+ "type": "object",
4140
+ "properties": {
4141
+ "label": {
4142
+ "default": "Option A",
4143
+ "type": "string"
4144
+ },
4145
+ "value": {
4146
+ "default": "a",
4147
+ "type": "string"
4148
+ },
4149
+ "selected": {
4150
+ "default": false,
4151
+ "type": "boolean"
4152
+ }
4153
+ },
4154
+ "required": [
4155
+ "label",
4156
+ "value",
4157
+ "selected"
4158
+ ],
4159
+ "additionalProperties": false
4160
+ }
4161
+ },
4162
+ "showCommentField": {
4163
+ "type": "boolean"
4164
+ }
4165
+ },
4166
+ "required": [
4167
+ "type",
4168
+ "attributes",
4169
+ "meta",
4170
+ "options"
4171
+ ],
4172
+ "additionalProperties": false
4173
+ },
4174
+ {
4175
+ "type": "object",
4176
+ "properties": {
4177
+ "type": {
4178
+ "type": "string",
4179
+ "const": "repositorySearch"
4180
+ },
4181
+ "attributes": {
4182
+ "type": "object",
4183
+ "properties": {
4184
+ "label": {
4185
+ "type": "string"
4186
+ },
4187
+ "help": {
4188
+ "type": "string"
4189
+ },
4190
+ "labelTranslationKey": {
4191
+ "type": "string"
4192
+ }
4193
+ },
4194
+ "additionalProperties": false
4195
+ },
4196
+ "meta": {
4197
+ "type": "object",
4198
+ "properties": {
4199
+ "schemaVersion": {
4200
+ "default": "1.0",
4201
+ "type": "string"
4202
+ },
4203
+ "title": {
4204
+ "type": "string"
4205
+ },
4206
+ "usageDescription": {
4207
+ "type": "string"
4208
+ }
4209
+ },
4210
+ "required": [
4211
+ "schemaVersion"
4212
+ ],
4213
+ "additionalProperties": false
4214
+ },
4215
+ "graphQL": {
4216
+ "type": "object",
4217
+ "properties": {
4218
+ "displayFields": {
4219
+ "type": "array",
4220
+ "items": {
4221
+ "type": "object",
4222
+ "properties": {
4223
+ "propertyName": {
4224
+ "default": "id",
4225
+ "type": "string"
4226
+ },
4227
+ "label": {
4228
+ "default": "Id",
4229
+ "type": "string"
4230
+ },
4231
+ "labelTranslationKey": {
4232
+ "type": "string"
4233
+ }
4234
+ },
4235
+ "required": [
4236
+ "propertyName",
4237
+ "label"
4238
+ ],
4239
+ "additionalProperties": false
4240
+ }
4241
+ },
4242
+ "localQueryId": {
4243
+ "type": "string"
4244
+ },
4245
+ "query": {
4246
+ "type": "string",
4247
+ "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 } } }"
4248
+ },
4249
+ "responseField": {
4250
+ "type": "string",
4251
+ "const": "repositories.items"
4252
+ },
4253
+ "variables": {
4254
+ "type": "array",
4255
+ "items": {
4256
+ "type": "object",
4257
+ "properties": {
4258
+ "minLength": {
4259
+ "type": "number"
4260
+ },
4261
+ "label": {
4262
+ "type": "string"
4263
+ },
4264
+ "labelTranslationKey": {
4265
+ "type": "string"
4266
+ },
4267
+ "name": {
4268
+ "default": "search",
4269
+ "type": "string"
4270
+ },
4271
+ "type": {
4272
+ "default": "string",
4273
+ "type": "string"
4274
+ },
4275
+ "defaultValue": {
4276
+ "type": "string"
4277
+ }
4278
+ },
4279
+ "required": [
4280
+ "name",
4281
+ "type"
4282
+ ],
4283
+ "additionalProperties": false
4284
+ }
4285
+ },
4286
+ "queryId": {
4287
+ "default": "useRepositoriesQuery",
4288
+ "type": "string"
4289
+ },
4290
+ "answerField": {
4291
+ "type": "string",
4292
+ "const": "uri"
4293
+ }
4294
+ },
4295
+ "required": [
4296
+ "displayFields",
4297
+ "query",
4298
+ "responseField",
4299
+ "variables",
4300
+ "answerField"
4301
+ ],
4302
+ "additionalProperties": false
4303
+ }
4304
+ },
4305
+ "required": [
4306
+ "type",
4307
+ "attributes",
4308
+ "meta",
4309
+ "graphQL"
4310
+ ],
4311
+ "additionalProperties": false
4312
+ },
4313
+ {
4314
+ "type": "object",
4315
+ "properties": {
4316
+ "type": {
4317
+ "type": "string",
4318
+ "const": "selectBox"
4319
+ },
4320
+ "attributes": {
4321
+ "type": "object",
4322
+ "properties": {
4323
+ "label": {
4324
+ "type": "string"
4325
+ },
4326
+ "help": {
4327
+ "type": "string"
4328
+ },
4329
+ "labelTranslationKey": {
4330
+ "type": "string"
4331
+ },
4332
+ "multiple": {
4333
+ "type": "boolean",
4334
+ "const": false
4335
+ }
4336
+ },
4337
+ "required": [
4338
+ "multiple"
4339
+ ],
4340
+ "additionalProperties": false
4341
+ },
4342
+ "meta": {
4343
+ "type": "object",
4344
+ "properties": {
4345
+ "schemaVersion": {
4346
+ "default": "1.0",
4347
+ "type": "string"
4348
+ },
4349
+ "title": {
4350
+ "type": "string"
4351
+ },
4352
+ "usageDescription": {
4353
+ "type": "string"
4354
+ }
4355
+ },
4356
+ "required": [
4357
+ "schemaVersion"
4358
+ ],
4359
+ "additionalProperties": false
4360
+ },
4361
+ "options": {
4362
+ "type": "array",
4363
+ "items": {
4364
+ "type": "object",
4365
+ "properties": {
4366
+ "label": {
4367
+ "default": "Option A",
4368
+ "type": "string"
4369
+ },
4370
+ "value": {
4371
+ "default": "a",
4372
+ "type": "string"
4373
+ },
4374
+ "selected": {
4375
+ "default": false,
4376
+ "type": "boolean"
4377
+ }
4378
+ },
4379
+ "required": [
4380
+ "label",
4381
+ "value",
4382
+ "selected"
4383
+ ],
4384
+ "additionalProperties": false
4385
+ }
4386
+ },
4387
+ "showCommentField": {
4388
+ "type": "boolean"
4389
+ }
4390
+ },
4391
+ "required": [
4392
+ "type",
4393
+ "attributes",
4394
+ "meta",
4395
+ "options"
4396
+ ],
4397
+ "additionalProperties": false
4398
+ },
4399
+ {
4400
+ "type": "object",
4401
+ "properties": {
4402
+ "type": {
4403
+ "type": "string",
4404
+ "const": "textArea"
4405
+ },
4406
+ "attributes": {
4407
+ "type": "object",
4408
+ "properties": {
4409
+ "label": {
4410
+ "type": "string"
4411
+ },
4412
+ "help": {
4413
+ "type": "string"
4414
+ },
4415
+ "labelTranslationKey": {
4416
+ "type": "string"
4417
+ },
4418
+ "maxLength": {
4419
+ "default": 10000,
4420
+ "type": "number"
4421
+ },
4422
+ "minLength": {
4423
+ "type": "number"
4424
+ },
4425
+ "pattern": {
4426
+ "type": "string"
4427
+ },
4428
+ "cols": {
4429
+ "default": 20,
4430
+ "type": "number"
4431
+ },
4432
+ "rows": {
4433
+ "default": 2,
4434
+ "type": "number"
4435
+ },
4436
+ "asRichText": {
4437
+ "default": true,
4438
+ "type": "boolean"
4439
+ }
4440
+ },
4441
+ "required": [
4442
+ "maxLength",
4443
+ "cols",
4444
+ "rows",
4445
+ "asRichText"
4446
+ ],
4447
+ "additionalProperties": false
4448
+ },
4449
+ "meta": {
4450
+ "type": "object",
4451
+ "properties": {
4452
+ "schemaVersion": {
4453
+ "default": "1.0",
4454
+ "type": "string"
4455
+ },
4456
+ "title": {
4457
+ "type": "string"
4458
+ },
4459
+ "usageDescription": {
4460
+ "type": "string"
4461
+ }
4462
+ },
4463
+ "required": [
4464
+ "schemaVersion"
4465
+ ],
4466
+ "additionalProperties": false
4467
+ }
4468
+ },
4469
+ "required": [
4470
+ "type",
4471
+ "attributes",
4472
+ "meta"
4473
+ ],
4474
+ "additionalProperties": false
4475
+ },
4476
+ {
4477
+ "type": "object",
4478
+ "properties": {
4479
+ "type": {
4480
+ "type": "string",
4481
+ "const": "text"
4482
+ },
4483
+ "attributes": {
4484
+ "type": "object",
4485
+ "properties": {
4486
+ "label": {
4487
+ "type": "string"
4488
+ },
4489
+ "help": {
4490
+ "type": "string"
4491
+ },
4492
+ "labelTranslationKey": {
4493
+ "type": "string"
4494
+ },
4495
+ "maxLength": {
4496
+ "default": 255,
4497
+ "type": "number"
4498
+ },
4499
+ "minLength": {
4500
+ "type": "number"
4501
+ },
4502
+ "pattern": {
4503
+ "type": "string"
4504
+ }
4505
+ },
4506
+ "required": [
4507
+ "maxLength"
4508
+ ],
4509
+ "additionalProperties": false
4510
+ },
4511
+ "meta": {
4512
+ "type": "object",
4513
+ "properties": {
4514
+ "schemaVersion": {
4515
+ "default": "1.0",
4516
+ "type": "string"
4517
+ },
4518
+ "title": {
4519
+ "type": "string"
4520
+ },
4521
+ "usageDescription": {
4522
+ "type": "string"
4523
+ }
4524
+ },
4525
+ "required": [
4526
+ "schemaVersion"
4527
+ ],
4528
+ "additionalProperties": false
4529
+ }
4530
+ },
4531
+ "required": [
4532
+ "type",
4533
+ "attributes",
4534
+ "meta"
4535
+ ],
4536
+ "additionalProperties": false
4537
+ },
4538
+ {
4539
+ "type": "object",
4540
+ "properties": {
4541
+ "type": {
4542
+ "type": "string",
4543
+ "const": "url"
4544
+ },
4545
+ "attributes": {
4546
+ "type": "object",
4547
+ "properties": {
4548
+ "label": {
4549
+ "type": "string"
4550
+ },
4551
+ "help": {
4552
+ "type": "string"
4553
+ },
4554
+ "labelTranslationKey": {
4555
+ "type": "string"
4556
+ },
4557
+ "maxLength": {
4558
+ "default": 255,
4559
+ "type": "number"
4560
+ },
4561
+ "minLength": {
4562
+ "type": "number"
4563
+ },
4564
+ "pattern": {
4565
+ "type": "string"
4566
+ }
4567
+ },
4568
+ "required": [
4569
+ "maxLength"
4570
+ ],
4571
+ "additionalProperties": false
4572
+ },
4573
+ "meta": {
4574
+ "type": "object",
4575
+ "properties": {
4576
+ "schemaVersion": {
4577
+ "default": "1.0",
4578
+ "type": "string"
4579
+ },
4580
+ "title": {
4581
+ "type": "string"
4582
+ },
4583
+ "usageDescription": {
4584
+ "type": "string"
4585
+ }
4586
+ },
4587
+ "required": [
4588
+ "schemaVersion"
4589
+ ],
4590
+ "additionalProperties": false
4591
+ },
4592
+ "showCommentField": {
4593
+ "type": "boolean"
4594
+ }
4595
+ },
4596
+ "required": [
4597
+ "type",
4598
+ "attributes",
4599
+ "meta"
4600
+ ],
4601
+ "additionalProperties": false
4602
+ }
4603
+ ]
4604
+ }
4605
+ },
4606
+ "required": [
4607
+ "heading",
4608
+ "required",
4609
+ "enabled",
4610
+ "content"
4611
+ ],
4612
+ "additionalProperties": false
4613
+ }
4614
+ }
4615
+ },
4616
+ "required": [
4617
+ "type",
4618
+ "meta",
4619
+ "columns"
4620
+ ],
4621
+ "additionalProperties": false
4622
+ },
4623
+ {
4624
+ "type": "object",
4625
+ "properties": {
4626
+ "type": {
4627
+ "type": "string",
4628
+ "const": "textArea"
4629
+ },
4630
+ "attributes": {
4631
+ "type": "object",
4632
+ "properties": {
4633
+ "label": {
4634
+ "type": "string"
4635
+ },
4636
+ "help": {
4637
+ "type": "string"
4638
+ },
4639
+ "labelTranslationKey": {
4640
+ "type": "string"
4641
+ },
4642
+ "maxLength": {
4643
+ "default": 10000,
4644
+ "type": "number"
4645
+ },
4646
+ "minLength": {
4647
+ "type": "number"
4648
+ },
4649
+ "pattern": {
4650
+ "type": "string"
4651
+ },
4652
+ "cols": {
4653
+ "default": 20,
4654
+ "type": "number"
4655
+ },
4656
+ "rows": {
4657
+ "default": 2,
4658
+ "type": "number"
4659
+ },
4660
+ "asRichText": {
4661
+ "default": true,
4662
+ "type": "boolean"
4663
+ }
4664
+ },
4665
+ "required": [
4666
+ "maxLength",
4667
+ "cols",
4668
+ "rows",
4669
+ "asRichText"
4670
+ ],
4671
+ "additionalProperties": false
4672
+ },
4673
+ "meta": {
4674
+ "type": "object",
4675
+ "properties": {
4676
+ "schemaVersion": {
4677
+ "default": "1.0",
4678
+ "type": "string"
4679
+ },
4680
+ "title": {
4681
+ "type": "string"
4682
+ },
4683
+ "usageDescription": {
4684
+ "type": "string"
4685
+ }
4686
+ },
4687
+ "required": [
4688
+ "schemaVersion"
4689
+ ],
4690
+ "additionalProperties": false
4691
+ }
4692
+ },
4693
+ "required": [
4694
+ "type",
4695
+ "attributes",
4696
+ "meta"
4697
+ ],
4698
+ "additionalProperties": false
4699
+ },
4700
+ {
4701
+ "type": "object",
4702
+ "properties": {
4703
+ "type": {
4704
+ "type": "string",
4705
+ "const": "text"
4706
+ },
4707
+ "attributes": {
4708
+ "type": "object",
4709
+ "properties": {
4710
+ "label": {
4711
+ "type": "string"
4712
+ },
4713
+ "help": {
4714
+ "type": "string"
4715
+ },
4716
+ "labelTranslationKey": {
4717
+ "type": "string"
4718
+ },
4719
+ "maxLength": {
4720
+ "default": 255,
4721
+ "type": "number"
4722
+ },
4723
+ "minLength": {
4724
+ "type": "number"
4725
+ },
4726
+ "pattern": {
4727
+ "type": "string"
4728
+ }
4729
+ },
4730
+ "required": [
4731
+ "maxLength"
4732
+ ],
4733
+ "additionalProperties": false
4734
+ },
4735
+ "meta": {
4736
+ "type": "object",
4737
+ "properties": {
4738
+ "schemaVersion": {
4739
+ "default": "1.0",
4740
+ "type": "string"
4741
+ },
4742
+ "title": {
4743
+ "type": "string"
4744
+ },
4745
+ "usageDescription": {
4746
+ "type": "string"
4747
+ }
4748
+ },
4749
+ "required": [
4750
+ "schemaVersion"
4751
+ ],
4752
+ "additionalProperties": false
4753
+ }
4754
+ },
4755
+ "required": [
4756
+ "type",
4757
+ "attributes",
4758
+ "meta"
4759
+ ],
4760
+ "additionalProperties": false
4761
+ },
4762
+ {
4763
+ "type": "object",
4764
+ "properties": {
4765
+ "type": {
4766
+ "type": "string",
4767
+ "const": "url"
4768
+ },
4769
+ "attributes": {
4770
+ "type": "object",
4771
+ "properties": {
4772
+ "label": {
4773
+ "type": "string"
4774
+ },
4775
+ "help": {
4776
+ "type": "string"
4777
+ },
4778
+ "labelTranslationKey": {
4779
+ "type": "string"
4780
+ },
4781
+ "maxLength": {
4782
+ "default": 255,
4783
+ "type": "number"
4784
+ },
4785
+ "minLength": {
4786
+ "type": "number"
4787
+ },
4788
+ "pattern": {
4789
+ "type": "string"
4790
+ }
4791
+ },
4792
+ "required": [
4793
+ "maxLength"
4794
+ ],
4795
+ "additionalProperties": false
4796
+ },
4797
+ "meta": {
4798
+ "type": "object",
4799
+ "properties": {
4800
+ "schemaVersion": {
4801
+ "default": "1.0",
4802
+ "type": "string"
4803
+ },
4804
+ "title": {
4805
+ "type": "string"
4806
+ },
4807
+ "usageDescription": {
4808
+ "type": "string"
4809
+ }
4810
+ },
4811
+ "required": [
4812
+ "schemaVersion"
4813
+ ],
4814
+ "additionalProperties": false
4815
+ },
4816
+ "showCommentField": {
4817
+ "type": "boolean"
4818
+ }
4819
+ },
4820
+ "required": [
4821
+ "type",
4822
+ "attributes",
4823
+ "meta"
4824
+ ],
4825
+ "additionalProperties": false
4826
+ }
4827
+ ]
4828
+ }