Auth0 · Schema

Auth0 Branding

Custom color settings.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

auth0-branding-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/auth0/main/json-schema/auth0-branding-schema.json",
  "title": "Auth0 Branding",
  "description": "Custom color settings.",
  "type": "object",
  "additionalProperties": false,
  "minProperties": 1,
  "properties": {
    "primary": {
      "type": "string",
      "description": "Accent color.",
      "format": "html-color"
    },
    "page_background": {
      "$ref": "#/components/schemas/BrandingPageBackground"
    }
  }
}