from typing import List from pydantic import BaseModel from app.schemas import PriceRecord class LatestPriceResponse(BaseModel): """Latest price scrape response schema.""" status: str message: str prices_scraped: int prices_stored: int scrape_timestamp: str prices: List[PriceRecord]