30 lines
611 B
JavaScript
30 lines
611 B
JavaScript
import { SimpleSchema } from 'meteor/aldeed:simple-schema';
|
|
|
|
export const ToolGroupBaseSchema = new SimpleSchema({
|
|
toolId: {
|
|
type: String,
|
|
label: 'Tool ID',
|
|
optional: true
|
|
},
|
|
toolItemId: {
|
|
type: String,
|
|
label: 'Tool Item ID',
|
|
optional: true
|
|
},
|
|
createdAt: {
|
|
type: Date
|
|
},
|
|
studyInstanceUid: {
|
|
type: String,
|
|
label: 'Study Instance UID'
|
|
},
|
|
timepointId: {
|
|
type: String,
|
|
label: 'Timepoint ID'
|
|
},
|
|
measurementNumber: {
|
|
type: Number,
|
|
label: 'Measurement Number'
|
|
}
|
|
});
|