UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

22 lines 779 B
import joi from 'joi'; import { nameType } from '../routes/util.js'; export const nameSchema = joi.object().keys({ name: nameType }); export const legalValueSchema = joi.object().keys({ value: joi.string().min(1).max(100).required(), description: joi.string().allow('').allow(null).optional(), }); export const contextSchema = joi .object() .keys({ name: nameType, description: joi.string().max(250).allow('').allow(null).optional(), legalValues: joi .array() .allow(null) .unique((a, b) => a.value === b.value) .optional() .items(legalValueSchema), stickiness: joi.boolean().optional().default(false), }) .options({ allowUnknown: false, stripUnknown: true }); //# sourceMappingURL=context-schema.js.map