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
Why, the problem is connected to the conversion from yaml to the json schema within io.swagger.v3.parser.OpenAPIV3Parser. I will instead create a bug in [https://github.com/swagger-api/swagger-parser/issues]swagger-api/swagger-parser#1205
Version
Context
I encountered an exception which looks suspicious while utilizing the enum property with the value "YES"
Do you have a reproducer?
Steps to reproduce
->
{"code":400,"message":"$.isMale: does not have a value in the enumeration [true, MAYBE, NEVER]"}
Extra
Work around: Add " around the enum value "YES", see below
-> OK
->
{"code":400,"message":"$.isMale: does not have a value in the enumeration [YES, MAYBE, NEVER]"}
The text was updated successfully, but these errors were encountered: