Skip to content

Commit

Permalink
fixes OAS
Browse files Browse the repository at this point in the history
  • Loading branch information
pcrespov committed Dec 11, 2024
1 parent 62e0688 commit 5fbe4e8
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,13 +228,11 @@ class GroupUserGet(BaseModel):
# OutputSchema

# Identifiers
id: Annotated[
UserID | None, Field(description="the user id", coerce_numbers_to_str=True)
] = None
id: Annotated[UserID | None, Field(description="the user's id")] = None
user_name: Annotated[UserNameID, Field(alias="userName")]
gid: Annotated[
GroupID | None,
Field(description="the user primary gid", coerce_numbers_to_str=True),
Field(description="the user primary gid"),
] = None

# Private Profile
Expand Down

0 comments on commit 5fbe4e8

Please sign in to comment.