const mongoose = require("mongoose"); const Schema = mongoose.Schema; const BookSchema = new Schema({ title: {type: String, required: true}, authors: { type: [String] }, description: { type: String }, system: {type: String, required: true}, image: { type: String }, }); module.exports = mongoose.model('Book', BookSchema);