Auth0 · Schema

OrganizationBranding

Theme defines how to style the login pages.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
logo_url string URL of logo to display on login page.
colors object
View JSON Schema on GitHub

JSON Schema

auth0-organizationbranding-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrganizationBranding",
  "title": "OrganizationBranding",
  "type": "object",
  "description": "Theme defines how to style the login pages.",
  "additionalProperties": false,
  "properties": {
    "logo_url": {
      "type": "string",
      "description": "URL of logo to display on login page.",
      "format": "strict-https-uri-or-null"
    },
    "colors": {
      "$ref": "#/components/schemas/OrganizationBrandingColors"
    }
  }
}