{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/weave-net/refs/heads/main/json-schema/weave-net-connection-info-schema.json", "title": "ConnectionInfo", "description": "Information about a peer connection", "type": "object", "properties": { "address": { "type": "string", "description": "Remote peer address", "example": "10.0.1.5:6783" }, "state": { "type": "string", "description": "Connection state", "example": "established" }, "info": { "type": "string", "description": "Additional connection info", "example": "encrypted, sleeve" } } }