{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ChartSettingsDisplay", "title": "ChartSettingsDisplay", "additionalProperties": false, "properties": { "color": { "default": null, "title": "Color", "type": "string", "nullable": true }, "displayType": { "default": null, "allOf": [ { "$ref": "#/components/schemas/DisplayType" } ], "nullable": true }, "label": { "default": null, "title": "Label", "type": "string", "nullable": true }, "trendLine": { "default": null, "title": "Trendline", "type": "boolean", "nullable": true }, "yAxisPosition": { "default": null, "allOf": [ { "$ref": "#/components/schemas/YAxisPosition" } ], "nullable": true } }, "type": "object" }