1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/lib/routes/admin-api/strategy-schema.js

32 lines
755 B
JavaScript
Raw Normal View History

2016-12-12 21:44:21 +01:00
'use strict';
2020-07-31 22:15:09 +02:00
const joi = require('joi');
const { nameType } = require('./util');
2016-12-12 21:44:21 +01:00
const strategySchema = joi.object().keys({
name: nameType,
editable: joi.boolean().default(true),
description: joi
.string()
.allow(null)
.allow('')
.optional(),
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(null)
.allow('')
.optional(),
2017-11-02 09:23:38 +01:00
required: joi.boolean(),
}),
2017-11-02 09:23:38 +01:00
),
2016-12-12 21:44:21 +01:00
});
module.exports = strategySchema;