Helicone · Schema

MutateParams

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
addRequests array
removeRequests array
View JSON Schema on GitHub

JSON Schema

helicone-mutateparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MutateParams",
  "title": "MutateParams",
  "properties": {
    "addRequests": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "removeRequests": {
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "addRequests",
    "removeRequests"
  ],
  "type": "object",
  "additionalProperties": false
}