import shortid from 'shortid'; import Metadata from './Metadata.mongo'; export default { _id: { type: String, required: true, default: shortid.generate, }, discordId: { type: String, required: true, unique: false, }, organizationId: { type: String, required: true, }, messageId: { type: String, required: true, }, helpful: { type: Boolean, required: false, }, queryId: { type: String, required: false, default: null, }, meta: Metadata, };