Helicone · Schema

ClickHouseTableSchema

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
table_name string
columns array
View JSON Schema on GitHub

JSON Schema

helicone-clickhousetableschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClickHouseTableSchema",
  "title": "ClickHouseTableSchema",
  "properties": {
    "table_name": {
      "type": "string"
    },
    "columns": {
      "items": {
        "$ref": "#/components/schemas/ClickHouseTableColumn"
      },
      "type": "array"
    }
  },
  "required": [
    "table_name",
    "columns"
  ],
  "type": "object",
  "additionalProperties": false
}