File size: 221 Bytes
c169262
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from pydantic import BaseModel
from typing import List, Optional


class Product(BaseModel):
    product_id: str
    title: str
    description: str
    price: float
    category: str
    tags: Optional[List[str]] = None