Auth0 · Schema

BrandingThemeFontButtonsText

Buttons text

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
bold boolean Buttons text bold
size number Buttons text size
View JSON Schema on GitHub

JSON Schema

auth0-brandingthemefontbuttonstext-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BrandingThemeFontButtonsText",
  "title": "BrandingThemeFontButtonsText",
  "type": "object",
  "description": "Buttons text",
  "additionalProperties": false,
  "required": [
    "bold",
    "size"
  ],
  "properties": {
    "bold": {
      "type": "boolean",
      "description": "Buttons text bold"
    },
    "size": {
      "type": "number",
      "description": "Buttons text size",
      "minimum": 0,
      "maximum": 150
    }
  }
}