Record containing a reaction to a forum topic or reply.
Record Key
tid
Timestamp-based ID
Properties
community
string
did
Required
DID of the community where this reaction was created. Immutable origin identifier.
createdAt
string
datetime
Required
Client-declared timestamp when this reaction was originally created.
subject
ref
com.atproto.repo.strongRef
Required
The topic or reply being reacted to.
type
string
Required
Reaction type identifier. Communities may define additional values.
maxLength: 300 bytesmaxGraphemes: 30 graphemesKnown values:
forum.barazo.interaction.reaction#like, forum.barazo.interaction.reaction#heart, forum.barazo.interaction.reaction#thumbsupView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"type",
"community",
"createdAt"
],
"properties": {
"type": {
"type": "string",
"maxLength": 300,
"description": "Reaction type identifier. Communities may define additional values.",
"knownValues": [
"forum.barazo.interaction.reaction#like",
"forum.barazo.interaction.reaction#heart",
"forum.barazo.interaction.reaction#thumbsup"
],
"maxGraphemes": 30
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The topic or reply being reacted to."
},
"community": {
"type": "string",
"format": "did",
"description": "DID of the community where this reaction was created. Immutable origin identifier."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this reaction was originally created."
}
}
},
"description": "Record containing a reaction to a forum topic or reply."
}