Weave Net · JSON Structure

Weave Net Peer Info Structure

Information about a Weave peer

Type: object Properties: 3
ContainersNetworkingKubernetesDockerIPAMOpen SourceCNCF

PeerInfo 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

name nick_name 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-peer-info-structure.json",
  "name": "PeerInfo",
  "description": "Information about a Weave peer",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Peer name (hex string)",
      "example": "8a:3d:c1:f9:a2:b7"
    },
    "nick_name": {
      "type": "string",
      "description": "Human-readable peer nickname",
      "example": "node-1"
    },
    "connections": {
      "type": "array",
      "description": "List of connections from this peer",
      "items": {
        "$ref": "#/components/schemas/ConnectionInfo"
      }
    }
  }
}