{
  "$ref": "#/definitions/Component",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "definitions": {
    "Component": {
      "additionalProperties": false,
      "properties": {
        "id": {
          "type": "string"
        },
        "percentage": {
          "type": "number"
        },
        "style": {
          "type": "string"
        },
        "title": {
          "type": "string"
        }
      },
      "required": [
        "percentage"
      ],
      "type": "object"
    }
  }
}
