You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this great library. Maybe I'm missing something (haven't really used OpenAPI much), but an array with nullable items does not seem to come through with items wrapped in Option. For example:
"Example": {
"title": "Example",
"required": [ "items" ],
"type": "object",
"properties": {
"items": {
"title": "Items",
"type": "array",
"items": {
"type": "integer",
"nullable": true
},
"description": "Should be Option<int>, but is just int"
},
}
},
With this definition, Items is a List<int> rather than a List<Option<int>>. Is this a bug, or am I doing something wrong?
The text was updated successfully, but these errors were encountered:
Hi,
Thanks for this great library. Maybe I'm missing something (haven't really used OpenAPI much), but an array with nullable items does not seem to come through with items wrapped in
Option
. For example:With this definition,
Items
is aList<int>
rather than aList<Option<int>>
. Is this a bug, or am I doing something wrong?The text was updated successfully, but these errors were encountered: