Scout.models.Equipment = Backbone.RelationalModel.extend({
schema:{
asset_number:{ type:'Text' },
notes: 'TextArea',
tag:{ type: 'Text', validators: ['required']}
},
defaults: {
id: null,
name: null,
}
});
I want to add a legend to the scheme but the examples dont have a legend.