Introduction
This pattern helps store related data together in one place. It makes reading data faster and simpler.
When you have a main item with many related details, like a blog post with many comments.
When the related data is mostly read together with the main data.
When the number of related items is not too large to slow down the main document.
When you want to keep data organized and easy to access in one document.