python-webservice/models/schemas.py

25 lines
408 B
Python
Raw Normal View History

2022-10-14 17:52:31 +00:00
from pydantic import BaseModel
from typing import Optional, List
# TO support creation and update APIs
2022-10-14 18:16:52 +00:00
class AlbumBase(BaseModel):
2022-10-14 17:52:31 +00:00
title: str
artist: str
price: float
# TO support list and get APIs
2022-10-14 18:16:52 +00:00
class Album(AlbumBase):
2022-10-14 17:52:31 +00:00
id: int
class Config:
orm_mode = True
# To support list cars API
class PaginatedAlbum(BaseModel):
limit: int
offset: int
data: List[Album]