diff --git a/services/forecasting/app/schemas/forecasts.py b/services/forecasting/app/schemas/forecasts.py index e2ab240d..c5cb5ddf 100644 --- a/services/forecasting/app/schemas/forecasts.py +++ b/services/forecasting/app/schemas/forecasts.py @@ -22,7 +22,6 @@ class AlertType(str, Enum): class ForecastRequest(BaseModel): """Request schema for generating forecasts""" - tenant_id: str = Field(..., description="Tenant ID") product_name: str = Field(..., description="Product name") forecast_date: date = Field(..., description="Starting date for forecast") forecast_days: int = Field(1, ge=1, le=30, description="Number of days to forecast")