Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for hidden_path (0.12 seconds)

  1. tests/test_param_include_in_schema.py

        hidden_header: str | None = Header(default=None, include_in_schema=False),
    ):
        return {"hidden_header": hidden_header}
    
    
    @app.get("/hidden_path/{hidden_path}")
    async def hidden_path(hidden_path: str = Path(include_in_schema=False)):
        return {"hidden_path": hidden_path}
    
    
    @app.get("/hidden_query")
    async def hidden_query(
        hidden_query: str | None = Query(default=None, include_in_schema=False),
    ):
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 8.6K bytes
    - Click Count (0)
Back to Top