@dmptool/types 2.1.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +2 -2
- package/dist/questions/__tests__/optionBasedQuestions.spec.js +8 -4
- package/dist/questions/dateQuestions.d.ts +4 -0
- package/dist/questions/dateQuestions.js +2 -2
- package/dist/questions/index.d.ts +28 -0
- package/dist/questions/numberQuestions.d.ts +8 -0
- package/dist/questions/numberQuestions.js +4 -4
- package/dist/questions/optionBasedQuestions.d.ts +10 -0
- package/dist/questions/optionBasedQuestions.js +5 -5
- package/dist/questions/tableQuestions.d.ts +70 -0
- 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 +84 -0
- package/dist/schemas/anyTableColumnAnswer.schema.json +54 -0
- package/dist/schemas/anyTableColumnQuestion.schema.json +33 -0
- 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 +3 -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 +3 -0
- 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 +3 -0
- 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 +3 -0
- package/dist/schemas/tableAnswer.schema.json +57 -0
- package/dist/schemas/tableQuestion.schema.json +33 -0
- 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 +4828 -0
- package/schemas/anyTableColumnAnswer.schema.json +741 -0
- package/schemas/anyTableColumnQuestion.schema.json +1560 -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 +80 -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 +87 -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 +80 -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 +87 -0
- package/schemas/tableAnswer.schema.json +797 -0
- package/schemas/tableQuestion.schema.json +1662 -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
|
@@ -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"
|
|
@@ -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": [
|
|
@@ -259,6 +262,9 @@
|
|
|
259
262
|
],
|
|
260
263
|
"additionalProperties": false
|
|
261
264
|
}
|
|
265
|
+
},
|
|
266
|
+
"showCommentField": {
|
|
267
|
+
"type": "boolean"
|
|
262
268
|
}
|
|
263
269
|
},
|
|
264
270
|
"required": [
|
|
@@ -329,6 +335,9 @@
|
|
|
329
335
|
"schemaVersion"
|
|
330
336
|
],
|
|
331
337
|
"additionalProperties": false
|
|
338
|
+
},
|
|
339
|
+
"showCommentField": {
|
|
340
|
+
"type": "boolean"
|
|
332
341
|
}
|
|
333
342
|
},
|
|
334
343
|
"required": [
|
|
@@ -391,6 +400,9 @@
|
|
|
391
400
|
"schemaVersion"
|
|
392
401
|
],
|
|
393
402
|
"additionalProperties": false
|
|
403
|
+
},
|
|
404
|
+
"showCommentField": {
|
|
405
|
+
"type": "boolean"
|
|
394
406
|
}
|
|
395
407
|
},
|
|
396
408
|
"required": [
|
|
@@ -510,6 +522,9 @@
|
|
|
510
522
|
"end"
|
|
511
523
|
],
|
|
512
524
|
"additionalProperties": false
|
|
525
|
+
},
|
|
526
|
+
"showCommentField": {
|
|
527
|
+
"type": "boolean"
|
|
513
528
|
}
|
|
514
529
|
},
|
|
515
530
|
"required": [
|
|
@@ -578,6 +593,9 @@
|
|
|
578
593
|
"schemaVersion"
|
|
579
594
|
],
|
|
580
595
|
"additionalProperties": false
|
|
596
|
+
},
|
|
597
|
+
"showCommentField": {
|
|
598
|
+
"type": "boolean"
|
|
581
599
|
}
|
|
582
600
|
},
|
|
583
601
|
"required": [
|
|
@@ -939,6 +957,9 @@
|
|
|
939
957
|
],
|
|
940
958
|
"additionalProperties": false
|
|
941
959
|
}
|
|
960
|
+
},
|
|
961
|
+
"showCommentField": {
|
|
962
|
+
"type": "boolean"
|
|
942
963
|
}
|
|
943
964
|
},
|
|
944
965
|
"required": [
|
|
@@ -1004,6 +1025,9 @@
|
|
|
1004
1025
|
"schemaVersion"
|
|
1005
1026
|
],
|
|
1006
1027
|
"additionalProperties": false
|
|
1028
|
+
},
|
|
1029
|
+
"showCommentField": {
|
|
1030
|
+
"type": "boolean"
|
|
1007
1031
|
}
|
|
1008
1032
|
},
|
|
1009
1033
|
"required": [
|
|
@@ -1127,6 +1151,9 @@
|
|
|
1127
1151
|
"end"
|
|
1128
1152
|
],
|
|
1129
1153
|
"additionalProperties": false
|
|
1154
|
+
},
|
|
1155
|
+
"showCommentField": {
|
|
1156
|
+
"type": "boolean"
|
|
1130
1157
|
}
|
|
1131
1158
|
},
|
|
1132
1159
|
"required": [
|
|
@@ -1203,6 +1230,9 @@
|
|
|
1203
1230
|
],
|
|
1204
1231
|
"additionalProperties": false
|
|
1205
1232
|
}
|
|
1233
|
+
},
|
|
1234
|
+
"showCommentField": {
|
|
1235
|
+
"type": "boolean"
|
|
1206
1236
|
}
|
|
1207
1237
|
},
|
|
1208
1238
|
"required": [
|
|
@@ -1709,6 +1739,9 @@
|
|
|
1709
1739
|
],
|
|
1710
1740
|
"additionalProperties": false
|
|
1711
1741
|
}
|
|
1742
|
+
},
|
|
1743
|
+
"showCommentField": {
|
|
1744
|
+
"type": "boolean"
|
|
1712
1745
|
}
|
|
1713
1746
|
},
|
|
1714
1747
|
"required": [
|
|
@@ -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": [
|
|
@@ -1919,6 +1955,9 @@
|
|
|
1919
1955
|
],
|
|
1920
1956
|
"additionalProperties": false
|
|
1921
1957
|
}
|
|
1958
|
+
},
|
|
1959
|
+
"showCommentField": {
|
|
1960
|
+
"type": "boolean"
|
|
1922
1961
|
}
|
|
1923
1962
|
},
|
|
1924
1963
|
"required": [
|
|
@@ -2011,6 +2050,9 @@
|
|
|
2011
2050
|
"schemaVersion"
|
|
2012
2051
|
],
|
|
2013
2052
|
"additionalProperties": false
|
|
2053
|
+
},
|
|
2054
|
+
"showCommentField": {
|
|
2055
|
+
"type": "boolean"
|
|
2014
2056
|
}
|
|
2015
2057
|
},
|
|
2016
2058
|
"required": [
|
|
@@ -2134,6 +2176,9 @@
|
|
|
2134
2176
|
"schemaVersion"
|
|
2135
2177
|
],
|
|
2136
2178
|
"additionalProperties": false
|
|
2179
|
+
},
|
|
2180
|
+
"showCommentField": {
|
|
2181
|
+
"type": "boolean"
|
|
2137
2182
|
}
|
|
2138
2183
|
},
|
|
2139
2184
|
"required": [
|
|
@@ -2901,6 +2946,9 @@
|
|
|
2901
2946
|
],
|
|
2902
2947
|
"additionalProperties": false
|
|
2903
2948
|
}
|
|
2949
|
+
},
|
|
2950
|
+
"showCommentField": {
|
|
2951
|
+
"type": "boolean"
|
|
2904
2952
|
}
|
|
2905
2953
|
},
|
|
2906
2954
|
"required": [
|
|
@@ -3180,6 +3228,9 @@
|
|
|
3180
3228
|
"schemaVersion"
|
|
3181
3229
|
],
|
|
3182
3230
|
"additionalProperties": false
|
|
3231
|
+
},
|
|
3232
|
+
"showCommentField": {
|
|
3233
|
+
"type": "boolean"
|
|
3183
3234
|
}
|
|
3184
3235
|
},
|
|
3185
3236
|
"required": [
|
|
@@ -3255,6 +3306,9 @@
|
|
|
3255
3306
|
],
|
|
3256
3307
|
"additionalProperties": false
|
|
3257
3308
|
}
|
|
3309
|
+
},
|
|
3310
|
+
"showCommentField": {
|
|
3311
|
+
"type": "boolean"
|
|
3258
3312
|
}
|
|
3259
3313
|
},
|
|
3260
3314
|
"required": [
|
|
@@ -3325,6 +3379,9 @@
|
|
|
3325
3379
|
"schemaVersion"
|
|
3326
3380
|
],
|
|
3327
3381
|
"additionalProperties": false
|
|
3382
|
+
},
|
|
3383
|
+
"showCommentField": {
|
|
3384
|
+
"type": "boolean"
|
|
3328
3385
|
}
|
|
3329
3386
|
},
|
|
3330
3387
|
"required": [
|
|
@@ -3387,6 +3444,9 @@
|
|
|
3387
3444
|
"schemaVersion"
|
|
3388
3445
|
],
|
|
3389
3446
|
"additionalProperties": false
|
|
3447
|
+
},
|
|
3448
|
+
"showCommentField": {
|
|
3449
|
+
"type": "boolean"
|
|
3390
3450
|
}
|
|
3391
3451
|
},
|
|
3392
3452
|
"required": [
|
|
@@ -3506,6 +3566,9 @@
|
|
|
3506
3566
|
"end"
|
|
3507
3567
|
],
|
|
3508
3568
|
"additionalProperties": false
|
|
3569
|
+
},
|
|
3570
|
+
"showCommentField": {
|
|
3571
|
+
"type": "boolean"
|
|
3509
3572
|
}
|
|
3510
3573
|
},
|
|
3511
3574
|
"required": [
|
|
@@ -3574,6 +3637,9 @@
|
|
|
3574
3637
|
"schemaVersion"
|
|
3575
3638
|
],
|
|
3576
3639
|
"additionalProperties": false
|
|
3640
|
+
},
|
|
3641
|
+
"showCommentField": {
|
|
3642
|
+
"type": "boolean"
|
|
3577
3643
|
}
|
|
3578
3644
|
},
|
|
3579
3645
|
"required": [
|
|
@@ -3917,6 +3983,9 @@
|
|
|
3917
3983
|
"schemaVersion"
|
|
3918
3984
|
],
|
|
3919
3985
|
"additionalProperties": false
|
|
3986
|
+
},
|
|
3987
|
+
"showCommentField": {
|
|
3988
|
+
"type": "boolean"
|
|
3920
3989
|
}
|
|
3921
3990
|
},
|
|
3922
3991
|
"required": [
|
|
@@ -4011,6 +4080,9 @@
|
|
|
4011
4080
|
"schemaVersion"
|
|
4012
4081
|
],
|
|
4013
4082
|
"additionalProperties": false
|
|
4083
|
+
},
|
|
4084
|
+
"showCommentField": {
|
|
4085
|
+
"type": "boolean"
|
|
4014
4086
|
}
|
|
4015
4087
|
},
|
|
4016
4088
|
"required": [
|
|
@@ -4086,6 +4158,9 @@
|
|
|
4086
4158
|
],
|
|
4087
4159
|
"additionalProperties": false
|
|
4088
4160
|
}
|
|
4161
|
+
},
|
|
4162
|
+
"showCommentField": {
|
|
4163
|
+
"type": "boolean"
|
|
4089
4164
|
}
|
|
4090
4165
|
},
|
|
4091
4166
|
"required": [
|
|
@@ -4308,6 +4383,9 @@
|
|
|
4308
4383
|
],
|
|
4309
4384
|
"additionalProperties": false
|
|
4310
4385
|
}
|
|
4386
|
+
},
|
|
4387
|
+
"showCommentField": {
|
|
4388
|
+
"type": "boolean"
|
|
4311
4389
|
}
|
|
4312
4390
|
},
|
|
4313
4391
|
"required": [
|
|
@@ -4510,6 +4588,9 @@
|
|
|
4510
4588
|
"schemaVersion"
|
|
4511
4589
|
],
|
|
4512
4590
|
"additionalProperties": false
|
|
4591
|
+
},
|
|
4592
|
+
"showCommentField": {
|
|
4593
|
+
"type": "boolean"
|
|
4513
4594
|
}
|
|
4514
4595
|
},
|
|
4515
4596
|
"required": [
|
|
@@ -4731,6 +4812,9 @@
|
|
|
4731
4812
|
"schemaVersion"
|
|
4732
4813
|
],
|
|
4733
4814
|
"additionalProperties": false
|
|
4815
|
+
},
|
|
4816
|
+
"showCommentField": {
|
|
4817
|
+
"type": "boolean"
|
|
4734
4818
|
}
|
|
4735
4819
|
},
|
|
4736
4820
|
"required": [
|