{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateBrandingPageBackground",
"title": "UpdateBrandingPageBackground",
"description": "Page Background Color or Gradient.\nProperty contains either null to unset, a solid color as a string value #FFFFFF, or a gradient as an object.\n\n
\n{\n type: 'linear-gradient',\n start: '#FFFFFF',\n end: '#000000',\n angle_deg: 35\n}\n\n",
"oneOf": [
{
"type": [
"string",
"null"
]
},
{
"type": [
"object",
"null"
],
"additionalProperties": true
}
]
}