body: Joi.object({
            "a": Joi.boolean().default(true),
            "b": Joi.boolean().default(true),
            "c": Joi.string().default("abc"),
            "d": Joi.string().default("abc"), 
        })
I have to ensure that either a or b is true. How can I do that?
