File size: 278 Bytes
33b10b6
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
# Inside models.py (create this if you don't have it)
from pydantic import BaseModel
from typing import Dict, Any, Optional

class ServingSize(BaseModel):
    quantity: float

class ProductInfo(BaseModel):
    nutritionalInformation: Dict[str, Any]
    servingSize: ServingSize