CockroachDB · Schema

ListInvoicesResponse

List of invoices for the organization.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
invoices array Array of invoice objects.
View JSON Schema on GitHub

JSON Schema

cockroachdb-listinvoicesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListInvoicesResponse",
  "title": "ListInvoicesResponse",
  "type": "object",
  "description": "List of invoices for the organization.",
  "properties": {
    "invoices": {
      "type": "array",
      "description": "Array of invoice objects.",
      "items": {
        "$ref": "#/components/schemas/Invoice"
      }
    }
  }
}