Qdrant · Schema

CollectionsTelemetry

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
number_of_collections integer
max_collections integer
collections array
snapshots array
View JSON Schema on GitHub

JSON Schema

qdrant-collectionstelemetry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CollectionsTelemetry",
  "title": "CollectionsTelemetry",
  "type": "object",
  "required": [
    "number_of_collections"
  ],
  "properties": {
    "number_of_collections": {
      "type": "integer",
      "format": "uint",
      "minimum": 0
    },
    "max_collections": {
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "collections": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CollectionTelemetryEnum"
      },
      "nullable": true
    },
    "snapshots": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CollectionSnapshotTelemetry"
      },
      "nullable": true
    }
  }
}