# tech.lenooby09.atbloons.node

> Published by [lenooby09.twinkers.online](https://lexicon.garden/identity/did:plc:xocoka6dmx74ciqskczoh6ci)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:xocoka6dmx74ciqskczoh6ci/tech.lenooby09.atbloons.node)
- [Documentation](https://lexicon.garden/lexicon/did:plc:xocoka6dmx74ciqskczoh6ci/tech.lenooby09.atbloons.node/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:xocoka6dmx74ciqskczoh6ci/tech.lenooby09.atbloons.node/examples)

## Definitions

### `tech.lenooby09.atbloons.node`

**Type**: `record`

Advertises an atbloons node operator, peer endpoints, transport key, and supported capabilities.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | Yes |  |
| `endpoints` | `array` | Yes |  |
| `networkId` | `string` | Yes |  |
| `genesisHash` | `string` | Yes |  |
| `operatorDid` | `string` (did) | Yes |  |
| `capabilities` | `array` | No |  |
| `transportKey` | `string` | Yes |  |
| `protocolVersion` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "tech.lenooby09.atbloons.node",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "networkId",
          "protocolVersion",
          "genesisHash",
          "createdAt",
          "operatorDid",
          "endpoints",
          "transportKey"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "endpoints": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "uri"
            },
            "maxLength": 16,
            "minLength": 1
          },
          "networkId": {
            "type": "string",
            "maxLength": 64,
            "minLength": 3
          },
          "genesisHash": {
            "type": "string",
            "maxLength": 64,
            "minLength": 64
          },
          "operatorDid": {
            "type": "string",
            "format": "did"
          },
          "capabilities": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 64,
              "minLength": 1
            },
            "maxLength": 32
          },
          "transportKey": {
            "type": "string",
            "maxLength": 256,
            "minLength": 16
          },
          "protocolVersion": {
            "type": "string",
            "maxLength": 64,
            "knownValues": [
              "v0"
            ]
          }
        }
      },
      "description": "Advertises an atbloons node operator, peer endpoints, transport key, and supported capabilities."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
