Helicone · Schema

ResultSuccess__value-string--count-number_-Array_

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
data array
error number
View JSON Schema on GitHub

JSON Schema

helicone-resultsuccess-value-string-count-number-array-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResultSuccess__value-string--count-number_-Array_",
  "title": "ResultSuccess__value-string--count-number_-Array_",
  "properties": {
    "data": {
      "items": {
        "properties": {
          "count": {
            "type": "number",
            "format": "double"
          },
          "value": {
            "type": "string"
          }
        },
        "required": [
          "count",
          "value"
        ],
        "type": "object"
      },
      "type": "array"
    },
    "error": {
      "type": "number",
      "enum": [
        null
      ],
      "nullable": true
    }
  },
  "required": [
    "data",
    "error"
  ],
  "type": "object",
  "additionalProperties": false
}