Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Swagger UI - can't enable JSON editor for the request body

I have some issue to make it work, according to following link below, the JSON editor for the request body (disabled by default).

https://github.com/jensoleg/swagger-ui

How can I enable it?

like image 590
Artur Avatar asked Sep 17 '25 20:09

Artur


1 Answers

I found the solution. Add the following into index.html in the new SwaggerUi({}) constructor:

docExpansion: "none",
sorter: "alpha",
jsonEditor: true,
defaultModelRendering: 'schema',
showRequestHeaders: true
like image 112
Artur Avatar answered Sep 20 '25 12:09

Artur