tech.lenooby09.atbloons.epochRecoveryBallot

lenooby09.twinkers.online

Documentation

Proposes a recovery candidate for an account's stuck or failed epoch.

main record

Proposes a recovery candidate for an account's stuck or failed epoch.

Record Key tid Timestamp-based ID

Properties

accountDid string did Required

A decentralized identifier (DID).

createdAt string datetime Required

An RFC 3339 formatted timestamp.

epoch integer Required

No description available.

minimum: 0
genesisHash string Required

No description available.

maxLength: 64 bytesminLength: 64 bytes
networkId string Required

No description available.

maxLength: 64 bytesminLength: 3 bytes
protocolVersion string Required

No description available.

maxLength: 64 bytes
Known values: v1, v2
round integer Required

No description available.

minimum: 1
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "networkId",
      "protocolVersion",
      "genesisHash",
      "createdAt",
      "accountDid",
      "epoch",
      "round",
      "candidateEpochs",
      "selectedEpoch"
    ],
    "properties": {
      "epoch": {
        "type": "integer",
        "minimum": 0
      },
      "round": {
        "type": "integer",
        "minimum": 1
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "networkId": {
        "type": "string",
        "maxLength": 64,
        "minLength": 3
      },
      "accountDid": {
        "type": "string",
        "format": "did"
      },
      "genesisHash": {
        "type": "string",
        "maxLength": 64,
        "minLength": 64
      },
      "previousEpoch": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref"
      },
      "selectedEpoch": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref"
      },
      "candidateEpochs": {
        "type": "array",
        "items": {
          "ref": "com.atproto.repo.strongRef",
          "type": "ref"
        },
        "minLength": 2
      },
      "protocolVersion": {
        "type": "string",
        "maxLength": 64,
        "knownValues": [
          "v1",
          "v2"
        ]
      }
    }
  },
  "description": "Proposes a recovery candidate for an account's stuck or failed epoch."
}

Lexicon Garden

@