{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "allOf": [
    {
      "$ref": "#/definitions/myType"
    }
  ],
  "definitions": {
    "myType": {
      "type": "string",
      "enum": [ "dog", "cat" ]
    }
  }
}
