On Mon, Dec 17, 2012 at 2:01 AM, Robert Sayre <[email protected]> wrote: > > The first case that can come up is editing documents that have been > refactored. It's quite common to refactor JSON documents as below when > a little extra metadata is needed for a collection: > > { "foo":[1,2,3] } > > then becomes > > { > "foo": > "bar": "baz", > "members": [1,2,3] > } >
Oh drat, I missed a pair of brackets here.
I meant:
{
"foo":
{
"bar": "baz",
"members": [1,2,3]
}
}
- Rob
