We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 031d39d commit d2537dcCopy full SHA for d2537dc
packages/models-library/src/models_library/api_schemas_webserver/groups.py
@@ -29,7 +29,7 @@
29
)
30
from ..users import UserID, UserNameID
31
from ..utils.common_validators import create__check_only_one_is_set__root_validator
32
-from ._base import InputSchema, OutputSchema
+from ._base import InputSchema, OutputSchema, OutputSchemaWithoutCamelCase
33
34
S = TypeVar("S", bound=BaseModel)
35
@@ -248,8 +248,7 @@ def from_model(
248
249
250
251
-class GroupUserGet(BaseModel):
252
- # OutputSchema
+class GroupUserGet(OutputSchemaWithoutCamelCase):
253
254
# Identifiers
255
id: Annotated[UserID | None, Field(description="the user's id")] = None
0 commit comments