Helicone · Schema

PurchasedCredits

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
id string
createdAt number
credits number
referenceId string
View JSON Schema on GitHub

JSON Schema

helicone-purchasedcredits-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PurchasedCredits",
  "title": "PurchasedCredits",
  "properties": {
    "id": {
      "type": "string"
    },
    "createdAt": {
      "type": "number",
      "format": "double"
    },
    "credits": {
      "type": "number",
      "format": "double"
    },
    "referenceId": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "createdAt",
    "credits",
    "referenceId"
  ],
  "type": "object",
  "additionalProperties": false
}