Top "Swagger-editor" questions

Swagger Editor allows users to create API specifications using YAML inside the browser and to preview documentation in real time.

How to define Swagger 2.0 JSON to populate default body parameter object in Swagger UI?

Our current deployment patterns require me to manually write my swagger json output that will be consumed by the Swagger-based …

swagger swagger-ui swagger-2.0 swagger-editor
How to define path and formData parameters for the same operation in OpenAPI 2.0?

I have an image upload endpoint that looks like /test/{id}/relationships/image. I want to describe this endpoint using …

swagger swagger-2.0 openapi swagger-editor
Create complex types (definitions) in Swagger

I created a definition called Product and another called Text (see code). On parameters of paths I can not use …

yaml swagger swagger-2.0 swagger-editor
How do you define an array of different examples in a Swagger spec?

I'm trying to document an API with a static swagger file that can return some JSON that contains an array …

swagger swagger-ui swagger-2.0 swagger-editor
Possible to change the package name when generating client code

I am generating the client scala code for an API using the Swagger Edtior. I pasted the json then did …

scala swagger-editor
Swagger Schema error should NOT have additional properties

I am trying to create swagger json and trying to check it's validity in http://editor.swagger.io Upon validating …

swagger-2.0 swagger-editor
Swagger UI / Editor like page - add to my web site

I've created YAML file (and JSON file respectively) manually via swagger editor. Now I want to embed the cool auto …

yaml swagger swagger-ui swagger-2.0 swagger-editor
How to change https://<your-url>/swagger to custom in Swagger

I was tasked to install Swagger into Web API project. Installed: most recent version of Swashbuckle from nuget. (Swashbuckle.Core.…

swagger swagger-ui swagger-2.0 swashbuckle swagger-editor
In swagger, is it possible import multiple yaml files in one single file?

For the Client this one is inside of client.yaml /clients: get: tags: - "Clients" description: "List Clients The list …

swagger swagger-editor openapi
Swagger throws "Swagger Error Not a valid parameter definition" for body parameter

This is my input: parameters: - name: body in: body required: true type: object description: | The body. schema: $ref: '#/…

swagger swagger-editor