@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.
Files changed (121) 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 +2 -2
  15. package/dist/questions/__tests__/optionBasedQuestions.spec.js +8 -4
  16. package/dist/questions/dateQuestions.d.ts +4 -0
  17. package/dist/questions/dateQuestions.js +2 -2
  18. package/dist/questions/index.d.ts +28 -0
  19. package/dist/questions/numberQuestions.d.ts +8 -0
  20. package/dist/questions/numberQuestions.js +4 -4
  21. package/dist/questions/optionBasedQuestions.d.ts +10 -0
  22. package/dist/questions/optionBasedQuestions.js +5 -5
  23. package/dist/questions/tableQuestions.d.ts +70 -0
  24. package/dist/questions/textQuestions.d.ts +4 -0
  25. package/dist/questions/textQuestions.js +2 -2
  26. package/dist/schemas/affiliationSearchAnswer.schema.json +3 -0
  27. package/dist/schemas/anyAnswer.schema.json +111 -0
  28. package/dist/schemas/anyQuestion.schema.json +84 -0
  29. package/dist/schemas/anyTableColumnAnswer.schema.json +54 -0
  30. package/dist/schemas/anyTableColumnQuestion.schema.json +33 -0
  31. package/dist/schemas/booleanAnswer.schema.json +3 -0
  32. package/dist/schemas/booleanQuestion.schema.json +3 -0
  33. package/dist/schemas/checkboxesAnswer.schema.json +3 -0
  34. package/dist/schemas/checkboxesQuestion.schema.json +3 -0
  35. package/dist/schemas/currencyAnswer.schema.json +3 -0
  36. package/dist/schemas/currencyQuestion.schema.json +3 -0
  37. package/dist/schemas/dateAnswer.schema.json +3 -0
  38. package/dist/schemas/dateQuestion.schema.json +3 -0
  39. package/dist/schemas/dateRangeAnswer.schema.json +3 -0
  40. package/dist/schemas/dateRangeQuestion.schema.json +3 -0
  41. package/dist/schemas/dmpExtension.schema.json +111 -0
  42. package/dist/schemas/emailAnswer.schema.json +3 -0
  43. package/dist/schemas/emailQuestion.schema.json +3 -0
  44. package/dist/schemas/licenseSearchAnswer.schema.json +3 -0
  45. package/dist/schemas/metadataStandardSearchAnswer.schema.json +3 -0
  46. package/dist/schemas/multiselectBoxAnswer.schema.json +3 -0
  47. package/dist/schemas/multiselectBoxQuestion.schema.json +3 -0
  48. package/dist/schemas/numberAnswer.schema.json +3 -0
  49. package/dist/schemas/numberQuestion.schema.json +3 -0
  50. package/dist/schemas/numberRangeAnswer.schema.json +3 -0
  51. package/dist/schemas/numberRangeQuestion.schema.json +3 -0
  52. package/dist/schemas/numberWithContextAnswer.schema.json +3 -0
  53. package/dist/schemas/numberWithContextQuestion.schema.json +3 -0
  54. package/dist/schemas/radioButtonsAnswer.schema.json +3 -0
  55. package/dist/schemas/radioButtonsQuestion.schema.json +3 -0
  56. package/dist/schemas/repositorySearchAnswer.schema.json +3 -0
  57. package/dist/schemas/researchOutputTableAnswer.schema.json +3344 -9
  58. package/dist/schemas/selectBoxAnswer.schema.json +3 -0
  59. package/dist/schemas/selectBoxQuestion.schema.json +3 -0
  60. package/dist/schemas/tableAnswer.schema.json +57 -0
  61. package/dist/schemas/tableQuestion.schema.json +33 -0
  62. package/dist/schemas/textAnswer.schema.json +3 -0
  63. package/dist/schemas/textAreaAnswer.schema.json +3 -0
  64. package/dist/schemas/urlAnswer.schema.json +3 -0
  65. package/dist/schemas/urlQuestion.schema.json +3 -0
  66. package/package.json +9 -4
  67. package/schemas/.placeholder +0 -0
  68. package/schemas/affiliationSearchAnswer.schema.json +50 -0
  69. package/schemas/affiliationSearchQuestion.schema.json +142 -0
  70. package/schemas/anyAnswer.schema.json +1537 -0
  71. package/schemas/anyQuestion.schema.json +4828 -0
  72. package/schemas/anyTableColumnAnswer.schema.json +741 -0
  73. package/schemas/anyTableColumnQuestion.schema.json +1560 -0
  74. package/schemas/booleanAnswer.schema.json +36 -0
  75. package/schemas/booleanQuestion.schema.json +55 -0
  76. package/schemas/checkboxesAnswer.schema.json +41 -0
  77. package/schemas/checkboxesQuestion.schema.json +80 -0
  78. package/schemas/currencyAnswer.schema.json +36 -0
  79. package/schemas/currencyQuestion.schema.json +73 -0
  80. package/schemas/dateAnswer.schema.json +36 -0
  81. package/schemas/datePickerAnswer.schema.json +37 -0
  82. package/schemas/datePickerQuestion.schema.json +52 -0
  83. package/schemas/dateQuestion.schema.json +66 -0
  84. package/schemas/dateRangeAnswer.schema.json +50 -0
  85. package/schemas/dateRangeQuestion.schema.json +124 -0
  86. package/schemas/dmp.schema.json +2070 -0
  87. package/schemas/dmpExtension.schema.json +1985 -0
  88. package/schemas/emailAnswer.schema.json +36 -0
  89. package/schemas/emailQuestion.schema.json +71 -0
  90. package/schemas/filteredSearchAnswer.schema.json +40 -0
  91. package/schemas/filteredSearchQuestion.schema.json +130 -0
  92. package/schemas/licenseSearchAnswer.schema.json +54 -0
  93. package/schemas/licenseSearchQuestion.schema.json +140 -0
  94. package/schemas/metadataStandardSearchAnswer.schema.json +54 -0
  95. package/schemas/metadataStandardSearchQuestion.schema.json +141 -0
  96. package/schemas/multiselectBoxAnswer.schema.json +41 -0
  97. package/schemas/multiselectBoxQuestion.schema.json +87 -0
  98. package/schemas/numberAnswer.schema.json +36 -0
  99. package/schemas/numberQuestion.schema.json +68 -0
  100. package/schemas/numberRangeAnswer.schema.json +50 -0
  101. package/schemas/numberRangeQuestion.schema.json +128 -0
  102. package/schemas/numberWithContextAnswer.schema.json +50 -0
  103. package/schemas/numberWithContextQuestion.schema.json +98 -0
  104. package/schemas/radioButtonsAnswer.schema.json +36 -0
  105. package/schemas/radioButtonsQuestion.schema.json +80 -0
  106. package/schemas/repositorySearchAnswer.schema.json +54 -0
  107. package/schemas/repositorySearchQuestion.schema.json +140 -0
  108. package/schemas/researchOutputTableAnswer.schema.json +20065 -0
  109. package/schemas/researchOutputTableQuestion.schema.json +140 -0
  110. package/schemas/selectBoxAnswer.schema.json +36 -0
  111. package/schemas/selectBoxQuestion.schema.json +87 -0
  112. package/schemas/tableAnswer.schema.json +797 -0
  113. package/schemas/tableQuestion.schema.json +1662 -0
  114. package/schemas/textAnswer.schema.json +36 -0
  115. package/schemas/textAreaAnswer.schema.json +36 -0
  116. package/schemas/textAreaQuestion.schema.json +78 -0
  117. package/schemas/textQuestion.schema.json +63 -0
  118. package/schemas/typeaheadSearchAnswer.schema.json +37 -0
  119. package/schemas/typeaheadSearchQuestion.schema.json +120 -0
  120. package/schemas/urlAnswer.schema.json +36 -0
  121. package/schemas/urlQuestion.schema.json +66 -0
@@ -56,6 +56,29 @@
56
56
  },
57
57
  "type": "object"
58
58
  },
59
+ "comment": {
60
+ "~standard": {
61
+ "vendor": "zod",
62
+ "version": 1
63
+ },
64
+ "def": {
65
+ "type": "optional",
66
+ "innerType": {
67
+ "~standard": {
68
+ "vendor": "zod",
69
+ "version": 1
70
+ },
71
+ "def": {
72
+ "type": "string"
73
+ },
74
+ "type": "string",
75
+ "format": null,
76
+ "minLength": null,
77
+ "maxLength": null
78
+ }
79
+ },
80
+ "type": "optional"
81
+ },
59
82
  "columnHeadings": {
60
83
  "~standard": {
61
84
  "vendor": "zod",
@@ -194,6 +217,29 @@
194
217
  },
195
218
  "type": "object"
196
219
  },
220
+ "comment": {
221
+ "~standard": {
222
+ "vendor": "zod",
223
+ "version": 1
224
+ },
225
+ "def": {
226
+ "type": "optional",
227
+ "innerType": {
228
+ "~standard": {
229
+ "vendor": "zod",
230
+ "version": 1
231
+ },
232
+ "def": {
233
+ "type": "string"
234
+ },
235
+ "type": "string",
236
+ "format": null,
237
+ "minLength": null,
238
+ "maxLength": null
239
+ }
240
+ },
241
+ "type": "optional"
242
+ },
197
243
  "answer": {
198
244
  "~standard": {
199
245
  "vendor": "zod",
@@ -316,6 +362,29 @@
316
362
  },
317
363
  "type": "object"
318
364
  },
365
+ "comment": {
366
+ "~standard": {
367
+ "vendor": "zod",
368
+ "version": 1
369
+ },
370
+ "def": {
371
+ "type": "optional",
372
+ "innerType": {
373
+ "~standard": {
374
+ "vendor": "zod",
375
+ "version": 1
376
+ },
377
+ "def": {
378
+ "type": "string"
379
+ },
380
+ "type": "string",
381
+ "format": null,
382
+ "minLength": null,
383
+ "maxLength": null
384
+ }
385
+ },
386
+ "type": "optional"
387
+ },
319
388
  "answer": {
320
389
  "~standard": {
321
390
  "vendor": "zod",
@@ -399,6 +468,29 @@
399
468
  },
400
469
  "type": "object"
401
470
  },
471
+ "comment": {
472
+ "~standard": {
473
+ "vendor": "zod",
474
+ "version": 1
475
+ },
476
+ "def": {
477
+ "type": "optional",
478
+ "innerType": {
479
+ "~standard": {
480
+ "vendor": "zod",
481
+ "version": 1
482
+ },
483
+ "def": {
484
+ "type": "string"
485
+ },
486
+ "type": "string",
487
+ "format": null,
488
+ "minLength": null,
489
+ "maxLength": null
490
+ }
491
+ },
492
+ "type": "optional"
493
+ },
402
494
  "answer": {
403
495
  "~standard": {
404
496
  "vendor": "zod",
@@ -510,6 +602,29 @@
510
602
  },
511
603
  "type": "object"
512
604
  },
605
+ "comment": {
606
+ "~standard": {
607
+ "vendor": "zod",
608
+ "version": 1
609
+ },
610
+ "def": {
611
+ "type": "optional",
612
+ "innerType": {
613
+ "~standard": {
614
+ "vendor": "zod",
615
+ "version": 1
616
+ },
617
+ "def": {
618
+ "type": "string"
619
+ },
620
+ "type": "string",
621
+ "format": null,
622
+ "minLength": null,
623
+ "maxLength": null
624
+ }
625
+ },
626
+ "type": "optional"
627
+ },
513
628
  "answer": {
514
629
  "~standard": {
515
630
  "vendor": "zod",
@@ -599,6 +714,29 @@
599
714
  },
600
715
  "type": "object"
601
716
  },
717
+ "comment": {
718
+ "~standard": {
719
+ "vendor": "zod",
720
+ "version": 1
721
+ },
722
+ "def": {
723
+ "type": "optional",
724
+ "innerType": {
725
+ "~standard": {
726
+ "vendor": "zod",
727
+ "version": 1
728
+ },
729
+ "def": {
730
+ "type": "string"
731
+ },
732
+ "type": "string",
733
+ "format": null,
734
+ "minLength": null,
735
+ "maxLength": null
736
+ }
737
+ },
738
+ "type": "optional"
739
+ },
602
740
  "answer": {
603
741
  "~standard": {
604
742
  "vendor": "zod",
@@ -685,6 +823,29 @@
685
823
  },
686
824
  "type": "object"
687
825
  },
826
+ "comment": {
827
+ "~standard": {
828
+ "vendor": "zod",
829
+ "version": 1
830
+ },
831
+ "def": {
832
+ "type": "optional",
833
+ "innerType": {
834
+ "~standard": {
835
+ "vendor": "zod",
836
+ "version": 1
837
+ },
838
+ "def": {
839
+ "type": "string"
840
+ },
841
+ "type": "string",
842
+ "format": null,
843
+ "minLength": null,
844
+ "maxLength": null
845
+ }
846
+ },
847
+ "type": "optional"
848
+ },
688
849
  "answer": {
689
850
  "~standard": {
690
851
  "vendor": "zod",
@@ -807,6 +968,29 @@
807
968
  },
808
969
  "type": "object"
809
970
  },
971
+ "comment": {
972
+ "~standard": {
973
+ "vendor": "zod",
974
+ "version": 1
975
+ },
976
+ "def": {
977
+ "type": "optional",
978
+ "innerType": {
979
+ "~standard": {
980
+ "vendor": "zod",
981
+ "version": 1
982
+ },
983
+ "def": {
984
+ "type": "string"
985
+ },
986
+ "type": "string",
987
+ "format": null,
988
+ "minLength": null,
989
+ "maxLength": null
990
+ }
991
+ },
992
+ "type": "optional"
993
+ },
810
994
  "answer": {
811
995
  "~standard": {
812
996
  "vendor": "zod",
@@ -893,6 +1077,29 @@
893
1077
  },
894
1078
  "type": "object"
895
1079
  },
1080
+ "comment": {
1081
+ "~standard": {
1082
+ "vendor": "zod",
1083
+ "version": 1
1084
+ },
1085
+ "def": {
1086
+ "type": "optional",
1087
+ "innerType": {
1088
+ "~standard": {
1089
+ "vendor": "zod",
1090
+ "version": 1
1091
+ },
1092
+ "def": {
1093
+ "type": "string"
1094
+ },
1095
+ "type": "string",
1096
+ "format": null,
1097
+ "minLength": null,
1098
+ "maxLength": null
1099
+ }
1100
+ },
1101
+ "type": "optional"
1102
+ },
896
1103
  "answer": {
897
1104
  "~standard": {
898
1105
  "vendor": "zod",
@@ -1096,6 +1303,29 @@
1096
1303
  },
1097
1304
  "type": "object"
1098
1305
  },
1306
+ "comment": {
1307
+ "~standard": {
1308
+ "vendor": "zod",
1309
+ "version": 1
1310
+ },
1311
+ "def": {
1312
+ "type": "optional",
1313
+ "innerType": {
1314
+ "~standard": {
1315
+ "vendor": "zod",
1316
+ "version": 1
1317
+ },
1318
+ "def": {
1319
+ "type": "string"
1320
+ },
1321
+ "type": "string",
1322
+ "format": null,
1323
+ "minLength": null,
1324
+ "maxLength": null
1325
+ }
1326
+ },
1327
+ "type": "optional"
1328
+ },
1099
1329
  "answer": {
1100
1330
  "~standard": {
1101
1331
  "vendor": "zod",
@@ -1299,6 +1529,29 @@
1299
1529
  },
1300
1530
  "type": "object"
1301
1531
  },
1532
+ "comment": {
1533
+ "~standard": {
1534
+ "vendor": "zod",
1535
+ "version": 1
1536
+ },
1537
+ "def": {
1538
+ "type": "optional",
1539
+ "innerType": {
1540
+ "~standard": {
1541
+ "vendor": "zod",
1542
+ "version": 1
1543
+ },
1544
+ "def": {
1545
+ "type": "string"
1546
+ },
1547
+ "type": "string",
1548
+ "format": null,
1549
+ "minLength": null,
1550
+ "maxLength": null
1551
+ }
1552
+ },
1553
+ "type": "optional"
1554
+ },
1302
1555
  "answer": {
1303
1556
  "~standard": {
1304
1557
  "vendor": "zod",
@@ -1410,6 +1663,29 @@
1410
1663
  },
1411
1664
  "type": "object"
1412
1665
  },
1666
+ "comment": {
1667
+ "~standard": {
1668
+ "vendor": "zod",
1669
+ "version": 1
1670
+ },
1671
+ "def": {
1672
+ "type": "optional",
1673
+ "innerType": {
1674
+ "~standard": {
1675
+ "vendor": "zod",
1676
+ "version": 1
1677
+ },
1678
+ "def": {
1679
+ "type": "string"
1680
+ },
1681
+ "type": "string",
1682
+ "format": null,
1683
+ "minLength": null,
1684
+ "maxLength": null
1685
+ }
1686
+ },
1687
+ "type": "optional"
1688
+ },
1413
1689
  "answer": {
1414
1690
  "~standard": {
1415
1691
  "vendor": "zod",
@@ -1499,6 +1775,29 @@
1499
1775
  },
1500
1776
  "type": "object"
1501
1777
  },
1778
+ "comment": {
1779
+ "~standard": {
1780
+ "vendor": "zod",
1781
+ "version": 1
1782
+ },
1783
+ "def": {
1784
+ "type": "optional",
1785
+ "innerType": {
1786
+ "~standard": {
1787
+ "vendor": "zod",
1788
+ "version": 1
1789
+ },
1790
+ "def": {
1791
+ "type": "string"
1792
+ },
1793
+ "type": "string",
1794
+ "format": null,
1795
+ "minLength": null,
1796
+ "maxLength": null
1797
+ }
1798
+ },
1799
+ "type": "optional"
1800
+ },
1502
1801
  "answer": {
1503
1802
  "~standard": {
1504
1803
  "vendor": "zod",
@@ -1624,7 +1923,30 @@
1624
1923
  },
1625
1924
  "type": "object"
1626
1925
  },
1627
- "answer": {
1926
+ "comment": {
1927
+ "~standard": {
1928
+ "vendor": "zod",
1929
+ "version": 1
1930
+ },
1931
+ "def": {
1932
+ "type": "optional",
1933
+ "innerType": {
1934
+ "~standard": {
1935
+ "vendor": "zod",
1936
+ "version": 1
1937
+ },
1938
+ "def": {
1939
+ "type": "string"
1940
+ },
1941
+ "type": "string",
1942
+ "format": null,
1943
+ "minLength": null,
1944
+ "maxLength": null
1945
+ }
1946
+ },
1947
+ "type": "optional"
1948
+ },
1949
+ "answer": {
1628
1950
  "~standard": {
1629
1951
  "vendor": "zod",
1630
1952
  "version": 1
@@ -1710,6 +2032,29 @@
1710
2032
  },
1711
2033
  "type": "object"
1712
2034
  },
2035
+ "comment": {
2036
+ "~standard": {
2037
+ "vendor": "zod",
2038
+ "version": 1
2039
+ },
2040
+ "def": {
2041
+ "type": "optional",
2042
+ "innerType": {
2043
+ "~standard": {
2044
+ "vendor": "zod",
2045
+ "version": 1
2046
+ },
2047
+ "def": {
2048
+ "type": "string"
2049
+ },
2050
+ "type": "string",
2051
+ "format": null,
2052
+ "minLength": null,
2053
+ "maxLength": null
2054
+ }
2055
+ },
2056
+ "type": "optional"
2057
+ },
1713
2058
  "answer": {
1714
2059
  "~standard": {
1715
2060
  "vendor": "zod",
@@ -1913,6 +2258,29 @@
1913
2258
  },
1914
2259
  "type": "object"
1915
2260
  },
2261
+ "comment": {
2262
+ "~standard": {
2263
+ "vendor": "zod",
2264
+ "version": 1
2265
+ },
2266
+ "def": {
2267
+ "type": "optional",
2268
+ "innerType": {
2269
+ "~standard": {
2270
+ "vendor": "zod",
2271
+ "version": 1
2272
+ },
2273
+ "def": {
2274
+ "type": "string"
2275
+ },
2276
+ "type": "string",
2277
+ "format": null,
2278
+ "minLength": null,
2279
+ "maxLength": null
2280
+ }
2281
+ },
2282
+ "type": "optional"
2283
+ },
1916
2284
  "answer": {
1917
2285
  "~standard": {
1918
2286
  "vendor": "zod",
@@ -1999,6 +2367,29 @@
1999
2367
  },
2000
2368
  "type": "object"
2001
2369
  },
2370
+ "comment": {
2371
+ "~standard": {
2372
+ "vendor": "zod",
2373
+ "version": 1
2374
+ },
2375
+ "def": {
2376
+ "type": "optional",
2377
+ "innerType": {
2378
+ "~standard": {
2379
+ "vendor": "zod",
2380
+ "version": 1
2381
+ },
2382
+ "def": {
2383
+ "type": "string"
2384
+ },
2385
+ "type": "string",
2386
+ "format": null,
2387
+ "minLength": null,
2388
+ "maxLength": null
2389
+ }
2390
+ },
2391
+ "type": "optional"
2392
+ },
2002
2393
  "answer": {
2003
2394
  "~standard": {
2004
2395
  "vendor": "zod",
@@ -2085,6 +2476,29 @@
2085
2476
  },
2086
2477
  "type": "object"
2087
2478
  },
2479
+ "comment": {
2480
+ "~standard": {
2481
+ "vendor": "zod",
2482
+ "version": 1
2483
+ },
2484
+ "def": {
2485
+ "type": "optional",
2486
+ "innerType": {
2487
+ "~standard": {
2488
+ "vendor": "zod",
2489
+ "version": 1
2490
+ },
2491
+ "def": {
2492
+ "type": "string"
2493
+ },
2494
+ "type": "string",
2495
+ "format": null,
2496
+ "minLength": null,
2497
+ "maxLength": null
2498
+ }
2499
+ },
2500
+ "type": "optional"
2501
+ },
2088
2502
  "answer": {
2089
2503
  "~standard": {
2090
2504
  "vendor": "zod",
@@ -2171,6 +2585,29 @@
2171
2585
  },
2172
2586
  "type": "object"
2173
2587
  },
2588
+ "comment": {
2589
+ "~standard": {
2590
+ "vendor": "zod",
2591
+ "version": 1
2592
+ },
2593
+ "def": {
2594
+ "type": "optional",
2595
+ "innerType": {
2596
+ "~standard": {
2597
+ "vendor": "zod",
2598
+ "version": 1
2599
+ },
2600
+ "def": {
2601
+ "type": "string"
2602
+ },
2603
+ "type": "string",
2604
+ "format": null,
2605
+ "minLength": null,
2606
+ "maxLength": null
2607
+ }
2608
+ },
2609
+ "type": "optional"
2610
+ },
2174
2611
  "answer": {
2175
2612
  "~standard": {
2176
2613
  "vendor": "zod",
@@ -2262,6 +2699,29 @@
2262
2699
  },
2263
2700
  "type": "object"
2264
2701
  },
2702
+ "comment": {
2703
+ "~standard": {
2704
+ "vendor": "zod",
2705
+ "version": 1
2706
+ },
2707
+ "def": {
2708
+ "type": "optional",
2709
+ "innerType": {
2710
+ "~standard": {
2711
+ "vendor": "zod",
2712
+ "version": 1
2713
+ },
2714
+ "def": {
2715
+ "type": "string"
2716
+ },
2717
+ "type": "string",
2718
+ "format": null,
2719
+ "minLength": null,
2720
+ "maxLength": null
2721
+ }
2722
+ },
2723
+ "type": "optional"
2724
+ },
2265
2725
  "answer": {
2266
2726
  "~standard": {
2267
2727
  "vendor": "zod",
@@ -2384,6 +2844,29 @@
2384
2844
  },
2385
2845
  "type": "object"
2386
2846
  },
2847
+ "comment": {
2848
+ "~standard": {
2849
+ "vendor": "zod",
2850
+ "version": 1
2851
+ },
2852
+ "def": {
2853
+ "type": "optional",
2854
+ "innerType": {
2855
+ "~standard": {
2856
+ "vendor": "zod",
2857
+ "version": 1
2858
+ },
2859
+ "def": {
2860
+ "type": "string"
2861
+ },
2862
+ "type": "string",
2863
+ "format": null,
2864
+ "minLength": null,
2865
+ "maxLength": null
2866
+ }
2867
+ },
2868
+ "type": "optional"
2869
+ },
2387
2870
  "answer": {
2388
2871
  "~standard": {
2389
2872
  "vendor": "zod",
@@ -2467,6 +2950,29 @@
2467
2950
  },
2468
2951
  "type": "object"
2469
2952
  },
2953
+ "comment": {
2954
+ "~standard": {
2955
+ "vendor": "zod",
2956
+ "version": 1
2957
+ },
2958
+ "def": {
2959
+ "type": "optional",
2960
+ "innerType": {
2961
+ "~standard": {
2962
+ "vendor": "zod",
2963
+ "version": 1
2964
+ },
2965
+ "def": {
2966
+ "type": "string"
2967
+ },
2968
+ "type": "string",
2969
+ "format": null,
2970
+ "minLength": null,
2971
+ "maxLength": null
2972
+ }
2973
+ },
2974
+ "type": "optional"
2975
+ },
2470
2976
  "answer": {
2471
2977
  "~standard": {
2472
2978
  "vendor": "zod",
@@ -2578,6 +3084,29 @@
2578
3084
  },
2579
3085
  "type": "object"
2580
3086
  },
3087
+ "comment": {
3088
+ "~standard": {
3089
+ "vendor": "zod",
3090
+ "version": 1
3091
+ },
3092
+ "def": {
3093
+ "type": "optional",
3094
+ "innerType": {
3095
+ "~standard": {
3096
+ "vendor": "zod",
3097
+ "version": 1
3098
+ },
3099
+ "def": {
3100
+ "type": "string"
3101
+ },
3102
+ "type": "string",
3103
+ "format": null,
3104
+ "minLength": null,
3105
+ "maxLength": null
3106
+ }
3107
+ },
3108
+ "type": "optional"
3109
+ },
2581
3110
  "answer": {
2582
3111
  "~standard": {
2583
3112
  "vendor": "zod",
@@ -2667,6 +3196,29 @@
2667
3196
  },
2668
3197
  "type": "object"
2669
3198
  },
3199
+ "comment": {
3200
+ "~standard": {
3201
+ "vendor": "zod",
3202
+ "version": 1
3203
+ },
3204
+ "def": {
3205
+ "type": "optional",
3206
+ "innerType": {
3207
+ "~standard": {
3208
+ "vendor": "zod",
3209
+ "version": 1
3210
+ },
3211
+ "def": {
3212
+ "type": "string"
3213
+ },
3214
+ "type": "string",
3215
+ "format": null,
3216
+ "minLength": null,
3217
+ "maxLength": null
3218
+ }
3219
+ },
3220
+ "type": "optional"
3221
+ },
2670
3222
  "answer": {
2671
3223
  "~standard": {
2672
3224
  "vendor": "zod",
@@ -2753,6 +3305,29 @@
2753
3305
  },
2754
3306
  "type": "object"
2755
3307
  },
3308
+ "comment": {
3309
+ "~standard": {
3310
+ "vendor": "zod",
3311
+ "version": 1
3312
+ },
3313
+ "def": {
3314
+ "type": "optional",
3315
+ "innerType": {
3316
+ "~standard": {
3317
+ "vendor": "zod",
3318
+ "version": 1
3319
+ },
3320
+ "def": {
3321
+ "type": "string"
3322
+ },
3323
+ "type": "string",
3324
+ "format": null,
3325
+ "minLength": null,
3326
+ "maxLength": null
3327
+ }
3328
+ },
3329
+ "type": "optional"
3330
+ },
2756
3331
  "answer": {
2757
3332
  "~standard": {
2758
3333
  "vendor": "zod",
@@ -2875,6 +3450,29 @@
2875
3450
  },
2876
3451
  "type": "object"
2877
3452
  },
3453
+ "comment": {
3454
+ "~standard": {
3455
+ "vendor": "zod",
3456
+ "version": 1
3457
+ },
3458
+ "def": {
3459
+ "type": "optional",
3460
+ "innerType": {
3461
+ "~standard": {
3462
+ "vendor": "zod",
3463
+ "version": 1
3464
+ },
3465
+ "def": {
3466
+ "type": "string"
3467
+ },
3468
+ "type": "string",
3469
+ "format": null,
3470
+ "minLength": null,
3471
+ "maxLength": null
3472
+ }
3473
+ },
3474
+ "type": "optional"
3475
+ },
2878
3476
  "answer": {
2879
3477
  "~standard": {
2880
3478
  "vendor": "zod",
@@ -2961,6 +3559,29 @@
2961
3559
  },
2962
3560
  "type": "object"
2963
3561
  },
3562
+ "comment": {
3563
+ "~standard": {
3564
+ "vendor": "zod",
3565
+ "version": 1
3566
+ },
3567
+ "def": {
3568
+ "type": "optional",
3569
+ "innerType": {
3570
+ "~standard": {
3571
+ "vendor": "zod",
3572
+ "version": 1
3573
+ },
3574
+ "def": {
3575
+ "type": "string"
3576
+ },
3577
+ "type": "string",
3578
+ "format": null,
3579
+ "minLength": null,
3580
+ "maxLength": null
3581
+ }
3582
+ },
3583
+ "type": "optional"
3584
+ },
2964
3585
  "answer": {
2965
3586
  "~standard": {
2966
3587
  "vendor": "zod",
@@ -3164,6 +3785,29 @@
3164
3785
  },
3165
3786
  "type": "object"
3166
3787
  },
3788
+ "comment": {
3789
+ "~standard": {
3790
+ "vendor": "zod",
3791
+ "version": 1
3792
+ },
3793
+ "def": {
3794
+ "type": "optional",
3795
+ "innerType": {
3796
+ "~standard": {
3797
+ "vendor": "zod",
3798
+ "version": 1
3799
+ },
3800
+ "def": {
3801
+ "type": "string"
3802
+ },
3803
+ "type": "string",
3804
+ "format": null,
3805
+ "minLength": null,
3806
+ "maxLength": null
3807
+ }
3808
+ },
3809
+ "type": "optional"
3810
+ },
3167
3811
  "answer": {
3168
3812
  "~standard": {
3169
3813
  "vendor": "zod",
@@ -3367,6 +4011,29 @@
3367
4011
  },
3368
4012
  "type": "object"
3369
4013
  },
4014
+ "comment": {
4015
+ "~standard": {
4016
+ "vendor": "zod",
4017
+ "version": 1
4018
+ },
4019
+ "def": {
4020
+ "type": "optional",
4021
+ "innerType": {
4022
+ "~standard": {
4023
+ "vendor": "zod",
4024
+ "version": 1
4025
+ },
4026
+ "def": {
4027
+ "type": "string"
4028
+ },
4029
+ "type": "string",
4030
+ "format": null,
4031
+ "minLength": null,
4032
+ "maxLength": null
4033
+ }
4034
+ },
4035
+ "type": "optional"
4036
+ },
3370
4037
  "answer": {
3371
4038
  "~standard": {
3372
4039
  "vendor": "zod",
@@ -3478,6 +4145,29 @@
3478
4145
  },
3479
4146
  "type": "object"
3480
4147
  },
4148
+ "comment": {
4149
+ "~standard": {
4150
+ "vendor": "zod",
4151
+ "version": 1
4152
+ },
4153
+ "def": {
4154
+ "type": "optional",
4155
+ "innerType": {
4156
+ "~standard": {
4157
+ "vendor": "zod",
4158
+ "version": 1
4159
+ },
4160
+ "def": {
4161
+ "type": "string"
4162
+ },
4163
+ "type": "string",
4164
+ "format": null,
4165
+ "minLength": null,
4166
+ "maxLength": null
4167
+ }
4168
+ },
4169
+ "type": "optional"
4170
+ },
3481
4171
  "answer": {
3482
4172
  "~standard": {
3483
4173
  "vendor": "zod",
@@ -3565,7 +4255,30 @@
3565
4255
  }
3566
4256
  }
3567
4257
  },
3568
- "type": "object"
4258
+ "type": "object"
4259
+ },
4260
+ "comment": {
4261
+ "~standard": {
4262
+ "vendor": "zod",
4263
+ "version": 1
4264
+ },
4265
+ "def": {
4266
+ "type": "optional",
4267
+ "innerType": {
4268
+ "~standard": {
4269
+ "vendor": "zod",
4270
+ "version": 1
4271
+ },
4272
+ "def": {
4273
+ "type": "string"
4274
+ },
4275
+ "type": "string",
4276
+ "format": null,
4277
+ "minLength": null,
4278
+ "maxLength": null
4279
+ }
4280
+ },
4281
+ "type": "optional"
3569
4282
  },
3570
4283
  "answer": {
3571
4284
  "~standard": {
@@ -3692,6 +4405,29 @@
3692
4405
  },
3693
4406
  "type": "object"
3694
4407
  },
4408
+ "comment": {
4409
+ "~standard": {
4410
+ "vendor": "zod",
4411
+ "version": 1
4412
+ },
4413
+ "def": {
4414
+ "type": "optional",
4415
+ "innerType": {
4416
+ "~standard": {
4417
+ "vendor": "zod",
4418
+ "version": 1
4419
+ },
4420
+ "def": {
4421
+ "type": "string"
4422
+ },
4423
+ "type": "string",
4424
+ "format": null,
4425
+ "minLength": null,
4426
+ "maxLength": null
4427
+ }
4428
+ },
4429
+ "type": "optional"
4430
+ },
3695
4431
  "answer": {
3696
4432
  "~standard": {
3697
4433
  "vendor": "zod",
@@ -3778,6 +4514,29 @@
3778
4514
  },
3779
4515
  "type": "object"
3780
4516
  },
4517
+ "comment": {
4518
+ "~standard": {
4519
+ "vendor": "zod",
4520
+ "version": 1
4521
+ },
4522
+ "def": {
4523
+ "type": "optional",
4524
+ "innerType": {
4525
+ "~standard": {
4526
+ "vendor": "zod",
4527
+ "version": 1
4528
+ },
4529
+ "def": {
4530
+ "type": "string"
4531
+ },
4532
+ "type": "string",
4533
+ "format": null,
4534
+ "minLength": null,
4535
+ "maxLength": null
4536
+ }
4537
+ },
4538
+ "type": "optional"
4539
+ },
3781
4540
  "answer": {
3782
4541
  "~standard": {
3783
4542
  "vendor": "zod",
@@ -3981,6 +4740,29 @@
3981
4740
  },
3982
4741
  "type": "object"
3983
4742
  },
4743
+ "comment": {
4744
+ "~standard": {
4745
+ "vendor": "zod",
4746
+ "version": 1
4747
+ },
4748
+ "def": {
4749
+ "type": "optional",
4750
+ "innerType": {
4751
+ "~standard": {
4752
+ "vendor": "zod",
4753
+ "version": 1
4754
+ },
4755
+ "def": {
4756
+ "type": "string"
4757
+ },
4758
+ "type": "string",
4759
+ "format": null,
4760
+ "minLength": null,
4761
+ "maxLength": null
4762
+ }
4763
+ },
4764
+ "type": "optional"
4765
+ },
3984
4766
  "answer": {
3985
4767
  "~standard": {
3986
4768
  "vendor": "zod",
@@ -4067,6 +4849,29 @@
4067
4849
  },
4068
4850
  "type": "object"
4069
4851
  },
4852
+ "comment": {
4853
+ "~standard": {
4854
+ "vendor": "zod",
4855
+ "version": 1
4856
+ },
4857
+ "def": {
4858
+ "type": "optional",
4859
+ "innerType": {
4860
+ "~standard": {
4861
+ "vendor": "zod",
4862
+ "version": 1
4863
+ },
4864
+ "def": {
4865
+ "type": "string"
4866
+ },
4867
+ "type": "string",
4868
+ "format": null,
4869
+ "minLength": null,
4870
+ "maxLength": null
4871
+ }
4872
+ },
4873
+ "type": "optional"
4874
+ },
4070
4875
  "answer": {
4071
4876
  "~standard": {
4072
4877
  "vendor": "zod",
@@ -4153,6 +4958,29 @@
4153
4958
  },
4154
4959
  "type": "object"
4155
4960
  },
4961
+ "comment": {
4962
+ "~standard": {
4963
+ "vendor": "zod",
4964
+ "version": 1
4965
+ },
4966
+ "def": {
4967
+ "type": "optional",
4968
+ "innerType": {
4969
+ "~standard": {
4970
+ "vendor": "zod",
4971
+ "version": 1
4972
+ },
4973
+ "def": {
4974
+ "type": "string"
4975
+ },
4976
+ "type": "string",
4977
+ "format": null,
4978
+ "minLength": null,
4979
+ "maxLength": null
4980
+ }
4981
+ },
4982
+ "type": "optional"
4983
+ },
4156
4984
  "answer": {
4157
4985
  "~standard": {
4158
4986
  "vendor": "zod",
@@ -4239,6 +5067,29 @@
4239
5067
  },
4240
5068
  "type": "object"
4241
5069
  },
5070
+ "comment": {
5071
+ "~standard": {
5072
+ "vendor": "zod",
5073
+ "version": 1
5074
+ },
5075
+ "def": {
5076
+ "type": "optional",
5077
+ "innerType": {
5078
+ "~standard": {
5079
+ "vendor": "zod",
5080
+ "version": 1
5081
+ },
5082
+ "def": {
5083
+ "type": "string"
5084
+ },
5085
+ "type": "string",
5086
+ "format": null,
5087
+ "minLength": null,
5088
+ "maxLength": null
5089
+ }
5090
+ },
5091
+ "type": "optional"
5092
+ },
4242
5093
  "answer": {
4243
5094
  "~standard": {
4244
5095
  "vendor": "zod",
@@ -4337,6 +5188,29 @@
4337
5188
  },
4338
5189
  "type": "object"
4339
5190
  },
5191
+ "comment": {
5192
+ "~standard": {
5193
+ "vendor": "zod",
5194
+ "version": 1
5195
+ },
5196
+ "def": {
5197
+ "type": "optional",
5198
+ "innerType": {
5199
+ "~standard": {
5200
+ "vendor": "zod",
5201
+ "version": 1
5202
+ },
5203
+ "def": {
5204
+ "type": "string"
5205
+ },
5206
+ "type": "string",
5207
+ "format": null,
5208
+ "minLength": null,
5209
+ "maxLength": null
5210
+ }
5211
+ },
5212
+ "type": "optional"
5213
+ },
4340
5214
  "answer": {
4341
5215
  "~standard": {
4342
5216
  "vendor": "zod",
@@ -4459,6 +5333,29 @@
4459
5333
  },
4460
5334
  "type": "object"
4461
5335
  },
5336
+ "comment": {
5337
+ "~standard": {
5338
+ "vendor": "zod",
5339
+ "version": 1
5340
+ },
5341
+ "def": {
5342
+ "type": "optional",
5343
+ "innerType": {
5344
+ "~standard": {
5345
+ "vendor": "zod",
5346
+ "version": 1
5347
+ },
5348
+ "def": {
5349
+ "type": "string"
5350
+ },
5351
+ "type": "string",
5352
+ "format": null,
5353
+ "minLength": null,
5354
+ "maxLength": null
5355
+ }
5356
+ },
5357
+ "type": "optional"
5358
+ },
4462
5359
  "answer": {
4463
5360
  "~standard": {
4464
5361
  "vendor": "zod",
@@ -4542,6 +5439,29 @@
4542
5439
  },
4543
5440
  "type": "object"
4544
5441
  },
5442
+ "comment": {
5443
+ "~standard": {
5444
+ "vendor": "zod",
5445
+ "version": 1
5446
+ },
5447
+ "def": {
5448
+ "type": "optional",
5449
+ "innerType": {
5450
+ "~standard": {
5451
+ "vendor": "zod",
5452
+ "version": 1
5453
+ },
5454
+ "def": {
5455
+ "type": "string"
5456
+ },
5457
+ "type": "string",
5458
+ "format": null,
5459
+ "minLength": null,
5460
+ "maxLength": null
5461
+ }
5462
+ },
5463
+ "type": "optional"
5464
+ },
4545
5465
  "answer": {
4546
5466
  "~standard": {
4547
5467
  "vendor": "zod",
@@ -4653,6 +5573,29 @@
4653
5573
  },
4654
5574
  "type": "object"
4655
5575
  },
5576
+ "comment": {
5577
+ "~standard": {
5578
+ "vendor": "zod",
5579
+ "version": 1
5580
+ },
5581
+ "def": {
5582
+ "type": "optional",
5583
+ "innerType": {
5584
+ "~standard": {
5585
+ "vendor": "zod",
5586
+ "version": 1
5587
+ },
5588
+ "def": {
5589
+ "type": "string"
5590
+ },
5591
+ "type": "string",
5592
+ "format": null,
5593
+ "minLength": null,
5594
+ "maxLength": null
5595
+ }
5596
+ },
5597
+ "type": "optional"
5598
+ },
4656
5599
  "answer": {
4657
5600
  "~standard": {
4658
5601
  "vendor": "zod",
@@ -4742,6 +5685,29 @@
4742
5685
  },
4743
5686
  "type": "object"
4744
5687
  },
5688
+ "comment": {
5689
+ "~standard": {
5690
+ "vendor": "zod",
5691
+ "version": 1
5692
+ },
5693
+ "def": {
5694
+ "type": "optional",
5695
+ "innerType": {
5696
+ "~standard": {
5697
+ "vendor": "zod",
5698
+ "version": 1
5699
+ },
5700
+ "def": {
5701
+ "type": "string"
5702
+ },
5703
+ "type": "string",
5704
+ "format": null,
5705
+ "minLength": null,
5706
+ "maxLength": null
5707
+ }
5708
+ },
5709
+ "type": "optional"
5710
+ },
4745
5711
  "answer": {
4746
5712
  "~standard": {
4747
5713
  "vendor": "zod",
@@ -4828,6 +5794,29 @@
4828
5794
  },
4829
5795
  "type": "object"
4830
5796
  },
5797
+ "comment": {
5798
+ "~standard": {
5799
+ "vendor": "zod",
5800
+ "version": 1
5801
+ },
5802
+ "def": {
5803
+ "type": "optional",
5804
+ "innerType": {
5805
+ "~standard": {
5806
+ "vendor": "zod",
5807
+ "version": 1
5808
+ },
5809
+ "def": {
5810
+ "type": "string"
5811
+ },
5812
+ "type": "string",
5813
+ "format": null,
5814
+ "minLength": null,
5815
+ "maxLength": null
5816
+ }
5817
+ },
5818
+ "type": "optional"
5819
+ },
4831
5820
  "answer": {
4832
5821
  "~standard": {
4833
5822
  "vendor": "zod",
@@ -4948,7 +5937,30 @@
4948
5937
  }
4949
5938
  }
4950
5939
  },
4951
- "type": "object"
5940
+ "type": "object"
5941
+ },
5942
+ "comment": {
5943
+ "~standard": {
5944
+ "vendor": "zod",
5945
+ "version": 1
5946
+ },
5947
+ "def": {
5948
+ "type": "optional",
5949
+ "innerType": {
5950
+ "~standard": {
5951
+ "vendor": "zod",
5952
+ "version": 1
5953
+ },
5954
+ "def": {
5955
+ "type": "string"
5956
+ },
5957
+ "type": "string",
5958
+ "format": null,
5959
+ "minLength": null,
5960
+ "maxLength": null
5961
+ }
5962
+ },
5963
+ "type": "optional"
4952
5964
  },
4953
5965
  "answer": {
4954
5966
  "~standard": {
@@ -5036,6 +6048,29 @@
5036
6048
  },
5037
6049
  "type": "object"
5038
6050
  },
6051
+ "comment": {
6052
+ "~standard": {
6053
+ "vendor": "zod",
6054
+ "version": 1
6055
+ },
6056
+ "def": {
6057
+ "type": "optional",
6058
+ "innerType": {
6059
+ "~standard": {
6060
+ "vendor": "zod",
6061
+ "version": 1
6062
+ },
6063
+ "def": {
6064
+ "type": "string"
6065
+ },
6066
+ "type": "string",
6067
+ "format": null,
6068
+ "minLength": null,
6069
+ "maxLength": null
6070
+ }
6071
+ },
6072
+ "type": "optional"
6073
+ },
5039
6074
  "answer": {
5040
6075
  "~standard": {
5041
6076
  "vendor": "zod",
@@ -5239,6 +6274,29 @@
5239
6274
  },
5240
6275
  "type": "object"
5241
6276
  },
6277
+ "comment": {
6278
+ "~standard": {
6279
+ "vendor": "zod",
6280
+ "version": 1
6281
+ },
6282
+ "def": {
6283
+ "type": "optional",
6284
+ "innerType": {
6285
+ "~standard": {
6286
+ "vendor": "zod",
6287
+ "version": 1
6288
+ },
6289
+ "def": {
6290
+ "type": "string"
6291
+ },
6292
+ "type": "string",
6293
+ "format": null,
6294
+ "minLength": null,
6295
+ "maxLength": null
6296
+ }
6297
+ },
6298
+ "type": "optional"
6299
+ },
5242
6300
  "answer": {
5243
6301
  "~standard": {
5244
6302
  "vendor": "zod",
@@ -5442,6 +6500,29 @@
5442
6500
  },
5443
6501
  "type": "object"
5444
6502
  },
6503
+ "comment": {
6504
+ "~standard": {
6505
+ "vendor": "zod",
6506
+ "version": 1
6507
+ },
6508
+ "def": {
6509
+ "type": "optional",
6510
+ "innerType": {
6511
+ "~standard": {
6512
+ "vendor": "zod",
6513
+ "version": 1
6514
+ },
6515
+ "def": {
6516
+ "type": "string"
6517
+ },
6518
+ "type": "string",
6519
+ "format": null,
6520
+ "minLength": null,
6521
+ "maxLength": null
6522
+ }
6523
+ },
6524
+ "type": "optional"
6525
+ },
5445
6526
  "answer": {
5446
6527
  "~standard": {
5447
6528
  "vendor": "zod",
@@ -5553,6 +6634,29 @@
5553
6634
  },
5554
6635
  "type": "object"
5555
6636
  },
6637
+ "comment": {
6638
+ "~standard": {
6639
+ "vendor": "zod",
6640
+ "version": 1
6641
+ },
6642
+ "def": {
6643
+ "type": "optional",
6644
+ "innerType": {
6645
+ "~standard": {
6646
+ "vendor": "zod",
6647
+ "version": 1
6648
+ },
6649
+ "def": {
6650
+ "type": "string"
6651
+ },
6652
+ "type": "string",
6653
+ "format": null,
6654
+ "minLength": null,
6655
+ "maxLength": null
6656
+ }
6657
+ },
6658
+ "type": "optional"
6659
+ },
5556
6660
  "answer": {
5557
6661
  "~standard": {
5558
6662
  "vendor": "zod",
@@ -5642,6 +6746,29 @@
5642
6746
  },
5643
6747
  "type": "object"
5644
6748
  },
6749
+ "comment": {
6750
+ "~standard": {
6751
+ "vendor": "zod",
6752
+ "version": 1
6753
+ },
6754
+ "def": {
6755
+ "type": "optional",
6756
+ "innerType": {
6757
+ "~standard": {
6758
+ "vendor": "zod",
6759
+ "version": 1
6760
+ },
6761
+ "def": {
6762
+ "type": "string"
6763
+ },
6764
+ "type": "string",
6765
+ "format": null,
6766
+ "minLength": null,
6767
+ "maxLength": null
6768
+ }
6769
+ },
6770
+ "type": "optional"
6771
+ },
5645
6772
  "answer": {
5646
6773
  "~standard": {
5647
6774
  "vendor": "zod",
@@ -5767,6 +6894,29 @@
5767
6894
  },
5768
6895
  "type": "object"
5769
6896
  },
6897
+ "comment": {
6898
+ "~standard": {
6899
+ "vendor": "zod",
6900
+ "version": 1
6901
+ },
6902
+ "def": {
6903
+ "type": "optional",
6904
+ "innerType": {
6905
+ "~standard": {
6906
+ "vendor": "zod",
6907
+ "version": 1
6908
+ },
6909
+ "def": {
6910
+ "type": "string"
6911
+ },
6912
+ "type": "string",
6913
+ "format": null,
6914
+ "minLength": null,
6915
+ "maxLength": null
6916
+ }
6917
+ },
6918
+ "type": "optional"
6919
+ },
5770
6920
  "answer": {
5771
6921
  "~standard": {
5772
6922
  "vendor": "zod",
@@ -5853,6 +7003,29 @@
5853
7003
  },
5854
7004
  "type": "object"
5855
7005
  },
7006
+ "comment": {
7007
+ "~standard": {
7008
+ "vendor": "zod",
7009
+ "version": 1
7010
+ },
7011
+ "def": {
7012
+ "type": "optional",
7013
+ "innerType": {
7014
+ "~standard": {
7015
+ "vendor": "zod",
7016
+ "version": 1
7017
+ },
7018
+ "def": {
7019
+ "type": "string"
7020
+ },
7021
+ "type": "string",
7022
+ "format": null,
7023
+ "minLength": null,
7024
+ "maxLength": null
7025
+ }
7026
+ },
7027
+ "type": "optional"
7028
+ },
5856
7029
  "answer": {
5857
7030
  "~standard": {
5858
7031
  "vendor": "zod",
@@ -6056,6 +7229,29 @@
6056
7229
  },
6057
7230
  "type": "object"
6058
7231
  },
7232
+ "comment": {
7233
+ "~standard": {
7234
+ "vendor": "zod",
7235
+ "version": 1
7236
+ },
7237
+ "def": {
7238
+ "type": "optional",
7239
+ "innerType": {
7240
+ "~standard": {
7241
+ "vendor": "zod",
7242
+ "version": 1
7243
+ },
7244
+ "def": {
7245
+ "type": "string"
7246
+ },
7247
+ "type": "string",
7248
+ "format": null,
7249
+ "minLength": null,
7250
+ "maxLength": null
7251
+ }
7252
+ },
7253
+ "type": "optional"
7254
+ },
6059
7255
  "answer": {
6060
7256
  "~standard": {
6061
7257
  "vendor": "zod",
@@ -6142,6 +7338,29 @@
6142
7338
  },
6143
7339
  "type": "object"
6144
7340
  },
7341
+ "comment": {
7342
+ "~standard": {
7343
+ "vendor": "zod",
7344
+ "version": 1
7345
+ },
7346
+ "def": {
7347
+ "type": "optional",
7348
+ "innerType": {
7349
+ "~standard": {
7350
+ "vendor": "zod",
7351
+ "version": 1
7352
+ },
7353
+ "def": {
7354
+ "type": "string"
7355
+ },
7356
+ "type": "string",
7357
+ "format": null,
7358
+ "minLength": null,
7359
+ "maxLength": null
7360
+ }
7361
+ },
7362
+ "type": "optional"
7363
+ },
6145
7364
  "answer": {
6146
7365
  "~standard": {
6147
7366
  "vendor": "zod",
@@ -6228,6 +7447,29 @@
6228
7447
  },
6229
7448
  "type": "object"
6230
7449
  },
7450
+ "comment": {
7451
+ "~standard": {
7452
+ "vendor": "zod",
7453
+ "version": 1
7454
+ },
7455
+ "def": {
7456
+ "type": "optional",
7457
+ "innerType": {
7458
+ "~standard": {
7459
+ "vendor": "zod",
7460
+ "version": 1
7461
+ },
7462
+ "def": {
7463
+ "type": "string"
7464
+ },
7465
+ "type": "string",
7466
+ "format": null,
7467
+ "minLength": null,
7468
+ "maxLength": null
7469
+ }
7470
+ },
7471
+ "type": "optional"
7472
+ },
6231
7473
  "answer": {
6232
7474
  "~standard": {
6233
7475
  "vendor": "zod",
@@ -6314,6 +7556,29 @@
6314
7556
  },
6315
7557
  "type": "object"
6316
7558
  },
7559
+ "comment": {
7560
+ "~standard": {
7561
+ "vendor": "zod",
7562
+ "version": 1
7563
+ },
7564
+ "def": {
7565
+ "type": "optional",
7566
+ "innerType": {
7567
+ "~standard": {
7568
+ "vendor": "zod",
7569
+ "version": 1
7570
+ },
7571
+ "def": {
7572
+ "type": "string"
7573
+ },
7574
+ "type": "string",
7575
+ "format": null,
7576
+ "minLength": null,
7577
+ "maxLength": null
7578
+ }
7579
+ },
7580
+ "type": "optional"
7581
+ },
6317
7582
  "answer": {
6318
7583
  "~standard": {
6319
7584
  "vendor": "zod",
@@ -6405,6 +7670,29 @@
6405
7670
  },
6406
7671
  "type": "object"
6407
7672
  },
7673
+ "comment": {
7674
+ "~standard": {
7675
+ "vendor": "zod",
7676
+ "version": 1
7677
+ },
7678
+ "def": {
7679
+ "type": "optional",
7680
+ "innerType": {
7681
+ "~standard": {
7682
+ "vendor": "zod",
7683
+ "version": 1
7684
+ },
7685
+ "def": {
7686
+ "type": "string"
7687
+ },
7688
+ "type": "string",
7689
+ "format": null,
7690
+ "minLength": null,
7691
+ "maxLength": null
7692
+ }
7693
+ },
7694
+ "type": "optional"
7695
+ },
6408
7696
  "answer": {
6409
7697
  "~standard": {
6410
7698
  "vendor": "zod",
@@ -6527,6 +7815,29 @@
6527
7815
  },
6528
7816
  "type": "object"
6529
7817
  },
7818
+ "comment": {
7819
+ "~standard": {
7820
+ "vendor": "zod",
7821
+ "version": 1
7822
+ },
7823
+ "def": {
7824
+ "type": "optional",
7825
+ "innerType": {
7826
+ "~standard": {
7827
+ "vendor": "zod",
7828
+ "version": 1
7829
+ },
7830
+ "def": {
7831
+ "type": "string"
7832
+ },
7833
+ "type": "string",
7834
+ "format": null,
7835
+ "minLength": null,
7836
+ "maxLength": null
7837
+ }
7838
+ },
7839
+ "type": "optional"
7840
+ },
6530
7841
  "answer": {
6531
7842
  "~standard": {
6532
7843
  "vendor": "zod",
@@ -6610,6 +7921,29 @@
6610
7921
  },
6611
7922
  "type": "object"
6612
7923
  },
7924
+ "comment": {
7925
+ "~standard": {
7926
+ "vendor": "zod",
7927
+ "version": 1
7928
+ },
7929
+ "def": {
7930
+ "type": "optional",
7931
+ "innerType": {
7932
+ "~standard": {
7933
+ "vendor": "zod",
7934
+ "version": 1
7935
+ },
7936
+ "def": {
7937
+ "type": "string"
7938
+ },
7939
+ "type": "string",
7940
+ "format": null,
7941
+ "minLength": null,
7942
+ "maxLength": null
7943
+ }
7944
+ },
7945
+ "type": "optional"
7946
+ },
6613
7947
  "answer": {
6614
7948
  "~standard": {
6615
7949
  "vendor": "zod",
@@ -6721,6 +8055,29 @@
6721
8055
  },
6722
8056
  "type": "object"
6723
8057
  },
8058
+ "comment": {
8059
+ "~standard": {
8060
+ "vendor": "zod",
8061
+ "version": 1
8062
+ },
8063
+ "def": {
8064
+ "type": "optional",
8065
+ "innerType": {
8066
+ "~standard": {
8067
+ "vendor": "zod",
8068
+ "version": 1
8069
+ },
8070
+ "def": {
8071
+ "type": "string"
8072
+ },
8073
+ "type": "string",
8074
+ "format": null,
8075
+ "minLength": null,
8076
+ "maxLength": null
8077
+ }
8078
+ },
8079
+ "type": "optional"
8080
+ },
6724
8081
  "answer": {
6725
8082
  "~standard": {
6726
8083
  "vendor": "zod",
@@ -6810,6 +8167,29 @@
6810
8167
  },
6811
8168
  "type": "object"
6812
8169
  },
8170
+ "comment": {
8171
+ "~standard": {
8172
+ "vendor": "zod",
8173
+ "version": 1
8174
+ },
8175
+ "def": {
8176
+ "type": "optional",
8177
+ "innerType": {
8178
+ "~standard": {
8179
+ "vendor": "zod",
8180
+ "version": 1
8181
+ },
8182
+ "def": {
8183
+ "type": "string"
8184
+ },
8185
+ "type": "string",
8186
+ "format": null,
8187
+ "minLength": null,
8188
+ "maxLength": null
8189
+ }
8190
+ },
8191
+ "type": "optional"
8192
+ },
6813
8193
  "answer": {
6814
8194
  "~standard": {
6815
8195
  "vendor": "zod",
@@ -6896,6 +8276,29 @@
6896
8276
  },
6897
8277
  "type": "object"
6898
8278
  },
8279
+ "comment": {
8280
+ "~standard": {
8281
+ "vendor": "zod",
8282
+ "version": 1
8283
+ },
8284
+ "def": {
8285
+ "type": "optional",
8286
+ "innerType": {
8287
+ "~standard": {
8288
+ "vendor": "zod",
8289
+ "version": 1
8290
+ },
8291
+ "def": {
8292
+ "type": "string"
8293
+ },
8294
+ "type": "string",
8295
+ "format": null,
8296
+ "minLength": null,
8297
+ "maxLength": null
8298
+ }
8299
+ },
8300
+ "type": "optional"
8301
+ },
6899
8302
  "answer": {
6900
8303
  "~standard": {
6901
8304
  "vendor": "zod",
@@ -7018,6 +8421,29 @@
7018
8421
  },
7019
8422
  "type": "object"
7020
8423
  },
8424
+ "comment": {
8425
+ "~standard": {
8426
+ "vendor": "zod",
8427
+ "version": 1
8428
+ },
8429
+ "def": {
8430
+ "type": "optional",
8431
+ "innerType": {
8432
+ "~standard": {
8433
+ "vendor": "zod",
8434
+ "version": 1
8435
+ },
8436
+ "def": {
8437
+ "type": "string"
8438
+ },
8439
+ "type": "string",
8440
+ "format": null,
8441
+ "minLength": null,
8442
+ "maxLength": null
8443
+ }
8444
+ },
8445
+ "type": "optional"
8446
+ },
7021
8447
  "answer": {
7022
8448
  "~standard": {
7023
8449
  "vendor": "zod",
@@ -7104,6 +8530,29 @@
7104
8530
  },
7105
8531
  "type": "object"
7106
8532
  },
8533
+ "comment": {
8534
+ "~standard": {
8535
+ "vendor": "zod",
8536
+ "version": 1
8537
+ },
8538
+ "def": {
8539
+ "type": "optional",
8540
+ "innerType": {
8541
+ "~standard": {
8542
+ "vendor": "zod",
8543
+ "version": 1
8544
+ },
8545
+ "def": {
8546
+ "type": "string"
8547
+ },
8548
+ "type": "string",
8549
+ "format": null,
8550
+ "minLength": null,
8551
+ "maxLength": null
8552
+ }
8553
+ },
8554
+ "type": "optional"
8555
+ },
7107
8556
  "answer": {
7108
8557
  "~standard": {
7109
8558
  "vendor": "zod",
@@ -7307,6 +8756,29 @@
7307
8756
  },
7308
8757
  "type": "object"
7309
8758
  },
8759
+ "comment": {
8760
+ "~standard": {
8761
+ "vendor": "zod",
8762
+ "version": 1
8763
+ },
8764
+ "def": {
8765
+ "type": "optional",
8766
+ "innerType": {
8767
+ "~standard": {
8768
+ "vendor": "zod",
8769
+ "version": 1
8770
+ },
8771
+ "def": {
8772
+ "type": "string"
8773
+ },
8774
+ "type": "string",
8775
+ "format": null,
8776
+ "minLength": null,
8777
+ "maxLength": null
8778
+ }
8779
+ },
8780
+ "type": "optional"
8781
+ },
7310
8782
  "answer": {
7311
8783
  "~standard": {
7312
8784
  "vendor": "zod",
@@ -7510,6 +8982,29 @@
7510
8982
  },
7511
8983
  "type": "object"
7512
8984
  },
8985
+ "comment": {
8986
+ "~standard": {
8987
+ "vendor": "zod",
8988
+ "version": 1
8989
+ },
8990
+ "def": {
8991
+ "type": "optional",
8992
+ "innerType": {
8993
+ "~standard": {
8994
+ "vendor": "zod",
8995
+ "version": 1
8996
+ },
8997
+ "def": {
8998
+ "type": "string"
8999
+ },
9000
+ "type": "string",
9001
+ "format": null,
9002
+ "minLength": null,
9003
+ "maxLength": null
9004
+ }
9005
+ },
9006
+ "type": "optional"
9007
+ },
7513
9008
  "answer": {
7514
9009
  "~standard": {
7515
9010
  "vendor": "zod",
@@ -7621,6 +9116,29 @@
7621
9116
  },
7622
9117
  "type": "object"
7623
9118
  },
9119
+ "comment": {
9120
+ "~standard": {
9121
+ "vendor": "zod",
9122
+ "version": 1
9123
+ },
9124
+ "def": {
9125
+ "type": "optional",
9126
+ "innerType": {
9127
+ "~standard": {
9128
+ "vendor": "zod",
9129
+ "version": 1
9130
+ },
9131
+ "def": {
9132
+ "type": "string"
9133
+ },
9134
+ "type": "string",
9135
+ "format": null,
9136
+ "minLength": null,
9137
+ "maxLength": null
9138
+ }
9139
+ },
9140
+ "type": "optional"
9141
+ },
7624
9142
  "answer": {
7625
9143
  "~standard": {
7626
9144
  "vendor": "zod",
@@ -7710,6 +9228,29 @@
7710
9228
  },
7711
9229
  "type": "object"
7712
9230
  },
9231
+ "comment": {
9232
+ "~standard": {
9233
+ "vendor": "zod",
9234
+ "version": 1
9235
+ },
9236
+ "def": {
9237
+ "type": "optional",
9238
+ "innerType": {
9239
+ "~standard": {
9240
+ "vendor": "zod",
9241
+ "version": 1
9242
+ },
9243
+ "def": {
9244
+ "type": "string"
9245
+ },
9246
+ "type": "string",
9247
+ "format": null,
9248
+ "minLength": null,
9249
+ "maxLength": null
9250
+ }
9251
+ },
9252
+ "type": "optional"
9253
+ },
7713
9254
  "answer": {
7714
9255
  "~standard": {
7715
9256
  "vendor": "zod",
@@ -7835,6 +9376,29 @@
7835
9376
  },
7836
9377
  "type": "object"
7837
9378
  },
9379
+ "comment": {
9380
+ "~standard": {
9381
+ "vendor": "zod",
9382
+ "version": 1
9383
+ },
9384
+ "def": {
9385
+ "type": "optional",
9386
+ "innerType": {
9387
+ "~standard": {
9388
+ "vendor": "zod",
9389
+ "version": 1
9390
+ },
9391
+ "def": {
9392
+ "type": "string"
9393
+ },
9394
+ "type": "string",
9395
+ "format": null,
9396
+ "minLength": null,
9397
+ "maxLength": null
9398
+ }
9399
+ },
9400
+ "type": "optional"
9401
+ },
7838
9402
  "answer": {
7839
9403
  "~standard": {
7840
9404
  "vendor": "zod",
@@ -7919,7 +9483,30 @@
7919
9483
  }
7920
9484
  }
7921
9485
  },
7922
- "type": "object"
9486
+ "type": "object"
9487
+ },
9488
+ "comment": {
9489
+ "~standard": {
9490
+ "vendor": "zod",
9491
+ "version": 1
9492
+ },
9493
+ "def": {
9494
+ "type": "optional",
9495
+ "innerType": {
9496
+ "~standard": {
9497
+ "vendor": "zod",
9498
+ "version": 1
9499
+ },
9500
+ "def": {
9501
+ "type": "string"
9502
+ },
9503
+ "type": "string",
9504
+ "format": null,
9505
+ "minLength": null,
9506
+ "maxLength": null
9507
+ }
9508
+ },
9509
+ "type": "optional"
7923
9510
  },
7924
9511
  "answer": {
7925
9512
  "~standard": {
@@ -8124,6 +9711,29 @@
8124
9711
  },
8125
9712
  "type": "object"
8126
9713
  },
9714
+ "comment": {
9715
+ "~standard": {
9716
+ "vendor": "zod",
9717
+ "version": 1
9718
+ },
9719
+ "def": {
9720
+ "type": "optional",
9721
+ "innerType": {
9722
+ "~standard": {
9723
+ "vendor": "zod",
9724
+ "version": 1
9725
+ },
9726
+ "def": {
9727
+ "type": "string"
9728
+ },
9729
+ "type": "string",
9730
+ "format": null,
9731
+ "minLength": null,
9732
+ "maxLength": null
9733
+ }
9734
+ },
9735
+ "type": "optional"
9736
+ },
8127
9737
  "answer": {
8128
9738
  "~standard": {
8129
9739
  "vendor": "zod",
@@ -8210,6 +9820,29 @@
8210
9820
  },
8211
9821
  "type": "object"
8212
9822
  },
9823
+ "comment": {
9824
+ "~standard": {
9825
+ "vendor": "zod",
9826
+ "version": 1
9827
+ },
9828
+ "def": {
9829
+ "type": "optional",
9830
+ "innerType": {
9831
+ "~standard": {
9832
+ "vendor": "zod",
9833
+ "version": 1
9834
+ },
9835
+ "def": {
9836
+ "type": "string"
9837
+ },
9838
+ "type": "string",
9839
+ "format": null,
9840
+ "minLength": null,
9841
+ "maxLength": null
9842
+ }
9843
+ },
9844
+ "type": "optional"
9845
+ },
8213
9846
  "answer": {
8214
9847
  "~standard": {
8215
9848
  "vendor": "zod",
@@ -8296,6 +9929,29 @@
8296
9929
  },
8297
9930
  "type": "object"
8298
9931
  },
9932
+ "comment": {
9933
+ "~standard": {
9934
+ "vendor": "zod",
9935
+ "version": 1
9936
+ },
9937
+ "def": {
9938
+ "type": "optional",
9939
+ "innerType": {
9940
+ "~standard": {
9941
+ "vendor": "zod",
9942
+ "version": 1
9943
+ },
9944
+ "def": {
9945
+ "type": "string"
9946
+ },
9947
+ "type": "string",
9948
+ "format": null,
9949
+ "minLength": null,
9950
+ "maxLength": null
9951
+ }
9952
+ },
9953
+ "type": "optional"
9954
+ },
8299
9955
  "answer": {
8300
9956
  "~standard": {
8301
9957
  "vendor": "zod",
@@ -8382,6 +10038,29 @@
8382
10038
  },
8383
10039
  "type": "object"
8384
10040
  },
10041
+ "comment": {
10042
+ "~standard": {
10043
+ "vendor": "zod",
10044
+ "version": 1
10045
+ },
10046
+ "def": {
10047
+ "type": "optional",
10048
+ "innerType": {
10049
+ "~standard": {
10050
+ "vendor": "zod",
10051
+ "version": 1
10052
+ },
10053
+ "def": {
10054
+ "type": "string"
10055
+ },
10056
+ "type": "string",
10057
+ "format": null,
10058
+ "minLength": null,
10059
+ "maxLength": null
10060
+ }
10061
+ },
10062
+ "type": "optional"
10063
+ },
8385
10064
  "answer": {
8386
10065
  "~standard": {
8387
10066
  "vendor": "zod",
@@ -8500,6 +10179,29 @@
8500
10179
  },
8501
10180
  "type": "object"
8502
10181
  },
10182
+ "comment": {
10183
+ "~standard": {
10184
+ "vendor": "zod",
10185
+ "version": 1
10186
+ },
10187
+ "def": {
10188
+ "type": "optional",
10189
+ "innerType": {
10190
+ "~standard": {
10191
+ "vendor": "zod",
10192
+ "version": 1
10193
+ },
10194
+ "def": {
10195
+ "type": "string"
10196
+ },
10197
+ "type": "string",
10198
+ "format": null,
10199
+ "minLength": null,
10200
+ "maxLength": null
10201
+ }
10202
+ },
10203
+ "type": "optional"
10204
+ },
8503
10205
  "answer": {
8504
10206
  "~standard": {
8505
10207
  "vendor": "zod",
@@ -8622,6 +10324,29 @@
8622
10324
  },
8623
10325
  "type": "object"
8624
10326
  },
10327
+ "comment": {
10328
+ "~standard": {
10329
+ "vendor": "zod",
10330
+ "version": 1
10331
+ },
10332
+ "def": {
10333
+ "type": "optional",
10334
+ "innerType": {
10335
+ "~standard": {
10336
+ "vendor": "zod",
10337
+ "version": 1
10338
+ },
10339
+ "def": {
10340
+ "type": "string"
10341
+ },
10342
+ "type": "string",
10343
+ "format": null,
10344
+ "minLength": null,
10345
+ "maxLength": null
10346
+ }
10347
+ },
10348
+ "type": "optional"
10349
+ },
8625
10350
  "answer": {
8626
10351
  "~standard": {
8627
10352
  "vendor": "zod",
@@ -8705,6 +10430,29 @@
8705
10430
  },
8706
10431
  "type": "object"
8707
10432
  },
10433
+ "comment": {
10434
+ "~standard": {
10435
+ "vendor": "zod",
10436
+ "version": 1
10437
+ },
10438
+ "def": {
10439
+ "type": "optional",
10440
+ "innerType": {
10441
+ "~standard": {
10442
+ "vendor": "zod",
10443
+ "version": 1
10444
+ },
10445
+ "def": {
10446
+ "type": "string"
10447
+ },
10448
+ "type": "string",
10449
+ "format": null,
10450
+ "minLength": null,
10451
+ "maxLength": null
10452
+ }
10453
+ },
10454
+ "type": "optional"
10455
+ },
8708
10456
  "answer": {
8709
10457
  "~standard": {
8710
10458
  "vendor": "zod",
@@ -8816,6 +10564,29 @@
8816
10564
  },
8817
10565
  "type": "object"
8818
10566
  },
10567
+ "comment": {
10568
+ "~standard": {
10569
+ "vendor": "zod",
10570
+ "version": 1
10571
+ },
10572
+ "def": {
10573
+ "type": "optional",
10574
+ "innerType": {
10575
+ "~standard": {
10576
+ "vendor": "zod",
10577
+ "version": 1
10578
+ },
10579
+ "def": {
10580
+ "type": "string"
10581
+ },
10582
+ "type": "string",
10583
+ "format": null,
10584
+ "minLength": null,
10585
+ "maxLength": null
10586
+ }
10587
+ },
10588
+ "type": "optional"
10589
+ },
8819
10590
  "answer": {
8820
10591
  "~standard": {
8821
10592
  "vendor": "zod",
@@ -8905,6 +10676,29 @@
8905
10676
  },
8906
10677
  "type": "object"
8907
10678
  },
10679
+ "comment": {
10680
+ "~standard": {
10681
+ "vendor": "zod",
10682
+ "version": 1
10683
+ },
10684
+ "def": {
10685
+ "type": "optional",
10686
+ "innerType": {
10687
+ "~standard": {
10688
+ "vendor": "zod",
10689
+ "version": 1
10690
+ },
10691
+ "def": {
10692
+ "type": "string"
10693
+ },
10694
+ "type": "string",
10695
+ "format": null,
10696
+ "minLength": null,
10697
+ "maxLength": null
10698
+ }
10699
+ },
10700
+ "type": "optional"
10701
+ },
8908
10702
  "answer": {
8909
10703
  "~standard": {
8910
10704
  "vendor": "zod",
@@ -8991,6 +10785,29 @@
8991
10785
  },
8992
10786
  "type": "object"
8993
10787
  },
10788
+ "comment": {
10789
+ "~standard": {
10790
+ "vendor": "zod",
10791
+ "version": 1
10792
+ },
10793
+ "def": {
10794
+ "type": "optional",
10795
+ "innerType": {
10796
+ "~standard": {
10797
+ "vendor": "zod",
10798
+ "version": 1
10799
+ },
10800
+ "def": {
10801
+ "type": "string"
10802
+ },
10803
+ "type": "string",
10804
+ "format": null,
10805
+ "minLength": null,
10806
+ "maxLength": null
10807
+ }
10808
+ },
10809
+ "type": "optional"
10810
+ },
8994
10811
  "answer": {
8995
10812
  "~standard": {
8996
10813
  "vendor": "zod",
@@ -9113,6 +10930,29 @@
9113
10930
  },
9114
10931
  "type": "object"
9115
10932
  },
10933
+ "comment": {
10934
+ "~standard": {
10935
+ "vendor": "zod",
10936
+ "version": 1
10937
+ },
10938
+ "def": {
10939
+ "type": "optional",
10940
+ "innerType": {
10941
+ "~standard": {
10942
+ "vendor": "zod",
10943
+ "version": 1
10944
+ },
10945
+ "def": {
10946
+ "type": "string"
10947
+ },
10948
+ "type": "string",
10949
+ "format": null,
10950
+ "minLength": null,
10951
+ "maxLength": null
10952
+ }
10953
+ },
10954
+ "type": "optional"
10955
+ },
9116
10956
  "answer": {
9117
10957
  "~standard": {
9118
10958
  "vendor": "zod",
@@ -9199,6 +11039,29 @@
9199
11039
  },
9200
11040
  "type": "object"
9201
11041
  },
11042
+ "comment": {
11043
+ "~standard": {
11044
+ "vendor": "zod",
11045
+ "version": 1
11046
+ },
11047
+ "def": {
11048
+ "type": "optional",
11049
+ "innerType": {
11050
+ "~standard": {
11051
+ "vendor": "zod",
11052
+ "version": 1
11053
+ },
11054
+ "def": {
11055
+ "type": "string"
11056
+ },
11057
+ "type": "string",
11058
+ "format": null,
11059
+ "minLength": null,
11060
+ "maxLength": null
11061
+ }
11062
+ },
11063
+ "type": "optional"
11064
+ },
9202
11065
  "answer": {
9203
11066
  "~standard": {
9204
11067
  "vendor": "zod",
@@ -9400,7 +11263,30 @@
9400
11263
  }
9401
11264
  }
9402
11265
  },
9403
- "type": "object"
11266
+ "type": "object"
11267
+ },
11268
+ "comment": {
11269
+ "~standard": {
11270
+ "vendor": "zod",
11271
+ "version": 1
11272
+ },
11273
+ "def": {
11274
+ "type": "optional",
11275
+ "innerType": {
11276
+ "~standard": {
11277
+ "vendor": "zod",
11278
+ "version": 1
11279
+ },
11280
+ "def": {
11281
+ "type": "string"
11282
+ },
11283
+ "type": "string",
11284
+ "format": null,
11285
+ "minLength": null,
11286
+ "maxLength": null
11287
+ }
11288
+ },
11289
+ "type": "optional"
9404
11290
  },
9405
11291
  "answer": {
9406
11292
  "~standard": {
@@ -9605,6 +11491,29 @@
9605
11491
  },
9606
11492
  "type": "object"
9607
11493
  },
11494
+ "comment": {
11495
+ "~standard": {
11496
+ "vendor": "zod",
11497
+ "version": 1
11498
+ },
11499
+ "def": {
11500
+ "type": "optional",
11501
+ "innerType": {
11502
+ "~standard": {
11503
+ "vendor": "zod",
11504
+ "version": 1
11505
+ },
11506
+ "def": {
11507
+ "type": "string"
11508
+ },
11509
+ "type": "string",
11510
+ "format": null,
11511
+ "minLength": null,
11512
+ "maxLength": null
11513
+ }
11514
+ },
11515
+ "type": "optional"
11516
+ },
9608
11517
  "answer": {
9609
11518
  "~standard": {
9610
11519
  "vendor": "zod",
@@ -9716,6 +11625,29 @@
9716
11625
  },
9717
11626
  "type": "object"
9718
11627
  },
11628
+ "comment": {
11629
+ "~standard": {
11630
+ "vendor": "zod",
11631
+ "version": 1
11632
+ },
11633
+ "def": {
11634
+ "type": "optional",
11635
+ "innerType": {
11636
+ "~standard": {
11637
+ "vendor": "zod",
11638
+ "version": 1
11639
+ },
11640
+ "def": {
11641
+ "type": "string"
11642
+ },
11643
+ "type": "string",
11644
+ "format": null,
11645
+ "minLength": null,
11646
+ "maxLength": null
11647
+ }
11648
+ },
11649
+ "type": "optional"
11650
+ },
9719
11651
  "answer": {
9720
11652
  "~standard": {
9721
11653
  "vendor": "zod",
@@ -9805,6 +11737,29 @@
9805
11737
  },
9806
11738
  "type": "object"
9807
11739
  },
11740
+ "comment": {
11741
+ "~standard": {
11742
+ "vendor": "zod",
11743
+ "version": 1
11744
+ },
11745
+ "def": {
11746
+ "type": "optional",
11747
+ "innerType": {
11748
+ "~standard": {
11749
+ "vendor": "zod",
11750
+ "version": 1
11751
+ },
11752
+ "def": {
11753
+ "type": "string"
11754
+ },
11755
+ "type": "string",
11756
+ "format": null,
11757
+ "minLength": null,
11758
+ "maxLength": null
11759
+ }
11760
+ },
11761
+ "type": "optional"
11762
+ },
9808
11763
  "answer": {
9809
11764
  "~standard": {
9810
11765
  "vendor": "zod",
@@ -9930,6 +11885,29 @@
9930
11885
  },
9931
11886
  "type": "object"
9932
11887
  },
11888
+ "comment": {
11889
+ "~standard": {
11890
+ "vendor": "zod",
11891
+ "version": 1
11892
+ },
11893
+ "def": {
11894
+ "type": "optional",
11895
+ "innerType": {
11896
+ "~standard": {
11897
+ "vendor": "zod",
11898
+ "version": 1
11899
+ },
11900
+ "def": {
11901
+ "type": "string"
11902
+ },
11903
+ "type": "string",
11904
+ "format": null,
11905
+ "minLength": null,
11906
+ "maxLength": null
11907
+ }
11908
+ },
11909
+ "type": "optional"
11910
+ },
9933
11911
  "answer": {
9934
11912
  "~standard": {
9935
11913
  "vendor": "zod",
@@ -10016,6 +11994,29 @@
10016
11994
  },
10017
11995
  "type": "object"
10018
11996
  },
11997
+ "comment": {
11998
+ "~standard": {
11999
+ "vendor": "zod",
12000
+ "version": 1
12001
+ },
12002
+ "def": {
12003
+ "type": "optional",
12004
+ "innerType": {
12005
+ "~standard": {
12006
+ "vendor": "zod",
12007
+ "version": 1
12008
+ },
12009
+ "def": {
12010
+ "type": "string"
12011
+ },
12012
+ "type": "string",
12013
+ "format": null,
12014
+ "minLength": null,
12015
+ "maxLength": null
12016
+ }
12017
+ },
12018
+ "type": "optional"
12019
+ },
10019
12020
  "answer": {
10020
12021
  "~standard": {
10021
12022
  "vendor": "zod",
@@ -10219,6 +12220,29 @@
10219
12220
  },
10220
12221
  "type": "object"
10221
12222
  },
12223
+ "comment": {
12224
+ "~standard": {
12225
+ "vendor": "zod",
12226
+ "version": 1
12227
+ },
12228
+ "def": {
12229
+ "type": "optional",
12230
+ "innerType": {
12231
+ "~standard": {
12232
+ "vendor": "zod",
12233
+ "version": 1
12234
+ },
12235
+ "def": {
12236
+ "type": "string"
12237
+ },
12238
+ "type": "string",
12239
+ "format": null,
12240
+ "minLength": null,
12241
+ "maxLength": null
12242
+ }
12243
+ },
12244
+ "type": "optional"
12245
+ },
10222
12246
  "answer": {
10223
12247
  "~standard": {
10224
12248
  "vendor": "zod",
@@ -10305,6 +12329,29 @@
10305
12329
  },
10306
12330
  "type": "object"
10307
12331
  },
12332
+ "comment": {
12333
+ "~standard": {
12334
+ "vendor": "zod",
12335
+ "version": 1
12336
+ },
12337
+ "def": {
12338
+ "type": "optional",
12339
+ "innerType": {
12340
+ "~standard": {
12341
+ "vendor": "zod",
12342
+ "version": 1
12343
+ },
12344
+ "def": {
12345
+ "type": "string"
12346
+ },
12347
+ "type": "string",
12348
+ "format": null,
12349
+ "minLength": null,
12350
+ "maxLength": null
12351
+ }
12352
+ },
12353
+ "type": "optional"
12354
+ },
10308
12355
  "answer": {
10309
12356
  "~standard": {
10310
12357
  "vendor": "zod",
@@ -10391,6 +12438,29 @@
10391
12438
  },
10392
12439
  "type": "object"
10393
12440
  },
12441
+ "comment": {
12442
+ "~standard": {
12443
+ "vendor": "zod",
12444
+ "version": 1
12445
+ },
12446
+ "def": {
12447
+ "type": "optional",
12448
+ "innerType": {
12449
+ "~standard": {
12450
+ "vendor": "zod",
12451
+ "version": 1
12452
+ },
12453
+ "def": {
12454
+ "type": "string"
12455
+ },
12456
+ "type": "string",
12457
+ "format": null,
12458
+ "minLength": null,
12459
+ "maxLength": null
12460
+ }
12461
+ },
12462
+ "type": "optional"
12463
+ },
10394
12464
  "answer": {
10395
12465
  "~standard": {
10396
12466
  "vendor": "zod",
@@ -10477,6 +12547,29 @@
10477
12547
  },
10478
12548
  "type": "object"
10479
12549
  },
12550
+ "comment": {
12551
+ "~standard": {
12552
+ "vendor": "zod",
12553
+ "version": 1
12554
+ },
12555
+ "def": {
12556
+ "type": "optional",
12557
+ "innerType": {
12558
+ "~standard": {
12559
+ "vendor": "zod",
12560
+ "version": 1
12561
+ },
12562
+ "def": {
12563
+ "type": "string"
12564
+ },
12565
+ "type": "string",
12566
+ "format": null,
12567
+ "minLength": null,
12568
+ "maxLength": null
12569
+ }
12570
+ },
12571
+ "type": "optional"
12572
+ },
10480
12573
  "answer": {
10481
12574
  "~standard": {
10482
12575
  "vendor": "zod",
@@ -10568,6 +12661,29 @@
10568
12661
  },
10569
12662
  "type": "object"
10570
12663
  },
12664
+ "comment": {
12665
+ "~standard": {
12666
+ "vendor": "zod",
12667
+ "version": 1
12668
+ },
12669
+ "def": {
12670
+ "type": "optional",
12671
+ "innerType": {
12672
+ "~standard": {
12673
+ "vendor": "zod",
12674
+ "version": 1
12675
+ },
12676
+ "def": {
12677
+ "type": "string"
12678
+ },
12679
+ "type": "string",
12680
+ "format": null,
12681
+ "minLength": null,
12682
+ "maxLength": null
12683
+ }
12684
+ },
12685
+ "type": "optional"
12686
+ },
10571
12687
  "answer": {
10572
12688
  "~standard": {
10573
12689
  "vendor": "zod",
@@ -10690,6 +12806,29 @@
10690
12806
  },
10691
12807
  "type": "object"
10692
12808
  },
12809
+ "comment": {
12810
+ "~standard": {
12811
+ "vendor": "zod",
12812
+ "version": 1
12813
+ },
12814
+ "def": {
12815
+ "type": "optional",
12816
+ "innerType": {
12817
+ "~standard": {
12818
+ "vendor": "zod",
12819
+ "version": 1
12820
+ },
12821
+ "def": {
12822
+ "type": "string"
12823
+ },
12824
+ "type": "string",
12825
+ "format": null,
12826
+ "minLength": null,
12827
+ "maxLength": null
12828
+ }
12829
+ },
12830
+ "type": "optional"
12831
+ },
10693
12832
  "answer": {
10694
12833
  "~standard": {
10695
12834
  "vendor": "zod",
@@ -10773,6 +12912,29 @@
10773
12912
  },
10774
12913
  "type": "object"
10775
12914
  },
12915
+ "comment": {
12916
+ "~standard": {
12917
+ "vendor": "zod",
12918
+ "version": 1
12919
+ },
12920
+ "def": {
12921
+ "type": "optional",
12922
+ "innerType": {
12923
+ "~standard": {
12924
+ "vendor": "zod",
12925
+ "version": 1
12926
+ },
12927
+ "def": {
12928
+ "type": "string"
12929
+ },
12930
+ "type": "string",
12931
+ "format": null,
12932
+ "minLength": null,
12933
+ "maxLength": null
12934
+ }
12935
+ },
12936
+ "type": "optional"
12937
+ },
10776
12938
  "answer": {
10777
12939
  "~standard": {
10778
12940
  "vendor": "zod",
@@ -10882,7 +13044,30 @@
10882
13044
  }
10883
13045
  }
10884
13046
  },
10885
- "type": "object"
13047
+ "type": "object"
13048
+ },
13049
+ "comment": {
13050
+ "~standard": {
13051
+ "vendor": "zod",
13052
+ "version": 1
13053
+ },
13054
+ "def": {
13055
+ "type": "optional",
13056
+ "innerType": {
13057
+ "~standard": {
13058
+ "vendor": "zod",
13059
+ "version": 1
13060
+ },
13061
+ "def": {
13062
+ "type": "string"
13063
+ },
13064
+ "type": "string",
13065
+ "format": null,
13066
+ "minLength": null,
13067
+ "maxLength": null
13068
+ }
13069
+ },
13070
+ "type": "optional"
10886
13071
  },
10887
13072
  "answer": {
10888
13073
  "~standard": {
@@ -10973,6 +13158,29 @@
10973
13158
  },
10974
13159
  "type": "object"
10975
13160
  },
13161
+ "comment": {
13162
+ "~standard": {
13163
+ "vendor": "zod",
13164
+ "version": 1
13165
+ },
13166
+ "def": {
13167
+ "type": "optional",
13168
+ "innerType": {
13169
+ "~standard": {
13170
+ "vendor": "zod",
13171
+ "version": 1
13172
+ },
13173
+ "def": {
13174
+ "type": "string"
13175
+ },
13176
+ "type": "string",
13177
+ "format": null,
13178
+ "minLength": null,
13179
+ "maxLength": null
13180
+ }
13181
+ },
13182
+ "type": "optional"
13183
+ },
10976
13184
  "answer": {
10977
13185
  "~standard": {
10978
13186
  "vendor": "zod",
@@ -11059,6 +13267,29 @@
11059
13267
  },
11060
13268
  "type": "object"
11061
13269
  },
13270
+ "comment": {
13271
+ "~standard": {
13272
+ "vendor": "zod",
13273
+ "version": 1
13274
+ },
13275
+ "def": {
13276
+ "type": "optional",
13277
+ "innerType": {
13278
+ "~standard": {
13279
+ "vendor": "zod",
13280
+ "version": 1
13281
+ },
13282
+ "def": {
13283
+ "type": "string"
13284
+ },
13285
+ "type": "string",
13286
+ "format": null,
13287
+ "minLength": null,
13288
+ "maxLength": null
13289
+ }
13290
+ },
13291
+ "type": "optional"
13292
+ },
11062
13293
  "answer": {
11063
13294
  "~standard": {
11064
13295
  "vendor": "zod",
@@ -11181,6 +13412,29 @@
11181
13412
  },
11182
13413
  "type": "object"
11183
13414
  },
13415
+ "comment": {
13416
+ "~standard": {
13417
+ "vendor": "zod",
13418
+ "version": 1
13419
+ },
13420
+ "def": {
13421
+ "type": "optional",
13422
+ "innerType": {
13423
+ "~standard": {
13424
+ "vendor": "zod",
13425
+ "version": 1
13426
+ },
13427
+ "def": {
13428
+ "type": "string"
13429
+ },
13430
+ "type": "string",
13431
+ "format": null,
13432
+ "minLength": null,
13433
+ "maxLength": null
13434
+ }
13435
+ },
13436
+ "type": "optional"
13437
+ },
11184
13438
  "answer": {
11185
13439
  "~standard": {
11186
13440
  "vendor": "zod",
@@ -11267,6 +13521,29 @@
11267
13521
  },
11268
13522
  "type": "object"
11269
13523
  },
13524
+ "comment": {
13525
+ "~standard": {
13526
+ "vendor": "zod",
13527
+ "version": 1
13528
+ },
13529
+ "def": {
13530
+ "type": "optional",
13531
+ "innerType": {
13532
+ "~standard": {
13533
+ "vendor": "zod",
13534
+ "version": 1
13535
+ },
13536
+ "def": {
13537
+ "type": "string"
13538
+ },
13539
+ "type": "string",
13540
+ "format": null,
13541
+ "minLength": null,
13542
+ "maxLength": null
13543
+ }
13544
+ },
13545
+ "type": "optional"
13546
+ },
11270
13547
  "answer": {
11271
13548
  "~standard": {
11272
13549
  "vendor": "zod",
@@ -11470,6 +13747,29 @@
11470
13747
  },
11471
13748
  "type": "object"
11472
13749
  },
13750
+ "comment": {
13751
+ "~standard": {
13752
+ "vendor": "zod",
13753
+ "version": 1
13754
+ },
13755
+ "def": {
13756
+ "type": "optional",
13757
+ "innerType": {
13758
+ "~standard": {
13759
+ "vendor": "zod",
13760
+ "version": 1
13761
+ },
13762
+ "def": {
13763
+ "type": "string"
13764
+ },
13765
+ "type": "string",
13766
+ "format": null,
13767
+ "minLength": null,
13768
+ "maxLength": null
13769
+ }
13770
+ },
13771
+ "type": "optional"
13772
+ },
11473
13773
  "answer": {
11474
13774
  "~standard": {
11475
13775
  "vendor": "zod",
@@ -11673,6 +13973,29 @@
11673
13973
  },
11674
13974
  "type": "object"
11675
13975
  },
13976
+ "comment": {
13977
+ "~standard": {
13978
+ "vendor": "zod",
13979
+ "version": 1
13980
+ },
13981
+ "def": {
13982
+ "type": "optional",
13983
+ "innerType": {
13984
+ "~standard": {
13985
+ "vendor": "zod",
13986
+ "version": 1
13987
+ },
13988
+ "def": {
13989
+ "type": "string"
13990
+ },
13991
+ "type": "string",
13992
+ "format": null,
13993
+ "minLength": null,
13994
+ "maxLength": null
13995
+ }
13996
+ },
13997
+ "type": "optional"
13998
+ },
11676
13999
  "answer": {
11677
14000
  "~standard": {
11678
14001
  "vendor": "zod",
@@ -11784,6 +14107,29 @@
11784
14107
  },
11785
14108
  "type": "object"
11786
14109
  },
14110
+ "comment": {
14111
+ "~standard": {
14112
+ "vendor": "zod",
14113
+ "version": 1
14114
+ },
14115
+ "def": {
14116
+ "type": "optional",
14117
+ "innerType": {
14118
+ "~standard": {
14119
+ "vendor": "zod",
14120
+ "version": 1
14121
+ },
14122
+ "def": {
14123
+ "type": "string"
14124
+ },
14125
+ "type": "string",
14126
+ "format": null,
14127
+ "minLength": null,
14128
+ "maxLength": null
14129
+ }
14130
+ },
14131
+ "type": "optional"
14132
+ },
11787
14133
  "answer": {
11788
14134
  "~standard": {
11789
14135
  "vendor": "zod",
@@ -11873,6 +14219,29 @@
11873
14219
  },
11874
14220
  "type": "object"
11875
14221
  },
14222
+ "comment": {
14223
+ "~standard": {
14224
+ "vendor": "zod",
14225
+ "version": 1
14226
+ },
14227
+ "def": {
14228
+ "type": "optional",
14229
+ "innerType": {
14230
+ "~standard": {
14231
+ "vendor": "zod",
14232
+ "version": 1
14233
+ },
14234
+ "def": {
14235
+ "type": "string"
14236
+ },
14237
+ "type": "string",
14238
+ "format": null,
14239
+ "minLength": null,
14240
+ "maxLength": null
14241
+ }
14242
+ },
14243
+ "type": "optional"
14244
+ },
11876
14245
  "answer": {
11877
14246
  "~standard": {
11878
14247
  "vendor": "zod",
@@ -11998,6 +14367,29 @@
11998
14367
  },
11999
14368
  "type": "object"
12000
14369
  },
14370
+ "comment": {
14371
+ "~standard": {
14372
+ "vendor": "zod",
14373
+ "version": 1
14374
+ },
14375
+ "def": {
14376
+ "type": "optional",
14377
+ "innerType": {
14378
+ "~standard": {
14379
+ "vendor": "zod",
14380
+ "version": 1
14381
+ },
14382
+ "def": {
14383
+ "type": "string"
14384
+ },
14385
+ "type": "string",
14386
+ "format": null,
14387
+ "minLength": null,
14388
+ "maxLength": null
14389
+ }
14390
+ },
14391
+ "type": "optional"
14392
+ },
12001
14393
  "answer": {
12002
14394
  "~standard": {
12003
14395
  "vendor": "zod",
@@ -12084,6 +14476,29 @@
12084
14476
  },
12085
14477
  "type": "object"
12086
14478
  },
14479
+ "comment": {
14480
+ "~standard": {
14481
+ "vendor": "zod",
14482
+ "version": 1
14483
+ },
14484
+ "def": {
14485
+ "type": "optional",
14486
+ "innerType": {
14487
+ "~standard": {
14488
+ "vendor": "zod",
14489
+ "version": 1
14490
+ },
14491
+ "def": {
14492
+ "type": "string"
14493
+ },
14494
+ "type": "string",
14495
+ "format": null,
14496
+ "minLength": null,
14497
+ "maxLength": null
14498
+ }
14499
+ },
14500
+ "type": "optional"
14501
+ },
12087
14502
  "answer": {
12088
14503
  "~standard": {
12089
14504
  "vendor": "zod",
@@ -12287,6 +14702,29 @@
12287
14702
  },
12288
14703
  "type": "object"
12289
14704
  },
14705
+ "comment": {
14706
+ "~standard": {
14707
+ "vendor": "zod",
14708
+ "version": 1
14709
+ },
14710
+ "def": {
14711
+ "type": "optional",
14712
+ "innerType": {
14713
+ "~standard": {
14714
+ "vendor": "zod",
14715
+ "version": 1
14716
+ },
14717
+ "def": {
14718
+ "type": "string"
14719
+ },
14720
+ "type": "string",
14721
+ "format": null,
14722
+ "minLength": null,
14723
+ "maxLength": null
14724
+ }
14725
+ },
14726
+ "type": "optional"
14727
+ },
12290
14728
  "answer": {
12291
14729
  "~standard": {
12292
14730
  "vendor": "zod",
@@ -12371,7 +14809,30 @@
12371
14809
  }
12372
14810
  }
12373
14811
  },
12374
- "type": "object"
14812
+ "type": "object"
14813
+ },
14814
+ "comment": {
14815
+ "~standard": {
14816
+ "vendor": "zod",
14817
+ "version": 1
14818
+ },
14819
+ "def": {
14820
+ "type": "optional",
14821
+ "innerType": {
14822
+ "~standard": {
14823
+ "vendor": "zod",
14824
+ "version": 1
14825
+ },
14826
+ "def": {
14827
+ "type": "string"
14828
+ },
14829
+ "type": "string",
14830
+ "format": null,
14831
+ "minLength": null,
14832
+ "maxLength": null
14833
+ }
14834
+ },
14835
+ "type": "optional"
12375
14836
  },
12376
14837
  "answer": {
12377
14838
  "~standard": {
@@ -12459,6 +14920,29 @@
12459
14920
  },
12460
14921
  "type": "object"
12461
14922
  },
14923
+ "comment": {
14924
+ "~standard": {
14925
+ "vendor": "zod",
14926
+ "version": 1
14927
+ },
14928
+ "def": {
14929
+ "type": "optional",
14930
+ "innerType": {
14931
+ "~standard": {
14932
+ "vendor": "zod",
14933
+ "version": 1
14934
+ },
14935
+ "def": {
14936
+ "type": "string"
14937
+ },
14938
+ "type": "string",
14939
+ "format": null,
14940
+ "minLength": null,
14941
+ "maxLength": null
14942
+ }
14943
+ },
14944
+ "type": "optional"
14945
+ },
12462
14946
  "answer": {
12463
14947
  "~standard": {
12464
14948
  "vendor": "zod",
@@ -12545,6 +15029,29 @@
12545
15029
  },
12546
15030
  "type": "object"
12547
15031
  },
15032
+ "comment": {
15033
+ "~standard": {
15034
+ "vendor": "zod",
15035
+ "version": 1
15036
+ },
15037
+ "def": {
15038
+ "type": "optional",
15039
+ "innerType": {
15040
+ "~standard": {
15041
+ "vendor": "zod",
15042
+ "version": 1
15043
+ },
15044
+ "def": {
15045
+ "type": "string"
15046
+ },
15047
+ "type": "string",
15048
+ "format": null,
15049
+ "minLength": null,
15050
+ "maxLength": null
15051
+ }
15052
+ },
15053
+ "type": "optional"
15054
+ },
12548
15055
  "answer": {
12549
15056
  "~standard": {
12550
15057
  "vendor": "zod",
@@ -12643,6 +15150,29 @@
12643
15150
  },
12644
15151
  "type": "object"
12645
15152
  },
15153
+ "comment": {
15154
+ "~standard": {
15155
+ "vendor": "zod",
15156
+ "version": 1
15157
+ },
15158
+ "def": {
15159
+ "type": "optional",
15160
+ "innerType": {
15161
+ "~standard": {
15162
+ "vendor": "zod",
15163
+ "version": 1
15164
+ },
15165
+ "def": {
15166
+ "type": "string"
15167
+ },
15168
+ "type": "string",
15169
+ "format": null,
15170
+ "minLength": null,
15171
+ "maxLength": null
15172
+ }
15173
+ },
15174
+ "type": "optional"
15175
+ },
12646
15176
  "answer": {
12647
15177
  "~standard": {
12648
15178
  "vendor": "zod",
@@ -12765,6 +15295,29 @@
12765
15295
  },
12766
15296
  "type": "object"
12767
15297
  },
15298
+ "comment": {
15299
+ "~standard": {
15300
+ "vendor": "zod",
15301
+ "version": 1
15302
+ },
15303
+ "def": {
15304
+ "type": "optional",
15305
+ "innerType": {
15306
+ "~standard": {
15307
+ "vendor": "zod",
15308
+ "version": 1
15309
+ },
15310
+ "def": {
15311
+ "type": "string"
15312
+ },
15313
+ "type": "string",
15314
+ "format": null,
15315
+ "minLength": null,
15316
+ "maxLength": null
15317
+ }
15318
+ },
15319
+ "type": "optional"
15320
+ },
12768
15321
  "answer": {
12769
15322
  "~standard": {
12770
15323
  "vendor": "zod",
@@ -12848,6 +15401,29 @@
12848
15401
  },
12849
15402
  "type": "object"
12850
15403
  },
15404
+ "comment": {
15405
+ "~standard": {
15406
+ "vendor": "zod",
15407
+ "version": 1
15408
+ },
15409
+ "def": {
15410
+ "type": "optional",
15411
+ "innerType": {
15412
+ "~standard": {
15413
+ "vendor": "zod",
15414
+ "version": 1
15415
+ },
15416
+ "def": {
15417
+ "type": "string"
15418
+ },
15419
+ "type": "string",
15420
+ "format": null,
15421
+ "minLength": null,
15422
+ "maxLength": null
15423
+ }
15424
+ },
15425
+ "type": "optional"
15426
+ },
12851
15427
  "answer": {
12852
15428
  "~standard": {
12853
15429
  "vendor": "zod",
@@ -12959,6 +15535,29 @@
12959
15535
  },
12960
15536
  "type": "object"
12961
15537
  },
15538
+ "comment": {
15539
+ "~standard": {
15540
+ "vendor": "zod",
15541
+ "version": 1
15542
+ },
15543
+ "def": {
15544
+ "type": "optional",
15545
+ "innerType": {
15546
+ "~standard": {
15547
+ "vendor": "zod",
15548
+ "version": 1
15549
+ },
15550
+ "def": {
15551
+ "type": "string"
15552
+ },
15553
+ "type": "string",
15554
+ "format": null,
15555
+ "minLength": null,
15556
+ "maxLength": null
15557
+ }
15558
+ },
15559
+ "type": "optional"
15560
+ },
12962
15561
  "answer": {
12963
15562
  "~standard": {
12964
15563
  "vendor": "zod",
@@ -13048,6 +15647,29 @@
13048
15647
  },
13049
15648
  "type": "object"
13050
15649
  },
15650
+ "comment": {
15651
+ "~standard": {
15652
+ "vendor": "zod",
15653
+ "version": 1
15654
+ },
15655
+ "def": {
15656
+ "type": "optional",
15657
+ "innerType": {
15658
+ "~standard": {
15659
+ "vendor": "zod",
15660
+ "version": 1
15661
+ },
15662
+ "def": {
15663
+ "type": "string"
15664
+ },
15665
+ "type": "string",
15666
+ "format": null,
15667
+ "minLength": null,
15668
+ "maxLength": null
15669
+ }
15670
+ },
15671
+ "type": "optional"
15672
+ },
13051
15673
  "answer": {
13052
15674
  "~standard": {
13053
15675
  "vendor": "zod",
@@ -13134,6 +15756,29 @@
13134
15756
  },
13135
15757
  "type": "object"
13136
15758
  },
15759
+ "comment": {
15760
+ "~standard": {
15761
+ "vendor": "zod",
15762
+ "version": 1
15763
+ },
15764
+ "def": {
15765
+ "type": "optional",
15766
+ "innerType": {
15767
+ "~standard": {
15768
+ "vendor": "zod",
15769
+ "version": 1
15770
+ },
15771
+ "def": {
15772
+ "type": "string"
15773
+ },
15774
+ "type": "string",
15775
+ "format": null,
15776
+ "minLength": null,
15777
+ "maxLength": null
15778
+ }
15779
+ },
15780
+ "type": "optional"
15781
+ },
13137
15782
  "answer": {
13138
15783
  "~standard": {
13139
15784
  "vendor": "zod",
@@ -13256,6 +15901,29 @@
13256
15901
  },
13257
15902
  "type": "object"
13258
15903
  },
15904
+ "comment": {
15905
+ "~standard": {
15906
+ "vendor": "zod",
15907
+ "version": 1
15908
+ },
15909
+ "def": {
15910
+ "type": "optional",
15911
+ "innerType": {
15912
+ "~standard": {
15913
+ "vendor": "zod",
15914
+ "version": 1
15915
+ },
15916
+ "def": {
15917
+ "type": "string"
15918
+ },
15919
+ "type": "string",
15920
+ "format": null,
15921
+ "minLength": null,
15922
+ "maxLength": null
15923
+ }
15924
+ },
15925
+ "type": "optional"
15926
+ },
13259
15927
  "answer": {
13260
15928
  "~standard": {
13261
15929
  "vendor": "zod",
@@ -13342,6 +16010,29 @@
13342
16010
  },
13343
16011
  "type": "object"
13344
16012
  },
16013
+ "comment": {
16014
+ "~standard": {
16015
+ "vendor": "zod",
16016
+ "version": 1
16017
+ },
16018
+ "def": {
16019
+ "type": "optional",
16020
+ "innerType": {
16021
+ "~standard": {
16022
+ "vendor": "zod",
16023
+ "version": 1
16024
+ },
16025
+ "def": {
16026
+ "type": "string"
16027
+ },
16028
+ "type": "string",
16029
+ "format": null,
16030
+ "minLength": null,
16031
+ "maxLength": null
16032
+ }
16033
+ },
16034
+ "type": "optional"
16035
+ },
13345
16036
  "answer": {
13346
16037
  "~standard": {
13347
16038
  "vendor": "zod",
@@ -13545,6 +16236,29 @@
13545
16236
  },
13546
16237
  "type": "object"
13547
16238
  },
16239
+ "comment": {
16240
+ "~standard": {
16241
+ "vendor": "zod",
16242
+ "version": 1
16243
+ },
16244
+ "def": {
16245
+ "type": "optional",
16246
+ "innerType": {
16247
+ "~standard": {
16248
+ "vendor": "zod",
16249
+ "version": 1
16250
+ },
16251
+ "def": {
16252
+ "type": "string"
16253
+ },
16254
+ "type": "string",
16255
+ "format": null,
16256
+ "minLength": null,
16257
+ "maxLength": null
16258
+ }
16259
+ },
16260
+ "type": "optional"
16261
+ },
13548
16262
  "answer": {
13549
16263
  "~standard": {
13550
16264
  "vendor": "zod",
@@ -13748,6 +16462,29 @@
13748
16462
  },
13749
16463
  "type": "object"
13750
16464
  },
16465
+ "comment": {
16466
+ "~standard": {
16467
+ "vendor": "zod",
16468
+ "version": 1
16469
+ },
16470
+ "def": {
16471
+ "type": "optional",
16472
+ "innerType": {
16473
+ "~standard": {
16474
+ "vendor": "zod",
16475
+ "version": 1
16476
+ },
16477
+ "def": {
16478
+ "type": "string"
16479
+ },
16480
+ "type": "string",
16481
+ "format": null,
16482
+ "minLength": null,
16483
+ "maxLength": null
16484
+ }
16485
+ },
16486
+ "type": "optional"
16487
+ },
13751
16488
  "answer": {
13752
16489
  "~standard": {
13753
16490
  "vendor": "zod",
@@ -13857,7 +16594,30 @@
13857
16594
  }
13858
16595
  }
13859
16596
  },
13860
- "type": "object"
16597
+ "type": "object"
16598
+ },
16599
+ "comment": {
16600
+ "~standard": {
16601
+ "vendor": "zod",
16602
+ "version": 1
16603
+ },
16604
+ "def": {
16605
+ "type": "optional",
16606
+ "innerType": {
16607
+ "~standard": {
16608
+ "vendor": "zod",
16609
+ "version": 1
16610
+ },
16611
+ "def": {
16612
+ "type": "string"
16613
+ },
16614
+ "type": "string",
16615
+ "format": null,
16616
+ "minLength": null,
16617
+ "maxLength": null
16618
+ }
16619
+ },
16620
+ "type": "optional"
13861
16621
  },
13862
16622
  "answer": {
13863
16623
  "~standard": {
@@ -13948,6 +16708,29 @@
13948
16708
  },
13949
16709
  "type": "object"
13950
16710
  },
16711
+ "comment": {
16712
+ "~standard": {
16713
+ "vendor": "zod",
16714
+ "version": 1
16715
+ },
16716
+ "def": {
16717
+ "type": "optional",
16718
+ "innerType": {
16719
+ "~standard": {
16720
+ "vendor": "zod",
16721
+ "version": 1
16722
+ },
16723
+ "def": {
16724
+ "type": "string"
16725
+ },
16726
+ "type": "string",
16727
+ "format": null,
16728
+ "minLength": null,
16729
+ "maxLength": null
16730
+ }
16731
+ },
16732
+ "type": "optional"
16733
+ },
13951
16734
  "answer": {
13952
16735
  "~standard": {
13953
16736
  "vendor": "zod",
@@ -14073,6 +16856,29 @@
14073
16856
  },
14074
16857
  "type": "object"
14075
16858
  },
16859
+ "comment": {
16860
+ "~standard": {
16861
+ "vendor": "zod",
16862
+ "version": 1
16863
+ },
16864
+ "def": {
16865
+ "type": "optional",
16866
+ "innerType": {
16867
+ "~standard": {
16868
+ "vendor": "zod",
16869
+ "version": 1
16870
+ },
16871
+ "def": {
16872
+ "type": "string"
16873
+ },
16874
+ "type": "string",
16875
+ "format": null,
16876
+ "minLength": null,
16877
+ "maxLength": null
16878
+ }
16879
+ },
16880
+ "type": "optional"
16881
+ },
14076
16882
  "answer": {
14077
16883
  "~standard": {
14078
16884
  "vendor": "zod",
@@ -14159,6 +16965,29 @@
14159
16965
  },
14160
16966
  "type": "object"
14161
16967
  },
16968
+ "comment": {
16969
+ "~standard": {
16970
+ "vendor": "zod",
16971
+ "version": 1
16972
+ },
16973
+ "def": {
16974
+ "type": "optional",
16975
+ "innerType": {
16976
+ "~standard": {
16977
+ "vendor": "zod",
16978
+ "version": 1
16979
+ },
16980
+ "def": {
16981
+ "type": "string"
16982
+ },
16983
+ "type": "string",
16984
+ "format": null,
16985
+ "minLength": null,
16986
+ "maxLength": null
16987
+ }
16988
+ },
16989
+ "type": "optional"
16990
+ },
14162
16991
  "answer": {
14163
16992
  "~standard": {
14164
16993
  "vendor": "zod",
@@ -14362,6 +17191,29 @@
14362
17191
  },
14363
17192
  "type": "object"
14364
17193
  },
17194
+ "comment": {
17195
+ "~standard": {
17196
+ "vendor": "zod",
17197
+ "version": 1
17198
+ },
17199
+ "def": {
17200
+ "type": "optional",
17201
+ "innerType": {
17202
+ "~standard": {
17203
+ "vendor": "zod",
17204
+ "version": 1
17205
+ },
17206
+ "def": {
17207
+ "type": "string"
17208
+ },
17209
+ "type": "string",
17210
+ "format": null,
17211
+ "minLength": null,
17212
+ "maxLength": null
17213
+ }
17214
+ },
17215
+ "type": "optional"
17216
+ },
14365
17217
  "answer": {
14366
17218
  "~standard": {
14367
17219
  "vendor": "zod",
@@ -14448,6 +17300,29 @@
14448
17300
  },
14449
17301
  "type": "object"
14450
17302
  },
17303
+ "comment": {
17304
+ "~standard": {
17305
+ "vendor": "zod",
17306
+ "version": 1
17307
+ },
17308
+ "def": {
17309
+ "type": "optional",
17310
+ "innerType": {
17311
+ "~standard": {
17312
+ "vendor": "zod",
17313
+ "version": 1
17314
+ },
17315
+ "def": {
17316
+ "type": "string"
17317
+ },
17318
+ "type": "string",
17319
+ "format": null,
17320
+ "minLength": null,
17321
+ "maxLength": null
17322
+ }
17323
+ },
17324
+ "type": "optional"
17325
+ },
14451
17326
  "answer": {
14452
17327
  "~standard": {
14453
17328
  "vendor": "zod",
@@ -14534,6 +17409,29 @@
14534
17409
  },
14535
17410
  "type": "object"
14536
17411
  },
17412
+ "comment": {
17413
+ "~standard": {
17414
+ "vendor": "zod",
17415
+ "version": 1
17416
+ },
17417
+ "def": {
17418
+ "type": "optional",
17419
+ "innerType": {
17420
+ "~standard": {
17421
+ "vendor": "zod",
17422
+ "version": 1
17423
+ },
17424
+ "def": {
17425
+ "type": "string"
17426
+ },
17427
+ "type": "string",
17428
+ "format": null,
17429
+ "minLength": null,
17430
+ "maxLength": null
17431
+ }
17432
+ },
17433
+ "type": "optional"
17434
+ },
14537
17435
  "answer": {
14538
17436
  "~standard": {
14539
17437
  "vendor": "zod",
@@ -14620,6 +17518,29 @@
14620
17518
  },
14621
17519
  "type": "object"
14622
17520
  },
17521
+ "comment": {
17522
+ "~standard": {
17523
+ "vendor": "zod",
17524
+ "version": 1
17525
+ },
17526
+ "def": {
17527
+ "type": "optional",
17528
+ "innerType": {
17529
+ "~standard": {
17530
+ "vendor": "zod",
17531
+ "version": 1
17532
+ },
17533
+ "def": {
17534
+ "type": "string"
17535
+ },
17536
+ "type": "string",
17537
+ "format": null,
17538
+ "minLength": null,
17539
+ "maxLength": null
17540
+ }
17541
+ },
17542
+ "type": "optional"
17543
+ },
14623
17544
  "answer": {
14624
17545
  "~standard": {
14625
17546
  "vendor": "zod",
@@ -14711,6 +17632,29 @@
14711
17632
  },
14712
17633
  "type": "object"
14713
17634
  },
17635
+ "comment": {
17636
+ "~standard": {
17637
+ "vendor": "zod",
17638
+ "version": 1
17639
+ },
17640
+ "def": {
17641
+ "type": "optional",
17642
+ "innerType": {
17643
+ "~standard": {
17644
+ "vendor": "zod",
17645
+ "version": 1
17646
+ },
17647
+ "def": {
17648
+ "type": "string"
17649
+ },
17650
+ "type": "string",
17651
+ "format": null,
17652
+ "minLength": null,
17653
+ "maxLength": null
17654
+ }
17655
+ },
17656
+ "type": "optional"
17657
+ },
14714
17658
  "answer": {
14715
17659
  "~standard": {
14716
17660
  "vendor": "zod",
@@ -14833,6 +17777,29 @@
14833
17777
  },
14834
17778
  "type": "object"
14835
17779
  },
17780
+ "comment": {
17781
+ "~standard": {
17782
+ "vendor": "zod",
17783
+ "version": 1
17784
+ },
17785
+ "def": {
17786
+ "type": "optional",
17787
+ "innerType": {
17788
+ "~standard": {
17789
+ "vendor": "zod",
17790
+ "version": 1
17791
+ },
17792
+ "def": {
17793
+ "type": "string"
17794
+ },
17795
+ "type": "string",
17796
+ "format": null,
17797
+ "minLength": null,
17798
+ "maxLength": null
17799
+ }
17800
+ },
17801
+ "type": "optional"
17802
+ },
14836
17803
  "answer": {
14837
17804
  "~standard": {
14838
17805
  "vendor": "zod",
@@ -14916,6 +17883,29 @@
14916
17883
  },
14917
17884
  "type": "object"
14918
17885
  },
17886
+ "comment": {
17887
+ "~standard": {
17888
+ "vendor": "zod",
17889
+ "version": 1
17890
+ },
17891
+ "def": {
17892
+ "type": "optional",
17893
+ "innerType": {
17894
+ "~standard": {
17895
+ "vendor": "zod",
17896
+ "version": 1
17897
+ },
17898
+ "def": {
17899
+ "type": "string"
17900
+ },
17901
+ "type": "string",
17902
+ "format": null,
17903
+ "minLength": null,
17904
+ "maxLength": null
17905
+ }
17906
+ },
17907
+ "type": "optional"
17908
+ },
14919
17909
  "answer": {
14920
17910
  "~standard": {
14921
17911
  "vendor": "zod",
@@ -15027,6 +18017,29 @@
15027
18017
  },
15028
18018
  "type": "object"
15029
18019
  },
18020
+ "comment": {
18021
+ "~standard": {
18022
+ "vendor": "zod",
18023
+ "version": 1
18024
+ },
18025
+ "def": {
18026
+ "type": "optional",
18027
+ "innerType": {
18028
+ "~standard": {
18029
+ "vendor": "zod",
18030
+ "version": 1
18031
+ },
18032
+ "def": {
18033
+ "type": "string"
18034
+ },
18035
+ "type": "string",
18036
+ "format": null,
18037
+ "minLength": null,
18038
+ "maxLength": null
18039
+ }
18040
+ },
18041
+ "type": "optional"
18042
+ },
15030
18043
  "answer": {
15031
18044
  "~standard": {
15032
18045
  "vendor": "zod",
@@ -15116,6 +18129,29 @@
15116
18129
  },
15117
18130
  "type": "object"
15118
18131
  },
18132
+ "comment": {
18133
+ "~standard": {
18134
+ "vendor": "zod",
18135
+ "version": 1
18136
+ },
18137
+ "def": {
18138
+ "type": "optional",
18139
+ "innerType": {
18140
+ "~standard": {
18141
+ "vendor": "zod",
18142
+ "version": 1
18143
+ },
18144
+ "def": {
18145
+ "type": "string"
18146
+ },
18147
+ "type": "string",
18148
+ "format": null,
18149
+ "minLength": null,
18150
+ "maxLength": null
18151
+ }
18152
+ },
18153
+ "type": "optional"
18154
+ },
15119
18155
  "answer": {
15120
18156
  "~standard": {
15121
18157
  "vendor": "zod",
@@ -15200,7 +18236,30 @@
15200
18236
  }
15201
18237
  }
15202
18238
  },
15203
- "type": "object"
18239
+ "type": "object"
18240
+ },
18241
+ "comment": {
18242
+ "~standard": {
18243
+ "vendor": "zod",
18244
+ "version": 1
18245
+ },
18246
+ "def": {
18247
+ "type": "optional",
18248
+ "innerType": {
18249
+ "~standard": {
18250
+ "vendor": "zod",
18251
+ "version": 1
18252
+ },
18253
+ "def": {
18254
+ "type": "string"
18255
+ },
18256
+ "type": "string",
18257
+ "format": null,
18258
+ "minLength": null,
18259
+ "maxLength": null
18260
+ }
18261
+ },
18262
+ "type": "optional"
15204
18263
  },
15205
18264
  "answer": {
15206
18265
  "~standard": {
@@ -15324,6 +18383,29 @@
15324
18383
  },
15325
18384
  "type": "object"
15326
18385
  },
18386
+ "comment": {
18387
+ "~standard": {
18388
+ "vendor": "zod",
18389
+ "version": 1
18390
+ },
18391
+ "def": {
18392
+ "type": "optional",
18393
+ "innerType": {
18394
+ "~standard": {
18395
+ "vendor": "zod",
18396
+ "version": 1
18397
+ },
18398
+ "def": {
18399
+ "type": "string"
18400
+ },
18401
+ "type": "string",
18402
+ "format": null,
18403
+ "minLength": null,
18404
+ "maxLength": null
18405
+ }
18406
+ },
18407
+ "type": "optional"
18408
+ },
15327
18409
  "answer": {
15328
18410
  "~standard": {
15329
18411
  "vendor": "zod",
@@ -15410,6 +18492,29 @@
15410
18492
  },
15411
18493
  "type": "object"
15412
18494
  },
18495
+ "comment": {
18496
+ "~standard": {
18497
+ "vendor": "zod",
18498
+ "version": 1
18499
+ },
18500
+ "def": {
18501
+ "type": "optional",
18502
+ "innerType": {
18503
+ "~standard": {
18504
+ "vendor": "zod",
18505
+ "version": 1
18506
+ },
18507
+ "def": {
18508
+ "type": "string"
18509
+ },
18510
+ "type": "string",
18511
+ "format": null,
18512
+ "minLength": null,
18513
+ "maxLength": null
18514
+ }
18515
+ },
18516
+ "type": "optional"
18517
+ },
15413
18518
  "answer": {
15414
18519
  "~standard": {
15415
18520
  "vendor": "zod",
@@ -15613,6 +18718,29 @@
15613
18718
  },
15614
18719
  "type": "object"
15615
18720
  },
18721
+ "comment": {
18722
+ "~standard": {
18723
+ "vendor": "zod",
18724
+ "version": 1
18725
+ },
18726
+ "def": {
18727
+ "type": "optional",
18728
+ "innerType": {
18729
+ "~standard": {
18730
+ "vendor": "zod",
18731
+ "version": 1
18732
+ },
18733
+ "def": {
18734
+ "type": "string"
18735
+ },
18736
+ "type": "string",
18737
+ "format": null,
18738
+ "minLength": null,
18739
+ "maxLength": null
18740
+ }
18741
+ },
18742
+ "type": "optional"
18743
+ },
15616
18744
  "answer": {
15617
18745
  "~standard": {
15618
18746
  "vendor": "zod",
@@ -15816,6 +18944,29 @@
15816
18944
  },
15817
18945
  "type": "object"
15818
18946
  },
18947
+ "comment": {
18948
+ "~standard": {
18949
+ "vendor": "zod",
18950
+ "version": 1
18951
+ },
18952
+ "def": {
18953
+ "type": "optional",
18954
+ "innerType": {
18955
+ "~standard": {
18956
+ "vendor": "zod",
18957
+ "version": 1
18958
+ },
18959
+ "def": {
18960
+ "type": "string"
18961
+ },
18962
+ "type": "string",
18963
+ "format": null,
18964
+ "minLength": null,
18965
+ "maxLength": null
18966
+ }
18967
+ },
18968
+ "type": "optional"
18969
+ },
15819
18970
  "answer": {
15820
18971
  "~standard": {
15821
18972
  "vendor": "zod",
@@ -15927,6 +19078,29 @@
15927
19078
  },
15928
19079
  "type": "object"
15929
19080
  },
19081
+ "comment": {
19082
+ "~standard": {
19083
+ "vendor": "zod",
19084
+ "version": 1
19085
+ },
19086
+ "def": {
19087
+ "type": "optional",
19088
+ "innerType": {
19089
+ "~standard": {
19090
+ "vendor": "zod",
19091
+ "version": 1
19092
+ },
19093
+ "def": {
19094
+ "type": "string"
19095
+ },
19096
+ "type": "string",
19097
+ "format": null,
19098
+ "minLength": null,
19099
+ "maxLength": null
19100
+ }
19101
+ },
19102
+ "type": "optional"
19103
+ },
15930
19104
  "answer": {
15931
19105
  "~standard": {
15932
19106
  "vendor": "zod",
@@ -16016,6 +19190,29 @@
16016
19190
  },
16017
19191
  "type": "object"
16018
19192
  },
19193
+ "comment": {
19194
+ "~standard": {
19195
+ "vendor": "zod",
19196
+ "version": 1
19197
+ },
19198
+ "def": {
19199
+ "type": "optional",
19200
+ "innerType": {
19201
+ "~standard": {
19202
+ "vendor": "zod",
19203
+ "version": 1
19204
+ },
19205
+ "def": {
19206
+ "type": "string"
19207
+ },
19208
+ "type": "string",
19209
+ "format": null,
19210
+ "minLength": null,
19211
+ "maxLength": null
19212
+ }
19213
+ },
19214
+ "type": "optional"
19215
+ },
16019
19216
  "answer": {
16020
19217
  "~standard": {
16021
19218
  "vendor": "zod",
@@ -16141,6 +19338,29 @@
16141
19338
  },
16142
19339
  "type": "object"
16143
19340
  },
19341
+ "comment": {
19342
+ "~standard": {
19343
+ "vendor": "zod",
19344
+ "version": 1
19345
+ },
19346
+ "def": {
19347
+ "type": "optional",
19348
+ "innerType": {
19349
+ "~standard": {
19350
+ "vendor": "zod",
19351
+ "version": 1
19352
+ },
19353
+ "def": {
19354
+ "type": "string"
19355
+ },
19356
+ "type": "string",
19357
+ "format": null,
19358
+ "minLength": null,
19359
+ "maxLength": null
19360
+ }
19361
+ },
19362
+ "type": "optional"
19363
+ },
16144
19364
  "answer": {
16145
19365
  "~standard": {
16146
19366
  "vendor": "zod",
@@ -16227,6 +19447,29 @@
16227
19447
  },
16228
19448
  "type": "object"
16229
19449
  },
19450
+ "comment": {
19451
+ "~standard": {
19452
+ "vendor": "zod",
19453
+ "version": 1
19454
+ },
19455
+ "def": {
19456
+ "type": "optional",
19457
+ "innerType": {
19458
+ "~standard": {
19459
+ "vendor": "zod",
19460
+ "version": 1
19461
+ },
19462
+ "def": {
19463
+ "type": "string"
19464
+ },
19465
+ "type": "string",
19466
+ "format": null,
19467
+ "minLength": null,
19468
+ "maxLength": null
19469
+ }
19470
+ },
19471
+ "type": "optional"
19472
+ },
16230
19473
  "answer": {
16231
19474
  "~standard": {
16232
19475
  "vendor": "zod",
@@ -16430,6 +19673,29 @@
16430
19673
  },
16431
19674
  "type": "object"
16432
19675
  },
19676
+ "comment": {
19677
+ "~standard": {
19678
+ "vendor": "zod",
19679
+ "version": 1
19680
+ },
19681
+ "def": {
19682
+ "type": "optional",
19683
+ "innerType": {
19684
+ "~standard": {
19685
+ "vendor": "zod",
19686
+ "version": 1
19687
+ },
19688
+ "def": {
19689
+ "type": "string"
19690
+ },
19691
+ "type": "string",
19692
+ "format": null,
19693
+ "minLength": null,
19694
+ "maxLength": null
19695
+ }
19696
+ },
19697
+ "type": "optional"
19698
+ },
16433
19699
  "answer": {
16434
19700
  "~standard": {
16435
19701
  "vendor": "zod",
@@ -16516,6 +19782,29 @@
16516
19782
  },
16517
19783
  "type": "object"
16518
19784
  },
19785
+ "comment": {
19786
+ "~standard": {
19787
+ "vendor": "zod",
19788
+ "version": 1
19789
+ },
19790
+ "def": {
19791
+ "type": "optional",
19792
+ "innerType": {
19793
+ "~standard": {
19794
+ "vendor": "zod",
19795
+ "version": 1
19796
+ },
19797
+ "def": {
19798
+ "type": "string"
19799
+ },
19800
+ "type": "string",
19801
+ "format": null,
19802
+ "minLength": null,
19803
+ "maxLength": null
19804
+ }
19805
+ },
19806
+ "type": "optional"
19807
+ },
16519
19808
  "answer": {
16520
19809
  "~standard": {
16521
19810
  "vendor": "zod",
@@ -16602,6 +19891,29 @@
16602
19891
  },
16603
19892
  "type": "object"
16604
19893
  },
19894
+ "comment": {
19895
+ "~standard": {
19896
+ "vendor": "zod",
19897
+ "version": 1
19898
+ },
19899
+ "def": {
19900
+ "type": "optional",
19901
+ "innerType": {
19902
+ "~standard": {
19903
+ "vendor": "zod",
19904
+ "version": 1
19905
+ },
19906
+ "def": {
19907
+ "type": "string"
19908
+ },
19909
+ "type": "string",
19910
+ "format": null,
19911
+ "minLength": null,
19912
+ "maxLength": null
19913
+ }
19914
+ },
19915
+ "type": "optional"
19916
+ },
16605
19917
  "answer": {
16606
19918
  "~standard": {
16607
19919
  "vendor": "zod",
@@ -16688,6 +20000,29 @@
16688
20000
  },
16689
20001
  "type": "object"
16690
20002
  },
20003
+ "comment": {
20004
+ "~standard": {
20005
+ "vendor": "zod",
20006
+ "version": 1
20007
+ },
20008
+ "def": {
20009
+ "type": "optional",
20010
+ "innerType": {
20011
+ "~standard": {
20012
+ "vendor": "zod",
20013
+ "version": 1
20014
+ },
20015
+ "def": {
20016
+ "type": "string"
20017
+ },
20018
+ "type": "string",
20019
+ "format": null,
20020
+ "minLength": null,
20021
+ "maxLength": null
20022
+ }
20023
+ },
20024
+ "type": "optional"
20025
+ },
16691
20026
  "answer": {
16692
20027
  "~standard": {
16693
20028
  "vendor": "zod",