Last active
June 14, 2018 17:54
-
-
Save 509dave16/09782c300bf21f56775d53ed9f8c657b to your computer and use it in GitHub Desktop.
Sample JSON Schema
This file contains hidden or 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
{ | |
"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