Joi object validation: How to validate values with unknown key names?
问题 I have an object with key names I cannot possibly know - they are created by user. However I do know what values they (keys) are going to store, and they (values) are going to be ISO strings. How do I validate those values? And, optionally , how do I validate uknown object's keys, i.e.: key: Joi.string().min(2).max(25) What I have already tried was based on Joi API docs : Another benefits of using Joi.object([schema]) instead of a plain JS object is >that you can set any options on the object