Auth0 · Schema

CreateBrandingThemeRequestContent

Branding theme

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
borders object
colors object
displayName string Display Name
fonts object
page_background object
widget object
View JSON Schema on GitHub

JSON Schema

auth0-createbrandingthemerequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateBrandingThemeRequestContent",
  "title": "CreateBrandingThemeRequestContent",
  "type": "object",
  "description": "Branding theme",
  "additionalProperties": false,
  "required": [
    "borders",
    "colors",
    "fonts",
    "page_background",
    "widget"
  ],
  "minProperties": 1,
  "properties": {
    "borders": {
      "$ref": "#/components/schemas/BrandingThemeBorders"
    },
    "colors": {
      "$ref": "#/components/schemas/BrandingThemeColors"
    },
    "displayName": {
      "type": "string",
      "description": "Display Name",
      "maxLength": 2048,
      "pattern": "^[^<>]*$"
    },
    "fonts": {
      "$ref": "#/components/schemas/BrandingThemeFonts"
    },
    "page_background": {
      "$ref": "#/components/schemas/BrandingThemePageBackground"
    },
    "widget": {
      "$ref": "#/components/schemas/BrandingThemeWidget"
    }
  }
}