2025-03-08 17:26:09 +01:00

53 lines
1.2 KiB
Python

from uuid import UUID
from pydantic import BaseModel, ConfigDict, Field
config = ConfigDict(from_attributes=True)
class NonsenseSchema(BaseModel):
model_config = config
name: str = Field(
title="",
description="",
)
description: str = Field(
title="",
description="",
)
# class Config:
# from_attributes = True
# json_schema_extra = {
# "example": {
# "name": "Name for Some Nonsense",
# "description": "Some Nonsense Description",
# }
# }
class NonsenseResponse(BaseModel):
model_config = config
id: UUID = Field(
title="Id",
description="",
)
name: str = Field(
title="",
description="",
)
description: str = Field(
title="",
description="",
)
# class Config:
# from_attributes = True
# json_schema_extra = {
# "example": {
# "config_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
# "name": "Name for Some Nonsense",
# "description": "Some Nonsense Description",
# }
# }