{
  "$schema": "http://json-schema.org/draft-07/schema",
  "$id": "enum/animal_type.schema.json",
  "$defs": {
    "animal_type": {
      "type": "string",
      "enum": [
        "dog",
        "cat"
      ],
      "description": ""
    }
  }
}
