Coverage for docs_src / schema_extra_example / tutorial003_an_py310.py: 100%
13 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-04-06 01:24 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-04-06 01:24 +0000
1from typing import Annotated 1abfcde
3from fastapi import Body, FastAPI 1abfcde
4from pydantic import BaseModel 1abfcde
6app = FastAPI() 1abfcde
9class Item(BaseModel): 1abfcde
10 name: str 1abcde
11 description: str | None = None 1abfcde
12 price: float 1abcde
13 tax: float | None = None 1abfcde
16@app.put("/items/{item_id}") 1abfcde
17async def update_item( 1abfcde
18 item_id: int,
19 item: Annotated[
20 Item,
21 Body(
22 examples=[
23 {
24 "name": "Foo",
25 "description": "A very nice Item",
26 "price": 35.4,
27 "tax": 3.2,
28 }
29 ],
30 ),
31 ],
32):
33 results = {"item_id": item_id, "item": item} 1ghij
34 return results 1ghij