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
{{ message }}
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
Description
I need enums of strings, but in the bundled openapi.yaml I get an incorrect enum-value for '08' and '09'.
The apostrophe in the bundled openapi.yaml is removed for this values... I have no idea
swagger-cli version
4.0.4
OpenAPI declaration file content or url
any-title-here.yml
Based on my understanding, the issue appears to be related to the use of the octal number system. Specifically, any numbers with any digit greater than seven are being parsed incorrectly.
The octal number system is a base-8 numeral system that uses eight digits (0-7). When a number is written with a leading zero, it is interpreted as an octal number. However, if the number contains any digit greater than seven, it exceeds the maximum value that can be represented in the octal system and may result in parsing errors.
Therefore, in your case, it is likely that the numbers with digits greater than seven are being interpreted as octal numbers and causing the parsing issues. To address this problem, you may need to consider using a different numbering system or modifying the way the numbers are represented to avoid the limitations of the octal system.
I have found the same issue with values such as '080', '090', '0008', etc.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Description
I need enums of strings, but in the bundled openapi.yaml I get an incorrect enum-value for '08' and '09'.
The apostrophe in the bundled openapi.yaml is removed for this values... I have no idea
swagger-cli version
4.0.4
OpenAPI declaration file content or url
any-title-here.yml
generated openapi.yaml
The text was updated successfully, but these errors were encountered: