-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
featureNew functionality or improvementNew functionality or improvement
Milestone
Description
const schema = {
a: Joi.number(),
b: Joi.number().when('a', {
switch: [
{ is: 1, then: Joi.number().min(1) },
{ is: 2, then: Joi.number.max(10) }
],
otherwise: Joi.forbidden() });Basically replace is and then with a new switch. Internally, it gets broken into multiple when() statements. This is just sugar.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
featureNew functionality or improvementNew functionality or improvement