It seems pretty straight forward to validate user\'s input in Node.js RESTapi with Joi.
Joi
But the problem is that my app is not written in English. That m
let schema = Joi.object().keys({ Joi.string().required().options({language: {any: {required: "First name is required"}}}) });