Recipient response to a badge award.
Record Key
tid
Timestamp-based ID
Properties
badgeAward
ref
app.certified.badge.award
Required
Reference to the 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).
Allowed:
accepted, rejectedweight
string
Optional
Optional relative weight for accepted badges, assigned by the recipient.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"badgeAward",
"response",
"createdAt"
],
"properties": {
"weight": {
"type": "string",
"description": "Optional relative weight for accepted badges, assigned by the recipient."
},
"response": {
"enum": [
"accepted",
"rejected"
],
"type": "string",
"description": "The recipient’s response for the badge (accepted or rejected)."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this record was originally created"
},
"badgeAward": {
"ref": "app.certified.badge.award",
"type": "ref",
"description": "Reference to the badge award."
}
}
},
"description": "Recipient response to a badge award."
}