Qdrant · Schema

DocumentOptions

Option variants for text documents. Ether general-purpose options or BM25-specific options. BM25-specific will only take effect if the `qdrant/bm25` is specified as a model.

AIArtificial IntelligenceVector Databases
View JSON Schema on GitHub

JSON Schema

qdrant-documentoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DocumentOptions",
  "title": "DocumentOptions",
  "description": "Option variants for text documents. Ether general-purpose options or BM25-specific options. BM25-specific will only take effect if the `qdrant/bm25` is specified as a model.",
  "anyOf": [
    {
      "type": "object",
      "additionalProperties": true
    },
    {
      "$ref": "#/components/schemas/Bm25Config"
    }
  ]
}