from pydantic import BaseModel class CommentsBase(BaseModel): body: str class Comments(CommentsBase): id: int post_id: int class Config: orm_mode = True