There is a structure:
var ticketSchema = new mongoose.Schema({ title: { type : String, required : true }, domainid: { type : String, required : true }, requests: { request: { type: String } }, active: { type : Boolean, required : true } }); How can I make a request to be a separate object within the current one, and so that it can be created as many times as desired within the current collection object?