Is there a way to add field description to FastAPI swagger schema if I use dependency system?
I see no place to add descriptions in simple example from FastAPI docs
async def common_parameters(q: str = None, skip: int = 0, limit: int = 100):
return {"q": q, "skip": skip, "limit": limit}