Qdrant · Schema

StartResharding

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
direction object
peer_id integer
shard_key object
View JSON Schema on GitHub

JSON Schema

qdrant-startresharding-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StartResharding",
  "title": "StartResharding",
  "type": "object",
  "required": [
    "direction"
  ],
  "properties": {
    "direction": {
      "$ref": "#/components/schemas/ReshardingDirection"
    },
    "peer_id": {
      "type": "integer",
      "format": "uint64",
      "minimum": 0,
      "nullable": true
    },
    "shard_key": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/ShardKey"
        },
        {
          "nullable": true
        }
      ]
    }
  }
}