A record to reject/block an introduction made by another user
Record Key
any
Any valid record key
Properties
createdAt
string
datetime
Required
Timestamp of the rejection
introduction
ref
com.atproto.repo.strongRef
Required
Strong reference to the introduction record being rejected
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"introduction",
"createdAt"
],
"properties": {
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of the rejection"
},
"introduction": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Strong reference to the introduction record being rejected"
}
}
},
"description": "A record to reject/block an introduction made by another user"
}