Skip to content

Instantly share code, notes, and snippets.

@brunoluiz
Created August 24, 2017 03:43
Show Gist options
  • Save brunoluiz/b0d412035be957f3d7b06cfd6fc58a05 to your computer and use it in GitHub Desktop.
Save brunoluiz/b0d412035be957f3d7b06cfd6fc58a05 to your computer and use it in GitHub Desktop.
const Joi = require('joi')
module.exports = Joi.object().keys({
username: Joi.string(),
rating: Joi.number().integer().min(1).max(5).default(5),
email: Joi.string().email().required()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment