Joi не предлагает никакого встроенного способа проверки порядка массива, поэтому вам придется extend
со своим собственным расширением, например:
const Joi = require('joi');
const customJoi = Joi.extend((joi) => ({
base: joi.array(),
name: 'array',
language: {
asc: 'needs to be sorted in ascending order',
desc: 'needs to be sorted in descending order'
},
rules: [
{
name: 'asc',
validate(params, value, state, options) {
const isAscOrder = value.every((x, i) => i === 0 || x >= value[i - 1]);
return isAscOrder ? value : this.createError('array.asc', {v: value}, state, options);
}
},
{
name: 'desc',
validate(params, value, state, options) {
const isDescOrder = value.every((x, i) => i === 0 || x <= value[i - 1]);
return isDescOrder ? value : this.createError('array.desc', {v: value}, state, options);
}
}
]
}));
const ascSchema = customJoi.array().asc();
const descSchema = customJoi.array().desc();
// Validation results.
console.log(Joi.validate([5, 7, 9, 10], ascSchema)); //true
console.log('\n\n');
console.log(Joi.validate([5, 7, 6, 10], ascSchema)); //false
console.log('\n\n');
console.log(Joi.validate([5, 4, 2, 0], descSchema)); //true
console.log('\n\n');
console.log(Joi.validate([5, 4, 2, 6], descSchema)); //false