test-space / testpkg /schemas.py
abhijitkumarjha88192's picture
First code coomit to check html and python api call working
9add385
raw
history blame contribute delete
313 Bytes
from pydantic import BaseModel, HttpUrl
from typing import Sequence
class MyDataModel(BaseModel):
id: int
text: str
description: str
class MyDataSearchResults(BaseModel):
results: Sequence[MyDataModel]
class CreateMyDataModelEntity(BaseModel):
id: int
text: str
description: str