Qdrant · Schema

UpdateVectors

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
points array Points with named vectors
shard_key object
update_filter object
View JSON Schema on GitHub

JSON Schema

qdrant-updatevectors-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateVectors",
  "title": "UpdateVectors",
  "type": "object",
  "required": [
    "points"
  ],
  "properties": {
    "points": {
      "description": "Points with named vectors",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PointVectors"
      },
      "minItems": 1
    },
    "shard_key": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/ShardKeySelector"
        },
        {
          "nullable": true
        }
      ]
    },
    "update_filter": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/Filter"
        },
        {
          "nullable": true
        }
      ]
    }
  }
}