aio-openapi
aio-openapi copied to clipboard
A python module for building OpenAPI compliant asynchronous Rest Servers. Auto documentation, serialization and validation in the same unified API.
This is an auto-generated PR with dependency updates.
Is it possible to dump the content of `/spec` to a file?
The model specification should recognized `typing.Optional` as `required=False`
The following dataclass ```python @dataclass class Permission: methods: List[str] = fields.data_field( description="Http methods affected by this permission", items=fields.str_field( description="Http method", validator=fields.Choice(ALL_HTTP_METHODS), ), ) path: str = fields.str_field(description="api path", required=True) action:...