Weave Net · Schema

PeerInfo

Information about a Weave peer

ContainersNetworkingKubernetesDockerIPAMOpen SourceCNCF

Properties

Name Type Description
name string Peer name (hex string)
nick_name string Human-readable peer nickname
connections array List of connections from this peer
View JSON Schema on GitHub

JSON Schema

weave-net-peer-info-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-peer-info-schema.json",
  "title": "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"
      }
    }
  }
}