2016-12-12 21:44:21 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const joi = require('joi');
|
2018-12-12 10:09:38 +01:00
|
|
|
const { nameType } = require('./util');
|
2016-12-12 21:44:21 +01:00
|
|
|
|
|
|
|
const strategySchema = joi.object().keys({
|
2018-12-12 10:09:38 +01:00
|
|
|
name: nameType,
|
2017-06-28 21:10:43 +02:00
|
|
|
editable: joi.boolean().default(true),
|
2016-12-12 21:44:21 +01:00
|
|
|
description: joi.string(),
|
2017-11-02 09:23:38 +01:00
|
|
|
parameters: joi
|
|
|
|
.array()
|
|
|
|
.required()
|
|
|
|
.items(
|
|
|
|
joi.object().keys({
|
|
|
|
name: joi.string().required(),
|
|
|
|
type: joi.string().required(),
|
|
|
|
description: joi.string().allow(''),
|
|
|
|
required: joi.boolean(),
|
|
|
|
})
|
|
|
|
),
|
2016-12-12 21:44:21 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = strategySchema;
|