A record representing a follow of a user or collection.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"subject": {
"type": "string",
"description": "DID of the user being followed, or AT URI of the collection being followed"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when this follow was created."
}
}
},
"description": "A record representing a follow of a user or collection."
}