{
  "title": "colorClassBreakInfo",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "The classBreaksInfo object provides information about the class breaks associated with the renderer.",
  "properties": {
    "classMaxValue": {
      "type": "number",
      "description": "A numeric value used to specify the maximum value for a break."
    },
    "classMinValue": {
      "type": "number",
      "description": "A numeric value used to specify discontinuous class breaks. If this value is null or is missing, the map server will calculate the minimum value based on the preceding class' maximum value."
    },
    "color": {
      "$ref": "color_schema.json"
    },
    "description": {
      "type": "string",
      "description": "String value used to describe the class."
    },
    "label": {
      "type": "string",
      "description": "String value used to label the class."
    }
  },
  "required": [
    "classMaxValue",
    "classMinValue",
    "color"
  ],
  "additionalProperties": false
}
