Helicone · Schema

PTBInvoice

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
id string
organizationId string
stripeInvoiceId string
hostedInvoiceUrl string
startDate string
endDate string
amountCents number
subtotalCents number
notes string
createdAt string
View JSON Schema on GitHub

JSON Schema

helicone-ptbinvoice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PTBInvoice",
  "title": "PTBInvoice",
  "properties": {
    "id": {
      "type": "string"
    },
    "organizationId": {
      "type": "string"
    },
    "stripeInvoiceId": {
      "type": "string",
      "nullable": true
    },
    "hostedInvoiceUrl": {
      "type": "string",
      "nullable": true
    },
    "startDate": {
      "type": "string"
    },
    "endDate": {
      "type": "string"
    },
    "amountCents": {
      "type": "number",
      "format": "double"
    },
    "subtotalCents": {
      "type": "number",
      "format": "double",
      "nullable": true
    },
    "notes": {
      "type": "string",
      "nullable": true
    },
    "createdAt": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "organizationId",
    "stripeInvoiceId",
    "hostedInvoiceUrl",
    "startDate",
    "endDate",
    "amountCents",
    "subtotalCents",
    "notes",
    "createdAt"
  ],
  "type": "object",
  "additionalProperties": false
}