Вы можете определить нашу схему следующим образом:
const userSchema = new mongoose.Schema(
{
__id: mongoose.Schema.Types.ObjectId,
email: {
type: String,
required: true
},
name: {
type: String,
required: true
},
password: {
type: String
}
},
{
timestamps: true
}
)