from pydantic import BaseModel, EmailStr from typing import List, Any, Dict class EmailSchema(BaseModel): email: List[EmailStr] body: Dict[str, Any]