Helicone · Schema

PromptsFilterBranch

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

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

JSON Schema

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