Auth0 · Schema

TokenQuotaClientCredentials

The token quota configuration

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
enforce boolean If enabled, the quota will be enforced and requests in excess of the quota will fail. If disabled, the quota will not be enforced, but notifications for requests exceeding the quota will be available
per_day integer Maximum number of issued tokens per day
per_hour integer Maximum number of issued tokens per hour
View JSON Schema on GitHub

JSON Schema

auth0-tokenquotaclientcredentials-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TokenQuotaClientCredentials",
  "title": "TokenQuotaClientCredentials",
  "type": "object",
  "description": "The token quota configuration",
  "additionalProperties": false,
  "minProperties": 1,
  "properties": {
    "enforce": {
      "type": "boolean",
      "description": "If enabled, the quota will be enforced and requests in excess of the quota will fail. If disabled, the quota will not be enforced, but notifications for requests exceeding the quota will be available in logs."
    },
    "per_day": {
      "type": "integer",
      "description": "Maximum number of issued tokens per day",
      "minimum": 1,
      "maximum": 2147483647
    },
    "per_hour": {
      "type": "integer",
      "description": "Maximum number of issued tokens per hour",
      "minimum": 1,
      "maximum": 2147483647
    }
  }
}