Top "Swagger" questions

Swagger is a framework implementation for describing, producing, consuming, and visualizing RESTful web services, based on the OpenAPI specification

JSON API examples in Swagger 2.0

I'm trying to create example responses for an endpoint with Swagger 2.0. 200: description: Successful response schema: type: object $ref: "#/definitions/User" …

swagger json-api swagger-2.0
Add Swagger Basic AUTH to Spring Boot App

Requirements: Spring Boot application with Springfox Add BASIC authentication to Swagger Pass on all other requests Code: implemented @EnableWebSecurity @Configuration …

java spring spring-boot swagger springfox
How to return an array of objects in SwaggerHub?

I am defining an API specification in SwaggerHub using OpenAPI 2.0. The /contacts request returns an array of contacts. The definition …

swagger openapi swagger-2.0
django rest framework - How to add post parameters to api document(drf_yasg)?

x_param = openapi.Parameter('x', in_=openapi.IN_FORM, description='srring', type=openapi.TYPE_STRING) y_param = openapi.Parameter('y', …

django django-rest-framework swagger drf-yasg
Swagger-UI Response Content Type

Is it possible to add the Response Content Type select box without creating the Response Class (Status 200) schema? My web …

swagger swagger-ui http-accept-header
django_rest_swagger - 'staticfiles' is not a registered tag library. Must be one of:

Have this error while trying to autogenerate API docs for django rest framework in django 2.2.4, from what I'm seeing in …

python django swagger django-rest-swagger
Good rest code generation and documentation tool

I have been considering a documentation tool for building a backend for a web service to be used in multiple …

rest swagger apiblueprint raml
configure swagger-ui with maven

I am integrating my JAX-RS REST project with Swagger. I read many documentation and tutorials and my favourite figure is …

java jax-rs swagger swagger-ui swagger-2.0
How to set up Swashbuckle vs Microsoft.AspNetCore.Mvc.Versioning

We have asp.net core webapi. We added Microsoft.AspNetCore.Mvc.Versioning and Swashbuckle to have swagger UI. We specified …

c# asp.net-core swagger swashbuckle