Skip to content

Instantly share code, notes, and snippets.

@igkuz
Last active December 18, 2015 11:38
Show Gist options
  • Select an option

  • Save igkuz/5776754 to your computer and use it in GitHub Desktop.

Select an option

Save igkuz/5776754 to your computer and use it in GitHub Desktop.
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Product",
"description": "List object",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for a product",
"type": "integer"
},
"name": {
"description": "Lists name in mailer project",
"type": "string"
}
},
"required": ["id"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment