{
  "title": "color background",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "Specifies a single color to fill the background of the scene with. The scene background is displayed behind any scene objects, stars and atmosphere.",
  "properties": {
    "color": {
      "$ref": "color_schema.json"
    },
    "transparency": {
      "type": "integer",
      "description": "The value has to lie between `100` (full transparency) and `0` (full opacity).",
      "minimum": 0,
      "maximum": 100
    },
    "type": {
      "type": "string",
      "description": "The type of background.",
      "enum": [
        "color"
      ]
    }
  },
  "required": [
    "color",
    "type"
  ],
  "default": {
    "type": "color",
    "color": [
      0,
      0,
      0
    ]
  },
  "additionalProperties": false
}
