Auth0 · Schema

UpdateBrandingColors

Custom color settings.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
primary stringnull Accent color.
page_background object
View JSON Schema on GitHub

JSON Schema

auth0-updatebrandingcolors-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateBrandingColors",
  "title": "UpdateBrandingColors",
  "type": [
    "object",
    "null"
  ],
  "description": "Custom color settings.",
  "additionalProperties": false,
  "minProperties": 1,
  "properties": {
    "primary": {
      "type": [
        "string",
        "null"
      ],
      "description": "Accent color.",
      "format": "html-color-or-null"
    },
    "page_background": {
      "$ref": "#/components/schemas/UpdateBrandingPageBackground"
    }
  }
}