ohif-viewer/Packages/lesiontracker/both/schema/additionalFindings.js
2016-07-22 11:12:04 +02:00

55 lines
1.5 KiB
JavaScript

import { SimpleSchema } from 'meteor/aldeed:simple-schema';
export const schema = new SimpleSchema({
measurableDisease: {
type: String,
label: 'Measurable disease',
allowedValues: ['Present', 'Absent'],
defaultValue: 'Absent',
optional: true
},
// TODO: Add check so that the value cannot be None & something other region
regionsOfMetastaticDisease: {
type: [String],
label: 'Regions of Metastatic Disease',
allowedValues: ['None', 'Lymph Node'],
defaultValue: ['None'],
optional: true
},
tracerRelatedToMetastaticDisease: {
type: String,
label: 'Tracer Related to Metastatic Disease?',
allowedValues: ['Yes', 'No'],
defaultValue: 'Yes',
optional: true
},
numberOfBoneLesions: {
type: String,
label: 'Number of Bone Lesions',
allowedValues: ['0', '1-2', '2-4', '>5'],
defaultValue: '0',
optional: true
},
acceptableImageQuality: {
type: String,
label: 'Acceptable Image Quality',
allowedValues: ['Yes', 'No'],
defaultValue: 'Yes',
optional: true
},
adequateAnatomicalCoverage: {
type: String,
label: 'Adequate Anatomical Coverage',
allowedValues: ['Yes', 'No'],
defaultValue: 'Yes',
optional: true
},
presenceOfContrast: {
type: String,
label: 'Presence of Contrast',
allowedValues: ['Yes', 'No'],
defaultValue: 'Yes',
optional: true
}
});