Helicone · Schema

HistogramRow

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
range_start string
range_end string
value number
View JSON Schema on GitHub

JSON Schema

helicone-histogramrow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HistogramRow",
  "title": "HistogramRow",
  "properties": {
    "range_start": {
      "type": "string"
    },
    "range_end": {
      "type": "string"
    },
    "value": {
      "type": "number",
      "format": "double"
    }
  },
  "required": [
    "range_start",
    "range_end",
    "value"
  ],
  "type": "object",
  "additionalProperties": false
}