Qdrant · Schema

QueryResponse

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
points array
View JSON Schema on GitHub

JSON Schema

qdrant-queryresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/QueryResponse",
  "title": "QueryResponse",
  "type": "object",
  "required": [
    "points"
  ],
  "properties": {
    "points": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ScoredPoint"
      }
    }
  }
}