You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When displaying UsersCollection model swagger UI shows this:
UsersCollection {
items (array[UserKey])
}
User {
id (integer)
}
I think it should display items (array[User]) instead of items (array[UserKey]).
For me this is an issue because I declare many models with same id and different key to override model attributes for specific method - for example only email property for PUT /user and email and password for POST /user.
The text was updated successfully, but these errors were encountered:
models:
When displaying
UsersCollection
model swagger UI shows this:I think it should display
items (array[User])
instead ofitems (array[UserKey])
.For me this is an issue because I declare many models with same
id
and differentkey
to override model attributes for specific method - for example onlyemail
property forPUT /user
andemail
andpassword
forPOST /user
.The text was updated successfully, but these errors were encountered: