Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for example_examples (0.05 sec)

  1. tests/test_schema_extra_examples.py

        with pytest.warns(FastAPIDeprecationWarning):
    
            @app.post("/example_examples/")
            def example_examples(
                item: Item = Body(
                    example={"data": "Overridden example"},
                    examples=[
                        {"data": "examples example_examples 1"},
                        {"data": "examples example_examples 2"},
                    ],
                ),
            ):
                return item
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 32.2K bytes
    - Viewed (0)
Back to top