Skip to content

Instantly share code, notes, and snippets.

@nlf
Created July 31, 2014 22:50
Show Gist options
  • Save nlf/e34b095914d85e1f0a2f to your computer and use it in GitHub Desktop.
Save nlf/e34b095914d85e1f0a2f to your computer and use it in GitHub Desktop.
config: {
validate: {
payload: Joi.object().keys({
state: Joi.string(),
county: Joi.string(),
city: Joi.string(),
zip: Joi.number().integer()
}).with('county', 'state').with('city', 'state').without('state', 'zip').without('county', 'city')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment