from pydantic import BaseModel class HouseResponse(BaseModel): id: str description: str address: str city: str country: str price: float