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