Etcd · Schema

AuthenticateRequest

Request to authenticate a user

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
name string Username to authenticate
password string Password for the user
View JSON Schema on GitHub

JSON Schema

etcd-authenticaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthenticateRequest",
  "title": "AuthenticateRequest",
  "type": "object",
  "description": "Request to authenticate a user",
  "required": [
    "name",
    "password"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Username to authenticate"
    },
    "password": {
      "type": "string",
      "description": "Password for the user",
      "format": "password"
    }
  }
}