Helicone · Schema

PaymentMethod

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
id string
brand string
last4 string
exp_month number
exp_year number
View JSON Schema on GitHub

JSON Schema

helicone-paymentmethod-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentMethod",
  "title": "PaymentMethod",
  "properties": {
    "id": {
      "type": "string"
    },
    "brand": {
      "type": "string"
    },
    "last4": {
      "type": "string"
    },
    "exp_month": {
      "type": "number",
      "format": "double"
    },
    "exp_year": {
      "type": "number",
      "format": "double"
    }
  },
  "required": [
    "id",
    "brand",
    "last4",
    "exp_month",
    "exp_year"
  ],
  "type": "object",
  "additionalProperties": false
}