Helicone · Schema

CostOverTime

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
time string
cost number
View JSON Schema on GitHub

JSON Schema

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