A buddy interaction event. TID-keyed, many per account.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"type",
"createdAt"
],
"properties": {
"item": {
"type": "string",
"maxLength": 128
},
"type": {
"type": "string",
"description": "The kind of interaction.",
"knownValues": [
"pet",
"feed",
"gift",
"greet",
"battle"
]
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"targetDid": {
"type": "string",
"format": "did"
}
}
},
"description": "A buddy interaction event. TID-keyed, many per account."
}