File size: 566 Bytes
ab8b5a4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
"""
Global API Schema
"""
from pydantic import BaseModel
class ErrorDetail(BaseModel):
error: str
model_config = {
"json_schema_extra": {
"examples": [
{
"error": "description of the error",
}
],
}
}
class SuccessDetail(BaseModel):
success: str
model_config = {
"json_schema_extra": {
"examples": [
{
"success": "description of the success",
}
],
}
}
|