I've read quite some docs now (and also found the question here, but it is still unclear what a document is.
Take the following example:
"users": [
{
name: { first: "Alan", last: "Turing" },
contact: { phone: { type: "cell", number: "111-222-3333" } }
},
{
name: { first: "John", last: "Doe" },
contact: { phone: { type: "cell", number: "111-222-3333" } }
}
]
My current assumption is that
{
name: { first: "Alan", last: "Turing" },
contact: { phone: { type: "cell", number: "111-222-3333" } }
}
is one document. So the 16MB limit applies to this whole array element. So whatever is in this document, like phone and name, are only embedded documents and therefore do not have this 16MB limit on their own.
Is this correct?