Auth0 · Schema

SelfServiceProfileSsoTicketEnabledFeatures

Specifies which features are enabled for an "edit connection" ticket. Only applicable when connection ID is provided.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
sso boolean Whether SSO configuration is enabled in this ticket.
domain_verification boolean Whether domain verification is enabled in this ticket.
provisioning boolean Whether provisioning configuration is enabled in this ticket.
View JSON Schema on GitHub

JSON Schema

auth0-selfserviceprofilessoticketenabledfeatures-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SelfServiceProfileSsoTicketEnabledFeatures",
  "title": "SelfServiceProfileSsoTicketEnabledFeatures",
  "type": "object",
  "description": "Specifies which features are enabled for an \"edit connection\" ticket. Only applicable when connection ID is provided.",
  "additionalProperties": false,
  "x-release-lifecycle": "GA",
  "properties": {
    "sso": {
      "type": "boolean",
      "description": "Whether SSO configuration is enabled in this ticket."
    },
    "domain_verification": {
      "type": "boolean",
      "description": "Whether domain verification is enabled in this ticket."
    },
    "provisioning": {
      "type": "boolean",
      "description": "Whether provisioning configuration is enabled in this ticket."
    }
  }
}