Helicone · Schema

IntegrationCreateParams

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
integration_name string
settings object
active boolean
View JSON Schema on GitHub

JSON Schema

helicone-integrationcreateparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IntegrationCreateParams",
  "title": "IntegrationCreateParams",
  "properties": {
    "integration_name": {
      "type": "string"
    },
    "settings": {
      "$ref": "#/components/schemas/Json"
    },
    "active": {
      "type": "boolean"
    }
  },
  "required": [
    "integration_name"
  ],
  "type": "object",
  "additionalProperties": false
}