open api 3 schema generator for drf-json-api package based on drf-spectacular package.
python | django | drf-spectacular |
---|---|---|
3.8 | 4.0 | 0.25.x |
3.9 | 4.1 | 0.26.x |
3.10 | 4.2 | 0.27.x |
3.11 | 5.0 |
Note
Install django-rest-framework, django-rest-framework-json-api and drf-spectacular as described by them first.
Install using pip
...
$ pip install drf-spectacular-jsonapi
then configure the rest framework and drf-spectacular with the following settings inside your project settings.py
REST_FRAMEWORK = {
# YOUR SETTINGS
"DEFAULT_SCHEMA_CLASS": "drf_spectacular_jsonapi.schemas.openapi.JsonApiAutoSchema",
"DEFAULT_PAGINATION_CLASS": "drf_spectacular_jsonapi.schemas.pagination.JsonApiPageNumberPagination",
}
SPECTACULAR_SETTINGS = {
# To provide different schema components for patch and post
"COMPONENT_SPLIT_REQUEST": True
# to fix path parameter names for nested routes https://chibisov.github.io/drf-extensions/docs/#nested-routes
"PREPROCESSING_HOOKS": [
"drf_spectacular_jsonapi.hooks.fix_nested_path_parameters"
],
}
Same as the based drf-spectacular package, we provide versions below sem version 1.x.x to signal that every new version may potentially break you.