Qdrant · Schema

WithVector

Options for specifying which vector to include

AIArtificial IntelligenceVector Databases
View JSON Schema on GitHub

JSON Schema

qdrant-withvector-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WithVector",
  "title": "WithVector",
  "description": "Options for specifying which vector to include",
  "anyOf": [
    {
      "description": "If `true` - return all vector, If `false` - do not return vector",
      "type": "boolean"
    },
    {
      "description": "Specify which vector to return",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  ]
}