import SimpleSchema from 'simpl-schema'; import STORAGE_LIMITS from '/imports/constants/STORAGE_LIMITS.js'; import createPropertySchema from '/imports/api/properties/subSchemas/createPropertySchema.js'; let NoteSchema = createPropertySchema({ name: { type: String, optional: true, max: STORAGE_LIMITS.name, }, summary: { type: 'inlineCalculationFieldToCompute', optional: true, }, description: { type: 'inlineCalculationFieldToCompute', optional: true, }, }); let ComputedOnlyNoteSchema = createPropertySchema({ summary: { type: 'computedOnlyInlineCalculationField', optional: true, }, description: { type: 'computedOnlyInlineCalculationField', optional: true, }, }); const ComputedNoteSchema = new SimpleSchema() .extend(NoteSchema) .extend(ComputedOnlyNoteSchema); export { NoteSchema, ComputedNoteSchema, ComputedOnlyNoteSchema, };