I have the following schema:
var testSchema = Joi.object().keys({
a: Joi.string(),
b: Joi.string(),
c: Joi.string().when('a', {'is': 'avalue', then: Joi.string().required()})
});
but I would like to add a condition on c
field definition so that it is required when:
a == 'avalue' AND b=='bvalue'
How can I do that?
The answer by Gergo Erdosi didn't work for me with Joi
14.3.0
, this gave me anOR
condition:a === 'avalue' OR b === 'bvalue'
The following worked for me:
This gave me
a === 'avalue' AND b === 'bvalue'
You can concatenate two
when
rules: