A favorite relationship to another user
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 user being favorited"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the favorite was created"
}
}
},
"description": "A favorite relationship to another user"
}