For example, the only way right now that is documented to create a subdocument is: ```js const Model = mongoose.model('MyModel', schema); const obj = new Model(); const subDocument = obj.someSubSchema.create(); // <-- ``` I think it might be nice to document, if possible, a way to create the `subDocument` without having to create an instance of the model?