Auth0 · Schema

SelfServiceProfileSsoTicketProvisioningConfig

Configuration for the setup of Provisioning in the self-service flow.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
scopes array The scopes of the SCIM tokens generated during the self-service flow.
google_workspace object
token_lifetime integernull Lifetime of the tokens in seconds. Must be greater than 900. If not provided, the tokens don't expire.
View JSON Schema on GitHub

JSON Schema

auth0-selfserviceprofilessoticketprovisioningconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SelfServiceProfileSsoTicketProvisioningConfig",
  "title": "SelfServiceProfileSsoTicketProvisioningConfig",
  "type": "object",
  "description": "Configuration for the setup of Provisioning in the self-service flow.",
  "additionalProperties": false,
  "x-release-lifecycle": "GA",
  "properties": {
    "scopes": {
      "type": "array",
      "description": "The scopes of the SCIM tokens generated during the self-service flow.",
      "minItems": 1,
      "items": {
        "$ref": "#/components/schemas/SelfServiceProfileSsoTicketProvisioningScopeEnum"
      }
    },
    "google_workspace": {
      "$ref": "#/components/schemas/SelfServiceProfileSsoTicketGoogleWorkspaceConfig",
      "x-release-lifecycle": "GA"
    },
    "token_lifetime": {
      "description": "Lifetime of the tokens in seconds. Must be greater than 900. If not provided, the tokens don't expire.",
      "type": [
        "integer",
        "null"
      ],
      "minimum": 900
    }
  }
}