Auth0 · Schema

ConnectionTenantDomainAzureAD

The Azure AD tenant domain or tenant ID (UUID). Auto-populated from the 'domain' field. Can be either a hostname (e.g., 'contoso.onmicrosoft.com') or a UUID tenant ID.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-connectiontenantdomainazuread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionTenantDomainAzureAD",
  "title": "ConnectionTenantDomainAzureAD",
  "description": "The Azure AD tenant domain or tenant ID (UUID). Auto-populated from the 'domain' field. Can be either a hostname (e.g., 'contoso.onmicrosoft.com') or a UUID tenant ID.",
  "anyOf": [
    {
      "type": "string",
      "format": "hostname",
      "minLength": 0,
      "maxLength": 512
    },
    {
      "type": "string",
      "format": "uuid"
    }
  ]
}