Pins a discussion to the top of 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 the pin applies to. Indexed by constellation at space.uri.
subject
ref
com.atproto.repo.strongRef
Required
The discussion being pinned.
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 the pin applies to. Indexed by constellation at space.uri."
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The discussion being pinned."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Pins a discussion to the top of a space. Only honored when authored by the space owner or a moderator. Lives in the moderator's repo."
}