Coverage for docs_src/schema_extra_example/tutorial004.py: 100%

13 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2025-05-05 00:03 +0000

1from typing import Union 1abcdef

2 

3from fastapi import Body, FastAPI 1abcdef

4from pydantic import BaseModel 1abcdef

5 

6app = FastAPI() 1abcdef

7 

8 

9class Item(BaseModel): 1abcdef

10 name: str 1abcdef

11 description: Union[str, None] = None 1abcdef

12 price: float 1abcdef

13 tax: Union[float, None] = None 1abcdef

14 

15 

16@app.put("/items/{item_id}") 1abcdef

17async def update_item( 1abcdef

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} 1ghijkl

40 return results 1ghijkl