Qdrant · Schema

ShardKeysResponse

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
shard_keys array The existing shard keys. Only available when sharding method is `custom`
View JSON Schema on GitHub

JSON Schema

qdrant-shardkeysresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShardKeysResponse",
  "title": "ShardKeysResponse",
  "type": "object",
  "properties": {
    "shard_keys": {
      "description": "The existing shard keys. Only available when sharding method is `custom`",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ShardKeyDescription"
      },
      "nullable": true
    }
  }
}