Qdrant · Schema

DeletePayload

This data structure is used in API interface and applied across multiple shards

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
keys array List of payload keys to remove from payload
points array Deletes values from each point in this list
filter object Deletes values from points that satisfy this filter condition
shard_key object
View JSON Schema on GitHub

JSON Schema

qdrant-deletepayload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeletePayload",
  "title": "DeletePayload",
  "description": "This data structure is used in API interface and applied across multiple shards",
  "type": "object",
  "required": [
    "keys"
  ],
  "properties": {
    "keys": {
      "description": "List of payload keys to remove from payload",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "points": {
      "description": "Deletes values from each point in this list",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ExtendedPointId"
      },
      "nullable": true
    },
    "filter": {
      "description": "Deletes values from points that satisfy this filter condition",
      "anyOf": [
        {
          "$ref": "#/components/schemas/Filter"
        },
        {
          "nullable": true
        }
      ]
    },
    "shard_key": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/ShardKeySelector"
        },
        {
          "nullable": true
        }
      ]
    }
  }
}