Auth0 · Schema

DefaultTokenQuota

Token Quota configuration, to configure quotas for token issuance for clients and organizations. Applied to all clients and organizations unless overridden in individual client or organization settings.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
clients object
organizations object
View JSON Schema on GitHub

JSON Schema

auth0-defaulttokenquota-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DefaultTokenQuota",
  "title": "DefaultTokenQuota",
  "type": [
    "object",
    "null"
  ],
  "description": "Token Quota configuration, to configure quotas for token issuance for clients and organizations. Applied to all clients and organizations unless overridden in individual client or organization settings.",
  "additionalProperties": false,
  "minProperties": 1,
  "x-release-lifecycle": "EA",
  "properties": {
    "clients": {
      "$ref": "#/components/schemas/TokenQuotaConfiguration"
    },
    "organizations": {
      "$ref": "#/components/schemas/TokenQuotaConfiguration"
    }
  }
}