47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
from __future__ import annotations
|
|
|
|
from uuid import UUID
|
|
|
|
from pydantic import Field
|
|
|
|
from .common import ApiEnvelope, JsonList, RouteContract, SchemaModel
|
|
|
|
HTTP_METHOD = 'POST'
|
|
ROUTE_PATH = '/api/weather/water-need-prediction/'
|
|
|
|
|
|
class WeatherWaterNeedPredictionRequest(SchemaModel):
|
|
farm_uuid: UUID
|
|
|
|
|
|
class WaterNeedInsight(SchemaModel):
|
|
summary: str | None = None
|
|
irrigation_outlook: str | None = None
|
|
recommended_action: str | None = None
|
|
risk_note: str | None = None
|
|
confidence: float | None = None
|
|
|
|
|
|
class WeatherWaterNeedPredictionResponseData(SchemaModel):
|
|
farm_uuid: str
|
|
totalNext7Days: float | None = None
|
|
unit: str | None = None
|
|
categories: list[str] = Field(default_factory=list)
|
|
series: JsonList = Field(default_factory=list)
|
|
dailyBreakdown: JsonList = Field(default_factory=list)
|
|
insight: WaterNeedInsight = Field(default_factory=WaterNeedInsight)
|
|
knowledge_base: str | None = None
|
|
raw_response: str | None = None
|
|
|
|
|
|
class WeatherWaterNeedPredictionResponse(ApiEnvelope[WeatherWaterNeedPredictionResponseData]):
|
|
pass
|
|
|
|
|
|
CONTRACT = RouteContract(
|
|
method=HTTP_METHOD,
|
|
path=ROUTE_PATH,
|
|
request_model=WeatherWaterNeedPredictionRequest.__name__,
|
|
response_model=WeatherWaterNeedPredictionResponse.__name__,
|
|
)
|