Helicone · Schema

Score

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
valueType string
value object
View JSON Schema on GitHub

JSON Schema

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