Status of the Weave Net router
{ "$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-router-status-schema.json", "title": "RouterStatus", "description": "Status of the Weave Net router", "type": "object", "properties": { "encryption": { "type": "boolean", "description": "Whether encryption is enabled", "example": false }, "peers": { "type": "array", "description": "List of connected peers", "items": { "$ref": "#/components/schemas/PeerInfo" } }, "connections": { "type": "array", "description": "Active connections", "items": { "$ref": "#/components/schemas/ConnectionInfo" } } } }