Weave Net · JSON Structure

Weave Net Router Status Structure

Status of the Weave Net router

Type: object Properties: 3
ContainersNetworkingKubernetesDockerIPAMOpen SourceCNCF

RouterStatus is a JSON Structure definition published by Weave Net, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

encryption peers connections

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/weave-net/refs/heads/main/json-structure/weave-net-router-status-structure.json",
  "name": "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"
      }
    }
  }
}