quart-schema icon indicating copy to clipboard operation
quart-schema copied to clipboard

Quart-Schema is a Quart extension that provides schema validation and auto-generated API documentation.

Results 18 quart-schema issues
Sort by recently updated
recently updated
newest added

As far as I can tell, nothing in this module allows you to specify example responses for different models. It would be nice if, perhaps through some decorator applied to...

**Description** Currently, the openapi.json is faulty in the sense that even thought the schemas in the components property exists, they are not referenced in the requests/responses section. **Code to reproduce**...

The readme states that "there is currently no documentation standard for WebSockets." This is however not completely true as there is the [AsyncAPI specification](https://github.com/asyncapi/spec) which complements OpenAPI for message-driven protocols...

It's common to use Generics to reuse a wrapper schema to enclose many different payload schemas existing on the data attribute. This is what I'm currently doing but when I...

- [x] Stop altering the JSONProvider (do casing directly with dicts) - [ ] Document how to order the openapi schema routes - [ ] Document how to customise the...

Right now it is impossible to customise schema without subclassing `QuartSchema` and using it everywhere. E.g. I needed to add `operationId` to my schema, and the only way is to...

How to indicate and type hint this? @validate_response(list[Model]) ??