andrey pechorin
andrey pechorin
@jtannas hello, I made a updates and rework this commit: https://github.com/rswag/rswag/pull/605 maybe this will work :)
+1. This is kind of expected problem, where should be some way for both: 1) define parameter and 2) provide way not to send null string "" value.
Hello, thanks for detailed report; can you also say what filetype do you work on?
Sorry for question: are there any workaround for this? For now it's impossible to validate submitted via form data file :/
This code/patch works for me: ```ruby module StringValidatorPatch def coerce_and_validate(value, schema, **_keyword_args) # Diff: # :- return OpenAPIParser::ValidateError.build_error_result(value, schema) unless value.kind_of?(String) # # :+ if !value.is_a?(String) if schema.format == 'binary'...