{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-peer-update-schema.json", "title": "PeerUpdate", "description": "A single peer in the network.", "type": "object", "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." } } }