{ "$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 } } }