{
"$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."
}
}
}