Skip to content

0.16.0

Compare
Choose a tag to compare
@vitalik vitalik released this 06 Oct 15:42
· 805 commits to master since this release
dc304cc

OpenAPI schemas names

Generating OpenAPI automatically created schema names changed for duplicated names (see #230)
Now instead of silence (or exceptions on other cases) django-ninja will just add sequential number suffix to the schema name in OpenAPI spec.
For example if you already have schema called "User" and in some other module you create another "User" schema - the second will have name "User2" in openapi json.

Other