Helicone · Schema

OrgDiscount

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
provider string
model string
percent number
View JSON Schema on GitHub

JSON Schema

helicone-orgdiscount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrgDiscount",
  "title": "OrgDiscount",
  "properties": {
    "provider": {
      "type": "string",
      "nullable": true
    },
    "model": {
      "type": "string",
      "nullable": true
    },
    "percent": {
      "type": "number",
      "format": "double"
    }
  },
  "required": [
    "provider",
    "model",
    "percent"
  ],
  "type": "object",
  "additionalProperties": false
}