@dmptool/types 2.1.0 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (122) hide show
  1. package/README.md +70 -1
  2. package/dist/answers/__tests__/defaults.spec.js +80 -21
  3. package/dist/answers/answer.d.ts +2 -0
  4. package/dist/answers/answer.js +4 -2
  5. package/dist/answers/dateAnswers.d.ts +4 -0
  6. package/dist/answers/graphQLAnswers.d.ts +8 -0
  7. package/dist/answers/index.d.ts +37 -0
  8. package/dist/answers/numberAnswers.d.ts +8 -0
  9. package/dist/answers/optionBasedAnswers.d.ts +10 -0
  10. package/dist/answers/tableAnswers.d.ts +94 -0
  11. package/dist/answers/textAnswers.d.ts +8 -0
  12. package/dist/dmp/extension.d.ts +111 -0
  13. package/dist/dmp/index.js +48 -2
  14. package/dist/questions/__tests__/defaults.spec.js +12 -12
  15. package/dist/questions/__tests__/optionBasedQuestions.spec.js +25 -16
  16. package/dist/questions/dateQuestions.d.ts +4 -0
  17. package/dist/questions/dateQuestions.js +2 -2
  18. package/dist/questions/index.d.ts +38 -7
  19. package/dist/questions/numberQuestions.d.ts +8 -0
  20. package/dist/questions/numberQuestions.js +4 -4
  21. package/dist/questions/optionBasedQuestions.d.ts +18 -6
  22. package/dist/questions/optionBasedQuestions.js +23 -10
  23. package/dist/questions/tableQuestions.d.ts +94 -16
  24. package/dist/questions/tableQuestions.js +9 -9
  25. package/dist/questions/textQuestions.d.ts +4 -0
  26. package/dist/questions/textQuestions.js +2 -2
  27. package/dist/schemas/affiliationSearchAnswer.schema.json +3 -0
  28. package/dist/schemas/anyAnswer.schema.json +111 -0
  29. package/dist/schemas/anyQuestion.schema.json +114 -35
  30. package/dist/schemas/anyTableColumnAnswer.schema.json +54 -0
  31. package/dist/schemas/anyTableColumnQuestion.schema.json +42 -10
  32. package/dist/schemas/booleanAnswer.schema.json +3 -0
  33. package/dist/schemas/booleanQuestion.schema.json +3 -0
  34. package/dist/schemas/checkboxesAnswer.schema.json +3 -0
  35. package/dist/schemas/checkboxesQuestion.schema.json +6 -0
  36. package/dist/schemas/currencyAnswer.schema.json +3 -0
  37. package/dist/schemas/currencyQuestion.schema.json +3 -0
  38. package/dist/schemas/dateAnswer.schema.json +3 -0
  39. package/dist/schemas/dateQuestion.schema.json +3 -0
  40. package/dist/schemas/dateRangeAnswer.schema.json +3 -0
  41. package/dist/schemas/dateRangeQuestion.schema.json +3 -0
  42. package/dist/schemas/dmpExtension.schema.json +111 -0
  43. package/dist/schemas/emailAnswer.schema.json +3 -0
  44. package/dist/schemas/emailQuestion.schema.json +3 -0
  45. package/dist/schemas/licenseSearchAnswer.schema.json +3 -0
  46. package/dist/schemas/metadataStandardSearchAnswer.schema.json +3 -0
  47. package/dist/schemas/multiselectBoxAnswer.schema.json +3 -0
  48. package/dist/schemas/multiselectBoxQuestion.schema.json +6 -5
  49. package/dist/schemas/numberAnswer.schema.json +3 -0
  50. package/dist/schemas/numberQuestion.schema.json +3 -0
  51. package/dist/schemas/numberRangeAnswer.schema.json +3 -0
  52. package/dist/schemas/numberRangeQuestion.schema.json +3 -0
  53. package/dist/schemas/numberWithContextAnswer.schema.json +3 -0
  54. package/dist/schemas/numberWithContextQuestion.schema.json +3 -0
  55. package/dist/schemas/radioButtonsAnswer.schema.json +3 -0
  56. package/dist/schemas/radioButtonsQuestion.schema.json +6 -5
  57. package/dist/schemas/repositorySearchAnswer.schema.json +3 -0
  58. package/dist/schemas/researchOutputTableAnswer.schema.json +3344 -9
  59. package/dist/schemas/selectBoxAnswer.schema.json +3 -0
  60. package/dist/schemas/selectBoxQuestion.schema.json +6 -5
  61. package/dist/schemas/tableAnswer.schema.json +57 -0
  62. package/dist/schemas/tableQuestion.schema.json +42 -10
  63. package/dist/schemas/textAnswer.schema.json +3 -0
  64. package/dist/schemas/textAreaAnswer.schema.json +3 -0
  65. package/dist/schemas/urlAnswer.schema.json +3 -0
  66. package/dist/schemas/urlQuestion.schema.json +3 -0
  67. package/package.json +9 -4
  68. package/schemas/.placeholder +0 -0
  69. package/schemas/affiliationSearchAnswer.schema.json +50 -0
  70. package/schemas/affiliationSearchQuestion.schema.json +142 -0
  71. package/schemas/anyAnswer.schema.json +1537 -0
  72. package/schemas/anyQuestion.schema.json +4823 -0
  73. package/schemas/anyTableColumnAnswer.schema.json +741 -0
  74. package/schemas/anyTableColumnQuestion.schema.json +1559 -0
  75. package/schemas/booleanAnswer.schema.json +36 -0
  76. package/schemas/booleanQuestion.schema.json +55 -0
  77. package/schemas/checkboxesAnswer.schema.json +41 -0
  78. package/schemas/checkboxesQuestion.schema.json +83 -0
  79. package/schemas/currencyAnswer.schema.json +36 -0
  80. package/schemas/currencyQuestion.schema.json +73 -0
  81. package/schemas/dateAnswer.schema.json +36 -0
  82. package/schemas/datePickerAnswer.schema.json +37 -0
  83. package/schemas/datePickerQuestion.schema.json +52 -0
  84. package/schemas/dateQuestion.schema.json +66 -0
  85. package/schemas/dateRangeAnswer.schema.json +50 -0
  86. package/schemas/dateRangeQuestion.schema.json +124 -0
  87. package/schemas/dmp.schema.json +2070 -0
  88. package/schemas/dmpExtension.schema.json +1985 -0
  89. package/schemas/emailAnswer.schema.json +36 -0
  90. package/schemas/emailQuestion.schema.json +71 -0
  91. package/schemas/filteredSearchAnswer.schema.json +40 -0
  92. package/schemas/filteredSearchQuestion.schema.json +130 -0
  93. package/schemas/licenseSearchAnswer.schema.json +54 -0
  94. package/schemas/licenseSearchQuestion.schema.json +140 -0
  95. package/schemas/metadataStandardSearchAnswer.schema.json +54 -0
  96. package/schemas/metadataStandardSearchQuestion.schema.json +141 -0
  97. package/schemas/multiselectBoxAnswer.schema.json +41 -0
  98. package/schemas/multiselectBoxQuestion.schema.json +85 -0
  99. package/schemas/numberAnswer.schema.json +36 -0
  100. package/schemas/numberQuestion.schema.json +68 -0
  101. package/schemas/numberRangeAnswer.schema.json +50 -0
  102. package/schemas/numberRangeQuestion.schema.json +128 -0
  103. package/schemas/numberWithContextAnswer.schema.json +50 -0
  104. package/schemas/numberWithContextQuestion.schema.json +98 -0
  105. package/schemas/radioButtonsAnswer.schema.json +36 -0
  106. package/schemas/radioButtonsQuestion.schema.json +78 -0
  107. package/schemas/repositorySearchAnswer.schema.json +54 -0
  108. package/schemas/repositorySearchQuestion.schema.json +140 -0
  109. package/schemas/researchOutputTableAnswer.schema.json +20065 -0
  110. package/schemas/researchOutputTableQuestion.schema.json +140 -0
  111. package/schemas/selectBoxAnswer.schema.json +36 -0
  112. package/schemas/selectBoxQuestion.schema.json +85 -0
  113. package/schemas/tableAnswer.schema.json +797 -0
  114. package/schemas/tableQuestion.schema.json +1661 -0
  115. package/schemas/textAnswer.schema.json +36 -0
  116. package/schemas/textAreaAnswer.schema.json +36 -0
  117. package/schemas/textAreaQuestion.schema.json +78 -0
  118. package/schemas/textQuestion.schema.json +63 -0
  119. package/schemas/typeaheadSearchAnswer.schema.json +37 -0
  120. package/schemas/typeaheadSearchQuestion.schema.json +120 -0
  121. package/schemas/urlAnswer.schema.json +36 -0
  122. package/schemas/urlQuestion.schema.json +66 -0
@@ -116,9 +116,9 @@ const DefaultResearchOutputDataFlagsColumn = ResearchOutputDataFlagsColumnSchema
116
116
  content: DefaultResearchOutputDataFlagsContent
117
117
  });
118
118
  const DefaultResearchOutputAccessLevelOptions = [
119
- { label: 'Open Access', value: 'open', selected: false },
120
- { label: 'Restricted Access', value: 'restricted', selected: false },
121
- { label: 'Other', value: 'closed', selected: false },
119
+ { label: 'Open Access', value: 'open' },
120
+ { label: 'Restricted Access', value: 'restricted' },
121
+ { label: 'Other', value: 'closed' },
122
122
  ];
123
123
  const DefaultResearchOutputAccessLevelContent = optionBasedQuestions_1.RadioButtonsQuestionSchema.parse({
124
124
  type: 'radioButtons',
@@ -139,12 +139,12 @@ const DefaultResearchOutputReleaseDateColumn = ResearchOutputReleaseDateColumnSc
139
139
  content: dateQuestions_1.DefaultDateQuestion,
140
140
  });
141
141
  const DefaultResearchOutputByteSizeOptions = [
142
- { label: 'bytes', value: 'bytes', selected: false },
143
- { label: 'KB (kilobytes)', value: 'kb', selected: true },
144
- { label: 'MB (megabytes)', value: 'mb', selected: false },
145
- { label: 'GB (gigabytes)', value: 'gb', selected: false },
146
- { label: 'TB (terabytes)', value: 'tb', selected: false },
147
- { label: 'PB (petabytes)', value: 'pb', selected: false }
142
+ { label: 'bytes', value: 'bytes' },
143
+ { label: 'KB (kilobytes)', value: 'kb' },
144
+ { label: 'MB (megabytes)', value: 'mb' },
145
+ { label: 'GB (gigabytes)', value: 'gb' },
146
+ { label: 'TB (terabytes)', value: 'tb' },
147
+ { label: 'PB (petabytes)', value: 'pb' }
148
148
  ];
149
149
  const DefaultResearchOutputByteSizeContentAttributes = Object.assign(Object.assign({}, numberQuestions_1.DefaultNumberWithContextQuestion.attributes), { context: DefaultResearchOutputByteSizeOptions });
150
150
  const DefaultResearchOutputByteSizeContent = numberQuestions_1.NumberWithContextQuestionSchema.parse({
@@ -10,6 +10,7 @@ export declare const EmailQuestionSchema: z.ZodObject<{
10
10
  help: z.ZodOptional<z.ZodString>;
11
11
  labelTranslationKey: z.ZodOptional<z.ZodString>;
12
12
  }, z.core.$strip>;
13
+ showCommentField: z.ZodOptional<z.ZodBoolean>;
13
14
  meta: z.ZodObject<{
14
15
  schemaVersion: z.ZodDefault<z.ZodString>;
15
16
  title: z.ZodOptional<z.ZodString>;
@@ -32,6 +33,7 @@ export declare const DefaultEmailQuestion: {
32
33
  title?: string | undefined;
33
34
  usageDescription?: string | undefined;
34
35
  };
36
+ showCommentField?: boolean | undefined;
35
37
  };
36
38
  export declare const TextAreaQuestionSchema: z.ZodObject<{
37
39
  type: z.ZodLiteral<"textArea">;
@@ -113,6 +115,7 @@ export declare const URLQuestionSchema: z.ZodObject<{
113
115
  help: z.ZodOptional<z.ZodString>;
114
116
  labelTranslationKey: z.ZodOptional<z.ZodString>;
115
117
  }, z.core.$strip>;
118
+ showCommentField: z.ZodOptional<z.ZodBoolean>;
116
119
  meta: z.ZodObject<{
117
120
  schemaVersion: z.ZodDefault<z.ZodString>;
118
121
  title: z.ZodOptional<z.ZodString>;
@@ -134,6 +137,7 @@ export declare const DefaultURLQuestion: {
134
137
  title?: string | undefined;
135
138
  usageDescription?: string | undefined;
136
139
  };
140
+ showCommentField?: boolean | undefined;
137
141
  };
138
142
  export type EmailQuestionType = z.infer<typeof EmailQuestionSchema>;
139
143
  export type TextAreaQuestionType = z.infer<typeof TextAreaQuestionSchema>;
@@ -6,7 +6,7 @@ const question_1 = require("./question");
6
6
  const TextAttributesSchema = zod_1.z.object(Object.assign(Object.assign({}, question_1.BaseAttributesSchema.shape), { maxLength: zod_1.z.number().default(255), minLength: zod_1.z.number().optional(), pattern: zod_1.z.string().optional() }));
7
7
  const DefaultTextAttributes = TextAttributesSchema.parse({});
8
8
  // Email question and answer
9
- exports.EmailQuestionSchema = zod_1.z.object(Object.assign(Object.assign({}, question_1.QuestionSchema.shape), { type: zod_1.z.literal('email'), attributes: zod_1.z.object(Object.assign(Object.assign({}, TextAttributesSchema.shape), { multiple: zod_1.z.boolean().default(false) })) }));
9
+ exports.EmailQuestionSchema = zod_1.z.object(Object.assign(Object.assign({}, question_1.QuestionSchema.shape), { type: zod_1.z.literal('email'), attributes: zod_1.z.object(Object.assign(Object.assign({}, TextAttributesSchema.shape), { multiple: zod_1.z.boolean().default(false) })), showCommentField: zod_1.z.boolean().optional() }));
10
10
  exports.DefaultEmailQuestion = exports.EmailQuestionSchema.parse({
11
11
  type: 'email',
12
12
  attributes: exports.EmailQuestionSchema.shape.attributes,
@@ -27,7 +27,7 @@ exports.DefaultTextQuestion = exports.TextQuestionSchema.parse({
27
27
  meta: question_1.DefaultMeta
28
28
  });
29
29
  // URL question and answer
30
- exports.URLQuestionSchema = zod_1.z.object(Object.assign(Object.assign({}, question_1.QuestionSchema.shape), { type: zod_1.z.literal('url'), attributes: TextAttributesSchema }));
30
+ exports.URLQuestionSchema = zod_1.z.object(Object.assign(Object.assign({}, question_1.QuestionSchema.shape), { type: zod_1.z.literal('url'), attributes: TextAttributesSchema, showCommentField: zod_1.z.boolean().optional() }));
31
31
  exports.DefaultURLQuestion = exports.URLQuestionSchema.parse({
32
32
  type: 'url',
33
33
  attributes: DefaultTextAttributes,
@@ -19,6 +19,9 @@
19
19
  ],
20
20
  "additionalProperties": false
21
21
  },
22
+ "comment": {
23
+ "type": "string"
24
+ },
22
25
  "answer": {
23
26
  "type": "object",
24
27
  "properties": {
@@ -21,6 +21,9 @@
21
21
  ],
22
22
  "additionalProperties": false
23
23
  },
24
+ "comment": {
25
+ "type": "string"
26
+ },
24
27
  "answer": {
25
28
  "type": "object",
26
29
  "properties": {
@@ -67,6 +70,9 @@
67
70
  ],
68
71
  "additionalProperties": false
69
72
  },
73
+ "comment": {
74
+ "type": "string"
75
+ },
70
76
  "answer": {
71
77
  "default": false,
72
78
  "type": "boolean"
@@ -99,6 +105,9 @@
99
105
  ],
100
106
  "additionalProperties": false
101
107
  },
108
+ "comment": {
109
+ "type": "string"
110
+ },
102
111
  "answer": {
103
112
  "default": [
104
113
  ""
@@ -136,6 +145,9 @@
136
145
  ],
137
146
  "additionalProperties": false
138
147
  },
148
+ "comment": {
149
+ "type": "string"
150
+ },
139
151
  "answer": {
140
152
  "default": 0,
141
153
  "type": "number"
@@ -168,6 +180,9 @@
168
180
  ],
169
181
  "additionalProperties": false
170
182
  },
183
+ "comment": {
184
+ "type": "string"
185
+ },
171
186
  "answer": {
172
187
  "default": "",
173
188
  "type": "string"
@@ -200,6 +215,9 @@
200
215
  ],
201
216
  "additionalProperties": false
202
217
  },
218
+ "comment": {
219
+ "type": "string"
220
+ },
203
221
  "answer": {
204
222
  "type": "object",
205
223
  "properties": {
@@ -246,6 +264,9 @@
246
264
  ],
247
265
  "additionalProperties": false
248
266
  },
267
+ "comment": {
268
+ "type": "string"
269
+ },
249
270
  "answer": {
250
271
  "default": "",
251
272
  "type": "string"
@@ -278,6 +299,9 @@
278
299
  ],
279
300
  "additionalProperties": false
280
301
  },
302
+ "comment": {
303
+ "type": "string"
304
+ },
281
305
  "answer": {
282
306
  "default": [],
283
307
  "type": "array",
@@ -328,6 +352,9 @@
328
352
  ],
329
353
  "additionalProperties": false
330
354
  },
355
+ "comment": {
356
+ "type": "string"
357
+ },
331
358
  "answer": {
332
359
  "default": [],
333
360
  "type": "array",
@@ -378,6 +405,9 @@
378
405
  ],
379
406
  "additionalProperties": false
380
407
  },
408
+ "comment": {
409
+ "type": "string"
410
+ },
381
411
  "answer": {
382
412
  "default": [
383
413
  ""
@@ -415,6 +445,9 @@
415
445
  ],
416
446
  "additionalProperties": false
417
447
  },
448
+ "comment": {
449
+ "type": "string"
450
+ },
418
451
  "answer": {
419
452
  "default": 0,
420
453
  "type": "number"
@@ -447,6 +480,9 @@
447
480
  ],
448
481
  "additionalProperties": false
449
482
  },
483
+ "comment": {
484
+ "type": "string"
485
+ },
450
486
  "answer": {
451
487
  "type": "object",
452
488
  "properties": {
@@ -493,6 +529,9 @@
493
529
  ],
494
530
  "additionalProperties": false
495
531
  },
532
+ "comment": {
533
+ "type": "string"
534
+ },
496
535
  "answer": {
497
536
  "default": "",
498
537
  "type": "string"
@@ -525,6 +564,9 @@
525
564
  ],
526
565
  "additionalProperties": false
527
566
  },
567
+ "comment": {
568
+ "type": "string"
569
+ },
528
570
  "answer": {
529
571
  "default": [],
530
572
  "type": "array",
@@ -575,6 +617,9 @@
575
617
  ],
576
618
  "additionalProperties": false
577
619
  },
620
+ "comment": {
621
+ "type": "string"
622
+ },
578
623
  "answer": {
579
624
  "default": "",
580
625
  "type": "string"
@@ -607,6 +652,9 @@
607
652
  ],
608
653
  "additionalProperties": false
609
654
  },
655
+ "comment": {
656
+ "type": "string"
657
+ },
610
658
  "columnHeadings": {
611
659
  "default": [
612
660
  "Column A"
@@ -645,6 +693,9 @@
645
693
  ],
646
694
  "additionalProperties": false
647
695
  },
696
+ "comment": {
697
+ "type": "string"
698
+ },
648
699
  "answer": {
649
700
  "type": "object",
650
701
  "properties": {
@@ -691,6 +742,9 @@
691
742
  ],
692
743
  "additionalProperties": false
693
744
  },
745
+ "comment": {
746
+ "type": "string"
747
+ },
694
748
  "answer": {
695
749
  "default": false,
696
750
  "type": "boolean"
@@ -723,6 +777,9 @@
723
777
  ],
724
778
  "additionalProperties": false
725
779
  },
780
+ "comment": {
781
+ "type": "string"
782
+ },
726
783
  "answer": {
727
784
  "default": [
728
785
  ""
@@ -760,6 +817,9 @@
760
817
  ],
761
818
  "additionalProperties": false
762
819
  },
820
+ "comment": {
821
+ "type": "string"
822
+ },
763
823
  "answer": {
764
824
  "default": 0,
765
825
  "type": "number"
@@ -792,6 +852,9 @@
792
852
  ],
793
853
  "additionalProperties": false
794
854
  },
855
+ "comment": {
856
+ "type": "string"
857
+ },
795
858
  "answer": {
796
859
  "default": "",
797
860
  "type": "string"
@@ -824,6 +887,9 @@
824
887
  ],
825
888
  "additionalProperties": false
826
889
  },
890
+ "comment": {
891
+ "type": "string"
892
+ },
827
893
  "answer": {
828
894
  "type": "object",
829
895
  "properties": {
@@ -870,6 +936,9 @@
870
936
  ],
871
937
  "additionalProperties": false
872
938
  },
939
+ "comment": {
940
+ "type": "string"
941
+ },
873
942
  "answer": {
874
943
  "default": "",
875
944
  "type": "string"
@@ -902,6 +971,9 @@
902
971
  ],
903
972
  "additionalProperties": false
904
973
  },
974
+ "comment": {
975
+ "type": "string"
976
+ },
905
977
  "answer": {
906
978
  "default": [],
907
979
  "type": "array",
@@ -952,6 +1024,9 @@
952
1024
  ],
953
1025
  "additionalProperties": false
954
1026
  },
1027
+ "comment": {
1028
+ "type": "string"
1029
+ },
955
1030
  "answer": {
956
1031
  "default": [],
957
1032
  "type": "array",
@@ -1002,6 +1077,9 @@
1002
1077
  ],
1003
1078
  "additionalProperties": false
1004
1079
  },
1080
+ "comment": {
1081
+ "type": "string"
1082
+ },
1005
1083
  "answer": {
1006
1084
  "default": [
1007
1085
  ""
@@ -1039,6 +1117,9 @@
1039
1117
  ],
1040
1118
  "additionalProperties": false
1041
1119
  },
1120
+ "comment": {
1121
+ "type": "string"
1122
+ },
1042
1123
  "answer": {
1043
1124
  "default": 0,
1044
1125
  "type": "number"
@@ -1071,6 +1152,9 @@
1071
1152
  ],
1072
1153
  "additionalProperties": false
1073
1154
  },
1155
+ "comment": {
1156
+ "type": "string"
1157
+ },
1074
1158
  "answer": {
1075
1159
  "type": "object",
1076
1160
  "properties": {
@@ -1117,6 +1201,9 @@
1117
1201
  ],
1118
1202
  "additionalProperties": false
1119
1203
  },
1204
+ "comment": {
1205
+ "type": "string"
1206
+ },
1120
1207
  "answer": {
1121
1208
  "default": "",
1122
1209
  "type": "string"
@@ -1149,6 +1236,9 @@
1149
1236
  ],
1150
1237
  "additionalProperties": false
1151
1238
  },
1239
+ "comment": {
1240
+ "type": "string"
1241
+ },
1152
1242
  "answer": {
1153
1243
  "default": [],
1154
1244
  "type": "array",
@@ -1199,6 +1289,9 @@
1199
1289
  ],
1200
1290
  "additionalProperties": false
1201
1291
  },
1292
+ "comment": {
1293
+ "type": "string"
1294
+ },
1202
1295
  "answer": {
1203
1296
  "default": "",
1204
1297
  "type": "string"
@@ -1231,6 +1324,9 @@
1231
1324
  ],
1232
1325
  "additionalProperties": false
1233
1326
  },
1327
+ "comment": {
1328
+ "type": "string"
1329
+ },
1234
1330
  "answer": {
1235
1331
  "default": "",
1236
1332
  "type": "string"
@@ -1263,6 +1359,9 @@
1263
1359
  ],
1264
1360
  "additionalProperties": false
1265
1361
  },
1362
+ "comment": {
1363
+ "type": "string"
1364
+ },
1266
1365
  "answer": {
1267
1366
  "default": "",
1268
1367
  "type": "string"
@@ -1295,6 +1394,9 @@
1295
1394
  ],
1296
1395
  "additionalProperties": false
1297
1396
  },
1397
+ "comment": {
1398
+ "type": "string"
1399
+ },
1298
1400
  "answer": {
1299
1401
  "default": "",
1300
1402
  "type": "string"
@@ -1346,6 +1448,9 @@
1346
1448
  ],
1347
1449
  "additionalProperties": false
1348
1450
  },
1451
+ "comment": {
1452
+ "type": "string"
1453
+ },
1349
1454
  "answer": {
1350
1455
  "default": "",
1351
1456
  "type": "string"
@@ -1378,6 +1483,9 @@
1378
1483
  ],
1379
1484
  "additionalProperties": false
1380
1485
  },
1486
+ "comment": {
1487
+ "type": "string"
1488
+ },
1381
1489
  "answer": {
1382
1490
  "default": "",
1383
1491
  "type": "string"
@@ -1410,6 +1518,9 @@
1410
1518
  ],
1411
1519
  "additionalProperties": false
1412
1520
  },
1521
+ "comment": {
1522
+ "type": "string"
1523
+ },
1413
1524
  "answer": {
1414
1525
  "default": "",
1415
1526
  "type": "string"