We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please add functionality of Joi.link() This would allow schemas to be recursive
Usage example: i have schema like this
const nestedThingValidator = Joi.object({ type: Joi.string().required().valid(FIELD_TYPE.NESTED), format: Joi.string() .valid(FIELD_TYPE.BOOL, FIELD_TYPE.RADIOBUTTON, FIELD_TYPE.DROPDOWN) .required(), options: Joi.array() .items( Joi.object({ value: Joi.string().required(), code: propertyCodeValidator, fieldset: Joi.array() .items(Joi.ref("#nestedOne")) .min(1), }) ) .required() .min(1), }) .id("nestedOne");
Which allows object to be recursively nested
P.S. Here are a message i have with my schema when i try to convert it with this library
The text was updated successfully, but these errors were encountered:
Hi, the library is in maintenance mode. I do not actively develop new features, but any PRs are welcome and will be merged after being reviewed.
Sorry, something went wrong.
No branches or pull requests
Please add functionality of Joi.link()
This would allow schemas to be recursive
Usage example: i have schema like this
Which allows object to be recursively nested
P.S. Here are a message i have with my schema when i try to convert it with this library
The text was updated successfully, but these errors were encountered: