import { Schema } from 'mongoose' export const customfieldValue = new Schema( { _customfieldId: { type: Schema.Types.ObjectId }, type: { type: String, required: true }, values: [Schema.Types.Mixed], value: [Schema.Types.Mixed] }, { _id: false } )