Hi guys,
I have a model named Account, an AccountSerializer (for get request) and CreateAccountSerializer (with fewer fields, for post and put requests).
1) How can I make these reflect in the schema?
2) Is it mandatory to use GenericAPIView subclass so it can generate proper schema? Can I use APIView only?
Thanks!
Jon