Please take a look at my code. I am having a validation error but I am quite sure that I put my documents on the correct format.
MY MODEL
You seem to have asked the same question about the array in a separate post - you should avoid duplicating your questions.
The answer is shorter -> you have no need of processing your req.body as it matches the required schema of your model. This should work fine:
ordersRouter.route('/placeOrder')
.post(function (req, res) {
Orders.create(req.body, function (err, result) {
if (err) throw err;
// send success message back
});
});