Recipient response to a badge award.
Record Key
tid
Timestamp-based ID
Properties
badgeAward
ref
com.atproto.repo.strongRef
Required
Strong reference to the badge award being responded to. The record referenced must conform with the lexicon app.certified.badge.award.
createdAt
string
datetime
Required
Client-declared timestamp when this record was originally created
response
string
Required
The recipient’s response for the badge (accepted or rejected).
Known values:
accepted, rejectedsignatures
ref
app.certified.signature.defs#list
Optional
Optional cryptographic signatures attesting to this record's content.
weight
string
Optional
Optional relative weight for accepted badges, assigned by the recipient.
maxLength: 50 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"badgeAward",
"response",
"createdAt"
],
"properties": {
"weight": {
"type": "string",
"maxLength": 50,
"description": "Optional relative weight for accepted badges, assigned by the recipient."
},
"response": {
"type": "string",
"description": "The recipient’s response for the badge (accepted or rejected).",
"knownValues": [
"accepted",
"rejected"
]
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this record was originally created"
},
"badgeAward": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Strong reference to the badge award being responded to. The record referenced must conform with the lexicon app.certified.badge.award."
},
"signatures": {
"ref": "app.certified.signature.defs#list",
"type": "ref",
"description": "Optional cryptographic signatures attesting to this record's content."
}
}
},
"description": "Recipient response to a badge award."
}