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
Idiomatic JSON naming convention is to use plural names for collections, e.g:
{
"name": [...]
}
Solution
We propose using plural names to hint that the value is a collection type:
{
"names": [...]
}
This convention provides a hint to the user to indicate that the value referenced by the key is a collection, and makes it easier to navigate the JSON structure.