I'm trying to hide the entire schemas section of the FastAPI generated swagger docs. I've checked the docs and tried this but the schema section still shows.
Код: Выделить всё
@Schema(hidden=True) class theSchema(BaseModel): category: str docExpansion does not appear to work either. What am I missing?
Код: Выделить всё
app = FastAPI( openapi_tags=tags_metadata, title="Documentation", description="API endpoints", version="0.1", docExpansion="None" ) Источник: https://stackoverflow.com/questions/707 ... ema-sectio