{
  "title": "Ground",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "Ground defines the main surface of the web scene, based on elevation layers. This object defines the ground properties to be set in the slides.",
  "properties": {
    "transparency": {
      "type": "integer",
      "description": "The transparency of the ground surface (including basemap). The value has to lie between `100` (full transparency) and `0` (full opacity).",
      "minimum": 0,
      "maximum": 100
    }
  },
  "additionalProperties": false,
  "esriDocumentation": {
    "examples": [
      {
        "title": "ground",
        "code": {
          "ground": {
            "transparency": 30
          }
        }
      }
    ]
  }
}
