Files
DiceCloud/app/imports/api/properties/Results.js

16 lines
280 B
JavaScript

import SimpleSchema from 'simpl-schema';
const ResultSchema = new SimpleSchema({
name: {
type: String,
optional: true,
},
// Expression of whether or not to apply the children
comparison: {
type: String,
optional: true,
},
});
export { ResultSchema };