Qdrant · Schema

LookupLocation

Defines a location to use for looking up the vector. Specifies collection and vector field name.

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
collection string Name of the collection used for lookup
vector string Optional name of the vector field within the collection. If not provided, the default vector field will be used.
shard_key object Specify in which shards to look for the points, if not specified - look in all shards
View JSON Schema on GitHub

JSON Schema

qdrant-lookuplocation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LookupLocation",
  "title": "LookupLocation",
  "description": "Defines a location to use for looking up the vector. Specifies collection and vector field name.",
  "type": "object",
  "required": [
    "collection"
  ],
  "properties": {
    "collection": {
      "description": "Name of the collection used for lookup",
      "type": "string"
    },
    "vector": {
      "description": "Optional name of the vector field within the collection. If not provided, the default vector field will be used.",
      "default": null,
      "type": "string",
      "nullable": true
    },
    "shard_key": {
      "description": "Specify in which shards to look for the points, if not specified - look in all shards",
      "anyOf": [
        {
          "$ref": "#/components/schemas/ShardKeySelector"
        },
        {
          "nullable": true
        }
      ]
    }
  }
}