Qdrant · Schema

ReplicatePoints

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
filter object
from_shard_key object
to_shard_key object
View JSON Schema on GitHub

JSON Schema

qdrant-replicatepoints-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReplicatePoints",
  "title": "ReplicatePoints",
  "type": "object",
  "required": [
    "from_shard_key",
    "to_shard_key"
  ],
  "properties": {
    "filter": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/Filter"
        },
        {
          "nullable": true
        }
      ]
    },
    "from_shard_key": {
      "$ref": "#/components/schemas/ShardKey"
    },
    "to_shard_key": {
      "$ref": "#/components/schemas/ShardKey"
    }
  }
}