Weave Net · Schema

RouterStatus

Status of the Weave Net router

ContainersNetworkingKubernetesDockerIPAMOpen-SourceCNCF

Properties

Name Type Description
encryption boolean Whether encryption is enabled
peers array List of connected peers
connections array Active connections
View JSON Schema on GitHub

JSON Schema

weave-net-router-status-schema.json Raw ↑
{
  "$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"
      }
    }
  }
}