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
According to https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.3.md#encoding-object
" for string with format being binary – application/octet-stream " which would indicate the client method should allow to send stream of bytes (e.g. File as in other generators or Stream[Byte]), currently its being mapped to List[Boolean] which imho doesn't make sense.
According to https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.3.md#encoding-object
" for
string
with format beingbinary
–application/octet-stream
" which would indicate the client method should allow to send stream of bytes (e.g. File as in other generators orStream[Byte]
), currently its being mapped toList[Boolean]
which imho doesn't make sense.Relevant code is here: https://github.com/higherkindness/skeuomorph/blob/master/src/main/scala/higherkindness/skeuomorph/openapi/print.scala#L57
The text was updated successfully, but these errors were encountered: