Add required details

This commit is contained in:
Jacob Windsor
2025-02-19 17:16:00 +01:00
parent 8a4c6c474b
commit 9cbbdcf323
3 changed files with 17 additions and 0 deletions
+11
View File
@@ -21,3 +21,14 @@ class HouseCreateRequest(BaseModel):
description="Description of the house",
examples=["A beautiful 3-bedroom house"],
)
square_feet: float = Field(
...,
description="Square footage of the house",
examples=[1500.00],
)
bedrooms: int = Field(
..., description="Number of bedrooms in the house", examples=[3]
)
bathrooms: float = Field(
..., description="Number of bathrooms in the house", examples=[2.5]
)