Etcd · Schema

AuthenticateResponse

Response from a successful authentication

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
header object
token string JWT token to use for subsequent authenticated requests
View JSON Schema on GitHub

JSON Schema

etcd-authenticateresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthenticateResponse",
  "title": "AuthenticateResponse",
  "type": "object",
  "description": "Response from a successful authentication",
  "properties": {
    "header": {
      "$ref": "#/components/schemas/ResponseHeader"
    },
    "token": {
      "type": "string",
      "description": "JWT token to use for subsequent authenticated requests"
    }
  }
}