Etcd · Schema

HashResponse

Response from a backend hash query

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
header object
hash integer Hash of the backend database
View JSON Schema on GitHub

JSON Schema

etcd-hashresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HashResponse",
  "title": "HashResponse",
  "type": "object",
  "description": "Response from a backend hash query",
  "properties": {
    "header": {
      "$ref": "#/components/schemas/ResponseHeader"
    },
    "hash": {
      "type": "integer",
      "description": "Hash of the backend database"
    }
  }
}