Helicone · Schema

PaymentIntentRecord

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
id string
amount number
created number
status string
isRefunded boolean
refundedAmount number
refundIds array
View JSON Schema on GitHub

JSON Schema

helicone-paymentintentrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentIntentRecord",
  "title": "PaymentIntentRecord",
  "properties": {
    "id": {
      "type": "string"
    },
    "amount": {
      "type": "number",
      "format": "double"
    },
    "created": {
      "type": "number",
      "format": "double"
    },
    "status": {
      "type": "string"
    },
    "isRefunded": {
      "type": "boolean"
    },
    "refundedAmount": {
      "type": "number",
      "format": "double"
    },
    "refundIds": {
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "id",
    "amount",
    "created",
    "status"
  ],
  "type": "object",
  "additionalProperties": false
}