Qdrant · Schema

DistributedClusterTelemetry

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
enabled boolean
number_of_peers integer
peers object
View JSON Schema on GitHub

JSON Schema

qdrant-distributedclustertelemetry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DistributedClusterTelemetry",
  "title": "DistributedClusterTelemetry",
  "type": "object",
  "required": [
    "enabled",
    "peers"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    },
    "number_of_peers": {
      "type": "integer",
      "format": "uint64",
      "minimum": 0,
      "nullable": true
    },
    "peers": {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/components/schemas/DistributedPeerInfo"
      }
    }
  }
}