Weaviate · Schema

PeerUpdate

A single peer in the network.

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
id string The session ID of the peer.
name string Human readable name.
uri string The location where the peer is exposed to the internet.
schemaHash string The latest known hash of the peer's schema.
View JSON Schema on GitHub

JSON Schema

weaviate-peerupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PeerUpdate",
  "title": "PeerUpdate",
  "description": "A single peer in the network.",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The session ID of the peer."
    },
    "name": {
      "type": "string",
      "description": "Human readable name."
    },
    "uri": {
      "type": "string",
      "format": "uri",
      "description": "The location where the peer is exposed to the internet."
    },
    "schemaHash": {
      "type": "string",
      "description": "The latest known hash of the peer's schema."
    }
  }
}