[QUESTION] Change "default" name on Swagger page
See original GitHub issueHello.
I have found how to change title and description of Swagger page but couldn’t find where to change this default
block name?
app = FastAPI(
title='Bla API',
description='Bla description',
...
Issue Analytics
- State:
- Created 4 years ago
- Reactions:5
- Comments:5 (2 by maintainers)
Top Results From Across the Web
How change default heading in swagger UI - Boomi Community
In the Swagger Visualization Portal, is it possible to rename the "default" group to something ... I want to name it something more...
Read more >How to change Swagger-UI "Default" Path - Stack Overflow
I want to get rid of the "Default" that appears as a group title of my swagger-UI.
Read more >Swagger Codegen Documentation
Swagger Codegen Documentation. The Swagger Codegen is an open source code-generator to build server stubs and client SDKs directly from a Swagger defined ......
Read more >Describing Parameters - Swagger
Query parameters are the most common type of parameters. They appear at the end of the request URL after a question mark (...
Read more >Adding Examples - Swagger
Note: Do not confuse example values with default values. An example illustrates what the value is ... As you can see, each example...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
That’s the route tag for those routes, which is set to “default” if none is specified. You can set one either per route or per router, it’s mainly to help you organize your documentation by grouping API endpoints together.
default can be replaced by using tags attributes in decorator @app.get(“/”, tags=[“health Check”])