Qdrant · Schema

DistributedTelemetryData

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
collections object
cluster object
View JSON Schema on GitHub

JSON Schema

qdrant-distributedtelemetrydata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DistributedTelemetryData",
  "title": "DistributedTelemetryData",
  "type": "object",
  "required": [
    "collections"
  ],
  "properties": {
    "collections": {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/components/schemas/DistributedCollectionTelemetry"
      }
    },
    "cluster": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/DistributedClusterTelemetry"
        },
        {
          "nullable": true
        }
      ]
    }
  }
}