{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConditionalFormattingRule", "title": "ConditionalFormattingRule", "additionalProperties": false, "properties": { "bytecode": { "items": {}, "title": "Bytecode", "type": "array" }, "color": { "title": "Color", "type": "string" }, "colorMode": { "default": null, "allOf": [ { "$ref": "#/components/schemas/ColorMode" } ], "nullable": true }, "columnName": { "title": "Columnname", "type": "string" }, "id": { "title": "Id", "type": "string" }, "input": { "title": "Input", "type": "string" }, "templateId": { "title": "Templateid", "type": "string" } }, "required": [ "bytecode", "color", "columnName", "id", "input", "templateId" ], "type": "object" }