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
Describe the bug
Framework is failing to parse the document with scientific notation values for integers properties with message like Failed to parse input: The input string '1.1e3' was not in a correct format..
I identified following list of properties which show that issue. This list is definitely not exhaustive.
Expected behaviour
Parse should succeed for all the values which are positive integers.
Example of correct values: 1e0, 1.1e1, 1.01e2, 10e-1
Example of incorrect values: 1e-1, 0.1e0, 1.01e1
Screenshots/Code Snippets
Additional context
I was checking in the https://editor.swagger.io/ and parsing is successful for integers in scientific notation. For a fraction number in scientific notation the editor is failing to parse the document.
The text was updated successfully, but these errors were encountered:
Describe the bug
Framework is failing to parse the document with scientific notation values for integers properties with message like
Failed to parse input: The input string '1.1e3' was not in a correct format.
.I identified following list of properties which show that issue. This list is definitely not exhaustive.
OpenApi File To Reproduce
Expected behaviour
Parse should succeed for all the values which are positive integers.
Example of correct values:
1e0
,1.1e1
,1.01e2
,10e-1
Example of incorrect values:
1e-1
,0.1e0
,1.01e1
Screenshots/Code Snippets
Additional context
I was checking in the https://editor.swagger.io/ and parsing is successful for integers in scientific notation. For a fraction number in scientific notation the editor is failing to parse the document.
The text was updated successfully, but these errors were encountered: