{
  "description": "ID Range provides a min/max of an allowed range of IDs.",
  "required": [
    "min",
    "max"
  ],
  "properties": {
    "max": {
      "description": "Max is the end of the range, inclusive.",
      "type": "integer",
      "format": "int64"
    },
    "min": {
      "description": "Min is the start of the range, inclusive.",
      "type": "integer",
      "format": "int64"
    }
  },
  "$schema": "http://json-schema.org/schema#",
  "type": "object"
}