1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-09 00:18:00 +01:00
unleash.unleash/src/lib/services/strategy-schema.ts

28 lines
973 B
TypeScript
Raw Normal View History

2020-07-31 22:15:09 +02:00
const joi = require('joi');
const { nameType } = require('../routes/util');
2016-12-12 21:44:21 +01:00
const strategySchema = joi
.object()
.keys({
name: nameType,
title: joi.string().allow(null).allow('').optional(),
disabled: joi.boolean().allow(null).optional(),
editable: joi.boolean().default(true),
deprecated: joi.boolean().default(false),
description: joi.string().allow(null).allow('').optional(),
parameters: joi
.array()
.required()
.items(
joi.object().keys({
name: joi.string().required(),
type: joi.string().required(),
description: joi.string().allow(null).allow('').optional(),
required: joi.boolean(),
}),
),
})
.options({ allowUnknown: false, stripUnknown: true, abortEarly: false });
export default strategySchema;
2016-12-12 21:44:21 +01:00
module.exports = strategySchema;