-
I have GET parameters I would like to use/document with apispec.
Example: I have the GET parameter **color** so I do requests like
`GET /pets?color=black`
```
@app.route('/pets')
@use_kwa…
-
I have upgraded my packages to:
flask-2.2.2
injector-0.20.1
Flask-injector-0.14.1
apispec-6.0.2
flask-apispec-0.11.4
I'm using Flask-apispec to auto-generate api documentation, and I'm using …
-
For OpenAPI support, we will use [apispec](https://apispec.readthedocs.io/).
-
Hello, I'm getting the error below. Am I missing anything?
```
../../../env36/lib64/python3.6/site-packages/flask_base/app.py:1: in
from flasgger import Swagger, LazyString, LazyJSONEncoder
…
-
Hi,
I believe that due to recent updates in both `apispec` and `marshmallow` my application started to throw warnings and exceptions (e.g., `marshmallow.exceptions.RegistryError`, `apispec.exceptio…
-
Hello!
I discovered that documentation of constraint conditions is not working properly while migrating to Spring Boot version 3.
I think adding `jakarta.validation.constraints` classes within …
-
Currently running v0.4.0 and noticing that if you attempt to pass `None` as the first argument to `marshal_with`, you receive a 500 response. Here's the minimum example to reproduce:
```Python
imp…
-
```
apispec.exceptions.APISpecError: One or more HTTP methods are invalid: connect, update, websocket, move, copy, checkout, propfind, trace, lock, report, uncheckin, version-control, proppatch, mkco…
-
#### Example:
This `API` crd.
```go
type APISpec struct {
Mode Mode `json:"mode"`
UpdateTimeStamp string `json:"updateTimeStamp"`
Replicas int `json:"replic…
-
I am using `oneOfSchema` one of my api endpoints.
I also use autogenerated documentation using `apispec` library.
I was expecting to see generated docs based on `type_field` and `type_schemas`. …