Auth0 · Schema

BrandingFont

Custom font settings.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
url string URL for the custom font. The URL must point to a font file and not a stylesheet. Must use HTTPS.
View JSON Schema on GitHub

JSON Schema

auth0-brandingfont-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BrandingFont",
  "title": "BrandingFont",
  "type": "object",
  "description": "Custom font settings.",
  "additionalProperties": false,
  "minProperties": 1,
  "properties": {
    "url": {
      "type": "string",
      "description": "URL for the custom font. The URL must point to a font file and not a stylesheet. Must use HTTPS.",
      "format": "strict-https-uri"
    }
  }
}