Weave Net · Schema

ConnectionInfo

Information about a peer connection

ContainersNetworkingKubernetesDockerIPAMOpen SourceCNCF

Properties

Name Type Description
address string Remote peer address
state string Connection state
info string Additional connection info
View JSON Schema on GitHub

JSON Schema

weave-net-connection-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-connection-info-schema.json",
  "title": "ConnectionInfo",
  "description": "Information about a peer connection",
  "type": "object",
  "properties": {
    "address": {
      "type": "string",
      "description": "Remote peer address",
      "example": "10.0.1.5:6783"
    },
    "state": {
      "type": "string",
      "description": "Connection state",
      "example": "established"
    },
    "info": {
      "type": "string",
      "description": "Additional connection info",
      "example": "encrypted, sleeve"
    }
  }
}