mirror of
https://github.com/fastapi/fastapi.git
synced 2025-12-23 22:29:34 -05:00
* ✨ Do not require default value in Query(), Path(), Header(), etc * 📝 Update source examples for docs with default and required values * ✅ Update tests with new default values and not required Ellipsis * 📝 Update docs for Query params and update info about default value, required, Ellipsis
20 lines
523 B
Python
20 lines
523 B
Python
from fastapi import Body, FastAPI
|
|
from pydantic import BaseModel, Field
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class Item(BaseModel):
|
|
name: str
|
|
description: str | None = Field(
|
|
default=None, title="The description of the item", max_length=300
|
|
)
|
|
price: float = Field(gt=0, description="The price must be greater than zero")
|
|
tax: float | None = None
|
|
|
|
|
|
@app.put("/items/{item_id}")
|
|
async def update_item(item_id: int, item: Item = Body(embed=True)):
|
|
results = {"item_id": item_id, "item": item}
|
|
return results
|