Helicone · Schema

DailyUsageDataPoint

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
date string
requests number
bytes number
View JSON Schema on GitHub

JSON Schema

helicone-dailyusagedatapoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DailyUsageDataPoint",
  "title": "DailyUsageDataPoint",
  "properties": {
    "date": {
      "type": "string"
    },
    "requests": {
      "type": "number",
      "format": "double"
    },
    "bytes": {
      "type": "number",
      "format": "double"
    }
  },
  "required": [
    "date",
    "requests",
    "bytes"
  ],
  "type": "object",
  "additionalProperties": false
}