Auth0 · Schema

UpdateBrandingFont

Custom font settings.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
url stringnull 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-updatebrandingfont-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateBrandingFont",
  "title": "UpdateBrandingFont",
  "type": [
    "object",
    "null"
  ],
  "description": "Custom font settings.",
  "additionalProperties": false,
  "minProperties": 1,
  "properties": {
    "url": {
      "type": [
        "string",
        "null"
      ],
      "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-or-null"
    }
  }
}