{
	"$schema": "http://json-schema.org/schema#",
	"description": "Schema for chart configuration",
	"type": "object",
	"properties": {
		"ChartConfig": {
			"type": "object",
			"properties": {
				"title": { "type": "string" },
				"kind": {
					"type": "string",
					"enum": [
						"Pie",
						"Pie3d",
						"BarChart",
						"StackedBarChart",
						"BarChart3d",
						"BarChart3dGrouped",
						"LineChart",
						"ValueLineChart",
						"AreaChart",
						"StackedAreaChart",
						"RoundGauge",
						"BarGauge",
						"CandleStick"
					]
				},
				"width": { "type": "number" },
				"height": { "type": "number" }
			}
		}
	}
}