Branding settings
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateBrandingRequestContent", "title": "UpdateBrandingRequestContent", "type": "object", "description": "Branding settings", "additionalProperties": false, "minProperties": 1, "properties": { "colors": { "$ref": "#/components/schemas/UpdateBrandingColors" }, "favicon_url": { "type": [ "string", "null" ], "description": "URL for the favicon. Must use HTTPS.", "format": "strict-https-uri-or-null" }, "logo_url": { "type": [ "string", "null" ], "description": "URL for the logo. Must use HTTPS.", "format": "strict-https-uri-or-null" }, "identifiers": { "$ref": "#/components/schemas/UpdateBrandingIdentifiers" }, "font": { "$ref": "#/components/schemas/UpdateBrandingFont" } } }