Auth0 · Schema

SelfServiceProfileSsoTicketConnectionOptions

The connection's options (depend on the connection strategy)

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
icon_url stringnull URL for the icon. Must use HTTPS.
domain_aliases arraynull List of domain_aliases that can be authenticated in the Identity Provider
idpinitiated object
View JSON Schema on GitHub

JSON Schema

auth0-selfserviceprofilessoticketconnectionoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SelfServiceProfileSsoTicketConnectionOptions",
  "title": "SelfServiceProfileSsoTicketConnectionOptions",
  "type": [
    "object",
    "null"
  ],
  "description": "The connection's options (depend on the connection strategy)",
  "additionalProperties": false,
  "properties": {
    "icon_url": {
      "type": [
        "string",
        "null"
      ],
      "description": "URL for the icon. Must use HTTPS.",
      "format": "strict-https-uri-or-null"
    },
    "domain_aliases": {
      "type": [
        "array",
        "null"
      ],
      "description": "List of domain_aliases that can be authenticated in the Identity Provider",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 255
      }
    },
    "idpinitiated": {
      "$ref": "#/components/schemas/SelfServiceProfileSsoTicketIdpInitiatedOptions"
    }
  }
}