I did custom routable method with @action decorator for DRF ViewSet.
This rout implements multiple methods (GET, POST, DELETE). Is possible to have different descriptions for each method, or even to create different @extend_schema definitions for each method?
Uroš
According to documentation link @<function_name>.mapping.delete will allow for splitting function in multiple methods (.delete for my case). Now it is trivial to properly document each method.