Qdrant · Schema

WithLookup

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
collection string Name of the collection to use for points lookup
with_payload object Options for specifying which payload to include (or not)
with_vectors object Options for specifying which vectors to include (or not)
View JSON Schema on GitHub

JSON Schema

qdrant-withlookup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WithLookup",
  "title": "WithLookup",
  "type": "object",
  "required": [
    "collection"
  ],
  "properties": {
    "collection": {
      "description": "Name of the collection to use for points lookup",
      "type": "string"
    },
    "with_payload": {
      "description": "Options for specifying which payload to include (or not)",
      "default": true,
      "anyOf": [
        {
          "$ref": "#/components/schemas/WithPayloadInterface"
        },
        {
          "nullable": true
        }
      ]
    },
    "with_vectors": {
      "description": "Options for specifying which vectors to include (or not)",
      "default": null,
      "anyOf": [
        {
          "$ref": "#/components/schemas/WithVector"
        },
        {
          "nullable": true
        }
      ]
    }
  }
}