connect('mongodb://localhost:27017/gh1204'); var Schema = mongoose.Schema; var measurement = new Schema({ name: {type: String, required: true}, instruction: {type: String, required: true} }); var size = new Schema({ name: {type: String, required: true}, lengths: [String] }); ...