Coverage for docs_src/schema_extra_example/tutorial004.py: 100%
13 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-12-04 08:29 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-12-04 08:29 +0000
1from typing import Union 1abcdefg
3from fastapi import Body, FastAPI 1abcdefg
4from pydantic import BaseModel 1abcdefg
6app = FastAPI() 1abcdefg
9class Item(BaseModel): 1abcdefg
10 name: str 1abcdefg
11 description: Union[str, None] = None 1abcdefg
12 price: float 1abcdefg
13 tax: Union[float, None] = None 1abcdefg
16@app.put("/items/{item_id}") 1abcdefg
17async def update_item( 1abcdefg
18 *,
19 item_id: int,
20 item: Item = Body(
21 examples=[
22 {
23 "name": "Foo",
24 "description": "A very nice Item",
25 "price": 35.4,
26 "tax": 3.2,
27 },
28 {
29 "name": "Bar",
30 "price": "35.4",
31 },
32 {
33 "name": "Baz",
34 "price": "thirty five point four",
35 },
36 ],
37 ),
38):
39 results = {"item_id": item_id, "item": item} 1hijklmn
40 return results 1hijklmn