Documents
MongoDB store documents using BSON (Binary JSON).
BSON is an extension of JSON (JavaScript Object Notation).
Example document
{
_id: ObjectId('')
}
Document size limitation
MongoDB document have a size limitation of 16 MB.
It is to prevent too much information in a single document which causes bad performance.