Requests removal of a piece of content from a world's lore or canon. Only curators may create removal records.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp of the removal request.
reason
string
Optional
Optional reason for the removal.
maxLength: 1024 bytessubject
ref
com.atproto.repo.strongRef
Required
Reference to the content being removed.
world
string
Required
The world domain the content is being removed from.
maxLength: 253 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"world",
"createdAt"
],
"properties": {
"world": {
"type": "string",
"maxLength": 253,
"description": "The world domain the content is being removed from."
},
"reason": {
"type": "string",
"maxLength": 1024,
"description": "Optional reason for the removal."
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the content being removed."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of the removal request."
}
}
},
"description": "Requests removal of a piece of content from a world's lore or canon. Only curators may create removal records."
}