{
  "title": "sizeStop",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "A `sizeStop` object describes the size of the symbol at various values of the expression.",
  "properties": {
    "label": {
      "type": "string",
      "description": "Value if a label is needed on the legend for a stop."
    },
    "size": {
      "type": "number",
      "description": "Specifies the marker size to use for the specified value."
    },
    "value": {
      "type": "number",
      "description": "The value to be mapped to a size."
    }
  },
  "required": [
    "size",
    "value"
  ],
  "additionalProperties": false,
  "esriDocumentation": {
    "examples": [
      {
        "code": {
          "stop": {
            "value": 0,
            "size": 255
          }
        }
      }
    ]
  }
}
