Skip to content

Instantly share code, notes, and snippets.

@509dave16
Last active June 14, 2018 17:54
Show Gist options
  • Save 509dave16/09782c300bf21f56775d53ed9f8c657b to your computer and use it in GitHub Desktop.
Save 509dave16/09782c300bf21f56775d53ed9f8c657b to your computer and use it in GitHub Desktop.
Sample JSON Schema
{
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"pattern": "^\\w+\\s\\w+$"
},
"username": {
"type": "string",
"minLength": 5
},
"age": {
"type": "integer",
"default": 20,
"minimum": 18,
"maximum": 30
}
},
"required": [
"username"
],
"additionalProperties": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment