CockroachDB · Schema

BuildInfo

Build and version metadata for the CockroachDB binary on a node.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
go_version string Go runtime version used to build CockroachDB.
tag string Git tag of the CockroachDB release.
time string Build timestamp.
revision string Git revision hash of the build.
cgo_compiler string CGO compiler version used in the build.
platform string Target platform for the build (e.g. linux amd64).
distribution string CockroachDB distribution type (e.g. CCL or OSS).
type string Build type (e.g. release or development).
channel string Release channel the binary belongs to.
View JSON Schema on GitHub

JSON Schema

cockroachdb-buildinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BuildInfo",
  "title": "BuildInfo",
  "type": "object",
  "description": "Build and version metadata for the CockroachDB binary on a node.",
  "properties": {
    "go_version": {
      "type": "string",
      "description": "Go runtime version used to build CockroachDB."
    },
    "tag": {
      "type": "string",
      "description": "Git tag of the CockroachDB release."
    },
    "time": {
      "type": "string",
      "description": "Build timestamp."
    },
    "revision": {
      "type": "string",
      "description": "Git revision hash of the build."
    },
    "cgo_compiler": {
      "type": "string",
      "description": "CGO compiler version used in the build."
    },
    "platform": {
      "type": "string",
      "description": "Target platform for the build (e.g. linux amd64)."
    },
    "distribution": {
      "type": "string",
      "description": "CockroachDB distribution type (e.g. CCL or OSS)."
    },
    "type": {
      "type": "string",
      "description": "Build type (e.g. release or development)."
    },
    "channel": {
      "type": "string",
      "description": "Release channel the binary belongs to."
    }
  }
}