Auth0 · Schema

UpdateBrandingRequestContent

Branding settings

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
colors object
favicon_url stringnull URL for the favicon. Must use HTTPS.
logo_url stringnull URL for the logo. Must use HTTPS.
identifiers object
font object
View JSON Schema on GitHub

JSON Schema

auth0-updatebrandingrequestcontent-schema.json Raw ↑
{
  "$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"
    }
  }
}