Helicone · Schema

FilterBranch

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
left object
operator string
right object
View JSON Schema on GitHub

JSON Schema

helicone-filterbranch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FilterBranch",
  "title": "FilterBranch",
  "properties": {
    "left": {
      "$ref": "#/components/schemas/FilterNode"
    },
    "operator": {
      "type": "string",
      "enum": [
        "or",
        "and"
      ]
    },
    "right": {
      "$ref": "#/components/schemas/FilterNode"
    }
  },
  "required": [
    "left",
    "operator",
    "right"
  ],
  "type": "object",
  "additionalProperties": false
}