Qdrant · Schema

RaftInfo

Summary information about the current raft state

Artificial IntelligenceVector Databases

Properties

Name Type Description
term integer Raft divides time into terms of arbitrary length, each beginning with an election. If a candidate wins the election, it remains the leader for the rest of the term. The term number increases monotonic
commit integer The index of the latest committed (finalized) operation that this peer is aware of.
pending_operations integer Number of consensus operations pending to be applied on this peer
leader integer Leader of the current term
role object Role of this peer in the current term
is_voter boolean Is this peer a voter or a learner
View JSON Schema on GitHub

JSON Schema

qdrant-raftinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RaftInfo",
  "title": "RaftInfo",
  "description": "Summary information about the current raft state",
  "type": "object",
  "required": [
    "commit",
    "is_voter",
    "pending_operations",
    "term"
  ],
  "properties": {
    "term": {
      "description": "Raft divides time into terms of arbitrary length, each beginning with an election. If a candidate wins the election, it remains the leader for the rest of the term. The term number increases monotonically. Each server stores the current term number which is also exchanged in every communication.",
      "type": "integer",
      "format": "uint64",
      "minimum": 0
    },
    "commit": {
      "description": "The index of the latest committed (finalized) operation that this peer is aware of.",
      "type": "integer",
      "format": "uint64",
      "minimum": 0
    },
    "pending_operations": {
      "description": "Number of consensus operations pending to be applied on this peer",
      "type": "integer",
      "format": "uint",
      "minimum": 0
    },
    "leader": {
      "description": "Leader of the current term",
      "type": "integer",
      "format": "uint64",
      "minimum": 0,
      "nullable": true
    },
    "role": {
      "description": "Role of this peer in the current term",
      "anyOf": [
        {
          "$ref": "#/components/schemas/StateRole"
        },
        {
          "nullable": true
        }
      ]
    },
    "is_voter": {
      "description": "Is this peer a voter or a learner",
      "type": "boolean"
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/qdrant-raftinfo"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.