Helicone · Schema

ClickHouseTableColumn

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
name string
type string
default_type string
default_expression string
comment string
codec_expression string
ttl_expression string
View JSON Schema on GitHub

JSON Schema

helicone-clickhousetablecolumn-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClickHouseTableColumn",
  "title": "ClickHouseTableColumn",
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "default_type": {
      "type": "string"
    },
    "default_expression": {
      "type": "string"
    },
    "comment": {
      "type": "string"
    },
    "codec_expression": {
      "type": "string"
    },
    "ttl_expression": {
      "type": "string"
    }
  },
  "required": [
    "name",
    "type"
  ],
  "type": "object",
  "additionalProperties": false
}