Qdrant · Schema

PointGroup

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
hits array Scored points that have the same value of the group_by key
id object
lookup object Record that has been looked up using the group id
View JSON Schema on GitHub

JSON Schema

qdrant-pointgroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PointGroup",
  "title": "PointGroup",
  "type": "object",
  "required": [
    "hits",
    "id"
  ],
  "properties": {
    "hits": {
      "description": "Scored points that have the same value of the group_by key",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ScoredPoint"
      }
    },
    "id": {
      "$ref": "#/components/schemas/GroupId"
    },
    "lookup": {
      "description": "Record that has been looked up using the group id",
      "anyOf": [
        {
          "$ref": "#/components/schemas/Record"
        },
        {
          "nullable": true
        }
      ]
    }
  }
}