We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now if the spec has an unrecognized format, "serve" will fail:
validating OpenAPI failed: invalid components: unsupported 'format' value "ulid"
OpenAPI considers the format to be freeform, a hint to clients, so we can afford to be less strict.
Kin has an option for this, so all it would take is to do:
openapi3.SchemaFormatValidationDisabled = true
somewhere before openapi3.NewLoader().
The text was updated successfully, but these errors were encountered:
This would help me too. Any progress?
Sorry, something went wrong.
#63 fix: don't crash on invalid formats
f59073f
Fixed in v0.3.2
No branches or pull requests
Right now if the spec has an unrecognized format, "serve" will fail:
OpenAPI considers the format to be freeform, a hint to clients, so we can afford to be less strict.
Kin has an option for this, so all it would take is to do:
somewhere before openapi3.NewLoader().
The text was updated successfully, but these errors were encountered: