Helicone · Schema

RateLimits

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
rpm number
tpm number
tpd number
View JSON Schema on GitHub

JSON Schema

helicone-ratelimits-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RateLimits",
  "title": "RateLimits",
  "properties": {
    "rpm": {
      "type": "number",
      "format": "double"
    },
    "tpm": {
      "type": "number",
      "format": "double"
    },
    "tpd": {
      "type": "number",
      "format": "double"
    }
  },
  "type": "object",
  "additionalProperties": false
}