Helicone · Schema

ScoreDistribution

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
name string
distribution array
View JSON Schema on GitHub

JSON Schema

helicone-scoredistribution-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScoreDistribution",
  "title": "ScoreDistribution",
  "properties": {
    "name": {
      "type": "string"
    },
    "distribution": {
      "items": {
        "properties": {
          "value": {
            "type": "number",
            "format": "double"
          },
          "upper": {
            "type": "number",
            "format": "double"
          },
          "lower": {
            "type": "number",
            "format": "double"
          }
        },
        "required": [
          "value",
          "upper",
          "lower"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "name",
    "distribution"
  ],
  "type": "object",
  "additionalProperties": false
}