I would like to know if mongodb has a limitation on the depth of embedded documents in a mongo document. I am not concerned about the 16MB limit on mongo documents only about the number of subsequently embedded documents allowed. In other words, in the example below how many times is the child embedded document allowed to be repeated until mongo does not allow of insertion of this document into a mongodb collection.
{
child: {
child: {
child : {
(child repeated n times)
}}}}