When defining an array of objects in a Mongoose schema as so:
var mySchema = new mongoose.Schema({
stuff : [ Object ]
});
When trying to save an instance of this object, with 'stuff' filled up with some objects, Mongoose gives the following error: "Object # has no method 'cast'"
What is the correct way to declare an array of objects in Mongoose?