Qdrant · Schema

DistributedPeerInfo

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
uri string URI of the peer
responsive boolean Whether this peer responded for this request
details object If responsive, these details should be available
View JSON Schema on GitHub

JSON Schema

qdrant-distributedpeerinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DistributedPeerInfo",
  "title": "DistributedPeerInfo",
  "type": "object",
  "required": [
    "responsive",
    "uri"
  ],
  "properties": {
    "uri": {
      "description": "URI of the peer",
      "type": "string"
    },
    "responsive": {
      "description": "Whether this peer responded for this request",
      "type": "boolean"
    },
    "details": {
      "description": "If responsive, these details should be available",
      "anyOf": [
        {
          "$ref": "#/components/schemas/DistributedPeerDetails"
        },
        {
          "nullable": true
        }
      ]
    }
  }
}