Skip to content

Instantly share code, notes, and snippets.

@nucab
Created October 9, 2017 09:30
Show Gist options
  • Save nucab/3582d7fbce2931d114c55a8232c71919 to your computer and use it in GitHub Desktop.
Save nucab/3582d7fbce2931d114c55a8232c71919 to your computer and use it in GitHub Desktop.
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Product",
"description": "A product from Acme's catalog",
"type": "object",
"properties": {
"firstName": {
"type": "string",
"maxLength": 50
},
"middleName": {
"type": "string",
"maxLength": 50
},
"lastName": {
"type": "string",
"maxLength": 50
},
"name": {
"type": "string",
"maxLength": 255
}
},
"required": ["firstName", "lastName"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment