Skip to content

Instantly share code, notes, and snippets.

@roberto
Created July 10, 2016 16:40
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 roberto/8fae7b41c85c1d29065c60c1a2d618f2 to your computer and use it in GitHub Desktop.
Save roberto/8fae7b41c85c1d29065c60c1a2d618f2 to your computer and use it in GitHub Desktop.
var schema = joi.object().keys({
things: joi.array().items(
joi.object().keys({
id: joi.string(),
name: joi.string(),
version: joi.string()
})
)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment