{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "definitions": {
    "pets": {
      "type": "object",
      "properties": {
        "value": {
          "type": "string"
        },
        "amount": {
          "type": "integer"
        }
      },
      "required": ["amount","value"]
    }
  }
}
