{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateBrandingThemeResponseContent", "title": "CreateBrandingThemeResponseContent", "type": "object", "additionalProperties": false, "required": [ "borders", "colors", "displayName", "fonts", "page_background", "themeId", "widget" ], "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" }, "themeId": { "type": "string", "description": "Theme Id", "maxLength": 32, "pattern": "^[a-zA-Z0-9]{32}$" }, "widget": { "$ref": "#/components/schemas/BrandingThemeWidget" } } }