Proposes a validator electorate for the account's specified epoch.
Record Key
tid
Timestamp-based ID
Properties
createdAt
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:
v0trustRecords
array
of
ref
com.atproto.repo.strongRef
Required
No description available.
maxLength: 1024 itemsminLength: 1 itemsvalidators
array
of
string
did
Required
No description available.
maxLength: 1024 itemsminLength: 1 itemsView raw schema
{
"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."
}