Helicone · Schema

PaginatedPurchasedCredits

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
purchases array
total number
page number
pageSize number
View JSON Schema on GitHub

JSON Schema

helicone-paginatedpurchasedcredits-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginatedPurchasedCredits",
  "title": "PaginatedPurchasedCredits",
  "properties": {
    "purchases": {
      "items": {
        "$ref": "#/components/schemas/PurchasedCredits"
      },
      "type": "array"
    },
    "total": {
      "type": "number",
      "format": "double"
    },
    "page": {
      "type": "number",
      "format": "double"
    },
    "pageSize": {
      "type": "number",
      "format": "double"
    }
  },
  "required": [
    "purchases",
    "total",
    "page",
    "pageSize"
  ],
  "type": "object",
  "additionalProperties": false
}