I have mongoose schema as:
var Organization = new Schema({ name: String, address: { street : String, city: String } }, { collection: \'organization
Now you can update directly .
OrganizationModel.update( {name: 'Koka'}, {'address.street': 'new street name'}, callback);