@dmptool/types 2.1.0 → 2.2.1

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