mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
7a410508cb
* feat: api supports context fields * fix: typo for cotnext group in event-differ
27 lines
611 B
JavaScript
27 lines
611 B
JavaScript
'use strict';
|
|
|
|
const joi = require('@hapi/joi');
|
|
const { nameType } = require('./util');
|
|
|
|
const nameSchema = joi.object().keys({ name: nameType });
|
|
|
|
const contextSchema = joi
|
|
.object()
|
|
.keys({
|
|
name: nameType,
|
|
description: joi
|
|
.string()
|
|
.allow('')
|
|
.allow(null)
|
|
.optional(),
|
|
legalValues: joi
|
|
.array()
|
|
.allow(null)
|
|
.unique()
|
|
.optional()
|
|
.items(joi.string()),
|
|
})
|
|
.options({ allowUnknown: false, stripUnknown: true });
|
|
|
|
module.exports = { contextSchema, nameSchema };
|