@dmptool/types 2.0.0 → 2.1.0

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