Etcd · Schema

AuthUserListResponse

Response from a user list operation

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
header object
users array List of all usernames
View JSON Schema on GitHub

JSON Schema

etcd-authuserlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthUserListResponse",
  "title": "AuthUserListResponse",
  "type": "object",
  "description": "Response from a user list operation",
  "properties": {
    "header": {
      "$ref": "#/components/schemas/ResponseHeader"
    },
    "users": {
      "type": "array",
      "description": "List of all usernames",
      "items": {
        "type": "string"
      }
    }
  }
}