@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.
- package/README.md +70 -1
- package/dist/answers/__tests__/defaults.spec.js +80 -21
- package/dist/answers/answer.d.ts +2 -0
- package/dist/answers/answer.js +4 -2
- package/dist/answers/dateAnswers.d.ts +4 -0
- package/dist/answers/graphQLAnswers.d.ts +8 -0
- package/dist/answers/index.d.ts +37 -0
- package/dist/answers/numberAnswers.d.ts +8 -0
- package/dist/answers/optionBasedAnswers.d.ts +10 -0
- package/dist/answers/tableAnswers.d.ts +94 -0
- package/dist/answers/textAnswers.d.ts +8 -0
- package/dist/dmp/extension.d.ts +111 -0
- package/dist/dmp/index.js +48 -2
- package/dist/questions/__tests__/defaults.spec.js +12 -12
- package/dist/questions/__tests__/optionBasedQuestions.spec.js +25 -16
- package/dist/questions/dateQuestions.d.ts +4 -0
- package/dist/questions/dateQuestions.js +2 -2
- package/dist/questions/index.d.ts +38 -7
- package/dist/questions/numberQuestions.d.ts +8 -0
- package/dist/questions/numberQuestions.js +4 -4
- package/dist/questions/optionBasedQuestions.d.ts +18 -6
- package/dist/questions/optionBasedQuestions.js +23 -10
- package/dist/questions/tableQuestions.d.ts +94 -16
- package/dist/questions/tableQuestions.js +9 -9
- package/dist/questions/textQuestions.d.ts +4 -0
- package/dist/questions/textQuestions.js +2 -2
- package/dist/schemas/affiliationSearchAnswer.schema.json +3 -0
- package/dist/schemas/anyAnswer.schema.json +111 -0
- package/dist/schemas/anyQuestion.schema.json +114 -35
- package/dist/schemas/anyTableColumnAnswer.schema.json +54 -0
- package/dist/schemas/anyTableColumnQuestion.schema.json +42 -10
- package/dist/schemas/booleanAnswer.schema.json +3 -0
- package/dist/schemas/booleanQuestion.schema.json +3 -0
- package/dist/schemas/checkboxesAnswer.schema.json +3 -0
- package/dist/schemas/checkboxesQuestion.schema.json +6 -0
- package/dist/schemas/currencyAnswer.schema.json +3 -0
- package/dist/schemas/currencyQuestion.schema.json +3 -0
- package/dist/schemas/dateAnswer.schema.json +3 -0
- package/dist/schemas/dateQuestion.schema.json +3 -0
- package/dist/schemas/dateRangeAnswer.schema.json +3 -0
- package/dist/schemas/dateRangeQuestion.schema.json +3 -0
- package/dist/schemas/dmpExtension.schema.json +111 -0
- package/dist/schemas/emailAnswer.schema.json +3 -0
- package/dist/schemas/emailQuestion.schema.json +3 -0
- package/dist/schemas/licenseSearchAnswer.schema.json +3 -0
- package/dist/schemas/metadataStandardSearchAnswer.schema.json +3 -0
- package/dist/schemas/multiselectBoxAnswer.schema.json +3 -0
- package/dist/schemas/multiselectBoxQuestion.schema.json +6 -5
- package/dist/schemas/numberAnswer.schema.json +3 -0
- package/dist/schemas/numberQuestion.schema.json +3 -0
- package/dist/schemas/numberRangeAnswer.schema.json +3 -0
- package/dist/schemas/numberRangeQuestion.schema.json +3 -0
- package/dist/schemas/numberWithContextAnswer.schema.json +3 -0
- package/dist/schemas/numberWithContextQuestion.schema.json +3 -0
- package/dist/schemas/radioButtonsAnswer.schema.json +3 -0
- package/dist/schemas/radioButtonsQuestion.schema.json +6 -5
- package/dist/schemas/repositorySearchAnswer.schema.json +3 -0
- package/dist/schemas/researchOutputTableAnswer.schema.json +3344 -9
- package/dist/schemas/selectBoxAnswer.schema.json +3 -0
- package/dist/schemas/selectBoxQuestion.schema.json +6 -5
- package/dist/schemas/tableAnswer.schema.json +57 -0
- package/dist/schemas/tableQuestion.schema.json +42 -10
- package/dist/schemas/textAnswer.schema.json +3 -0
- package/dist/schemas/textAreaAnswer.schema.json +3 -0
- package/dist/schemas/urlAnswer.schema.json +3 -0
- package/dist/schemas/urlQuestion.schema.json +3 -0
- package/package.json +9 -4
- package/schemas/.placeholder +0 -0
- package/schemas/affiliationSearchAnswer.schema.json +50 -0
- package/schemas/affiliationSearchQuestion.schema.json +142 -0
- package/schemas/anyAnswer.schema.json +1537 -0
- package/schemas/anyQuestion.schema.json +4823 -0
- package/schemas/anyTableColumnAnswer.schema.json +741 -0
- package/schemas/anyTableColumnQuestion.schema.json +1559 -0
- package/schemas/booleanAnswer.schema.json +36 -0
- package/schemas/booleanQuestion.schema.json +55 -0
- package/schemas/checkboxesAnswer.schema.json +41 -0
- package/schemas/checkboxesQuestion.schema.json +83 -0
- package/schemas/currencyAnswer.schema.json +36 -0
- package/schemas/currencyQuestion.schema.json +73 -0
- package/schemas/dateAnswer.schema.json +36 -0
- package/schemas/datePickerAnswer.schema.json +37 -0
- package/schemas/datePickerQuestion.schema.json +52 -0
- package/schemas/dateQuestion.schema.json +66 -0
- package/schemas/dateRangeAnswer.schema.json +50 -0
- package/schemas/dateRangeQuestion.schema.json +124 -0
- package/schemas/dmp.schema.json +2070 -0
- package/schemas/dmpExtension.schema.json +1985 -0
- package/schemas/emailAnswer.schema.json +36 -0
- package/schemas/emailQuestion.schema.json +71 -0
- package/schemas/filteredSearchAnswer.schema.json +40 -0
- package/schemas/filteredSearchQuestion.schema.json +130 -0
- package/schemas/licenseSearchAnswer.schema.json +54 -0
- package/schemas/licenseSearchQuestion.schema.json +140 -0
- package/schemas/metadataStandardSearchAnswer.schema.json +54 -0
- package/schemas/metadataStandardSearchQuestion.schema.json +141 -0
- package/schemas/multiselectBoxAnswer.schema.json +41 -0
- package/schemas/multiselectBoxQuestion.schema.json +85 -0
- package/schemas/numberAnswer.schema.json +36 -0
- package/schemas/numberQuestion.schema.json +68 -0
- package/schemas/numberRangeAnswer.schema.json +50 -0
- package/schemas/numberRangeQuestion.schema.json +128 -0
- package/schemas/numberWithContextAnswer.schema.json +50 -0
- package/schemas/numberWithContextQuestion.schema.json +98 -0
- package/schemas/radioButtonsAnswer.schema.json +36 -0
- package/schemas/radioButtonsQuestion.schema.json +78 -0
- package/schemas/repositorySearchAnswer.schema.json +54 -0
- package/schemas/repositorySearchQuestion.schema.json +140 -0
- package/schemas/researchOutputTableAnswer.schema.json +20065 -0
- package/schemas/researchOutputTableQuestion.schema.json +140 -0
- package/schemas/selectBoxAnswer.schema.json +36 -0
- package/schemas/selectBoxQuestion.schema.json +85 -0
- package/schemas/tableAnswer.schema.json +797 -0
- package/schemas/tableQuestion.schema.json +1661 -0
- package/schemas/textAnswer.schema.json +36 -0
- package/schemas/textAreaAnswer.schema.json +36 -0
- package/schemas/textAreaQuestion.schema.json +78 -0
- package/schemas/textQuestion.schema.json +63 -0
- package/schemas/typeaheadSearchAnswer.schema.json +37 -0
- package/schemas/typeaheadSearchQuestion.schema.json +120 -0
- package/schemas/urlAnswer.schema.json +36 -0
- package/schemas/urlQuestion.schema.json +66 -0
|
@@ -184,6 +184,9 @@
|
|
|
184
184
|
"schemaVersion"
|
|
185
185
|
],
|
|
186
186
|
"additionalProperties": false
|
|
187
|
+
},
|
|
188
|
+
"showCommentField": {
|
|
189
|
+
"type": "boolean"
|
|
187
190
|
}
|
|
188
191
|
},
|
|
189
192
|
"required": [
|
|
@@ -247,6 +250,9 @@
|
|
|
247
250
|
"default": "a",
|
|
248
251
|
"type": "string"
|
|
249
252
|
},
|
|
253
|
+
"description": {
|
|
254
|
+
"type": "string"
|
|
255
|
+
},
|
|
250
256
|
"checked": {
|
|
251
257
|
"default": false,
|
|
252
258
|
"type": "boolean"
|
|
@@ -259,6 +265,9 @@
|
|
|
259
265
|
],
|
|
260
266
|
"additionalProperties": false
|
|
261
267
|
}
|
|
268
|
+
},
|
|
269
|
+
"showCommentField": {
|
|
270
|
+
"type": "boolean"
|
|
262
271
|
}
|
|
263
272
|
},
|
|
264
273
|
"required": [
|
|
@@ -329,6 +338,9 @@
|
|
|
329
338
|
"schemaVersion"
|
|
330
339
|
],
|
|
331
340
|
"additionalProperties": false
|
|
341
|
+
},
|
|
342
|
+
"showCommentField": {
|
|
343
|
+
"type": "boolean"
|
|
332
344
|
}
|
|
333
345
|
},
|
|
334
346
|
"required": [
|
|
@@ -391,6 +403,9 @@
|
|
|
391
403
|
"schemaVersion"
|
|
392
404
|
],
|
|
393
405
|
"additionalProperties": false
|
|
406
|
+
},
|
|
407
|
+
"showCommentField": {
|
|
408
|
+
"type": "boolean"
|
|
394
409
|
}
|
|
395
410
|
},
|
|
396
411
|
"required": [
|
|
@@ -510,6 +525,9 @@
|
|
|
510
525
|
"end"
|
|
511
526
|
],
|
|
512
527
|
"additionalProperties": false
|
|
528
|
+
},
|
|
529
|
+
"showCommentField": {
|
|
530
|
+
"type": "boolean"
|
|
513
531
|
}
|
|
514
532
|
},
|
|
515
533
|
"required": [
|
|
@@ -578,6 +596,9 @@
|
|
|
578
596
|
"schemaVersion"
|
|
579
597
|
],
|
|
580
598
|
"additionalProperties": false
|
|
599
|
+
},
|
|
600
|
+
"showCommentField": {
|
|
601
|
+
"type": "boolean"
|
|
581
602
|
}
|
|
582
603
|
},
|
|
583
604
|
"required": [
|
|
@@ -927,18 +948,19 @@
|
|
|
927
948
|
"default": "a",
|
|
928
949
|
"type": "string"
|
|
929
950
|
},
|
|
930
|
-
"
|
|
931
|
-
"
|
|
932
|
-
"type": "boolean"
|
|
951
|
+
"description": {
|
|
952
|
+
"type": "string"
|
|
933
953
|
}
|
|
934
954
|
},
|
|
935
955
|
"required": [
|
|
936
956
|
"label",
|
|
937
|
-
"value"
|
|
938
|
-
"selected"
|
|
957
|
+
"value"
|
|
939
958
|
],
|
|
940
959
|
"additionalProperties": false
|
|
941
960
|
}
|
|
961
|
+
},
|
|
962
|
+
"showCommentField": {
|
|
963
|
+
"type": "boolean"
|
|
942
964
|
}
|
|
943
965
|
},
|
|
944
966
|
"required": [
|
|
@@ -1004,6 +1026,9 @@
|
|
|
1004
1026
|
"schemaVersion"
|
|
1005
1027
|
],
|
|
1006
1028
|
"additionalProperties": false
|
|
1029
|
+
},
|
|
1030
|
+
"showCommentField": {
|
|
1031
|
+
"type": "boolean"
|
|
1007
1032
|
}
|
|
1008
1033
|
},
|
|
1009
1034
|
"required": [
|
|
@@ -1127,6 +1152,9 @@
|
|
|
1127
1152
|
"end"
|
|
1128
1153
|
],
|
|
1129
1154
|
"additionalProperties": false
|
|
1155
|
+
},
|
|
1156
|
+
"showCommentField": {
|
|
1157
|
+
"type": "boolean"
|
|
1130
1158
|
}
|
|
1131
1159
|
},
|
|
1132
1160
|
"required": [
|
|
@@ -1191,18 +1219,19 @@
|
|
|
1191
1219
|
"default": "a",
|
|
1192
1220
|
"type": "string"
|
|
1193
1221
|
},
|
|
1194
|
-
"
|
|
1195
|
-
"
|
|
1196
|
-
"type": "boolean"
|
|
1222
|
+
"description": {
|
|
1223
|
+
"type": "string"
|
|
1197
1224
|
}
|
|
1198
1225
|
},
|
|
1199
1226
|
"required": [
|
|
1200
1227
|
"label",
|
|
1201
|
-
"value"
|
|
1202
|
-
"selected"
|
|
1228
|
+
"value"
|
|
1203
1229
|
],
|
|
1204
1230
|
"additionalProperties": false
|
|
1205
1231
|
}
|
|
1232
|
+
},
|
|
1233
|
+
"showCommentField": {
|
|
1234
|
+
"type": "boolean"
|
|
1206
1235
|
}
|
|
1207
1236
|
},
|
|
1208
1237
|
"required": [
|
|
@@ -1697,18 +1726,19 @@
|
|
|
1697
1726
|
"default": "a",
|
|
1698
1727
|
"type": "string"
|
|
1699
1728
|
},
|
|
1700
|
-
"
|
|
1701
|
-
"
|
|
1702
|
-
"type": "boolean"
|
|
1729
|
+
"description": {
|
|
1730
|
+
"type": "string"
|
|
1703
1731
|
}
|
|
1704
1732
|
},
|
|
1705
1733
|
"required": [
|
|
1706
1734
|
"label",
|
|
1707
|
-
"value"
|
|
1708
|
-
"selected"
|
|
1735
|
+
"value"
|
|
1709
1736
|
],
|
|
1710
1737
|
"additionalProperties": false
|
|
1711
1738
|
}
|
|
1739
|
+
},
|
|
1740
|
+
"showCommentField": {
|
|
1741
|
+
"type": "boolean"
|
|
1712
1742
|
}
|
|
1713
1743
|
},
|
|
1714
1744
|
"required": [
|
|
@@ -1802,6 +1832,9 @@
|
|
|
1802
1832
|
"default": "a",
|
|
1803
1833
|
"type": "string"
|
|
1804
1834
|
},
|
|
1835
|
+
"description": {
|
|
1836
|
+
"type": "string"
|
|
1837
|
+
},
|
|
1805
1838
|
"checked": {
|
|
1806
1839
|
"default": false,
|
|
1807
1840
|
"type": "boolean"
|
|
@@ -1814,6 +1847,9 @@
|
|
|
1814
1847
|
],
|
|
1815
1848
|
"additionalProperties": false
|
|
1816
1849
|
}
|
|
1850
|
+
},
|
|
1851
|
+
"showCommentField": {
|
|
1852
|
+
"type": "boolean"
|
|
1817
1853
|
}
|
|
1818
1854
|
},
|
|
1819
1855
|
"required": [
|
|
@@ -1907,18 +1943,19 @@
|
|
|
1907
1943
|
"default": "a",
|
|
1908
1944
|
"type": "string"
|
|
1909
1945
|
},
|
|
1910
|
-
"
|
|
1911
|
-
"
|
|
1912
|
-
"type": "boolean"
|
|
1946
|
+
"description": {
|
|
1947
|
+
"type": "string"
|
|
1913
1948
|
}
|
|
1914
1949
|
},
|
|
1915
1950
|
"required": [
|
|
1916
1951
|
"label",
|
|
1917
|
-
"value"
|
|
1918
|
-
"selected"
|
|
1952
|
+
"value"
|
|
1919
1953
|
],
|
|
1920
1954
|
"additionalProperties": false
|
|
1921
1955
|
}
|
|
1956
|
+
},
|
|
1957
|
+
"showCommentField": {
|
|
1958
|
+
"type": "boolean"
|
|
1922
1959
|
}
|
|
1923
1960
|
},
|
|
1924
1961
|
"required": [
|
|
@@ -2011,6 +2048,9 @@
|
|
|
2011
2048
|
"schemaVersion"
|
|
2012
2049
|
],
|
|
2013
2050
|
"additionalProperties": false
|
|
2051
|
+
},
|
|
2052
|
+
"showCommentField": {
|
|
2053
|
+
"type": "boolean"
|
|
2014
2054
|
}
|
|
2015
2055
|
},
|
|
2016
2056
|
"required": [
|
|
@@ -2134,6 +2174,9 @@
|
|
|
2134
2174
|
"schemaVersion"
|
|
2135
2175
|
],
|
|
2136
2176
|
"additionalProperties": false
|
|
2177
|
+
},
|
|
2178
|
+
"showCommentField": {
|
|
2179
|
+
"type": "boolean"
|
|
2137
2180
|
}
|
|
2138
2181
|
},
|
|
2139
2182
|
"required": [
|
|
@@ -2889,18 +2932,19 @@
|
|
|
2889
2932
|
"default": "a",
|
|
2890
2933
|
"type": "string"
|
|
2891
2934
|
},
|
|
2892
|
-
"
|
|
2893
|
-
"
|
|
2894
|
-
"type": "boolean"
|
|
2935
|
+
"description": {
|
|
2936
|
+
"type": "string"
|
|
2895
2937
|
}
|
|
2896
2938
|
},
|
|
2897
2939
|
"required": [
|
|
2898
2940
|
"label",
|
|
2899
|
-
"value"
|
|
2900
|
-
"selected"
|
|
2941
|
+
"value"
|
|
2901
2942
|
],
|
|
2902
2943
|
"additionalProperties": false
|
|
2903
2944
|
}
|
|
2945
|
+
},
|
|
2946
|
+
"showCommentField": {
|
|
2947
|
+
"type": "boolean"
|
|
2904
2948
|
}
|
|
2905
2949
|
},
|
|
2906
2950
|
"required": [
|
|
@@ -3180,6 +3224,9 @@
|
|
|
3180
3224
|
"schemaVersion"
|
|
3181
3225
|
],
|
|
3182
3226
|
"additionalProperties": false
|
|
3227
|
+
},
|
|
3228
|
+
"showCommentField": {
|
|
3229
|
+
"type": "boolean"
|
|
3183
3230
|
}
|
|
3184
3231
|
},
|
|
3185
3232
|
"required": [
|
|
@@ -3243,6 +3290,9 @@
|
|
|
3243
3290
|
"default": "a",
|
|
3244
3291
|
"type": "string"
|
|
3245
3292
|
},
|
|
3293
|
+
"description": {
|
|
3294
|
+
"type": "string"
|
|
3295
|
+
},
|
|
3246
3296
|
"checked": {
|
|
3247
3297
|
"default": false,
|
|
3248
3298
|
"type": "boolean"
|
|
@@ -3255,6 +3305,9 @@
|
|
|
3255
3305
|
],
|
|
3256
3306
|
"additionalProperties": false
|
|
3257
3307
|
}
|
|
3308
|
+
},
|
|
3309
|
+
"showCommentField": {
|
|
3310
|
+
"type": "boolean"
|
|
3258
3311
|
}
|
|
3259
3312
|
},
|
|
3260
3313
|
"required": [
|
|
@@ -3325,6 +3378,9 @@
|
|
|
3325
3378
|
"schemaVersion"
|
|
3326
3379
|
],
|
|
3327
3380
|
"additionalProperties": false
|
|
3381
|
+
},
|
|
3382
|
+
"showCommentField": {
|
|
3383
|
+
"type": "boolean"
|
|
3328
3384
|
}
|
|
3329
3385
|
},
|
|
3330
3386
|
"required": [
|
|
@@ -3387,6 +3443,9 @@
|
|
|
3387
3443
|
"schemaVersion"
|
|
3388
3444
|
],
|
|
3389
3445
|
"additionalProperties": false
|
|
3446
|
+
},
|
|
3447
|
+
"showCommentField": {
|
|
3448
|
+
"type": "boolean"
|
|
3390
3449
|
}
|
|
3391
3450
|
},
|
|
3392
3451
|
"required": [
|
|
@@ -3506,6 +3565,9 @@
|
|
|
3506
3565
|
"end"
|
|
3507
3566
|
],
|
|
3508
3567
|
"additionalProperties": false
|
|
3568
|
+
},
|
|
3569
|
+
"showCommentField": {
|
|
3570
|
+
"type": "boolean"
|
|
3509
3571
|
}
|
|
3510
3572
|
},
|
|
3511
3573
|
"required": [
|
|
@@ -3574,6 +3636,9 @@
|
|
|
3574
3636
|
"schemaVersion"
|
|
3575
3637
|
],
|
|
3576
3638
|
"additionalProperties": false
|
|
3639
|
+
},
|
|
3640
|
+
"showCommentField": {
|
|
3641
|
+
"type": "boolean"
|
|
3577
3642
|
}
|
|
3578
3643
|
},
|
|
3579
3644
|
"required": [
|
|
@@ -3917,6 +3982,9 @@
|
|
|
3917
3982
|
"schemaVersion"
|
|
3918
3983
|
],
|
|
3919
3984
|
"additionalProperties": false
|
|
3985
|
+
},
|
|
3986
|
+
"showCommentField": {
|
|
3987
|
+
"type": "boolean"
|
|
3920
3988
|
}
|
|
3921
3989
|
},
|
|
3922
3990
|
"required": [
|
|
@@ -4011,6 +4079,9 @@
|
|
|
4011
4079
|
"schemaVersion"
|
|
4012
4080
|
],
|
|
4013
4081
|
"additionalProperties": false
|
|
4082
|
+
},
|
|
4083
|
+
"showCommentField": {
|
|
4084
|
+
"type": "boolean"
|
|
4014
4085
|
}
|
|
4015
4086
|
},
|
|
4016
4087
|
"required": [
|
|
@@ -4074,18 +4145,19 @@
|
|
|
4074
4145
|
"default": "a",
|
|
4075
4146
|
"type": "string"
|
|
4076
4147
|
},
|
|
4077
|
-
"
|
|
4078
|
-
"
|
|
4079
|
-
"type": "boolean"
|
|
4148
|
+
"description": {
|
|
4149
|
+
"type": "string"
|
|
4080
4150
|
}
|
|
4081
4151
|
},
|
|
4082
4152
|
"required": [
|
|
4083
4153
|
"label",
|
|
4084
|
-
"value"
|
|
4085
|
-
"selected"
|
|
4154
|
+
"value"
|
|
4086
4155
|
],
|
|
4087
4156
|
"additionalProperties": false
|
|
4088
4157
|
}
|
|
4158
|
+
},
|
|
4159
|
+
"showCommentField": {
|
|
4160
|
+
"type": "boolean"
|
|
4089
4161
|
}
|
|
4090
4162
|
},
|
|
4091
4163
|
"required": [
|
|
@@ -4296,18 +4368,19 @@
|
|
|
4296
4368
|
"default": "a",
|
|
4297
4369
|
"type": "string"
|
|
4298
4370
|
},
|
|
4299
|
-
"
|
|
4300
|
-
"
|
|
4301
|
-
"type": "boolean"
|
|
4371
|
+
"description": {
|
|
4372
|
+
"type": "string"
|
|
4302
4373
|
}
|
|
4303
4374
|
},
|
|
4304
4375
|
"required": [
|
|
4305
4376
|
"label",
|
|
4306
|
-
"value"
|
|
4307
|
-
"selected"
|
|
4377
|
+
"value"
|
|
4308
4378
|
],
|
|
4309
4379
|
"additionalProperties": false
|
|
4310
4380
|
}
|
|
4381
|
+
},
|
|
4382
|
+
"showCommentField": {
|
|
4383
|
+
"type": "boolean"
|
|
4311
4384
|
}
|
|
4312
4385
|
},
|
|
4313
4386
|
"required": [
|
|
@@ -4510,6 +4583,9 @@
|
|
|
4510
4583
|
"schemaVersion"
|
|
4511
4584
|
],
|
|
4512
4585
|
"additionalProperties": false
|
|
4586
|
+
},
|
|
4587
|
+
"showCommentField": {
|
|
4588
|
+
"type": "boolean"
|
|
4513
4589
|
}
|
|
4514
4590
|
},
|
|
4515
4591
|
"required": [
|
|
@@ -4731,6 +4807,9 @@
|
|
|
4731
4807
|
"schemaVersion"
|
|
4732
4808
|
],
|
|
4733
4809
|
"additionalProperties": false
|
|
4810
|
+
},
|
|
4811
|
+
"showCommentField": {
|
|
4812
|
+
"type": "boolean"
|
|
4734
4813
|
}
|
|
4735
4814
|
},
|
|
4736
4815
|
"required": [
|
|
@@ -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
|
"answer": {
|
|
611
659
|
"default": "",
|
|
612
660
|
"type": "string"
|
|
@@ -639,6 +687,9 @@
|
|
|
639
687
|
],
|
|
640
688
|
"additionalProperties": false
|
|
641
689
|
},
|
|
690
|
+
"comment": {
|
|
691
|
+
"type": "string"
|
|
692
|
+
},
|
|
642
693
|
"answer": {
|
|
643
694
|
"default": "",
|
|
644
695
|
"type": "string"
|
|
@@ -671,6 +722,9 @@
|
|
|
671
722
|
],
|
|
672
723
|
"additionalProperties": false
|
|
673
724
|
},
|
|
725
|
+
"comment": {
|
|
726
|
+
"type": "string"
|
|
727
|
+
},
|
|
674
728
|
"answer": {
|
|
675
729
|
"default": "",
|
|
676
730
|
"type": "string"
|