module.exports = {
attributes: {
title: {
type: 'string',
maxLength: 120,
required: true
},
description: {
type: 'string',
required: true
},
content: {
type: 'string',
required: true
}
},
validationMessages: {
description: {
required: 'Описание обязательно для заполнения'
},
content: {
required: 'Содержание обязательно для заполнения'
},
title:{
required: 'Название обязательно для заполнения'
}
}
};