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
Functions as input accept only keys in lower-case but first letters of keys in output from functions are in upper-case. Example:
POST /users accepts parameters like {"username": "test"} <- lower-case key
but
GET /users output is [{"Username": "test"}, ...] <- key with first upper-case letter
I think this should be consistent.
The text was updated successfully, but these errors were encountered:
Functions as input accept only keys in lower-case but first letters of keys in output from functions are in upper-case. Example:
POST /users accepts parameters like
{"username": "test"}
<- lower-case keybut
GET /users output is
[{"Username": "test"}, ...]
<- key with first upper-case letterI think this should be consistent.
The text was updated successfully, but these errors were encountered: