Auth0 · Schema

ClientAddonSlack

Slack team or workspace name usually first segment in your Slack URL. e.g. `https://acme-org.slack.com` would be `acme-org`.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
team string Slack team name.
View JSON Schema on GitHub

JSON Schema

auth0-clientaddonslack-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientAddonSlack",
  "title": "ClientAddonSlack",
  "type": "object",
  "description": "Slack team or workspace name usually first segment in your Slack URL. e.g. `https://acme-org.slack.com` would be `acme-org`.",
  "additionalProperties": true,
  "required": [
    "team"
  ],
  "properties": {
    "team": {
      "type": "string",
      "description": "Slack team name."
    }
  }
}