Branding theme
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateBrandingThemeRequestContent", "title": "CreateBrandingThemeRequestContent", "type": "object", "description": "Branding theme", "additionalProperties": false, "required": [ "borders", "colors", "fonts", "page_background", "widget" ], "minProperties": 1, "properties": { "borders": { "$ref": "#/components/schemas/BrandingThemeBorders" }, "colors": { "$ref": "#/components/schemas/BrandingThemeColors" }, "displayName": { "type": "string", "description": "Display Name", "maxLength": 2048, "pattern": "^[^<>]*$" }, "fonts": { "$ref": "#/components/schemas/BrandingThemeFonts" }, "page_background": { "$ref": "#/components/schemas/BrandingThemePageBackground" }, "widget": { "$ref": "#/components/schemas/BrandingThemeWidget" } } }