Skip to content

Instantly share code, notes, and snippets.

@thomasmichaelwallace
Created July 14, 2017 22:52
Show Gist options
  • Save thomasmichaelwallace/899f0538096c1b17d5e18f7f89820972 to your computer and use it in GitHub Desktop.
Save thomasmichaelwallace/899f0538096c1b17d5e18f7f89820972 to your computer and use it in GitHub Desktop.
Continuing a hello world in ajv.
const schema = {
type: 'object',
additionalProperties: false,
required: ['hello'],
items: { hello: { type: 'string' } }
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment