Helicone · Schema

ResultSuccess_Array__id-string--name-string___

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

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

JSON Schema

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