A record representing the removal of a collection link by a collection owner when they cannot delete the original link (which exists in another user's repository). The creator of this record (determined from the AT-URI) is the user who performed the removal.
Record Key
tid
Timestamp-based ID
Properties
collection
ref
com.atproto.repo.strongRef
Required
Strong reference to the collection record.
removedAt
string
datetime
Required
Timestamp when the link was removed from the collection.
removedLink
ref
com.atproto.repo.strongRef
Required
Strong reference to the collectionLink record that is being removed.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"collection",
"removedLink",
"removedAt"
],
"properties": {
"removedAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the link was removed from the collection."
},
"collection": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Strong reference to the collection record."
},
"removedLink": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Strong reference to the collectionLink record that is being removed."
}
}
},
"description": "A record representing the removal of a collection link by a collection owner when they cannot delete the original link (which exists in another user's repository). The creator of this record (determined from the AT-URI) is the user who performed the removal."
}