{

"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://jsonschema.net",
"type": "object",
"properties": {
  "id": {
    "type": "string"
  },
  "name": {
    "type": "string",
    "description": "The name of the item for sale"
  },
  "required": [
    "name"
  ]
}

}