Francois
Francois
The config sounds fairly simple to implement. Why don't you do it @awalterschulze and send a PR?
@timgabrhel, this is a known limitation with the ServiceBusTrigger when using the Consumption plan together with only the "Listen" policy (instead of the "Manage" policy). Refer to [these docs](https://learn.microsoft.com/en-us/azure/azure-functions/event-driven-scaling#understanding-scaling-behaviors) but...
This is currently possible in `Swashbuckle.AspNetCore` version `5.0.0-rc4` ``` app.UseSwaggerUI(c => { ... c.DefaultModelsExpandDepth(-1); // hide completely // c.DefaultModelsExpandDepth(0); // collapse ... }); ```