2020-07-31 22:15:09 +02:00
|
|
|
const joi = require('joi');
|
2021-08-13 10:36:19 +02:00
|
|
|
const { nameType } = require('../routes/util');
|
2016-12-12 21:44:21 +01:00
|
|
|
|
2021-02-01 09:41:50 +01:00
|
|
|
const strategySchema = joi
|
|
|
|
.object()
|
|
|
|
.keys({
|
|
|
|
name: nameType,
|
|
|
|
editable: joi.boolean().default(true),
|
|
|
|
deprecated: joi.boolean().default(false),
|
2021-08-12 15:04:37 +02:00
|
|
|
description: joi.string().allow(null).allow('').optional(),
|
2021-02-01 09:41:50 +01:00
|
|
|
parameters: joi
|
|
|
|
.array()
|
|
|
|
.required()
|
|
|
|
.items(
|
|
|
|
joi.object().keys({
|
|
|
|
name: joi.string().required(),
|
|
|
|
type: joi.string().required(),
|
2021-08-12 15:04:37 +02:00
|
|
|
description: joi.string().allow(null).allow('').optional(),
|
2021-02-01 09:41:50 +01:00
|
|
|
required: joi.boolean(),
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
})
|
|
|
|
.options({ allowUnknown: false, stripUnknown: true, abortEarly: false });
|
2021-04-20 12:32:02 +02:00
|
|
|
export default strategySchema;
|
2016-12-12 21:44:21 +01:00
|
|
|
module.exports = strategySchema;
|