Qdrant · Schema

DiscoverInput

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
target object
context object Search space will be constrained by these pairs of vectors
View JSON Schema on GitHub

JSON Schema

qdrant-discoverinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DiscoverInput",
  "title": "DiscoverInput",
  "type": "object",
  "required": [
    "context",
    "target"
  ],
  "properties": {
    "target": {
      "$ref": "#/components/schemas/VectorInput"
    },
    "context": {
      "description": "Search space will be constrained by these pairs of vectors",
      "anyOf": [
        {
          "$ref": "#/components/schemas/ContextPair"
        },
        {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/ContextPair"
          }
        },
        {
          "nullable": true
        }
      ]
    }
  }
}