Hides a discussion or reply within a space. Only honored when authored by the space owner or a moderator. Lives in the moderator's repo.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
space
ref
com.atproto.repo.strongRef
Required
The space this moderation applies to. Indexed by constellation at space.uri.
subject
ref
com.atproto.repo.strongRef
Required
The discussion or reply being hidden.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"space",
"subject",
"createdAt"
],
"properties": {
"space": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The space this moderation applies to. Indexed by constellation at space.uri."
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The discussion or reply being hidden."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Hides a discussion or reply within a space. Only honored when authored by the space owner or a moderator. Lives in the moderator's repo."
}