django-rest-swagger icon indicating copy to clipboard operation
django-rest-swagger copied to clipboard

Swagger Documentation Generator for Django REST Framework: deprecated

Results 103 django-rest-swagger issues
Sort by recently updated
recently updated
newest added

According to the spec, `type` cannot point to a custom type, which should be performed with `$ref`. Also, validation produced warnings about multiple unreferenced models (mostly `Write...Serializer`) which were previously...

**Problem :** Authorization header is missing in request payload from swagger UI ``` django-rest-swagger==2.2.0 djangorestframework==3.8.2 ``` ``` schema_view = get_swagger_view(title='Pastebin API') urlpatterns = [ url(r'docs', schema_view), ] ``` ``` SWAGGER_SETTINGS...

I have a url as ``` url(r'^test-me/(?P(pass|fail))/(?P{uuid})/$'.format(uuid=UUID_REGEX), verify_test, name='verify-test'), ``` - where `test_type` can be either `pass` or `fail` This url is working fine and correctly validating when `test_type not...

`{"errors": { "retweeted_status": [ "Invalid pk \"0\" - object does not exist." ], "replied_status": [ "Invalid pk \"0\" - object does not exist." ] } } ` After rest-framework==3.8.2 update...

The parameter which type is 'file' in my API service, but when I use swagger, the document show the type is 'string', and if you wanna try it, it cannot...

```json {"swagger": "2.0", "info": {"title": "My great API", "version": ""}, "paths": {}}. ``` How do I specify version ? Some tools like [AutoRest](https://www.npmjs.com/package/autorest) don't like empty version.

Using Python 3.6 and latest django-rest-swagger. I get a string type instead.

I'm using Django + MongoEngine. ListField(DictField()) is interpreted as ListField(StringField()) Is there anything that I'm missing? ``` from mongoengine import * class CompanyDetails(Document): locations = ListField(DictField()) employees_count = IntField(null =...

Exactly what the title says. DRF and DRS both at latest version. Can't get any sort of file upload picker to display. Using FileField in serializer and have tried FileUploadParser,...

Many people use django_filters to handle API parameters. If this is already supported, please add an example. If not, this is a feature request. Maybe I will contribute to do...