I\'m setting up a little API, I do some data validation on the client side of my application and whilst I do that I\'m structuring my data to match my mongoose schema.
I
You can pass the req.body to your Car like this
req.body
Car
var car = new Car(req.body);
Here's also a reference: Passing model parameters into a mongoose model