# tech.lenooby09.atbloons.validatorEpoch

> 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.validatorEpoch)
- [Documentation](https://lexicon.garden/lexicon/did:plc:xocoka6dmx74ciqskczoh6ci/tech.lenooby09.atbloons.validatorEpoch/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:xocoka6dmx74ciqskczoh6ci/tech.lenooby09.atbloons.validatorEpoch/examples)

## Definitions

### `tech.lenooby09.atbloons.validatorEpoch`

**Type**: `record`

Proposes a validator electorate for the account's specified epoch.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `epoch` | `integer` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `networkId` | `string` | Yes |  |
| `validators` | `array` | Yes |  |
| `genesisHash` | `string` | Yes |  |
| `trustRecords` | `array` | Yes |  |
| `previousEpoch` | `ref` → `com.atproto.repo.strongRef` | No |  |
| `protocolVersion` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "tech.lenooby09.atbloons.validatorEpoch",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "networkId",
          "protocolVersion",
          "genesisHash",
          "createdAt",
          "epoch",
          "trustRecords",
          "validators"
        ],
        "properties": {
          "epoch": {
            "type": "integer",
            "minimum": 0
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "networkId": {
            "type": "string",
            "maxLength": 64,
            "minLength": 3
          },
          "validators": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "did"
            },
            "maxLength": 1024,
            "minLength": 1
          },
          "genesisHash": {
            "type": "string",
            "maxLength": 64,
            "minLength": 64
          },
          "trustRecords": {
            "type": "array",
            "items": {
              "ref": "com.atproto.repo.strongRef",
              "type": "ref"
            },
            "maxLength": 1024,
            "minLength": 1
          },
          "previousEpoch": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref"
          },
          "protocolVersion": {
            "type": "string",
            "maxLength": 64,
            "knownValues": [
              "v0"
            ]
          }
        }
      },
      "description": "Proposes a validator electorate for the account's specified epoch."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
