Auth0 · Schema

UpdateBrandingResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

auth0-updatebrandingresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateBrandingResponseContent",
  "title": "UpdateBrandingResponseContent",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "colors": {
      "$ref": "#/components/schemas/BrandingColors"
    },
    "favicon_url": {
      "type": "string",
      "description": "URL for the favicon. Must use HTTPS.",
      "format": "strict-https-uri"
    },
    "logo_url": {
      "type": "string",
      "description": "URL for the logo. Must use HTTPS.",
      "format": "strict-https-uri"
    },
    "identifiers": {
      "$ref": "#/components/schemas/BrandingIdentifiers"
    },
    "font": {
      "$ref": "#/components/schemas/BrandingFont"
    }
  }
}