Auth0 · Schema

SelfServiceProfileBrandingProperties

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
logo_url string
colors object
View JSON Schema on GitHub

JSON Schema

auth0-selfserviceprofilebrandingproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SelfServiceProfileBrandingProperties",
  "title": "SelfServiceProfileBrandingProperties",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "logo_url": {
      "type": "string",
      "maxLength": 1024,
      "format": "uri",
      "pattern": "^https://"
    },
    "colors": {
      "$ref": "#/components/schemas/SelfServiceProfileBrandingColors"
    }
  }
}