# tech.lenooby09.kvcs.channel

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

✓ This is the authoritative definition for this NSID.

## Description

A kvcs channel head — points at one or more patch records under tech.lenooby09.kvcs.patch.

## Links

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

## Definitions

### `tech.lenooby09.kvcs.channel`

**Type**: `record`

A kvcs channel head record. Holds the human-readable channel name and the hex patch ids that are currently the tips of the channel.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Channel name (e.g. "main"). Capped at 256 chars — kvcs channel labels are short, human-readable identifiers similar to git branch names. |
| `heads` | `array` | Yes | Hex patch ids that are tips of this channel. The 64-item cap is a defensive bound; real-world channels typically have 1-3 tips. |

## Raw Schema

```json
{
  "id": "tech.lenooby09.kvcs.channel",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "heads"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 256,
            "description": "Channel name (e.g. \"main\"). Capped at 256 chars — kvcs channel labels are short, human-readable identifiers similar to git branch names."
          },
          "heads": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 128,
              "description": "Lower-case hex multihash (BLAKE3) of a patch — 128 chars covers the longest hashes in current use."
            },
            "maxLength": 64,
            "description": "Hex patch ids that are tips of this channel. The 64-item cap is a defensive bound; real-world channels typically have 1-3 tips."
          }
        }
      },
      "description": "A kvcs channel head record. Holds the human-readable channel name and the hex patch ids that are currently the tips of the channel."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A kvcs channel head — points at one or more patch records under tech.lenooby09.kvcs.patch."
}
```
