Created
August 24, 2017 03:43
-
-
Save brunoluiz/b0d412035be957f3d7b06cfd6fc58a05 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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