trying to validate that an array has zero or more strings in one case and that it has zero or more objects in another , struggling with Joi docs :(
validate: {
Joi.array().items(Joi.string().required(), Joi.number().required()); found it here
Joi.array().items(Joi.string().required(), Joi.number().required());