Auth0 · Schema
GetBrandingDefaultThemeResponseContent
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| borders | object | |
| colors | object | |
| displayName | string | Display Name |
| fonts | object | |
| page_background | object | |
| themeId | string | Theme Id |
| widget | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetBrandingDefaultThemeResponseContent",
"title": "GetBrandingDefaultThemeResponseContent",
"type": "object",
"additionalProperties": false,
"required": [
"borders",
"colors",
"displayName",
"fonts",
"page_background",
"themeId",
"widget"
],
"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"
},
"themeId": {
"type": "string",
"description": "Theme Id",
"maxLength": 32,
"pattern": "^[a-zA-Z0-9]{32}$"
},
"widget": {
"$ref": "#/components/schemas/BrandingThemeWidget"
}
}
}