Coverage for docs_src / schema_extra_example / tutorial004_py310.py: 100%
12 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 fastapi import Body, FastAPI 1abgcdef
2from pydantic import BaseModel 1abgcdef
4app = FastAPI() 1abgcdef
7class Item(BaseModel): 1abgcdef
8 name: str 1abcdef
9 description: str | None = None 1abgcdef
10 price: float 1abcdef
11 tax: float | None = None 1abgcdef
14@app.put("/items/{item_id}") 1abgcdef
15async def update_item( 1abgcdef
16 *,
17 item_id: int,
18 item: Item = Body(
19 examples=[
20 {
21 "name": "Foo",
22 "description": "A very nice Item",
23 "price": 35.4,
24 "tax": 3.2,
25 },
26 {
27 "name": "Bar",
28 "price": "35.4",
29 },
30 {
31 "name": "Baz",
32 "price": "thirty five point four",
33 },
34 ],
35 ),
36):
37 results = {"item_id": item_id, "item": item} 1hijk
38 return results 1hijk