Auth0 · Schema

SetDefaultCustomDomainRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
domain string The domain to set as the default custom domain. Must be a verified custom domain or the canonical domain.
View JSON Schema on GitHub

JSON Schema

auth0-setdefaultcustomdomainrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SetDefaultCustomDomainRequestContent",
  "title": "SetDefaultCustomDomainRequestContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "domain"
  ],
  "properties": {
    "domain": {
      "type": "string",
      "description": "The domain to set as the default custom domain. Must be a verified custom domain or the canonical domain.",
      "minLength": 3,
      "maxLength": 255
    }
  }
}