1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/src/lib/services/context-schema.ts

25 lines
770 B
TypeScript
Raw Normal View History

2021-09-14 20:36:40 +02:00
import joi from 'joi';
import { nameType } from '../routes/util';
2021-09-14 20:36:40 +02:00
export const nameSchema = joi.object().keys({ name: nameType });
const legalValueSchema = joi.object().keys({
value: joi.string().min(1).max(100).required(),
description: joi.string().allow('').allow(null).optional(),
});
2021-09-14 20:36:40 +02:00
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 });