Etcd · Schema

Error

Error response from the etcd API

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
error string Human-readable error message
code integer gRPC status code for the error
message string Detailed error message
View JSON Schema on GitHub

JSON Schema

etcd-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Error",
  "title": "Error",
  "type": "object",
  "description": "Error response from the etcd API",
  "properties": {
    "error": {
      "type": "string",
      "description": "Human-readable error message"
    },
    "code": {
      "type": "integer",
      "description": "gRPC status code for the error"
    },
    "message": {
      "type": "string",
      "description": "Detailed error message"
    }
  }
}