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 62e0688 commit 5fbe4e8Copy full SHA for 5fbe4e8
packages/models-library/src/models_library/api_schemas_webserver/groups.py
@@ -228,13 +228,11 @@ class GroupUserGet(BaseModel):
228
# OutputSchema
229
230
# Identifiers
231
- id: Annotated[
232
- UserID | None, Field(description="the user id", coerce_numbers_to_str=True)
233
- ] = None
+ id: Annotated[UserID | None, Field(description="the user's id")] = None
234
user_name: Annotated[UserNameID, Field(alias="userName")]
235
gid: Annotated[
236
GroupID | None,
237
- Field(description="the user primary gid", coerce_numbers_to_str=True),
+ Field(description="the user primary gid"),
238
] = None
239
240
# Private Profile
0 commit comments