We make use of the built-in OpenAPI schema generation feature of Django Rest Framework. The feature is described in the following articles:
- https://www.django-rest-framework.org/topics/documenting-your-api/
- https://www.django-rest-framework.org/api-guide/schemas/
Swagger UI is served at /docs
and a JSON OpenAPI schema at /docs/schema
.
The feature in DRF largely works by trying to introspect views. There are a few things to be aware of:
-
During introspection, generic view sets (in our code base, usually inheriting from
CoreViewSet
) will have theirget_serializer()
method (and, hence,get_serializer_context()
) called withoutself.kwargs
being populated. -
Where action methods are added to a generic view set (e.g. the
archive
andunarchive
methods on many of our view sets), DRF will assume that the view set’s serializer is used for requests and responses.If this is wrong, the simplest thing to do is use the
datahub.core.schemas.StubSchema
to suppress request and response schema generation. Seedatahub.omis.order.views.OrderViewSet
for an example. -
Generic view sets must specify a serializer class.
If the view doesn’t, it’s not a generic view set and so you should use
APIView
instead.
-
NestedRelatedField
is currently rendered as a string. Currently, all the logic pertaining to particular fields lies in DRF’sAutoSchema
so this can’t be changed without replacingAutoSchema
. -
Pagination properties are missing from responses. This is a DRF limitation.
-
Endpoints using
StubSchema
orAPIView
will be missing request and response schemas (where they have them).This could be overcome with custom
AutoSchema
subclasses. These could, for example, allow serializers to be explicitly specified or allow a schema in OpenAPI format to be explicitly specified (depending on the use case).