CockroachDB · Schema

ListMajorClusterVersionsResponse

List of available major CockroachDB versions.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
versions array Array of version objects.
View JSON Schema on GitHub

JSON Schema

cockroachdb-listmajorclusterversionsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListMajorClusterVersionsResponse",
  "title": "ListMajorClusterVersionsResponse",
  "type": "object",
  "description": "List of available major CockroachDB versions.",
  "properties": {
    "versions": {
      "type": "array",
      "description": "Array of version objects.",
      "items": {
        "type": "object",
        "properties": {
          "version": {
            "type": "string",
            "description": "Major version string."
          }
        }
      }
    }
  }
}