Skip to content

Instantly share code, notes, and snippets.

@oleics
Created January 22, 2014 15:59
Show Gist options
  • Save oleics/8561343 to your computer and use it in GitHub Desktop.
Save oleics/8561343 to your computer and use it in GitHub Desktop.
JSONSchema Example
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string",
"optional": true
},
"homepage": {
"type": "string",
"pattern": "^http:"
},
"invented": {
"type": "integer",
"minimum": 1500,
"maximum": 3000
}
},
"additionalProperties": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment