No description available.
Record Key
tid
Timestamp-based ID
Properties
grantUri
string
at-uri
Required
AT URI of the dev.pcvera.temp.badge.grant record being rejected.
reason
string
Required
Machine-readable rejection reason.
Allowed:
spam, mistake, not_interested, otherrecipientDid
string
did
Required
DID of the recipient who rejected (must match the grant recipient).
rejectedAt
string
datetime
Required
When the recipient rejected the grant.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"recipientDid",
"grantUri",
"rejectedAt",
"reason"
],
"properties": {
"reason": {
"enum": [
"spam",
"mistake",
"not_interested",
"other"
],
"type": "string",
"description": "Machine-readable rejection reason."
},
"grantUri": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the dev.pcvera.temp.badge.grant record being rejected."
},
"rejectedAt": {
"type": "string",
"format": "datetime",
"description": "When the recipient rejected the grant."
},
"recipientDid": {
"type": "string",
"format": "did",
"description": "DID of the recipient who rejected (must match the grant recipient)."
}
}
}
}