Qdrant · Schema

PointIdsList

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
points array
shard_key object
View JSON Schema on GitHub

JSON Schema

qdrant-pointidslist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PointIdsList",
  "title": "PointIdsList",
  "type": "object",
  "required": [
    "points"
  ],
  "properties": {
    "points": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ExtendedPointId"
      }
    },
    "shard_key": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/ShardKeySelector"
        },
        {
          "nullable": true
        }
      ]
    }
  }
}