Helicone · Schema

HqlSavedQuery

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
id string
organization_id string
name string
sql string
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

helicone-hqlsavedquery-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HqlSavedQuery",
  "title": "HqlSavedQuery",
  "properties": {
    "id": {
      "type": "string"
    },
    "organization_id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "sql": {
      "type": "string"
    },
    "created_at": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "organization_id",
    "name",
    "sql",
    "created_at",
    "updated_at"
  ],
  "type": "object",
  "additionalProperties": false
}