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).
candidateEpochs
array
of
ref
com.atproto.repo.strongRef
Required
No description available.
minLength: 2 itemscreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
epoch
integer
Required
No description available.
minimum: 0genesisHash
string
Required
No description available.
maxLength: 64 bytesminLength: 64 bytesnetworkId
string
Required
No description available.
maxLength: 64 bytesminLength: 3 bytespreviousEpoch
ref
com.atproto.repo.strongRef
Optional
No description available.
protocolVersion
string
Required
No description available.
maxLength: 64 bytesKnown values:
v1, v2round
integer
Required
No description available.
minimum: 1selectedEpoch
ref
com.atproto.repo.strongRef
Required
No description available.
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."
}