Records a validator's explicit decision on a transfer or validator epoch proposal.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
decision
string
Required
No description available.
maxLength: 64 bytesKnown values:
ACCEPT, REJECTelectorateEpoch
ref
com.atproto.repo.strongRef
Required
No description available.
genesisHash
string
Required
No description available.
maxLength: 64 bytesminLength: 64 bytesnetworkId
string
Required
No description available.
maxLength: 64 bytesminLength: 3 bytesprotocolVersion
string
Required
No description available.
maxLength: 64 bytesKnown values:
v0subjectCid
string
cid
Required
A content identifier (CID) referencing immutable data.
subjectKind
string
Required
No description available.
maxLength: 64 bytesKnown values:
TRANSFER, VALIDATOR_EPOCHView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"networkId",
"protocolVersion",
"genesisHash",
"createdAt",
"subjectKind",
"subjectCid",
"decision",
"electorateEpoch"
],
"properties": {
"decision": {
"type": "string",
"maxLength": 64,
"knownValues": [
"ACCEPT",
"REJECT"
]
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"networkId": {
"type": "string",
"maxLength": 64,
"minLength": 3
},
"subjectCid": {
"type": "string",
"format": "cid"
},
"genesisHash": {
"type": "string",
"maxLength": 64,
"minLength": 64
},
"subjectKind": {
"type": "string",
"maxLength": 64,
"knownValues": [
"TRANSFER",
"VALIDATOR_EPOCH"
]
},
"electorateEpoch": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"protocolVersion": {
"type": "string",
"maxLength": 64,
"knownValues": [
"v0"
]
}
}
},
"description": "Records a validator's explicit decision on a transfer or validator epoch proposal."
}