One of my endpoints returns a JSON (not huge, around 2MB). Trying to run GET on this endpoint in swagger-ui
results in the browser hanging for a few minutes. After this time, it finally displays the JSON.
Is there a way to define that the response shouldn't be rendered but provided as a file to download instead?
I'm using OpenAPI 3, and I tried the following:
content:
application/json:
schema:
type: string
format: binary
taken from the documentation. Still, swagger-ui renders the response.
Has anyone had the same problem?