Etcd · Schema

ResponseHeader

Header included in every etcd response containing cluster metadata and the revision at which the response was generated.

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
cluster_id string ID of the etcd cluster
member_id string ID of the member that generated the response
revision string Key-value store revision at the time of the response
raft_term string Raft term at the time of the response
View JSON Schema on GitHub

JSON Schema

etcd-responseheader-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResponseHeader",
  "title": "ResponseHeader",
  "type": "object",
  "description": "Header included in every etcd response containing cluster metadata and the revision at which the response was generated.",
  "properties": {
    "cluster_id": {
      "type": "string",
      "description": "ID of the etcd cluster"
    },
    "member_id": {
      "type": "string",
      "description": "ID of the member that generated the response"
    },
    "revision": {
      "type": "string",
      "description": "Key-value store revision at the time of the response"
    },
    "raft_term": {
      "type": "string",
      "description": "Raft term at the time of the response"
    }
  }
}