Ceramic · Schema

Information about a connected peer

Information about a connected peer

DecentralizedWeb3Data StreamsDIDIPFSBlockchainEvent StreamingComposeDB

Properties

Name Type Description
id string DID of peer
addresses array List of known multiaddress of peer, will always include the peer id
View JSON Schema on GitHub

JSON Schema

Peer.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ceramic/main/json-schema/Peer.json",
  "title": "Information about a connected peer",
  "description": "Information about a connected peer",
  "type": "object",
  "required": ["id", "addresses"],
  "properties": {
    "id": {
      "type": "string",
      "description": "DID of peer"
    },
    "addresses": {
      "type": "array",
      "description": "List of known multiaddress of peer, will always include the peer id",
      "items": {
        "type": "string",
        "description": "Multiaddress where peer may be dialed"
      }
    }
  }
}