Nominates the record author as a validator for the target account's next validator epoch.
Record Key
tid
Timestamp-based ID
Properties
capabilities
array
of
string
Optional
No description available.
maxLength: 32 itemscreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
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:
v0targetDid
string
did
Required
A decentralized identifier (DID).
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"networkId",
"protocolVersion",
"genesisHash",
"createdAt",
"targetDid"
],
"properties": {
"createdAt": {
"type": "string",
"format": "datetime"
},
"networkId": {
"type": "string",
"maxLength": 64,
"minLength": 3
},
"targetDid": {
"type": "string",
"format": "did"
},
"genesisHash": {
"type": "string",
"maxLength": 64,
"minLength": 64
},
"capabilities": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64,
"minLength": 1
},
"maxLength": 32
},
"protocolVersion": {
"type": "string",
"maxLength": 64,
"knownValues": [
"v0"
]
}
}
},
"description": "Nominates the record author as a validator for the target account's next validator epoch."
}