A like on a subject. Create to like, delete to remove like.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp when the like was created.
subject
ref
org.impactindexer.review.defs#subjectRef
Required
The subject being liked.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"subject": {
"ref": "org.impactindexer.review.defs#subjectRef",
"type": "ref",
"description": "The subject being liked."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the like was created."
}
}
},
"description": "A like on a subject. Create to like, delete to remove like."
}