Helicone · Schema

WebhookData

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
destination string
config object
includeData boolean
View JSON Schema on GitHub

JSON Schema

helicone-webhookdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebhookData",
  "title": "WebhookData",
  "properties": {
    "destination": {
      "type": "string"
    },
    "config": {
      "$ref": "#/components/schemas/Record_string.any_"
    },
    "includeData": {
      "type": "boolean"
    }
  },
  "required": [
    "destination",
    "config"
  ],
  "type": "object",
  "additionalProperties": false
}