Created
August 5, 2017 18:04
-
-
Save AndrienkoAleksandr/6be2f6f0ca245e23ab867d2feac46e01 to your computer and use it in GitHub Desktop.
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
{ | |
"title": "Person", | |
"type": "object", | |
"properties": { | |
"firstName": { | |
"type": "string" | |
}, | |
"lastName": { | |
"type": "string" | |
}, | |
"age": { | |
"description": "Age in years", | |
"type": "integer", | |
"minimum": 0 | |
} | |
}, | |
"required": ["firstName", "lastName"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment