Helicone · Schema

LatencyOverTime

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

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

JSON Schema

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