Auth0 · Schema

SelfServiceProfileSsoTicketDomainAliasesConfig

Configuration for the setup of the connection’s domain_aliases in the Self-Service Enterprise Configuration flow.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
domain_verification object
pending_domains array List of domains that will be submitted for verification during the Self-Service Enterprise Configuration flow.
View JSON Schema on GitHub

JSON Schema

auth0-selfserviceprofilessoticketdomainaliasesconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SelfServiceProfileSsoTicketDomainAliasesConfig",
  "title": "SelfServiceProfileSsoTicketDomainAliasesConfig",
  "type": "object",
  "description": "Configuration for the setup of the connection\u2019s domain_aliases in the Self-Service Enterprise Configuration flow.",
  "additionalProperties": false,
  "required": [
    "domain_verification"
  ],
  "properties": {
    "domain_verification": {
      "$ref": "#/components/schemas/SelfServiceProfileSsoTicketDomainVerificationEnum"
    },
    "pending_domains": {
      "type": "array",
      "description": "List of domains that will be submitted for verification during the Self-Service Enterprise Configuration flow.",
      "x-release-lifecycle": "GA",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 255
      }
    }
  }
}