CockroachDB · Schema

Invoice

A billing invoice for a CockroachDB Cloud organization.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
id string Unique identifier of the invoice.
status string Status of the invoice. Values include Finalized and Draft.
period_start string Start of the billing period covered by this invoice.
period_end string End of the billing period covered by this invoice.
total_amount number Total invoice amount in US cents.
View JSON Schema on GitHub

JSON Schema

cockroachdb-invoice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Invoice",
  "title": "Invoice",
  "type": "object",
  "description": "A billing invoice for a CockroachDB Cloud organization.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the invoice."
    },
    "status": {
      "type": "string",
      "description": "Status of the invoice. Values include Finalized and Draft."
    },
    "period_start": {
      "type": "string",
      "format": "date-time",
      "description": "Start of the billing period covered by this invoice."
    },
    "period_end": {
      "type": "string",
      "format": "date-time",
      "description": "End of the billing period covered by this invoice."
    },
    "total_amount": {
      "type": "number",
      "description": "Total invoice amount in US cents."
    }
  }
}