In-line and Swagger docs improvements on the User module and endpoints
Previously used `param: int = Path()` this worked but was incorrect. Correct usage is `param: Annotated[int, Path()]`