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