Map Schema
Reviving maps
// bad
{
"foo": [ 1, 2, 3],
"bar": "John Smith",
"baz": {
"prop": "value"
}
}
// good
{
"john": {
"name": "John Smith",
"email": "john@yahoo.com"
},
"mary": {
"name": "Mary Poppins",
"email": "mary@gmail.com"
}
}Last updated