{
  "title": "transparencyStop",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "The transparencyStop object defines the thematic opacity ramp in a sequence of stops. At least two stops are required. The stops must be listed in ascending order based on the value of the `value` property in each stop.",
  "properties": {
    "label": {
      "type": "string",
      "description": "A string value used to label the stop in the legend."
    },
    "transparency": {
      "type": "integer",
      "description": "A numeric transparancy value for a stop ranging from 0-100, where 0 is opaque and 100 is 100% transparent.",
      "minimum": 0,
      "maximum": 100
    },
    "value": {
      "type": "number",
      "description": "The pixel intensity value. Describes the pixel intensity value that the color should be associated with."
    }
  },
  "required": [
    "transparency",
    "value"
  ],
  "additionalProperties": false,
  "esriDocumentation": {
    "examples": [
      {
        "code": {
          "stop": {
            "value": 0,
            "transparency": 50
          }
        }
      }
    ]
  }
}
