Record declaring a social 'follow' of another account.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"subject": {
"type": "string",
"format": "did",
"description": "DID of the account being followed."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Record declaring a social 'follow' of another account."
}