{
  "title": "border",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "Optional border on the line that is used to improve the contrast of the line color against various background colors.",
  "properties": {
    "color": {
      "$ref": "color_schema.json"
    },
    "transparency": {
      "type": "integer",
      "description": "A value between `100` (full transparency) and `0` (full opacity).",
      "minimum": 0,
      "maximum": 100,
      "default": 0
    }
  },
  "required": [
    "color"
  ],
  "additionalProperties": false,
  "esriDocumentation": {
    "examples": [
      {
        "title": "border",
        "code": {
          "border": {
            "color": [
              255,
              255,
              255
            ],
            "transparency": 50
          }
        }
      }
    ]
  }
}
