Helicone · Schema

SendTestRequestResponse

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
success boolean
response string
requestId string
error string
View JSON Schema on GitHub

JSON Schema

helicone-sendtestrequestresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SendTestRequestResponse",
  "title": "SendTestRequestResponse",
  "properties": {
    "success": {
      "type": "boolean"
    },
    "response": {
      "type": "string"
    },
    "requestId": {
      "type": "string"
    },
    "error": {
      "type": "string"
    }
  },
  "required": [
    "success"
  ],
  "type": "object",
  "additionalProperties": false
}