Skip to content

Instantly share code, notes, and snippets.

@msaaddev
Created August 23, 2019 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msaaddev/4f2e4cb730c9032d097083c34b9b90c8 to your computer and use it in GitHub Desktop.
Save msaaddev/4f2e4cb730c9032d097083c34b9b90c8 to your computer and use it in GitHub Desktop.
schema = {
title: Joi.string().required().label("Title"),
genre: Joi.string().required().label("Genre"),
noOfStock: Joi.number()
.required()
.min(0)
.max(100).label("Number in Stock"),
rate: Joi.number()
.required()
.min(0)
.max(10).label("Rate")
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment