Helicone · Schema

TimeSeriesMetric

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
value number
timestamp string
View JSON Schema on GitHub

JSON Schema

helicone-timeseriesmetric-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimeSeriesMetric",
  "title": "TimeSeriesMetric",
  "properties": {
    "value": {
      "type": "number",
      "format": "double"
    },
    "timestamp": {
      "type": "string"
    }
  },
  "required": [
    "value",
    "timestamp"
  ],
  "type": "object"
}