const CustomerSchema = { customerId: Number, customerName: String, address: String, email: String, phoneNumber: String, creditLimit: Number, activeStatus: Boolean, customerType: String, remarks: String }; export { CustomerSchema };